diff --git a/Manifest.files.gz b/Manifest.files.gz index 93ed1f513742..745196a26e68 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-accessibility/Manifest.gz b/app-accessibility/Manifest.gz index b78d0e505482..fafc38bbf3e4 100644 Binary files a/app-accessibility/Manifest.gz and b/app-accessibility/Manifest.gz differ diff --git a/app-accessibility/caribou/caribou-0.4.21-r2.ebuild b/app-accessibility/caribou/caribou-0.4.21-r2.ebuild index 63eadbd8cb21..cf8891751973 100644 --- a/app-accessibility/caribou/caribou-0.4.21-r2.ebuild +++ b/app-accessibility/caribou/caribou-0.4.21-r2.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Caribou" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz index b7e2af840e23..bdfe5c685d82 100644 Binary files a/app-admin/Manifest.gz and b/app-admin/Manifest.gz differ diff --git a/app-admin/conky/files/conky-1.11.6-fpermissive.patch b/app-admin/conky/files/conky-1.11.6-fpermissive.patch index 1ac1173ba646..f608769b6433 100644 --- a/app-admin/conky/files/conky-1.11.6-fpermissive.patch +++ b/app-admin/conky/files/conky-1.11.6-fpermissive.patch @@ -1,17 +1,15 @@ -From 16be0e1571a586168855bedb6da1ddc732b0bbf4 Mon Sep 17 00:00:00 2001 -From: Brenden Matthews -Date: Thu, 22 Oct 2020 13:02:00 -0400 -Subject: [PATCH] Build fix for libmicrohttpd. - ---- - src/conky.cc | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -diff --git a/src/conky.cc b/src/conky.cc -index 79633a40..b1743466 100644 ---- a/src/conky.cc -+++ b/src/conky.cc -@@ -322,12 +322,13 @@ struct MHD_Daemon *httpd; +--- old/src/conky.cc 2021-01-24 17:05:43.361378726 +0100 ++++ new/src/conky.cc 2021-01-24 17:05:49.055378611 +0100 +@@ -317,17 +321,22 @@ + static FILE *append_fpointer = nullptr; + + #ifdef BUILD_HTTP ++#ifdef MHD_YES ++/* older API */ ++#define MHD_Result int ++#endif /* MHD_YES */ + std::string webpage; + struct MHD_Daemon *httpd; static conky::simple_config_setting http_refresh("http_refresh", false, true); @@ -20,7 +18,7 @@ index 79633a40..b1743466 100644 - size_t *upload_data_size, void **con_cls) { +MHD_Result sendanswer(void *cls, struct MHD_Connection *connection, + const char *url, const char *method, const char *version, -+ const char *upload_data, unsigned long *upload_data_size, ++ const char *upload_data, size_t *upload_data_size, + void **con_cls) { struct MHD_Response *response = MHD_create_response_from_buffer( webpage.length(), (void *)webpage.c_str(), MHD_RESPMEM_PERSISTENT); diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest index 97b6463f9a0b..b725924b05a1 100644 --- a/app-admin/exo/Manifest +++ b/app-admin/exo/Manifest @@ -1 +1,2 @@ DIST exo-1.22.2.tar.gz 4684092 BLAKE2B ee5ddab06438cbc7d177796917c97649fefa35630a0d8012da53042098b639f5bd580a676e30567981f55e7fc9a512069804b7c45fddb739ca54c4702cc09955 SHA512 325f9a902de424d197583bf921528bc08fc8336030f7d3d5fe4571ab26ffbdf42bf602331302124c3be1103bf3b645f05e6729752295d5ceaa3cf88f802cde99 +DIST exo-1.23.0.tar.gz 4690475 BLAKE2B 6f28c28dd4dbd015b48ee01aa5edd6b234bdd32702062844ed1e46da626bc411c87892c2b134db4ba0a3b30a77fecbf1b9458a190bf894c41f07f6c67e5e846c SHA512 f0fdb1147c9b9a062e68a1dab2aba797236bff480d44eee4eed07132cad71f1d2fdcf4d32b7ea13c012d74256342cab01c3c7b7bb9ce6af11cb79eb337a83c34 diff --git a/app-admin/exo/exo-1.23.0.ebuild b/app-admin/exo/exo-1.23.0.ebuild new file mode 100644 index 000000000000..49b1772f318b --- /dev/null +++ b/app-admin/exo/exo-1.23.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Command-line tool for everything at Exoscale: compute, storage, dns." +HOMEPAGE="https://github.com/exoscale/cli" +SRC_URI="https://github.com/exoscale/cli/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="" +DEPEND="dev-lang/go:=" +RESTRICT="strip" +QA_FLAGS_IGNORED=".*" + +S="${WORKDIR}/cli-${PV}" + +src_compile() { + go build -mod vendor -o ${PN} || die "build failed" +} + +src_test() { + # run at least 'exo version' for test + ./exo version > /dev/null 2>&1 + if [[ $? -ne 0 ]] + then + die "Test failed" + fi +} + +src_install() { + dobin ${PN} +} diff --git a/app-admin/undertaker-scripts/Manifest b/app-admin/undertaker-scripts/Manifest new file mode 100644 index 000000000000..4cbfee2c0a9f --- /dev/null +++ b/app-admin/undertaker-scripts/Manifest @@ -0,0 +1 @@ +DIST undertaker-scripts-1.tar.gz 6608 BLAKE2B 82aaf4395f480b2ac7194c9d0022a1001e0f6e3fd137db030bac8d0d0fa80e7f51a086dbdc611c6698a765b467178d9c85518947fd26cc062904142babec3d72 SHA512 a946e669628f1dba4ff6846fa79a5eb1ea44cf19b3ec2d5d24d6792f0d621e262514d346379be88c1abc529373e0cfadb83eed9ba1cd4d4e2f73a078fc20fe04 diff --git a/app-admin/undertaker-scripts/metadata.xml b/app-admin/undertaker-scripts/metadata.xml new file mode 100644 index 000000000000..0319eec4c8be --- /dev/null +++ b/app-admin/undertaker-scripts/metadata.xml @@ -0,0 +1,8 @@ + + + + + mgorny@gentoo.org + Michał Górny + + diff --git a/app-admin/undertaker-scripts/undertaker-scripts-1.ebuild b/app-admin/undertaker-scripts/undertaker-scripts-1.ebuild new file mode 100644 index 000000000000..66f7653df73f --- /dev/null +++ b/app-admin/undertaker-scripts/undertaker-scripts-1.ebuild @@ -0,0 +1,37 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +inherit python-single-r1 + +DESCRIPTION="Scripts to help retiring Gentoo developers" +HOMEPAGE="https://github.com/mgorny/undertaker-scripts" +SRC_URI=" + https://github.com/mgorny/undertaker-scripts/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +REQUIRED_USE=${PYTHON_REQUIRED_USE} + +RDEPEND=" + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/python-bugzilla[${PYTHON_USEDEP}] + ')" + +src_compile() { + python_fix_shebang . +} + +src_install() { + exeinto /opt/undertaker-scripts + doexe *.py + insinto /opt/undertaker-scripts + doins *.template +} diff --git a/app-backup/Manifest.gz b/app-backup/Manifest.gz index e0e58dde7aab..7dbde6305216 100644 Binary files a/app-backup/Manifest.gz and b/app-backup/Manifest.gz differ diff --git a/app-backup/borgbackup/borgbackup-1.1.15.ebuild b/app-backup/borgbackup/borgbackup-1.1.15.ebuild index 19b329975d8b..74d30bf40008 100644 --- a/app-backup/borgbackup/borgbackup-1.1.15.ebuild +++ b/app-backup/borgbackup/borgbackup-1.1.15.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]] ; then inherit git-r3 else SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~ppc64 ~x86" + KEYWORDS="~amd64 ~arm ~ppc64 ~x86" fi DESCRIPTION="Deduplicating backup program with compression and authenticated encryption" diff --git a/app-benchmarks/Manifest.gz b/app-benchmarks/Manifest.gz index 8b580f75aeec..1564e8f64dc5 100644 Binary files a/app-benchmarks/Manifest.gz and b/app-benchmarks/Manifest.gz differ diff --git a/app-benchmarks/hyperfine/hyperfine-1.11.0.ebuild b/app-benchmarks/hyperfine/hyperfine-1.11.0.ebuild index 447cffcef9c6..dabb4ca5b89b 100644 --- a/app-benchmarks/hyperfine/hyperfine-1.11.0.ebuild +++ b/app-benchmarks/hyperfine/hyperfine-1.11.0.ebuild @@ -89,7 +89,7 @@ SRC_URI="https://github.com/sharkdp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 Boost-1.0 ISC MIT MPL-2.0 Unlicense" SLOT="0" -KEYWORDS="amd64 ~ppc64" +KEYWORDS="amd64 ~arm64 ~ppc64" QA_FLAGS_IGNORED="usr/bin/${PN}" diff --git a/app-crypt/Manifest.gz b/app-crypt/Manifest.gz index 0e195f9f0858..ee0f663a8be8 100644 Binary files a/app-crypt/Manifest.gz and b/app-crypt/Manifest.gz differ diff --git a/app-crypt/cardpeek/Manifest b/app-crypt/cardpeek/Manifest index 8ca76071dee1..1b38d9dc846d 100644 --- a/app-crypt/cardpeek/Manifest +++ b/app-crypt/cardpeek/Manifest @@ -1,2 +1 @@ -DIST cardpeek-0.7.2.tar.gz 1130295 BLAKE2B c2aec139c8834947dd2e04fe384719bccdbce9b75b24f791136d5afb5873e6e0afb8306ebb2ddf6fa4e8b4cb46078667fae8eb962b425278351172292df6faaf SHA512 9fd1790794b8d092859670bb36a0cdd235e7d098d563032ccdb8143eac00bb77532f1ab918897c4b753afd184079975de34a6f645e31eadb28b6c5a81d344ecd DIST cardpeek-0.8.4.tar.gz 1520613 BLAKE2B f31a0298ab8423b384b0ad62abb0599da75fd968385e9e6c9a5982e6fbaf7bec8a6098e3e7a5c30ce6634c65e05db084772f4a33c7ef5d6fdcdee0022cc56b86 SHA512 f6eebc7a17f270dd56529ee36815fee72b2f9d62b24d6cc90060f20c7604b9b99ab76858d9c04c60aaec838b02b8db76476a91ee22a4e10f01f852cd1f536efb diff --git a/app-crypt/cardpeek/cardpeek-0.7.2.ebuild b/app-crypt/cardpeek/cardpeek-0.7.2.ebuild deleted file mode 100644 index 92e53c5466c4..000000000000 --- a/app-crypt/cardpeek/cardpeek-0.7.2.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg - -DESCRIPTION="Tool to read the contents of smartcards" -HOMEPAGE="http://pannetrat.com/Cardpeek" -SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="libressl" - -RDEPEND=">=x11-libs/gtk+-2.12:2 - sys-apps/pcsc-lite - dev-lang/lua:0 - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" diff --git a/app-crypt/ekeyd/ekeyd-1.1.5-r1.ebuild b/app-crypt/ekeyd/ekeyd-1.1.5-r1.ebuild deleted file mode 100644 index afdd149626dd..000000000000 --- a/app-crypt/ekeyd/ekeyd-1.1.5-r1.ebuild +++ /dev/null @@ -1,163 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit linux-info systemd toolchain-funcs udev - -DESCRIPTION="Entropy Key userspace daemon" -HOMEPAGE="http://www.entropykey.co.uk/" -SRC_URI="mirror://ubuntu/pool/universe/e/ekeyd/ekeyd_${PV}.orig.tar.gz" - -LICENSE="MIT GPL-2" # GPL-2 (only) for init script -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="kernel_linux munin minimal usb" -REQUIRED_USE="minimal? ( !munin )" - -EKEYD_RDEPEND="dev-lang/lua:0" -EKEYD_DEPEND="${EKEYD_RDEPEND}" -EKEYD_RDEPEND="${EKEYD_RDEPEND} - dev-lua/luasocket - kernel_linux? ( virtual/udev ) - munin? ( net-analyzer/munin )" - -RDEPEND="!minimal? ( ${EKEYD_RDEPEND} ) - virtual/service-manager" -DEPEND="!minimal? ( ${EKEYD_DEPEND} )" - -CONFIG_CHECK="~USB_ACM" - -pkg_setup() { - if ! use minimal && use kernel_linux && ! use usb && linux_config_exists; then - check_extra_config - fi -} - -PATCHES=( - "${FILESDIR}"/${P}-const_char_usage.patch - "${FILESDIR}"/${P}-enoent.patch - "${FILESDIR}"/${P}-path-fixes.patch - "${FILESDIR}"/${P}-udev-rule.patch - "${FILESDIR}"/${P}-remove-werror.patch - "${FILESDIR}"/${P}-misc.patch -) - -src_compile() { - local osname - - # Override automatic detection: upstream provides this with uname, - # we don't like using uname. - case ${CHOST} in - *-linux-*) - osname=linux;; - *-freebsd*) - osname=freebsd;; - *-kfrebsd-gnu) - osname=gnukfreebsd;; - *-openbsd*) - osname=openbsd;; - *) - die "Unsupported operating system!" - ;; - esac - - # We don't slot LUA so we don't really need to have the variables - # set at all. - emake -C host \ - CC="$(tc-getCC)" \ - LUA_V= LUA_INC= \ - OSNAME=${osname} \ - OPT="${CFLAGS}" \ - BUILD_ULUSBD=no \ - $(use minimal && echo egd-linux) -} - -src_install() { - exeinto /usr/libexec - newexe host/egd-linux ekey-egd-linux - newman host/egd-linux.8 ekey-egd-linux.8 - - newconfd "${FILESDIR}"/ekey-egd-linux.conf.2 ekey-egd-linux - newinitd "${FILESDIR}"/ekey-egd-linux.init.2 ekey-egd-linux - - dodoc doc/* AUTHORS ChangeLog THANKS - - use minimal && return - # from here on, install everything that is not part of the minimal - # support. - - emake -C host \ - DESTDIR="${D}" \ - MANZCMD=cat MANZEXT= \ - install-ekeyd - - # We move the daemons around to avoid polluting the available - # commands. - dodir /usr/libexec - mv "${D}"/usr/sbin/ekey*d "${D}"/usr/libexec - - systemd_dounit "${FILESDIR}/ekeyd.service" - - newinitd "${FILESDIR}"/${PN}.init.2 ${PN} - - if use kernel_linux; then - local rules="${FILESDIR}/90-ekeyd.rules" - udev_newrules ${rules} 90-${PN}.rules - fi - - if use munin; then - exeinto /usr/libexec/munin/plugins - doexe munin/ekeyd_stat_ - - insinto /etc/munin/plugin-conf.d - newins munin/plugin-conf.d_ekeyd ekeyd - fi -} - -pkg_postinst() { - elog "${CATEGORY}/${PN} now install also the EGD client service ekey-egd-linux." - elog "To use this service, you need enable EGDTCPSocket for the ekeyd service" - elog "managing the key(s)." - elog "" - elog "The daemon will send more entropy to the kernel once the available pool" - elog "falls below the value set in the kernel.random.write_wakeup_threshold" - elog "sysctl entry." - elog "" - ewarn "Since version 1.1.4-r1, ekey-egd-linux will *not* set the watermark for" - ewarn "you, instead you'll have to configure the sysctl in /etc/sysctl.conf" - - use minimal && return - # from here on, document everything that is not part of the minimal - # support. - - elog "" - elog "To make use of your EntropyKey, make sure to execute ekey-rekey" - elog "the first time, and then start the ekeyd service." - elog "" - elog "By default ekeyd will feed the entropy directly to the kernel's pool;" - elog "if your system has jumps in load average, you might prefer using the" - elog "EGD compatibility mode, by enabling EGDTCPSocket for ekeyd and then" - elog "starting the ekey-egd-linux service." - elog "" - elog "The same applies if you intend to provide entropy for multiple hosts" - elog "over the network. If you want to have the ekey-egd-linux service on" - elog "other hosts, you can enable the 'minimal' USE flag." - elog "" - elog "The service supports multiplexing if you wish to use multiple" - elog "keys, just symlink /etc/init.d/ekeyd -> /etc/init.d/ekeyd.identifier" - elog "and it'll be looking for /etc/entropykey/identifier.conf" - elog "" - - if use kernel_linux; then - elog "Some versions of Linux have a faulty CDC ACM driver that stops" - elog "EntropyKey from working properly; please check the compatibility" - elog "table at http://www.entropykey.co.uk/download/" - else - elog "Make sure your operating system supports the CDC ACM driver" - elog "or otherwise you won't be able to use the EntropyKey." - fi - elog "" - elog "If you're unsure about the working state of the CDC ACM driver" - elog "enable the usb USE flag and use the userland USB daemon" -} diff --git a/app-crypt/pinentry/Manifest b/app-crypt/pinentry/Manifest index 96c7370bde23..034a29fa6e0a 100644 --- a/app-crypt/pinentry/Manifest +++ b/app-crypt/pinentry/Manifest @@ -1 +1,2 @@ DIST pinentry-1.1.0.tar.bz2 467702 BLAKE2B cf43555848ab0dc60756fca123aba7599ebb1bfe0458b973ed9d84479f8de9ee69ef309b518b40aa340434d64d37793cf97c94f78f99820bc5c71ecd2aac7a49 SHA512 5012672925bcb5f683358c259e55e4b87c67cf063ad52c759308933733025c33f7ce08e5b8019ffc101cbf7ef30499040ef2fd34a7611698e65e1593f80948cd +DIST pinentry-1.1.1.tar.bz2 515723 BLAKE2B f257fe552852e6d1ff2c23aeb0c1127b43e3a60e44c78dfa764d569e659ccb78528ce3ee863114af273a4b6f6c24686cda2cb14bb04995eb8c41ccd4541a9fbd SHA512 d6ab5af8ac2f3c9c05e09703e95d8e2676f9b2b7ceb97f6a31d101d0e9da7a1e106a6d3eabe86cab1bb35a4b119a7cba1380ac64bf13c61af0b3c48803116c12 diff --git a/app-crypt/pinentry/pinentry-1.1.0-r3.ebuild b/app-crypt/pinentry/pinentry-1.1.0-r4.ebuild similarity index 62% rename from app-crypt/pinentry/pinentry-1.1.0-r3.ebuild rename to app-crypt/pinentry/pinentry-1.1.0-r4.ebuild index b1f94a63c96a..967f928b26f7 100644 --- a/app-crypt/pinentry/pinentry-1.1.0-r3.ebuild +++ b/app-crypt/pinentry/pinentry-1.1.0-r4.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="caps emacs gnome-keyring fltk gtk ncurses qt5" +IUSE="caps emacs gnome-keyring gtk ncurses qt5" DEPEND=" app-eselect/eselect-pinentry @@ -20,9 +20,7 @@ DEPEND=" >=dev-libs/libgcrypt-1.6.3 >=dev-libs/libgpg-error-1.17 caps? ( sys-libs/libcap ) - fltk? ( x11-libs/fltk ) gnome-keyring? ( app-crypt/libsecret ) - gtk? ( x11-libs/gtk+:2 ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 @@ -31,7 +29,7 @@ DEPEND=" ) " RDEPEND="${DEPEND} - gnome-keyring? ( app-crypt/gcr ) + gtk? ( app-crypt/gcr ) " BDEPEND=" sys-devel/gettext @@ -48,6 +46,7 @@ PATCHES=( src_prepare() { default + unset FLTK_CONFIG eautoreconf } @@ -58,40 +57,29 @@ src_configure() { econf \ $(use_enable emacs pinentry-emacs) \ - $(use_enable fltk pinentry-fltk) \ $(use_enable gnome-keyring libsecret) \ - $(use_enable gnome-keyring pinentry-gnome3) \ - $(use_enable gtk pinentry-gtk2) \ + $(use_enable gtk pinentry-gnome3) \ $(use_enable ncurses fallback-curses) \ $(use_enable ncurses pinentry-curses) \ $(use_enable qt5 pinentry-qt) \ $(use_with caps libcap) \ --enable-pinentry-tty \ - FLTK_CONFIG="${EROOT}/usr/bin/fltk-config" \ + --disable-pinentry-fltk \ + --disable-pinentry-gtk2 \ MOC="$(qt5_get_bindir)"/moc \ - GPG_ERROR_CONFIG="${EROOT}/usr/bin/${CHOST}-gpg-error-config" \ - LIBASSUAN_CONFIG="${EROOT}/usr/bin/libassuan-config" \ + GPG_ERROR_CONFIG="${ESYSROOT}/usr/bin/${CHOST}-gpg-error-config" \ + LIBASSUAN_CONFIG="${ESYSROOT}/usr/bin/libassuan-config" \ $("${S}/configure" --help | grep -- '--without-.*-prefix' | sed -e 's/^ *\([^ ]*\) .*/\1/g') } src_install() { default - rm -f "${ED}"/usr/bin/pinentry + rm "${ED}"/usr/bin/pinentry || die - use qt5 && dosym pinentry-qt /usr/bin/pinentry-qt4 + use qt5 && dosym pinentry-qt /usr/bin/pinentry-qt5 } pkg_postinst() { - if ! has_version 'app-crypt/pinentry' || has_version '=2.6.9 support memory locking for unprivileged processes." - elog "The soft resource limit for memory locking specifies the limit an" - elog "unprivileged process may lock into memory. You can also use POSIX" - elog "capabilities to allow pinentry to lock memory. To do so activate the caps" - elog "USE flag and add the CAP_IPC_LOCK capability to the permitted set of" - elog "your users." - fi - eselect pinentry update ifunset } diff --git a/app-crypt/pinentry/pinentry-1.1.1.ebuild b/app-crypt/pinentry/pinentry-1.1.1.ebuild new file mode 100644 index 000000000000..5d2943485111 --- /dev/null +++ b/app-crypt/pinentry/pinentry-1.1.1.ebuild @@ -0,0 +1,88 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools flag-o-matic qmake-utils toolchain-funcs + +DESCRIPTION="Simple passphrase entry dialogs which utilize the Assuan protocol" +HOMEPAGE="https://gnupg.org/aegypten2/index.html" +SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="caps emacs gnome-keyring gtk ncurses qt5" + +DEPEND=" + app-eselect/eselect-pinentry + >=dev-libs/libassuan-2.1 + >=dev-libs/libgcrypt-1.6.3 + >=dev-libs/libgpg-error-1.17 + caps? ( sys-libs/libcap ) + gnome-keyring? ( app-crypt/libsecret ) + ncurses? ( sys-libs/ncurses:0= ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + ) +" +RDEPEND="${DEPEND} + gtk? ( app-crypt/gcr ) +" +BDEPEND=" + sys-devel/gettext + virtual/pkgconfig +" + +DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) + +PATCHES=( + "${FILESDIR}/${PN}-1.0.0-make-icon-work-under-Plasma-Wayland.patch" + "${FILESDIR}/${PN}-0.8.2-ncurses.patch" + "${FILESDIR}/${PN}-1.0.0-AR.patch" +) + +src_prepare() { + default + unset FLTK_CONFIG + eautoreconf +} + +src_configure() { + [[ "$(gcc-major-version)" -ge 5 ]] && append-cxxflags -std=gnu++11 + + export QTLIB="$(qt5_get_libdir)" + + econf \ + $(use_enable emacs pinentry-emacs) \ + $(use_enable gnome-keyring libsecret) \ + $(use_enable gtk pinentry-gnome3) \ + $(use_enable ncurses fallback-curses) \ + $(use_enable ncurses pinentry-curses) \ + $(use_enable qt5 pinentry-qt) \ + $(use_with caps libcap) \ + --enable-pinentry-tty \ + --disable-pinentry-fltk \ + --disable-pinentry-gtk2 \ + MOC="$(qt5_get_bindir)"/moc \ + GPG_ERROR_CONFIG="${ESYSROOT}/usr/bin/${CHOST}-gpg-error-config" \ + LIBASSUAN_CONFIG="${ESYSROOT}/usr/bin/libassuan-config" \ + $("${S}/configure" --help | grep -- '--without-.*-prefix' | sed -e 's/^ *\([^ ]*\) .*/\1/g') +} + +src_install() { + default + rm "${ED}"/usr/bin/pinentry || die + + use qt5 && dosym pinentry-qt /usr/bin/pinentry-qt5 +} + +pkg_postinst() { + eselect pinentry update ifunset +} + +pkg_postrm() { + eselect pinentry update ifunset +} diff --git a/app-editors/Manifest.gz b/app-editors/Manifest.gz index 9e78029337f2..bb48d541eedf 100644 Binary files a/app-editors/Manifest.gz and b/app-editors/Manifest.gz differ diff --git a/app-editors/neovim/Manifest b/app-editors/neovim/Manifest index 4eb16e981f8d..7b24b5f8666f 100644 --- a/app-editors/neovim/Manifest +++ b/app-editors/neovim/Manifest @@ -1,2 +1 @@ -DIST neovim-0.4.3.tar.gz 9556199 BLAKE2B 831f4d4950f4fa2cd9c7393824bbb5eb571ae5759d13af9f320e0fa351fa155413a5be580f010f2c7ab43ca7bc10c569ccf6e3ba29efc7f5a035576b030b216d SHA512 e13853fa296eda8618f389c71b6cbbd6f01d561615e80cc92959131dd10e395b1c6732a7d9ef6dbb9fe3ea9da4c11485b464547e2d46b22e59b8a20214e861f5 DIST neovim-0.4.4.tar.gz 9558246 BLAKE2B b1d44898bb1e1ab40a7e1d7fb4448076c991ebe1a0956674548de82fe7a931d9eaffbf35ba03cf9c88466dcd628a55f1d7bf9e7a13f3dad74424d6d653ded60c SHA512 ca5c2fe1784ac7b0d2117948ba2e9ae5d94e36d22ff9e0967047e1e03e605537672d85543897af335103215ad462c86962f25267d352a77d61bc3d1cafb3c183 diff --git a/app-editors/neovim/neovim-0.4.3.ebuild b/app-editors/neovim/neovim-0.4.3.ebuild deleted file mode 100644 index 55644dda6a6f..000000000000 --- a/app-editors/neovim/neovim-0.4.3.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake optfeature xdg - -DESCRIPTION="Vim-fork focused on extensibility and agility." -HOMEPAGE="https://neovim.io" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/neovim/neovim.git" -else - SRC_URI="https://github.com/neovim/neovim/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm ~arm64 x86" -fi - -LICENSE="Apache-2.0 vim" -SLOT="0" -IUSE="+luajit +nvimpager +tui" - -BDEPEND=" - dev-util/gperf - virtual/libiconv - virtual/libintl - virtual/pkgconfig -" -DEPEND=" - dev-libs/libuv:0= - >=dev-libs/libvterm-0.1.2 - dev-libs/msgpack:0= - dev-lua/lpeg[luajit=] - dev-lua/luv[luajit=] - dev-lua/mpack[luajit=] - net-libs/libnsl - luajit? ( dev-lang/luajit:2 ) - !luajit? ( - dev-lang/lua:0= - dev-lua/LuaBitOp - ) - tui? ( - dev-libs/libtermkey - >=dev-libs/unibilium-2.0.0:0= - ) -" -RDEPEND=" - ${DEPEND} - app-eselect/eselect-vi -" - -CMAKE_BUILD_TYPE=Release - -PATCHES=( "${FILESDIR}"/${P}-gcc-10-fix.patch ) - -src_prepare() { - # use our system vim dir - sed -e "/^# define SYS_VIMRC_FILE/s|\$VIM|${EPREFIX}/etc/vim|" \ - -i src/nvim/globals.h || die - - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DFEAT_TUI=$(usex tui) - -DPREFER_LUA=$(usex luajit no yes) - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - - # install a default configuration file - insinto /etc/vim - doins "${FILESDIR}"/sysinit.vim - - # conditionally install a symlink for nvimpager - if use nvimpager; then - dosym ../share/nvim/runtime/macros/less.sh /usr/bin/nvimpager - fi -} - -pkg_postinst() { - xdg_pkg_postinst - optfeature "clipboard support" x11-misc/xsel x11-misc/xclip gui-apps/wl-clipboard - optfeature "Python plugin support" dev-python/pynvim - optfeature "Ruby plugin support" dev-ruby/neovim-ruby-client - optfeature "remote/nvr support" dev-python/neovim-remote -} diff --git a/app-editors/neovim/neovim-0.4.4.ebuild b/app-editors/neovim/neovim-0.4.4.ebuild deleted file mode 100644 index b9f0be5d76b6..000000000000 --- a/app-editors/neovim/neovim-0.4.4.ebuild +++ /dev/null @@ -1,103 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake optfeature xdg - -DESCRIPTION="Vim-fork focused on extensibility and agility." -HOMEPAGE="https://neovim.io" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/neovim/neovim.git" -else - SRC_URI="https://github.com/neovim/neovim/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm ~arm64 x86" -fi - -LICENSE="Apache-2.0 vim" -SLOT="0" -IUSE="+lto +luajit +nvimpager +tui" -# Upstream say the test library needs LuaJIT -# https://github.com/neovim/neovim/blob/91109ffda23d0ce61cec245b1f4ffb99e7591b62/CMakeLists.txt#L377 -#REQUIRED_USE="test? ( luajit )" -#RESTRICT="!test? ( test )" - -BDEPEND=" - dev-util/gperf - virtual/libiconv - virtual/libintl - virtual/pkgconfig -" -# Once dev-lua/busted has luajit support, we can add tests. -# bug #584694 -DEPEND=" - dev-libs/libuv:0= - >=dev-libs/libvterm-0.1.2 - dev-libs/msgpack:0= - dev-lua/lpeg[luajit=] - dev-lua/luv[luajit=] - dev-lua/mpack[luajit=] - net-libs/libnsl - luajit? ( dev-lang/luajit:2 ) - !luajit? ( - dev-lang/lua:0= - dev-lua/LuaBitOp - ) - tui? ( - dev-libs/libtermkey - >=dev-libs/unibilium-2.0.0:0= - ) -" -RDEPEND=" - ${DEPEND} - app-eselect/eselect-vi -" - -PATCHES=( - "${FILESDIR}/${PN}-0.4.4-cmake-release-type.patch" -) - -src_prepare() { - # use our system vim dir - sed -e "/^# define SYS_VIMRC_FILE/s|\$VIM|${EPREFIX}/etc/vim|" \ - -i src/nvim/globals.h || die - - cmake_src_prepare -} - -src_configure() { - # Upstream default to LTO on non-debug builds - # Let's expose it as a USE flag because upstream - # have preferences for how we should use LTO - # if we want it on (not just -flto) - # ... but allow turning it off. - local mycmakeargs=( - -DENABLE_LTO=$(usex lto) - -DFEAT_TUI=$(usex tui) - -DPREFER_LUA=$(usex luajit no yes) - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - - # install a default configuration file - insinto /etc/vim - doins "${FILESDIR}"/sysinit.vim - - # conditionally install a symlink for nvimpager - if use nvimpager; then - dosym ../share/nvim/runtime/macros/less.sh /usr/bin/nvimpager - fi -} - -pkg_postinst() { - xdg_pkg_postinst - optfeature "clipboard support" x11-misc/xsel x11-misc/xclip gui-apps/wl-clipboard - optfeature "Python plugin support" dev-python/pynvim - optfeature "Ruby plugin support" dev-ruby/neovim-ruby-client - optfeature "remote/nvr support" dev-python/neovim-remote -} diff --git a/app-emulation/Manifest.gz b/app-emulation/Manifest.gz index 9ad65409bcc1..04c9dc9d0cd9 100644 Binary files a/app-emulation/Manifest.gz and b/app-emulation/Manifest.gz differ diff --git a/app-emulation/docker-compose/Manifest b/app-emulation/docker-compose/Manifest index 95109b4bd028..a8ec145504da 100644 --- a/app-emulation/docker-compose/Manifest +++ b/app-emulation/docker-compose/Manifest @@ -1,5 +1,3 @@ DIST docker-compose-1.27.4.tar.gz 309308 BLAKE2B 098af5e0308de4fe72f8f7d5c9cbdb285ec1cb6fbd492baef8a4223f93591321c585ebabd4c7e4a40d7a1bce3ab2d7ccf4cee1d0a15e7f59bb80eb4df5b6c8d6 SHA512 b41b7cf88b1380021a30f9becb7567d1e154ef875c42b37483673b5107f1a26dae6868b92c6a61f695001eb63759b25f3729e6783272eb784047717cafea3b80 DIST docker-compose-1.28.0.tar.gz 318112 BLAKE2B 2e721f2aed08f8c63c7c75aa91e6ee28d997763a7d93921e9a62c41b7d48943221aa2135e6ba3925db67b2376f662f81ef71df15180895ea4d5ced1edd0cc493 SHA512 c673f25ff993e7dcaf75512c378339bb7435d96310bf9a47ee3fd3a515967b323ed911b77c030a8e9c1d04b8aca235565a0ca0eaeab401c4ac48110712da405e -DIST docker-compose-1.28.0_rc1.tar.gz 313984 BLAKE2B 3307aab3ec842d21de73ab282905016f6b0934a2ce9d1dde474ea1e7c5894cea028363c03ec9f597cb3e9b2910e9286b2ffb3070885b20787f28767fec909a73 SHA512 87704f16bd2d6551fed0b3d38264e10cf12604f40a68637ac9dacc3aebe618872f54a890aa6bb1412143055021751bcba1b542d51b252e78b0b8948e2b8cc8fd -DIST docker-compose-1.28.0_rc2.tar.gz 314331 BLAKE2B c2e169152a6da067e47ca7654b3866fd2b46779bbf35f917008dc71a4c70ede1704bd3f6e5f2231b42d50d6d11ae9df402ed1b01832c26d5d14bdb4db33e7432 SHA512 0320f96b177034c5575797540d38981d591fe22d39ee2e1c338589189333c9eac5e595103bc7295b43b90f697b5a09daffa7f611b395e6bcf81fdce3a391eed6 -DIST docker-compose-1.28.0_rc3.tar.gz 317485 BLAKE2B 5954ebf8224b8701decf7b7c4447592f0a8ce5472e5c9307364c605e2a260ae36c69ceb95b6dc254701650873ea8f443e8767a7ba96bbeec44343b94fb8c5d36 SHA512 0d09d306c38b6c9990f5801fe12c7554694f1a270c13babeb8aecda06c428f4c8d37153439c43fd02fe3ffd59fe4f38ad48d066abfb81fcc1ce8e23e6b353ef3 +DIST docker-compose-1.28.1.tar.gz 318162 BLAKE2B 3ad0815863eb9ef793d859dad82317f3badf77b888416169cd91514948d3b9d58ad827ed923d15f855cf587f8edb7890d1f659fd4713e22fea739c9391f681f9 SHA512 06a9e5b7aca2076b49ccb5ec000436d9e7f9facdf71f8b90fa9b293257c64a1dd6f328631dc900d6b31adb3adb3257be58c52af4270934d86e19b960b48a6e29 diff --git a/app-emulation/docker-compose/docker-compose-1.28.0_rc1.ebuild b/app-emulation/docker-compose/docker-compose-1.28.0_rc1.ebuild deleted file mode 100644 index 21b5b42471fc..000000000000 --- a/app-emulation/docker-compose/docker-compose-1.28.0_rc1.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 2018-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8,9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit bash-completion-r1 distutils-r1 - -MY_PV=${PV/_/-} -DESCRIPTION="Multi-container orchestration for Docker" -HOMEPAGE="https://github.com/docker/compose" -SRC_URI="https://github.com/docker/compose/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm64" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - >=dev-python/cached-property-1.2.0[${PYTHON_USEDEP}] - >=dev-python/distro-1.5.0[${PYTHON_USEDEP}] - >=dev-python/docker-py-4.3.1[${PYTHON_USEDEP}] - >=dev-python/dockerpty-0.4.1[${PYTHON_USEDEP}] - >=dev-python/docopt-0.6.1[${PYTHON_USEDEP}] - >=dev-python/python-dotenv-0.13.0[${PYTHON_USEDEP}] - >=dev-python/jsonschema-2.5.1[${PYTHON_USEDEP}] - dev-python/paramiko[${PYTHON_USEDEP}] - >=dev-python/PySocks-1.6.0[${PYTHON_USEDEP}] - >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}] - >=dev-python/requests-2.20.0[${PYTHON_USEDEP}] - >=dev-python/six-1.3.0[${PYTHON_USEDEP}] - >=dev-python/texttable-0.9.0[${PYTHON_USEDEP}] - >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]" - -DEPEND="${RDEPEND} - test? ( - >=dev-python/pytest-5[${PYTHON_USEDEP}] - >=dev-python/ddt-1.2.2[${PYTHON_USEDEP}] - )" - -S="${WORKDIR}/compose-${MY_PV}" - -PATCHES=( - # Bug #679968 -- https://bugs.gentoo.org/679968 - # Bug #681002 -- https://bugs.gentoo.org/681002 - "${FILESDIR}"/${PN}-1.27.0_rc3-setup-py.patch -) - -DOCS=( CHANGELOG.md README.md ) - -src_prepare() { - # Address QA issue "docker-compose.exe: missing alias (symlink) for completed command." - sed 's,^\(complete.*\) docker-compose\.exe\(.*\),\1\2,' -i contrib/completion/bash/docker-compose || die - - default -} - -python_test() { - distutils_install_for_testing - ${PYTHON} -m pytest tests/unit/ || die "tests failed under ${EPYTHON}" -} - -python_install_all() { - newbashcomp contrib/completion/bash/docker-compose ${PN} - - insinto /usr/share/zsh/site-functions - doins contrib/completion/zsh/* - - distutils-r1_python_install_all -} diff --git a/app-emulation/docker-compose/docker-compose-1.28.0_rc3.ebuild b/app-emulation/docker-compose/docker-compose-1.28.0_rc3.ebuild deleted file mode 100644 index b76ffd2a6855..000000000000 --- a/app-emulation/docker-compose/docker-compose-1.28.0_rc3.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 2018-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8,9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit bash-completion-r1 distutils-r1 - -MY_PV=${PV/_/-} -DESCRIPTION="Multi-container orchestration for Docker" -HOMEPAGE="https://github.com/docker/compose" -SRC_URI="https://github.com/docker/compose/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm64" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - >=dev-python/cached-property-1.2.0[${PYTHON_USEDEP}] - >=dev-python/distro-1.5.0[${PYTHON_USEDEP}] - >=dev-python/docker-py-4.4.0[${PYTHON_USEDEP}] - >=dev-python/dockerpty-0.4.1[${PYTHON_USEDEP}] - >=dev-python/docopt-0.6.1[${PYTHON_USEDEP}] - >=dev-python/python-dotenv-0.13.0[${PYTHON_USEDEP}] - >=dev-python/jsonschema-2.5.1[${PYTHON_USEDEP}] - dev-python/paramiko[${PYTHON_USEDEP}] - >=dev-python/PySocks-1.6.0[${PYTHON_USEDEP}] - >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}] - >=dev-python/requests-2.20.0[${PYTHON_USEDEP}] - >=dev-python/six-1.3.0[${PYTHON_USEDEP}] - >=dev-python/texttable-0.9.0[${PYTHON_USEDEP}] - >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]" - -DEPEND="${RDEPEND} - test? ( - >=dev-python/pytest-5[${PYTHON_USEDEP}] - >=dev-python/ddt-1.2.2[${PYTHON_USEDEP}] - )" - -S="${WORKDIR}/compose-${MY_PV}" - -PATCHES=( - # Bug #679968 -- https://bugs.gentoo.org/679968 - # Bug #681002 -- https://bugs.gentoo.org/681002 - "${FILESDIR}"/${PN}-1.28.0_rc2-setup-py.patch -) - -DOCS=( CHANGELOG.md README.md ) - -src_prepare() { - # Address QA issue "docker-compose.exe: missing alias (symlink) for completed command." - sed 's,^\(complete.*\) docker-compose\.exe\(.*\),\1\2,' -i contrib/completion/bash/docker-compose || die - - default -} - -python_test() { - distutils_install_for_testing - ${PYTHON} -m pytest tests/unit/ || die "tests failed under ${EPYTHON}" -} - -python_install_all() { - newbashcomp contrib/completion/bash/docker-compose ${PN} - - insinto /usr/share/zsh/site-functions - doins contrib/completion/zsh/* - - distutils-r1_python_install_all -} diff --git a/app-emulation/docker-compose/docker-compose-1.28.0_rc2.ebuild b/app-emulation/docker-compose/docker-compose-1.28.1.ebuild similarity index 100% rename from app-emulation/docker-compose/docker-compose-1.28.0_rc2.ebuild rename to app-emulation/docker-compose/docker-compose-1.28.1.ebuild diff --git a/app-eselect/Manifest.gz b/app-eselect/Manifest.gz index a461f9d1a341..33dd7f4aa24c 100644 Binary files a/app-eselect/Manifest.gz and b/app-eselect/Manifest.gz differ diff --git a/app-eselect/eselect-pinentry/eselect-pinentry-0.7.ebuild b/app-eselect/eselect-pinentry/eselect-pinentry-0.7.1.ebuild similarity index 100% rename from app-eselect/eselect-pinentry/eselect-pinentry-0.7.ebuild rename to app-eselect/eselect-pinentry/eselect-pinentry-0.7.1.ebuild diff --git a/app-eselect/eselect-pinentry/files/pinentry.eselect-0.7 b/app-eselect/eselect-pinentry/files/pinentry.eselect-0.7.1 similarity index 52% rename from app-eselect/eselect-pinentry/files/pinentry.eselect-0.7 rename to app-eselect/eselect-pinentry/files/pinentry.eselect-0.7.1 index ec49ca1a602a..77427c45da86 100644 --- a/app-eselect/eselect-pinentry/files/pinentry.eselect-0.7 +++ b/app-eselect/eselect-pinentry/files/pinentry.eselect-0.7.1 @@ -1,12 +1,12 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 DESCRIPTION="Manage /usr/bin/pinentry implementation" -MAINTAINER="ssuominen@gentoo.org" -VERSION="0.7" +MAINTAINER="zlogene@gentoo.org" +VERSION="0.7.1" SYMLINK_PATH=/usr/bin/pinentry -SYMLINK_TARGETS=( pinentry-gnome3 pinentry-qt pinentry-gtk-2 pinentry-qt4 pinentry-curses pinentry-tty ) +SYMLINK_TARGETS=( pinentry-gnome3 pinentry-qt5 pinentry-curses pinentry-tty ) SYMLINK_DESCRIPTION='pinentry binary' inherit bin-symlink diff --git a/app-misc/Manifest.gz b/app-misc/Manifest.gz index 64a62785f31f..454920492e19 100644 Binary files a/app-misc/Manifest.gz and b/app-misc/Manifest.gz differ diff --git a/app-misc/figlet/figlet-2.2.5-r1.ebuild b/app-misc/figlet/figlet-2.2.5-r1.ebuild index 5f6d3e2c0a53..6b8b2829ed83 100644 --- a/app-misc/figlet/figlet-2.2.5-r1.ebuild +++ b/app-misc/figlet/figlet-2.2.5-r1.ebuild @@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.figlet.org/pub/figlet/program/unix/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" src_compile() { emake clean diff --git a/app-misc/worker/worker-3.8.3.ebuild b/app-misc/worker/worker-3.8.3.ebuild deleted file mode 100644 index a7d14a742e75..000000000000 --- a/app-misc/worker/worker-3.8.3.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils toolchain-funcs - -DESCRIPTION="Worker Filemanager: Amiga Directory Opus 4 clone" -HOMEPAGE="http://www.boomerangsworld.de/cms/worker/" -SRC_URI="http://www.boomerangsworld.de/cms/worker/downloads/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 x86" -IUSE="avfs debug dbus examples libnotify lua +magic xinerama xft" - -RDEPEND="x11-libs/libX11 - avfs? ( >=sys-fs/avfs-0.9.5 ) - dbus? ( dev-libs/dbus-glib ) - lua? ( dev-lang/lua:0 ) - magic? ( sys-apps/file ) - xft? ( x11-libs/libXft ) - xinerama? ( x11-libs/libXinerama )" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS ChangeLog INSTALL NEWS README README_LARGEFILES THANKS ) - -src_configure() { - # there is no ./configure flag to disable libXinerama support - export ac_cv_lib_Xinerama_XineramaQueryScreens=$(usex xinerama) - econf \ - --without-hal \ - --enable-utf8 \ - $(use_with avfs) \ - $(use_with dbus) \ - $(use_enable debug) \ - $(use_enable libnotify inotify) \ - $(use_enable lua) \ - $(use_with magic libmagic) \ - $(use_enable xft) -} - -src_compile() { - emake -j1 -} - -src_install() { - default - - if use examples; then - docinto examples - dodoc examples/config-* - fi -} diff --git a/app-misc/worker/worker-4.6.1.ebuild b/app-misc/worker/worker-4.6.1.ebuild deleted file mode 100644 index a814985c975f..000000000000 --- a/app-misc/worker/worker-4.6.1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools toolchain-funcs - -DESCRIPTION="Worker Filemanager: Amiga Directory Opus 4 clone" -HOMEPAGE="http://www.boomerangsworld.de/cms/worker/" -SRC_URI="http://www.boomerangsworld.de/cms/worker/downloads/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" -IUSE="avfs debug dbus examples libnotify lua +magic xinerama xft" - -RDEPEND="x11-libs/libX11 - avfs? ( >=sys-fs/avfs-0.9.5 ) - dbus? ( sys-apps/dbus ) - lua? ( dev-lang/lua:0 ) - magic? ( sys-apps/file ) - xft? ( x11-libs/libXft ) - xinerama? ( x11-libs/libXinerama )" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS ChangeLog INSTALL NEWS README README_LARGEFILES THANKS ) - -src_prepare() { - default - - # Don't use /usr/share/appdata - sed -i -e "s:/appdata:/metainfo:" contrib/Makefile.am || die - eautoreconf -} - -src_configure() { - # there is no ./configure flag to disable libXinerama support - export ac_cv_lib_Xinerama_XineramaQueryScreens=$(usex xinerama) - econf \ - --without-hal \ - --enable-utf8 \ - $(use_with avfs) \ - $(use_with dbus) \ - $(use_enable debug) \ - $(use_enable libnotify inotify) \ - $(use_enable lua) \ - $(use_with magic libmagic) \ - $(use_enable xft) -} - -src_install() { - default - - if use examples; then - docinto examples - dodoc examples/config-* - fi -} diff --git a/app-office/Manifest.gz b/app-office/Manifest.gz index 556379b6dbf4..969f4461c738 100644 Binary files a/app-office/Manifest.gz and b/app-office/Manifest.gz differ diff --git a/app-office/skrooge/Manifest b/app-office/skrooge/Manifest index 509ca76b9508..736102816eaa 100644 --- a/app-office/skrooge/Manifest +++ b/app-office/skrooge/Manifest @@ -1,3 +1,2 @@ DIST skrooge-2.23.0.tar.xz 22403128 BLAKE2B e8b4e33e80f307f2c7e6c984199c116aee1d7cabe0ac4ee9461ba10289adc0a15ba5e5d8efb93d49ec8f22104462d572a8ee52b08df84d0379fa77ce56a4ddc9 SHA512 4592deb159aa310f36f8950cf0a65d811624b40dc8b05cdefc271b95885bc6db5ac15f7b4c5299b1468ac92b7e560636bf95ddd6d31340993d9184ba0b150a76 -DIST skrooge-2.24.0.tar.xz 22184092 BLAKE2B 84d14fa35665fc1d5326e6212e56569f095b0a22ff2b3df752a8f456e34442edb639c2855b4f1a54cd639c2f9041e8a5e2ccfdf488876ce25dd48f0b0e0721c1 SHA512 e48ad9e657e4f15ab10db38cf1944cfe5a1fe73fa4623ec288b8749de746fc64ccc2534dc2bc7c379db0632107eba17ffc6a39e50de8e52a6800bb86b2ef234d DIST skrooge-2.24.6.tar.xz 22187100 BLAKE2B 8657397c1faef949e4d2aa5a23b35433695329e9b00e62f11e4b60b78b3d0e92c32ff93219a4931b9baa08ae1bbdc18285728c97b0d49ca71bad37ee37b01a83 SHA512 a253bdcd966dbb3b0b2b078a88b8de7e9fbdf7700ce91850c0a174c3bb2f56aa04a00250e8164a5e9387699b4a6162052edb4a064293360a3b5ef62c350912df diff --git a/app-office/skrooge/skrooge-2.24.0.ebuild b/app-office/skrooge/skrooge-2.24.0.ebuild deleted file mode 100644 index cf20ef1b6597..000000000000 --- a/app-office/skrooge/skrooge-2.24.0.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ECM_HANDBOOK="optional" -ECM_TEST="forceoptional" -KFMIN=5.74.0 -QTMIN=5.15.1 -VIRTUALX_REQUIRED="test" -inherit ecm kde.org - -DESCRIPTION="Personal finances manager, aiming at being simple and intuitive" -HOMEPAGE="https://skrooge.org/" - -if [[ ${KDE_BUILD_TYPE} = release ]]; then - SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-2" -SLOT="5" -IUSE="activities kde ofx" - -BDEPEND=" - dev-libs/libxslt - virtual/pkgconfig -" -COMMON_DEPEND=" - >=app-crypt/qca-2.3.0:2 - dev-db/sqlcipher - dev-libs/grantlee:5 - >=dev-qt/qtconcurrent-${QTMIN}:5 - >=dev-qt/qtdbus-${QTMIN}:5 - >=dev-qt/qtdeclarative-${QTMIN}:5[widgets] - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtnetwork-${QTMIN}:5 - >=dev-qt/qtprintsupport-${QTMIN}:5 - >=dev-qt/qtscript-${QTMIN}:5 - >=dev-qt/qtsql-${QTMIN}:5= - >=dev-qt/qtsvg-${QTMIN}:5 - >=dev-qt/qtwebengine-${QTMIN}:5[widgets] - >=dev-qt/qtwidgets-${QTMIN}:5 - >=dev-qt/qtxml-${QTMIN}:5 - >=kde-frameworks/karchive-${KFMIN}:5 - >=kde-frameworks/kcompletion-${KFMIN}:5 - >=kde-frameworks/kconfig-${KFMIN}:5 - >=kde-frameworks/kconfigwidgets-${KFMIN}:5 - >=kde-frameworks/kcoreaddons-${KFMIN}:5 - >=kde-frameworks/kdbusaddons-${KFMIN}:5 - >=kde-frameworks/ki18n-${KFMIN}:5 - >=kde-frameworks/kiconthemes-${KFMIN}:5 - >=kde-frameworks/kio-${KFMIN}:5 - >=kde-frameworks/kitemviews-${KFMIN}:5 - >=kde-frameworks/knewstuff-${KFMIN}:5 - >=kde-frameworks/knotifications-${KFMIN}:5 - >=kde-frameworks/knotifyconfig-${KFMIN}:5 - >=kde-frameworks/kparts-${KFMIN}:5 - >=kde-frameworks/kservice-${KFMIN}:5 - >=kde-frameworks/ktextwidgets-${KFMIN}:5 - >=kde-frameworks/kwallet-${KFMIN}:5 - >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 - >=kde-frameworks/kxmlgui-${KFMIN}:5 - activities? ( >=kde-frameworks/kactivities-${KFMIN}:5 ) - kde? ( >=kde-frameworks/krunner-${KFMIN}:5 ) - ofx? ( dev-libs/libofx:= ) -" -DEPEND="${COMMON_DEPEND} - >=kde-frameworks/kguiaddons-${KFMIN}:5 - >=kde-frameworks/kjobwidgets-${KFMIN}:5 - >=kde-frameworks/kwindowsystem-${KFMIN}:5 -" -RDEPEND="${COMMON_DEPEND} - >=dev-qt/qtquickcontrols-${QTMIN}:5 -" - -# hangs + installs files (also requires KF5DesignerPlugin) -RESTRICT+=" test" - -src_configure() { - local mycmakeargs=( - -DSKG_WEBENGINE=ON - -DSKG_DESIGNER=OFF - $(cmake_use_find_package activities KF5Activities) - $(cmake_use_find_package kde KF5Runner) - $(cmake_use_find_package ofx LibOfx) - -DSKG_BUILD_TEST=$(usex test) - ) - - ecm_src_configure -} - -src_test() { - local mycmakeargs=( - -DSKG_BUILD_TEST=ON - ) - ecm_src_test -} diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index 958f1e77afbc..df5b4f746216 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/ghostscript-gpl/metadata.xml b/app-text/ghostscript-gpl/metadata.xml index 61a1c44676ca..c9e62ab6ebfe 100644 --- a/app-text/ghostscript-gpl/metadata.xml +++ b/app-text/ghostscript-gpl/metadata.xml @@ -1,6 +1,10 @@ + + codec@gentoo.org + Gentoo Codec Project + printing@gentoo.org Gentoo Printing Project diff --git a/app-text/scdoc/scdoc-1.11.1.ebuild b/app-text/scdoc/scdoc-1.11.1.ebuild index cb6340289500..8c4bd7440b60 100644 --- a/app-text/scdoc/scdoc-1.11.1.ebuild +++ b/app-text/scdoc/scdoc-1.11.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -13,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="~amd64 ~arm64 ~ppc64 ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" fi LICENSE="MIT" diff --git a/app-text/xapian-omega/xapian-omega-1.4.18.ebuild b/app-text/xapian-omega/xapian-omega-1.4.18.ebuild index 5225e3e64c6c..6623cc6dbeba 100644 --- a/app-text/xapian-omega/xapian-omega-1.4.18.ebuild +++ b/app-text/xapian-omega/xapian-omega-1.4.18.ebuild @@ -13,7 +13,7 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="" -DEPEND="dev-libs/xapian:0/30 +DEPEND="~dev-libs/xapian-1.4.18:0/30 dev-lang/perl dev-libs/libpcre sys-libs/zlib" diff --git a/dev-db/Manifest.gz b/dev-db/Manifest.gz index 27839c3ab85b..c414a2c385ca 100644 Binary files a/dev-db/Manifest.gz and b/dev-db/Manifest.gz differ diff --git a/dev-db/mysql-connector-c/files/mysql-connector-c-8.0.18-always-build-decompress-utilities.patch b/dev-db/mysql-connector-c/files/mysql-connector-c-8.0.18-always-build-decompress-utilities.patch deleted file mode 100644 index af0b31e89a3e..000000000000 --- a/dev-db/mysql-connector-c/files/mysql-connector-c-8.0.18-always-build-decompress-utilities.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- a/utilities/CMakeLists.txt -+++ b/utilities/CMakeLists.txt -@@ -110,21 +110,16 @@ MYSQL_ADD_EXECUTABLE(perror - DEPENDENCIES GenError - LINK_LIBRARIES mysys - ) --IF(BUILD_BUNDLED_LZ4) -- MYSQL_ADD_EXECUTABLE(lz4_decompress -- lz4_decompress.cc -- COMPONENT Server -- LINK_LIBRARIES ${LZ4_LIBRARY} mysys -- ) --ENDIF() -- --IF(BUILD_BUNDLED_ZLIB OR NOT OPENSSL_EXECUTABLE_HAS_ZLIB) -- MYSQL_ADD_EXECUTABLE(zlib_decompress -- zlib_decompress.cc -- COMPONENT Server -- LINK_LIBRARIES ${ZLIB_LIBRARY} mysys -- ) --ENDIF() -+MYSQL_ADD_EXECUTABLE(lz4_decompress -+ lz4_decompress.cc -+ COMPONENT Server -+ LINK_LIBRARIES ${LZ4_LIBRARY} mysys -+ ) -+MYSQL_ADD_EXECUTABLE(zlib_decompress -+ zlib_decompress.cc -+ COMPONENT Server -+ LINK_LIBRARIES ${ZLIB_LIBRARY} mysys -+ ) - - # All targets below belong to COMPONENT Server and depend on InnoDB. - IF(WITHOUT_SERVER) diff --git a/dev-db/mysql-connector-c/files/mysql-connector-c-8.0.21-survive-malformed-charset-files.patch b/dev-db/mysql-connector-c/files/mysql-connector-c-8.0.21-survive-malformed-charset-files.patch deleted file mode 100644 index 72799f009c89..000000000000 --- a/dev-db/mysql-connector-c/files/mysql-connector-c-8.0.21-survive-malformed-charset-files.patch +++ /dev/null @@ -1,18 +0,0 @@ -Description: don't crash on malformed charset files -Origin: https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1877504/comments/19 -Bug: https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1884809 -Bug: https://bugs.gentoo.org/737002 -Forwarded: workaround, not needed - ---- a/mysys/charset.cc -+++ b/mysys/charset.cc -@@ -922,7 +922,7 @@ size_t escape_quotes_for_mysql(CHARSET_I - - void charset_uninit() { - for (CHARSET_INFO *cs : all_charsets) { -- if (cs && cs->coll->uninit) { -+ if (cs && cs->coll && cs->coll->uninit) { - cs->coll->uninit(cs); - } - } - diff --git a/dev-db/mytop/files/mytop-1.6-getopt-long-2.38-fixup.patch b/dev-db/mytop/files/mytop-1.6-getopt-long-2.38-fixup.patch deleted file mode 100644 index b911f9067baa..000000000000 --- a/dev-db/mytop/files/mytop-1.6-getopt-long-2.38-fixup.patch +++ /dev/null @@ -1,14 +0,0 @@ -Getopt-Long-2.38 is stricter about what it allows. - -diff -Nuar mytop-1.6.orig/mytop mytop-1.6/mytop ---- mytop-1.6.orig/mytop 2009-04-10 00:47:31.007111359 -0700 -+++ mytop-1.6/mytop 2009-04-10 00:50:39.875391905 -0700 -@@ -153,7 +153,7 @@ - "idle|i" => \$config{idle}, - "resolve|r" => \$config{resolve}, - "prompt!" => \$config{prompt}, -- "long|!" => \$config{long_nums}, -+ "long!" => \$config{long_nums}, - "mode|m=s" => \$config{mode}, - "sort=s" => \$config{sort}, - ); diff --git a/dev-db/mytop/files/mytop-1.6-global-status.patch b/dev-db/mytop/files/mytop-1.6-global-status.patch deleted file mode 100644 index ae75ac7867af..000000000000 --- a/dev-db/mytop/files/mytop-1.6-global-status.patch +++ /dev/null @@ -1,103 +0,0 @@ -Use GLOBAL STATUS instead of implicit session status. - -As of MySQL-5.0.72, many of the status variables split for session and global -variants. Importantly, the Com_* and Questions ones did, and this broke the -statistics at the top of mytop. - -Signed-off-by: Robin H. Johnson -MySQL-Bug: 41131 -MySQL-Bug-URL: http://bugs.mysql.com/bug.php?id=41131 - -diff -Nuar --exclude '*~' mytop-1.6.orig/mytop mytop-1.6/mytop ---- mytop-1.6.orig/mytop 2007-02-16 20:57:46.000000000 -0800 -+++ mytop-1.6/mytop 2008-11-30 15:18:05.818845253 -0800 -@@ -98,7 +98,7 @@ - my %qcache = (); ## The query cache--used for full query info support. - my %ucache = (); ## The user cache--used for full killing by user - my %dbcache = (); ## The db cache. This should be merged at some point. --my %statcache = (); ## The show status cache for GetShowStatus() -+my %statcache = (); ## The show global status cache for GetShowStatus() - - my (%STATUS, %OLD_STATUS); # header stuff. - -@@ -710,7 +710,7 @@ - ## - if ($config{header}) - { -- my @recs = Hashes("show status"); -+ my @recs = Hashes("show global status"); - - ## if the server died or we lost connectivity - if (not @recs) -@@ -755,7 +755,7 @@ - - ## Query Cache info - ## -- ## mysql> show status like 'qcache%'; -+ ## mysql> show global status like 'qcache%'; - ## +-------------------------+----------+ - ## | Variable_name | Value | - ## +-------------------------+----------+ -@@ -1064,7 +1064,7 @@ - - sub GetQPS() - { -- my($data) = Hashes('SHOW STATUS LIKE "Questions"'); -+ my($data) = Hashes('SHOW GLOBAL STATUS LIKE "Questions"'); - my $num = $data->{Value}; - - if (not defined $questions) ## first time? -@@ -1126,7 +1126,7 @@ - } - - # Variable_name and Value pairs come back... -- my @data = Hashes("SHOW STATUS LIKE 'Com_%'"); -+ my @data = Hashes("SHOW GLOBAL STATUS LIKE 'Com_%'"); - my %cmd_data; - my %cmd_delta; - my %cmd_pct; -@@ -1216,7 +1216,7 @@ - sub GetShowStatus() - { - Clear() unless $config{batchmode}; -- my @rows = Hashes("SHOW STATUS"); -+ my @rows = Hashes("SHOW GLOBAL STATUS"); - - printf "%32s %10s %10s\n", 'Counter', 'Total', 'Change'; - printf "%32s %10s %10s\n", '-------', '-----', '------'; -@@ -1543,7 +1543,7 @@ - - And you obviously need access to a MySQL server (version 3.22.x or - 3.23.x) with the necessary security to run the I and --I commands. -+I commands. - - If you are a Windows user, using ActiveState's Perl, you can use PPM - (the Perl Package Manager) to install the MySQL and Term::ReadKey -@@ -1599,7 +1599,7 @@ - notice features from each of them here. - - B will connect to a MySQL server and periodically run the --I and I commands and attempt to -+I and I commands and attempt to - summarize the information from them in a useful format. - - =head2 The Display -@@ -1817,7 +1817,7 @@ - - =item B - --Show "command counters" based on the Com_* values in SHOW STATUS. -+Show "command counters" based on the Com_* values in SHOW GLOBAL STATUS. - This is a new feature. Feedback welcome. - - =item B -@@ -1904,7 +1904,7 @@ - - Some performance information is not available when talking to a - version 3.22.x MySQL server. Additional information (about threads --mostly) was added to the output of I in MySQL 3.23.x and -+mostly) was added to the output of I in MySQL 3.23.x and - B makes use of it. If the information is not available, you - will simply see zeros where the real numbers should be. - diff --git a/dev-db/mytop/files/mytop-1.6-queries-vs-questions-mysql-5.0.76.patch b/dev-db/mytop/files/mytop-1.6-queries-vs-questions-mysql-5.0.76.patch deleted file mode 100644 index f1e139fe7471..000000000000 --- a/dev-db/mytop/files/mytop-1.6-queries-vs-questions-mysql-5.0.76.patch +++ /dev/null @@ -1,72 +0,0 @@ -In MySQL 5.0.72 the Questions variable was changed to only contain the number -of client-initiated queries, NOT the number of overall queries. This caused -problems with the select/insert/update/delete percentages because Com_* was -still based on the overall queries. - -MySQL 5.0.76 introduced a new variable 'Queries' with the behavior of the old -Questions variable. - -Signed-off-by: Robin H. Johnson -MySQL-Bug: 41131 -MySQL-Bug-URL: http://bugs.mysql.com/?id=41131 - -==== -Revision 2: -The first revision missed changing the instances of $OLD_STATUS{Questions}. - -diff -Nuar mytop-1.6.orig/mytop mytop-1.6/mytop ---- mytop-1.6.orig/mytop 2009-02-14 17:28:38.696187159 -0800 -+++ mytop-1.6/mytop 2009-02-14 17:36:31.192890507 -0800 -@@ -800,8 +800,15 @@ - - ## Queries per second... - -- my $avg_queries_per_sec = sprintf("%.2f", $STATUS{Questions} / $STATUS{Uptime}); -- my $num_queries = $STATUS{Questions}; -+ my ($num_queries, $old_num_queries); -+ if(defined($STATUS{Queries})) { -+ $num_queries = $STATUS{Queries}; -+ $old_num_queries = $OLD_STATUS{Queries}; -+ } else { -+ $num_queries = $STATUS{Questions}; -+ $old_num_queries = $OLD_STATUS{Questions}; -+ } -+ my $avg_queries_per_sec = sprintf("%.2f", $num_queries / $STATUS{Uptime}); - - my @t = localtime(time); - -@@ -820,25 +827,25 @@ - - - printf " Queries: %-5s qps: %4.0f Slow: %7s Se/In/Up/De(%%): %02.0f/%02.0f/%02.0f/%02.0f \n", -- make_short( $STATUS{Questions} ), # q total -- $STATUS{Questions} / $STATUS{Uptime}, # qps, average -+ make_short( $num_queries ), # q total -+ $num_queries / $STATUS{Uptime}, # qps, average - make_short( $STATUS{Slow_queries} ), # slow - - # hmm. a Qcache hit is really a select and should be counted. -- 100 * ($STATUS{Com_select} + ($STATUS{Qcache_hits}||0) ) / $STATUS{Questions}, -- 100 * ($STATUS{Com_insert} + $STATUS{Com_replace} ) / $STATUS{Questions}, -- 100 * ($STATUS{Com_update} ) / $STATUS{Questions}, -- 100 * $STATUS{Com_delete} / $STATUS{Questions}; -+ 100 * ($STATUS{Com_select} + ($STATUS{Qcache_hits}||0) ) / $num_queries, -+ 100 * ($STATUS{Com_insert} + $STATUS{Com_replace} ) / $num_queries, -+ 100 * ($STATUS{Com_update} ) / $num_queries, -+ 100 * $STATUS{Com_delete} / $num_queries; - - $lines_left--; - - if ($t_delta) - { -- my $q_diff = ( $STATUS{Questions} - $OLD_STATUS{Questions} ); --# print("q_diff: $STATUS{Questions} - $OLD_STATUS{Questions} / $t_delta = $q_diff\n"); -+ my $q_diff = ( $num_queries - $old_num_queries ); -+# print("q_diff: $num_queries - $old_num_queries / $t_delta = $q_diff\n"); - - printf(" qps now: %4.0f Slow qps: %3.1f Threads: %4.0f (%4.0f/%4.0f) %02.0f/%02.0f/%02.0f/%02.0f \n", -- ( $STATUS{Questions} - $OLD_STATUS{Questions} ) / $t_delta, -+ ( $num_queries - $old_num_queries ) / $t_delta, - ( # slow now (qps) - ($STATUS{Slow_queries} ) ? - ( $STATUS{Slow_queries} - $OLD_STATUS{Slow_queries} ) / $t_delta : diff --git a/dev-db/percona-server/files/my.cnf.distro-client b/dev-db/percona-server/files/my.cnf.distro-client deleted file mode 100644 index a5a0dcb0c16a..000000000000 --- a/dev-db/percona-server/files/my.cnf.distro-client +++ /dev/null @@ -1,21 +0,0 @@ -# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/50-distro-client.cnf: The global mysql configuration file. - -# The following options will be passed to all MySQL clients -[client] -socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock -character-sets-dir = @GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets -loose-default-character-set=utf8 - -[mysql] -# uncomment the next directive if you are not familiar with SQL -#safe-updates - -[mysqldump] -quick -max_allowed_packet = 16M - -[myisamchk] -character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets - -[myisampack] -character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets diff --git a/dev-db/percona-server/files/my.cnf.distro-server b/dev-db/percona-server/files/my.cnf.distro-server deleted file mode 100644 index d4ed30c1f089..000000000000 --- a/dev-db/percona-server/files/my.cnf.distro-server +++ /dev/null @@ -1,28 +0,0 @@ -# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/50-distro-server.cnf: The global mysql configuration file. - -# add a section [mysqld-4.1] or [mysqld-5.0] for specific configurations -[mysqld] -character-set-server = utf8 -user = mysql -port = 3306 -socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock -pid-file = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysql.pid -log-error = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysqld.err -basedir = @GENTOO_PORTAGE_EPREFIX@/usr -datadir = @DATADIR@ -skip-external-locking -lc_messages_dir = @GENTOO_PORTAGE_EPREFIX@/usr/share/mysql -#Set this to your desired error message language -lc_messages = en_US - -# security: -# using "localhost" in connects uses sockets by default -# skip-networking -bind-address = 127.0.0.1 - -log-bin -server-id = 1 - -# point the following paths to different dedicated disks -tmpdir = @GENTOO_PORTAGE_EPREFIX@/tmp/ -#log-update = @GENTOO_PORTAGE_EPREFIX@/path-to-dedicated-directory/hostname diff --git a/dev-embedded/Manifest.gz b/dev-embedded/Manifest.gz index 158ff37e4bbe..f7104e676456 100644 Binary files a/dev-embedded/Manifest.gz and b/dev-embedded/Manifest.gz differ diff --git a/dev-embedded/rpi-eeprom/rpi-eeprom-11.0_p1.ebuild b/dev-embedded/rpi-eeprom/rpi-eeprom-11.0_p1.ebuild index c34a558630a7..da82af022728 100644 --- a/dev-embedded/rpi-eeprom/rpi-eeprom-11.0_p1.ebuild +++ b/dev-embedded/rpi-eeprom/rpi-eeprom-11.0_p1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,7 +17,7 @@ S="${WORKDIR}" SLOT="0" LICENSE="BSD rpi-eeprom" -KEYWORDS="~arm ~arm64" +KEYWORDS="~arm arm64" REQUIRED_USE="${PYTHON_REQUIRED_USE}" BDEPEND="sys-apps/help2man" diff --git a/dev-games/Manifest.gz b/dev-games/Manifest.gz index b65c32b8a2ec..baa1d593d7e4 100644 Binary files a/dev-games/Manifest.gz and b/dev-games/Manifest.gz differ diff --git a/dev-games/simgear/Manifest b/dev-games/simgear/Manifest index 5662c13e1568..ef72d263f361 100644 --- a/dev-games/simgear/Manifest +++ b/dev-games/simgear/Manifest @@ -1 +1 @@ -DIST simgear-2020.1.2.tar.bz2 1393059 BLAKE2B 62fa15d88368177e23cf52edf51e8c56252399d8f2661e518911c1093a0d7f9f11069da8d65b479f2d4b45792dcd011194e57fa99ac3991f749e8196aaff9552 SHA512 c2e835de471f374a6c33cfd1769b7079d178ee66075bfe87cc9eb1f06dc2648db93c31f62f0ac7a664703406817cb1e909a531812cb76c99cd8751eb7e6782e7 +DIST simgear-2020.3.6.tar.bz2 1408963 BLAKE2B 55583e9a7463bb16bfa2ff6bbcd60b8160adf57246b3820371cd262a7376425fbed75ecc18396782eb9e62ddf540c352ad3417d38cf62c42e2a24b9439da958a SHA512 eaa8e3663c5fb486ea0fdad26c490fa49472596157d8d19e60426d5a1d340dfda4e5e3d82f68542bb6d9689abb8e867dc33761ea578b9c8f6c07aeb4b942880e diff --git a/dev-games/simgear/files/simgear-2020.1.2-boost.patch b/dev-games/simgear/files/simgear-2020.1.2-boost.patch deleted file mode 100644 index d28853cb3811..000000000000 --- a/dev-games/simgear/files/simgear-2020.1.2-boost.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -227,7 +227,7 @@ - endif() - - find_package(Boost REQUIRED) --set (BOOST_CXX_FLAGS "-DBOOST_BIMAP_DISABLE_SERIALIZATION") -+set (BOOST_CXX_FLAGS "-DBOOST_BIMAP_DISABLE_SERIALIZATION -DBOOST_NO_STDLIB_CONFIG") - include(BoostTestTargets) - - if(SIMGEAR_HEADLESS) diff --git a/dev-games/simgear/simgear-2020.1.2.ebuild b/dev-games/simgear/simgear-2020.3.6.ebuild similarity index 88% rename from dev-games/simgear/simgear-2020.1.2.ebuild rename to dev-games/simgear/simgear-2020.3.6.ebuild index c8ea38b80be6..27e64f9ebd30 100644 --- a/dev-games/simgear/simgear-2020.1.2.ebuild +++ b/dev-games/simgear/simgear-2020.3.6.ebuild @@ -35,7 +35,6 @@ RDEPEND="${COMMON_DEPEND} PATCHES=( "${FILESDIR}/${PN}-2019.1.1-gdal3.patch" - "${FILESDIR}/${P}-boost.patch" "${FILESDIR}/${PN}-2020.1.2-do-not-assume-libc++-clang.patch" ) @@ -54,8 +53,7 @@ src_configure() { -DENABLE_OPENMP=$(usex openmp) -DENABLE_PKGUTIL=ON -DENABLE_RTI=OFF - -DENABLE_SIMD=OFF # see CPU_FLAGS - -DENABLE_SIMD_CODE=$(usex cpu_flags_x86_sse2) + -DENABLE_SIMD=$(usex cpu_flags_x86_sse2) -DENABLE_SOUND=ON -DENABLE_TESTS=$(usex test) -DSIMGEAR_HEADLESS=OFF @@ -65,10 +63,5 @@ src_configure() { -DUSE_AEONWAVE=OFF -DOSG_FSTREAM_EXPORT_FIXED=OFF # TODO perhaps track it ) - - if use cpu_flags_x86_sse2; then - append-flags -msse2 -mfpmath=sse - fi - cmake_src_configure } diff --git a/dev-games/simgear/simgear-9999.ebuild b/dev-games/simgear/simgear-9999.ebuild index e4fa4059f41d..edb882cd32f0 100644 --- a/dev-games/simgear/simgear-9999.ebuild +++ b/dev-games/simgear/simgear-9999.ebuild @@ -37,6 +37,7 @@ RDEPEND="${COMMON_DEPEND} PATCHES=( "${FILESDIR}/${PN}-2019.1.1-gdal3.patch" + "${FILESDIR}/${PN}-2020.1.2-do-not-assume-libc++-clang.patch" ) pkg_pretend() { @@ -54,8 +55,7 @@ src_configure() { -DENABLE_OPENMP=$(usex openmp) -DENABLE_PKGUTIL=ON -DENABLE_RTI=OFF - -DENABLE_SIMD=OFF # see CPU_FLAGS - -DENABLE_SIMD_CODE=$(usex cpu_flags_x86_sse2) + -DENABLE_SIMD=$(usex cpu_flags_x86_sse2) -DENABLE_SOUND=ON -DENABLE_TESTS=$(usex test) -DSIMGEAR_HEADLESS=OFF @@ -65,10 +65,5 @@ src_configure() { -DUSE_AEONWAVE=OFF -DOSG_FSTREAM_EXPORT_FIXED=OFF # TODO perhaps track it ) - - if use cpu_flags_x86_sse2; then - append-flags -msse2 -mfpmath=sse - fi - cmake_src_configure } diff --git a/dev-java/Manifest.gz b/dev-java/Manifest.gz index e549ac86b323..46003c793fcb 100644 Binary files a/dev-java/Manifest.gz and b/dev-java/Manifest.gz differ diff --git a/dev-java/eclipsito/files/eclipsito-0_pre20130713-build.xml b/dev-java/eclipsito/files/eclipsito-0_pre20130713-build.xml deleted file mode 100644 index c6055e5525c3..000000000000 --- a/dev-java/eclipsito/files/eclipsito-0_pre20130713-build.xml +++ /dev/null @@ -1,36 +0,0 @@ -diff --git a/build.xml b/build.xml -index d89485a..7be5431 100644 ---- a/build.xml -+++ b/build.xml -@@ -17,4 +17,31 @@ - - - -+ -+ -+ -+ -+ - diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz index 0648f1ad45aa..6c437a725a6c 100644 Binary files a/dev-lang/Manifest.gz and b/dev-lang/Manifest.gz differ diff --git a/dev-lang/perl/Manifest b/dev-lang/perl/Manifest index 31450f944336..5741964b2b2a 100644 --- a/dev-lang/perl/Manifest +++ b/dev-lang/perl/Manifest @@ -3,5 +3,6 @@ DIST perl-5.30.3-patches-1.tar.xz 20292 BLAKE2B 34ca8dbdf08650deaaa59bba634c3a40 DIST perl-5.30.3.tar.xz 12375128 BLAKE2B ff0668c896e46ea35a1b8bd4a7d800c8668d6995185cd8c43fca332da2fa63965bb5276b2d5cf9738c0b7fb735140f6e33f1b4582899017903f86753065f417b SHA512 0ea62cf17532ee99217a218c39aa530472857c7a1982494f3a01693683062b4cdebe383a79f7b64452c713337b554ed5e0fd6eda018ea29e83c3538a13c24f3c DIST perl-5.32.0-patches-1.tar.xz 20220 BLAKE2B 46ebca5c74f59aa935ceec2a5807426c0e653ad7ba27de441d26e049e62dc67b17d58dfe5755f31bdd157e349d47fd46a98699207729f8f4f747930ed1064ba2 SHA512 42ed00f5f6be40af59e02691ff439a048cccd96fb970cca0976209faa921af98a773cc4cb1466e164328350d58cb46950ffa8c6f2fddabbeb3e8819349b06849 DIST perl-5.32.0.tar.xz 12717336 BLAKE2B 4abad9f1ddabaad5f2bbfe8ab6d061aeb8c558e458d4bf1bcf737a8ecc1cf20f7dffaddd0bc867578b457787ec284fa81be3fae1edd7f72d58aeec7b5cd744e5 SHA512 1540247415893bbd94dfeede7b4fba6052688dc0bf27ced817f448246fcdc6e9a6486abc34577dec5b00bf02ed607b2d24ccd4977c3b3c51e8e6edfc0b81c760 +DIST perl-5.32.1.tar.xz 12610988 BLAKE2B 9f89bcf9cffb245a0f2cb0afa17c25f092c84cc2f29bb1c744294c2f0393c72dc3beb9fcbe256cf252677b33bc594b294b3f6a4774ad9e30b771aceed1f4f147 SHA512 3443c75aea91f0fe3712fee576239f1946d2301b8f7390b690e2f5d070fe71af8f9fa7769e42086c2d33d5f84370f80368fa9350b4f10cc0ac3e6c1f6209d8f9 DIST perl-cross-1.3.2.tar.gz 108350 BLAKE2B ddb352fdbec66a04de62425f5cae1aaa3bc7251b9d6f4837b66a0bd79c53c60212fad3997dad4c38055774a2769d45b5b83927bf48b0fb00a130fee429eba702 SHA512 d61d25066a8d87c34aeacc5b9bd86fab964b33c4c65e84a89e4077fe1d8011c0bdf810a304631af44fae32edcffd6c99fc17b0c584ea83d1ce5ce492aaedfea5 DIST perl-cross-1.3.4.tar.gz 108461 BLAKE2B 28f207d235f51ebf681598cf85f7f16923574aafb593426a59d67578135ee3632efb12b9e1a672759195a79f80e49f5c929ec42b2b4571b1d36f5d8c8dceadc2 SHA512 7e1fc7b2b19d8c2e2fb8615e074e218b2e1a4d276b563ffabccfd0c7398bc8680fca96da89cc61d611993f38a2c67dfbb0201c58658e05437395ad8c00d31874 diff --git a/dev-lang/perl/perl-5.32.1.ebuild b/dev-lang/perl/perl-5.32.1.ebuild new file mode 100644 index 000000000000..73933f140243 --- /dev/null +++ b/dev-lang/perl/perl-5.32.1.ebuild @@ -0,0 +1,821 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit alternatives flag-o-matic toolchain-funcs multilib multiprocessing + +PATCH_VER=1 +CROSS_VER=1.3.4 +PATCH_BASE="perl-5.32.0-patches-${PATCH_VER}" +PATCH_DEV=kentnl + +DIST_AUTHOR=XSAWYERX + +# Greatest first, don't include yourself +# Devel point-releases are not ABI-intercompatible, but stable point releases are +# BIN_OLDVERSEN is contains only C-ABI-intercompatible versions +PERL_BIN_OLDVERSEN="" + +# Yes we can. +PERL_SINGLE_SLOT=y + +if [[ "${PV##*.}" == "9999" ]]; then + DIST_VERSION=5.30.0 +else + DIST_VERSION="${PV/_rc/-RC}" +fi +SHORT_PV="${DIST_VERSION%.*}" +# Even numbered major versions are ABI intercompatible +# Odd numbered major versions are not +if [[ $(( ${SHORT_PV#*.} % 2 )) == 1 ]]; then + SUBSLOT="${DIST_VERSION%-RC*}" +else + SUBSLOT="${DIST_VERSION%.*}" +fi +# Used only in tar paths +MY_P="perl-${DIST_VERSION}" +# Used in library paths +MY_PV="${DIST_VERSION%-RC*}" + +DESCRIPTION="Larry Wall's Practical Extraction and Report Language" + +SRC_URI=" + mirror://cpan/src/5.0/${MY_P}.tar.xz + mirror://cpan/authors/id/${DIST_AUTHOR:0:1}/${DIST_AUTHOR:0:2}/${DIST_AUTHOR}/${MY_P}.tar.xz + https://github.com/gentoo-perl/perl-patchset/releases/download/${PATCH_BASE}/${PATCH_BASE}.tar.xz + https://dev.gentoo.org/~${PATCH_DEV}/distfiles/${PATCH_BASE}.tar.xz + https://github.com/arsv/perl-cross/releases/download/${CROSS_VER}/perl-cross-${CROSS_VER}.tar.gz +" +HOMEPAGE="https://www.perl.org/" + +LICENSE="|| ( Artistic GPL-1+ )" +SLOT="0/${SUBSLOT}" + +if [[ "${PV##*.}" != "9999" ]] && [[ "${PV/rc//}" == "${PV}" ]] ; then +# SOMEWHAT EXPERIMENTAL CODE, DO NOT USE WITHOUT AN ADULT PRESENT, CHECK CHANGELOG +# FOR DETAILS +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +fi + +IUSE="berkdb debug doc gdbm ithreads minimal" + +RDEPEND=" + berkdb? ( sys-libs/db:= ) + gdbm? ( >=sys-libs/gdbm-1.8.3:= ) + app-arch/bzip2 + sys-libs/zlib + virtual/libcrypt:= +" +DEPEND="${RDEPEND}" +BDEPEND="${RDEPEND}" + +PDEPEND=" + !minimal? ( + >=app-admin/perl-cleaner-2.5 + >=virtual/perl-File-Temp-0.230.400-r2 + >=virtual/perl-Data-Dumper-2.154.0 + virtual/perl-Test-Harness + ) +" +# bug 390719, bug 523624 +# virtual/perl-Test-Harness is here for the bundled ExtUtils::MakeMaker + +S="${WORKDIR}/${MY_P}" + +dual_scripts() { + src_remove_dual perl-core/Archive-Tar 2.360.0 ptar ptardiff ptargrep + src_remove_dual perl-core/CPAN 2.270.0 cpan + src_remove_dual perl-core/Digest-SHA 6.20.0 shasum + src_remove_dual perl-core/Encode 3.60.0 enc2xs piconv + src_remove_dual perl-core/ExtUtils-MakeMaker 7.440.0 instmodsh + src_remove_dual perl-core/ExtUtils-ParseXS 3.400.0 xsubpp + src_remove_dual perl-core/IO-Compress 2.93.0 zipdetails + src_remove_dual perl-core/JSON-PP 4.40.0 json_pp + src_remove_dual perl-core/Module-CoreList 5.202.101.23 corelist + src_remove_dual perl-core/Pod-Checker 1.730.0 podchecker + src_remove_dual perl-core/Pod-Perldoc 3.280.100 perldoc + src_remove_dual perl-core/Pod-Usage 1.690.0 pod2usage + src_remove_dual perl-core/Test-Harness 3.420.0 prove + src_remove_dual perl-core/podlators 4.140.0 pod2man pod2text + src_remove_dual_man perl-core/podlators 4.140.0 /usr/share/man/man1/perlpodstyle.1 +} + +check_rebuild() { + # Fresh install + if [[ -z "${REPLACING_VERSIONS}" ]]; then + return 0; + # Major Upgrade + # doesn't matter if there's multiple copies, it still needs a rebuild + # if the string is anything other than "5.CURRENTMAJOR" + elif [[ "${REPLACING_VERSIONS%.*}" != "${PV%.*}" ]]; then + echo "" + ewarn "UPDATE THE PERL MODULES:" + ewarn "After updating dev-lang/perl the installed Perl modules" + ewarn "have to be re-installed. In most cases, this is done automatically" + ewarn "by the package manager, but subsequent steps are still recommended" + ewarn "to ensure system consistency." + ewarn + ewarn "You should start with a depclean to remove any unused perl dependencies" + ewarn "that may confuse portage in future. Regular depcleans are also encouraged" + ewarn "as part of your regular update cycle, as that will keep perl upgrades working." + ewarn "Recommended: emerge --depclean -va" + ewarn + ewarn "You should then call perl-cleaner to clean up any old files and trigger any" + ewarn "remaining rebuilds portage may have missed." + ewarn "Use: perl-cleaner --all" + return 0; + + # Reinstall w/ USE Change + elif ( use ithreads && ! has_version dev-lang/perl[ithreads] ) || \ + ( ! use ithreads && has_version dev-lang/perl[ithreads] ) || \ + ( use debug && ! has_version dev-lang/perl[debug] ) || \ + ( ! use debug && has_version dev-lang/perl[debug] ) ; then + echo "" + ewarn "TOGGLED USE-FLAGS WARNING:" + ewarn "You changed one of the use-flags ithreads or debug." + ewarn "You must rebuild all perl-modules installed." + ewarn "Use: perl-cleaner --modules ; perl-cleaner --force --libperl" + fi +} + +pkg_setup() { + case ${CHOST} in + *-freebsd*) osname="freebsd" ;; + *-dragonfly*) osname="dragonfly" ;; + *-netbsd*) osname="netbsd" ;; + *-openbsd*) osname="openbsd" ;; + *-darwin*) osname="darwin" ;; + *-solaris*) osname="solaris" ;; + *-cygwin*) osname="cygwin" ;; + *) osname="linux" ;; + esac + + myarch="${CHOST%%-*}-${osname}" + if use debug ; then + myarch+="-debug" + fi + if use ithreads ; then + mythreading="-multi" + myarch+="-thread" + fi + + PRIV_BASE="/usr/$(get_libdir)/perl5" + SITE_BASE="/usr/local/$(get_libdir)/perl5" + VENDOR_BASE="/usr/$(get_libdir)/perl5/vendor_perl" + + LIBPERL="libperl$(get_libname ${MY_PV} )" + + # This ENV var tells perl to build with a directory like "5.30" + # regardless of its patch version. This is for experts only + # at this point. + if [[ -z "${PERL_SINGLE_SLOT}" ]]; then + PRIV_LIB="${PRIV_BASE}/${MY_PV}" + ARCH_LIB="${PRIV_BASE}/${MY_PV}/${myarch}${mythreading}" + SITE_LIB="${SITE_BASE}/${MY_PV}" + SITE_ARCH="${SITE_BASE}/${MY_PV}/${myarch}${mythreading}" + VENDOR_LIB="${VENDOR_BASE}/${MY_PV}" + VENDOR_ARCH="${VENDOR_BASE}/${MY_PV}/${myarch}${mythreading}" + else + PRIV_LIB="${PRIV_BASE}/${SUBSLOT}" + ARCH_LIB="${PRIV_BASE}/${SUBSLOT}/${myarch}${mythreading}" + SITE_LIB="${SITE_BASE}/${SUBSLOT}" + SITE_ARCH="${SITE_BASE}/${SUBSLOT}/${myarch}${mythreading}" + VENDOR_LIB="${VENDOR_BASE}/${SUBSLOT}" + VENDOR_ARCH="${VENDOR_BASE}/${SUBSLOT}/${myarch}${mythreading}" + fi + + dual_scripts +} + +src_remove_dual_file() { + local i pkg ver + pkg="$1" + ver="$2" + shift 2 + case "${EBUILD_PHASE:-none}" in + postinst|postrm) + for i in "$@" ; do + alternatives_auto_makesym "${i}" "${i}-[0-9]*" + done + ;; + setup) + for i in "$@" ; do + if [[ -f ${EROOT}${i} && ! -h ${EROOT}${i} ]] ; then + has_version ${pkg} && ewarn "You must reinstall ${pkg} !" + break + fi + done + ;; + install) + for i in "$@" ; do + if ! [[ -f "${ED}"${i} ]] ; then + ewarn "${i} does not exist!" + continue + fi + mv "${ED}"${i}{,-${ver}-${P}} || die + done + ;; + esac +} + +src_remove_dual_man() { + local i pkg ver ff + pkg="$1" + ver="$2" + shift 2 + case "${EBUILD_PHASE:-none}" in + postinst|postrm) + for i in "$@" ; do + ff=`echo "${EROOT}${i%.[0-9]}-${ver}-${P}${i#${i%.[0-9]}}"*` + ff=${ff##*${i#${i%.[0-9]}}} + alternatives_auto_makesym "${i}${ff}" "${i%.[0-9]}-[0-9]*" + done + ;; + install) + for i in "$@" ; do + if ! [[ -f "${ED}"${i} ]] ; then + ewarn "${i} does not exist!" + continue + fi + mv "${ED}"${i} "${ED}"${i%.[0-9]}-${ver}-${P}${i#${i%.[0-9]}} || die + done + ;; + esac +} + +src_remove_dual() { + local i pkg ver + pkg="$1" + ver="$2" + shift 2 + for i in "$@" ; do + src_remove_dual_file "${pkg}" "${ver}" "/usr/bin/${i}" + src_remove_dual_man "${pkg}" "${ver}" "/usr/share/man/man1/${i}.1" + done +} + +src_prepare_perlcross() { + cp -a ../perl-cross-${CROSS_VER}/* . || die + + # bug 604072 + MAKEOPTS+=" -j1" + export MAKEOPTS +} +src_prepare_dynamic() { + ln -s ${LIBPERL} libperl$(get_libname ${SHORT_PV}) || die + ln -s ${LIBPERL} libperl$(get_libname ) || die +} + +# Copy a patch into the patch series +# add_patch SRC_PATH DEST_NAME ['description'] ['bug'] ['bug'] +# - description is optional, but recommended +# - all arguments after descriptions are bug URLs +add_patch() { + local patchdir="${WORKDIR}/patches" + local infodir="${WORKDIR}/patch-info" + local src_name dest_name desc + src_name="$1" + dest_name="$2" + desc="$3" + shift; shift; shift; + einfo "Adding ${dest_name} to patch bundle" + cp "${src_name}" "${patchdir}/${dest_name}" || die "Couldn't copy ${src_name} to ${dest_name}" + if [[ -n "${desc}" ]]; then + printf "%s" "${desc}" > "${infodir}/${dest_name}.desc" || die "Couldn't write ${dest_name}.desc" + fi + if [[ $# -gt 0 ]]; then + # Note: when $@ is more than one element, this emits a + # line for each element + printf "%s\n" "$@" > "${infodir}/${dest_name}.bugs" || die "Couldn't write ${dest_name}.bugs" + fi +} +# Remove a patch using a glob expr +# eg: +# rm_patch *-darin-Use-CC* +# +rm_patch() { + local patchdir="${WORKDIR}/patches" + local expr="$1" + local patch="$( cd "${patchdir}"; echo $expr )" + einfo "Removing $patch ($expr) from patch bundle" + if [[ -e "${patchdir}/${patch}" ]]; then + rm -f "${patchdir}/${patch}" || die "Can't remove ${patch} ( $expr )" + else + ewarn "No ${expr} found in ${patchdir} to remove" + fi +} +# Yes, this is a reasonable amount of code for something seemingly simple +# but this is far easier to debug when things go wrong, and things went wrong +# multiple times while I was getting the exact number of slashes right, which +# requires circumnavigating both bash and sed escape mechanisms. +c_escape_string() { + local slash dquote + slash='\' + dquote='"' + re_slash="${slash}${slash}" + re_dquote="${slash}${dquote}" + + # Convert \ to \\, + # " to \" + echo "$1" |\ + sed "s|${re_slash}|${re_slash}${re_slash}|g" |\ + sed "s|${re_dquote}|${re_slash}${re_dquote}|g" +} +c_escape_file() { + c_escape_string "$(cat "$1")" +} + +apply_patchdir() { + local patchdir="${WORKDIR}/patches" + local infodir="${WORKDIR}/patch-info" + local patchoutput="patchlevel-gentoo.h" + + # Inject Patch-Level info into description for patchlevel.h patch + # to show in -V + local patch_expr="*List-packaged-patches*" + local patch="$( cd "${patchdir}"; echo $patch_expr )"; + einfo "Injecting patch-level info into ${patch}.desc ( $patch_expr )" + + if [[ -e "${patchdir}/${patch}" ]]; then + printf "List packaged patches for %s(%s) in patchlevel.h" "${PF}" "${PATCH_BASE}"\ + >"${infodir}/${patch}.desc" || die "Can't rewrite ${patch}.desc" + else + eerror "No $patch_expr found in ${patchdir}" + fi + + # Compute patch list to apply + # different name other than PATCHES to stop default + # reapplying it + # Single depth is currently only supported, as artifacts can reside + # from the old layout being multiple-directories, as well as it grossly + # simplifying the patchlevel_gentoo.h generation. + local PERL_PATCHES=($( + find "${patchdir}" -maxdepth 1 -mindepth 1 -type f -printf "%f\n" |\ + grep -E '[.](diff|patch)$' |\ + sort -n + )) + + for patch in "${PERL_PATCHES[@]}"; do + eapply "${WORKDIR}"/patches/${patch} + done + + einfo "Generating $patchoutput" + + # This code creates a header file, each iteration + # creates one-or-more-lines for each entry found in PERL_PATCHES + # and STDOUT is redirected to the .h file + for patch in "${PERL_PATCHES[@]}"; do + local desc_f="${infodir}/${patch}.desc" + local bugs_f="${infodir}/${patch}.bugs" + + printf ',"%s"\n' "${patch}" + if [[ ! -e "${desc_f}" ]]; then + ewarn "No description provided for ${patch} (expected: ${desc_f} )" + else + local desc="$(c_escape_file "${desc_f}")" + printf ',"- %s"\n' "${desc}" + fi + if [[ -e "${bugs_f}" ]]; then + while read -d $'\n' -r line; do + local esc_line="$(c_escape_string "${line}")" + printf ',"- Bug: %s"\n' "${esc_line}" + done <"${bugs_f}" + fi + done > "${S}/${patchoutput}" + printf "%s\n" "${patchoutput}" >> "${S}/MANIFEST" + +} +src_prepare() { + local patchdir="${WORKDIR}/patches" + + # Prepare Patch dir with additional patches / remove unwanted patches + # Inject bug/desc entries for perl -V + if use hppa ; then + # bug 634162 + add_patch "${FILESDIR}/${PN}-5.26.2-hppa.patch" "100-5.26.2-hppa.patch"\ + "Fix broken miniperl on hppa"\ + "https://bugs.debian.org/869122" "https://bugs.gentoo.org/634162" + fi + if [[ ${CHOST} == *-solaris* ]] ; then + # do NOT mess with nsl, on Solaris this is always necessary, + # when -lsocket is used e.g. to get h_errno + rm_patch "*-nsl-and-cl*" + fi + + apply_patchdir + + tc-is-cross-compiler && src_prepare_perlcross + + tc-is-static-only || src_prepare_dynamic + + if use gdbm; then + sed -i "s:INC => .*:INC => \"-I${EROOT}/usr/include/gdbm\":g" \ + ext/NDBM_File/Makefile.PL || die + fi + + # Use errno.h from prefix rather than from host system, bug #645804 + if use prefix && [[ -e "${EPREFIX}"/usr/include/errno.h ]] ; then + sed -i "/my..sysroot/s:'':'${EPREFIX}':" ext/Errno/Errno_pm.PL || die + fi + + if [[ ${CHOST} == *-solaris* ]] ; then + # set a soname, fix linking against just built libperl + sed -i -e 's/netbsd\*/netbsd*|solaris*/' Makefile.SH || die + fi + + if [[ ${CHOST} == *-darwin* ]] ; then + # fix install_name (soname) not to reference $D + sed -i -e '/install_name `pwd/s/`pwd`/\\$(shrpdir)/' Makefile.SH || die + + # Upstreamed, but not in this version. + # Need to recognise macOS 11 / 10.16. #757249 + eapply "${FILESDIR}/${PN}-5.30.3-darwin-macos11.patch" + fi + + default +} + +myconf() { + # the myconf array is declared in src_configure + myconf=( "${myconf[@]}" "$@" ) +} + +# Outputs a list of versions which have been seen in any of the +# primary perl @INC prefix paths, such as: +# /usr/lib64/perl5/ +# /usr/local/lib64/perl5/ +# /usr/lib64/perl5/vendor_perl/ +# +# All values of NUMBER must be like "5.x.y", unless PERL_SUPPORT_SINGLE_SLOT +# is enabled, where it will also allow numbers like "5.x" +# +# PERL_SUPPORT_SINGLE_SLOT should only be used to transition *away* from PERL_SINGLE_SLOT +# if you used that. +find_candidate_inc_versions() { + local regex='.*/5[.][0-9]+[.][0-9]+$'; + if [[ ! -z "${PERL_SUPPORT_SINGLE_SLOT}" || ! -z "${PERL_SINGLE_SLOT}" ]]; then + regex='.*/5[.][0-9]+\([.][0-9]+\|\)$' + fi + local dirs=( + "${EROOT}${PRIV_BASE}" + "${EROOT}${SITE_BASE}" + "${EROOT}${VENDOR_BASE}" + ) + for dir in "${dirs[@]}"; do + if [[ ! -e "${dir}" ]]; then + continue + fi + # Without access to readdir() on these dirs, find will not be able + # to reveal any @INC directories inside them, and will subsequently prune + # them from the built perl's @INC support, breaking our compatiblity options + # entirely. + if [[ ! -r "${dir}" || ! -x "${dir}" ]]; then + eerror "Bad permissions on ${dir}, this will probably break things" + eerror "Ensure ${dir} is +rx for at least uid=$EUID" + eerror "Recommended permission is +rx for all" + eerror "> chmod o+rx ${dir}" + fi + done + einfo "Scanning for old @INC dirs matching '$regex' in: ${dirs[*]}" + find "${dirs[@]}" -maxdepth 1 -mindepth 1 -type d -regex "${regex}" -printf "%f " 2>/dev/null +} +# Sort versions passed versiony-ly, remove self-version if present +# dedup. Takes each version as an argument +sanitize_inc_versions() { + local vexclude="${DIST_VERSION%-RC}" + if [[ ! -z "${PERL_SINGLE_SLOT}" ]]; then + vexclude="${SUBSLOT}" + fi + einfo "Normalizing/Sorting candidate list: $*" + einfo " to remove '${vexclude}'" + # Note, general numeric sort has to be used + # for the last component, or unique will convert + # 5.30.0 + 5.30 into just 5.30 + printf "%s\n" "$@" |\ + grep -vxF "${vexclude}" |\ + sort -u -nr -t'.' -k1,1rn -k2,2rn -k3,3rg +} + +versions_to_inclist() { + local oldv="${PERL_BIN_OLDVERSEN}" + if [[ ! -z "${PERL_SINGLE_SLOT}" ]]; then + oldv="${DIST_VERSION%-RC} ${PERL_BIN_OLDVERSEN}" + fi + for v; do + has "${v}" ${oldv} && echo -n "${v}/${myarch}${mythreading}/ "; + echo -n "${v}/ "; + done +} +versions_to_gentoolibdirs() { + local oldv="${PERL_BIN_OLDVERSEN}" + local root + local v + if [[ ! -z "${PERL_SINGLE_SLOT}" ]]; then + oldv="${DIST_VERSION%-RC} ${PERL_BIN_OLDVERSEN}" + fi + for v; do + for root in "${PRIV_BASE}" "${VENDOR_BASE}" "${SITE_BASE}"; do + local fullpath="${EROOT}${root}/${v}" + if [[ -e "${fullpath}" ]]; then + has "${v}" ${oldv} && printf "%s:" "${fullpath}/${myarch}${mythreading}"; + printf "%s:" "${fullpath}" + fi + done + done +} + +src_configure() { + declare -a myconf + + export LC_ALL="C" + [[ ${COLUMNS:-1} -ge 1 ]] || unset COLUMNS # bug #394091 + + # Perl has problems compiling with -Os in your flags with glibc + use elibc_uclibc || replace-flags "-Os" "-O2" + + # xlocale.h is going away in glibc-2.26, so it's counterproductive + # if we use it and include it in CORE/perl.h ... Perl builds just + # fine with glibc and locale.h only. + # However, the darwin prefix people have no locale.h ... + use elibc_glibc && myconf -Ui_xlocale + + # This flag makes compiling crash in interesting ways + filter-flags "-malign-double" + + # Generic LTO broken since 5.28, triggers EUMM failures + filter-flags "-flto" + + use sparc && myconf -Ud_longdbl + + export BUILD_BZIP2=0 + export BZIP2_INCLUDE=${EROOT}/usr/include + export BZIP2_LIB=${EROOT}/usr/$(get_libdir) + + export BUILD_ZLIB=False + export ZLIB_INCLUDE=${EROOT}/usr/include + export ZLIB_LIB=${EROOT}/usr/$(get_libdir) + + # allow either gdbm to provide ndbm (in ) or db1 + myndbm='U' + mygdbm='U' + mydb='U' + if use gdbm ; then + mygdbm='D' + if use berkdb ; then + myndbm='D' + fi + fi + if use berkdb ; then + mydb='D' + has_version '=sys-libs/db-1*' && myndbm='D' + fi + + myconf "-${myndbm}i_ndbm" "-${mygdbm}i_gdbm" "-${mydb}i_db" + + if use alpha && [[ "$(tc-getCC)" = "ccc" ]] ; then + ewarn "Perl will not be built with berkdb support, use gcc if you needed it..." + myconf -Ui_db -Ui_ndbm + fi + + use ithreads && myconf -Dusethreads + + if use debug ; then + append-cflags "-g" + myconf -DDEBUGGING + elif [[ ${CFLAGS} == *-g* ]] ; then + myconf -DDEBUGGING=-g + else + myconf -DDEBUGGING=none + fi + + # Autodiscover all old version directories, some of them will even be newer + # if you downgrade + if [[ -z ${PERL_OLDVERSEN} ]]; then + PERL_OLDVERSEN="$( find_candidate_inc_versions )" + fi + + # Fixup versions, removing self match, fixing order and dupes + PERL_OLDVERSEN="$( sanitize_inc_versions ${PERL_OLDVERSEN} )" + + # Experts who want a "Pure" install can set PERL_OLDVERSEN to an empty string + if [[ -n "${PERL_OLDVERSEN// }" ]]; then + local inclist="$( versions_to_inclist ${PERL_OLDVERSEN} )" + einfo "This version of perl may partially support modules previously" + einfo "installed in any of the following paths:" + for incpath in ${inclist}; do + [[ -e "${EROOT}${VENDOR_BASE}/${incpath}" ]] && einfo " ${EROOT}${VENDOR_BASE}/${incpath}" + [[ -e "${EROOT}${PRIV_BASE}/${incpath}" ]] && einfo " ${EROOT}${PRIV_BASE}/${incpath}" + [[ -e "${EROOT}${SITE_BASE}/${incpath}" ]] && einfo " ${EROOT}${SITE_BASE}/${incpath}" + done + einfo "This is a temporary measure and you should aim to cleanup these paths" + einfo "via world updates and perl-cleaner" + # myconf -Dinc_version_list="${inclist}" + myconf -Dgentoolibdirs="$( versions_to_gentoolibdirs ${PERL_OLDVERSEN} )" + fi + + [[ ${ELIBC} == "FreeBSD" ]] && myconf "-Dlibc=/usr/$(get_libdir)/libc.a" + + # Make sure we can do the final link #523730, need to set deployment + # target to override hardcoded 10.3 which breaks on modern OSX + [[ ${CHOST} == *-darwin* ]] && \ + myconf "-Dld=env MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET} $(tc-getCC)" + + # Older macOS with non-Apple GCC chokes on inline in system headers + # using c89 mode as injected by cflags.SH + [[ ${CHOST} == *-darwin* && ${CHOST##*darwin} -le 9 ]] && tc-is-gcc && \ + append-cflags -Dinline=__inline__ + + # flock on 32-bit sparc Solaris is broken, fall back to fcntl + [[ ${CHOST} == sparc-*-solaris* ]] && \ + myconf -Ud_flock + + # Prefix: the host system needs not to follow Gentoo multilib stuff, and in + # Prefix itself we don't do multilib either, so make sure perl can find + # something compatible. + if use prefix ; then + # Set a hook to check for each detected library whether it actually works. + export libscheck=" + ( echo 'main(){}' > '${T}'/conftest.c && + $(tc-getCC) -o '${T}'/conftest '${T}'/conftest.c -l\$thislib >/dev/null 2>/dev/null + ) || xxx=/dev/null" + + # Use all host paths that might contain useful stuff, the hook above will filter out bad choices. + local paths="/lib/*-linux-gnu /usr/lib/*-linux-gnu /lib64 /lib/64 /usr/lib64 /usr/lib/64 /lib32 /usr/lib32 /lib /usr/lib" + myconf "-Dlibpth=${EPREFIX}/$(get_libdir) ${EPREFIX}/usr/$(get_libdir) ${paths}" + elif [[ $(get_libdir) != "lib" ]] ; then + # We need to use " and not ', as the written config.sh use ' ... + myconf "-Dlibpth=/usr/local/$(get_libdir) /$(get_libdir) /usr/$(get_libdir)" + fi + + # don't try building ODBM, bug #354453 + disabled_extensions="ODBM_File" + + if ! use gdbm ; then + # workaround for bug #157774: don't try building GDBM related stuff with USE="-gdbm" + disabled_extensions="${disabled_extensions} GDBM_File NDBM_File" + fi + + myconf -Dnoextensions="${disabled_extensions}" + + [[ "${PV##*.}" == "9999" ]] && myconf -Dusedevel -Uversiononly + + [[ -n "${EXTRA_ECONF}" ]] && ewarn During Perl build, EXTRA_ECONF=${EXTRA_ECONF} + # allow fiddling via EXTRA_ECONF, bug 558070 + eval "local -a EXTRA_ECONF=(${EXTRA_ECONF})" + + # setting -Dld= to tc-getLD breaks perl and all perl things + # https://github.com/Perl/perl5/issues/17791#issuecomment-630145202 + myconf \ + -Duseshrplib \ + -Darchname="${myarch}" \ + -Dcc="$(tc-getCC)" \ + -Dar="$(tc-getAR)" \ + -Dnm="$(tc-getNM)" \ + -Dcpp="$(tc-getCPP)" \ + -Dranlib="$(tc-getRANLIB)" \ + -Doptimize="${CFLAGS}" \ + -Dldflags="${LDFLAGS}" \ + -Dprefix="${EPREFIX}"'/usr' \ + -Dsiteprefix="${EPREFIX}"'/usr/local' \ + -Dvendorprefix="${EPREFIX}"'/usr' \ + -Dscriptdir="${EPREFIX}"'/usr/bin' \ + -Dprivlib="${EPREFIX}${PRIV_LIB}" \ + -Darchlib="${EPREFIX}${ARCH_LIB}" \ + -Dsitelib="${EPREFIX}${SITE_LIB}" \ + -Dsitearch="${EPREFIX}${SITE_ARCH}" \ + -Dvendorlib="${EPREFIX}${VENDOR_LIB}" \ + -Dvendorarch="${EPREFIX}${VENDOR_ARCH}" \ + -Dman1dir="${EPREFIX}"/usr/share/man/man1 \ + -Dman3dir="${EPREFIX}"/usr/share/man/man3 \ + -Dsiteman1dir="${EPREFIX}"/usr/local/man/man1 \ + -Dsiteman3dir="${EPREFIX}"/usr/local/man/man3 \ + -Dvendorman1dir="${EPREFIX}"/usr/share/man/man1 \ + -Dvendorman3dir="${EPREFIX}"/usr/share/man/man3 \ + -Dman1ext='1' \ + -Dman3ext='3pm' \ + -Dlibperl="${LIBPERL}" \ + -Dlocincpth="${EPREFIX}"'/usr/include ' \ + -Dglibpth="${EPREFIX}/$(get_libdir) ${EPREFIX}/usr/$(get_libdir)"' ' \ + -Duselargefiles \ + -Dd_semctl_semun \ + -Dcf_by='Gentoo' \ + -Dmyhostname='localhost' \ + -Dperladmin='root@localhost' \ + -Ud_csh \ + -Dsh="${EPREFIX}"/bin/sh \ + -Dtargetsh="${EPREFIX}"/bin/sh \ + -Uusenm \ + "${myconf[@]}" \ + "${EXTRA_ECONF[@]}" + + if tc-is-cross-compiler; then + ./configure \ + --target="${CHOST}" \ + --build="${CBUILD}" \ + -Dinstallprefix='' \ + -Dinstallusrbinperl='undef' \ + -Dusevendorprefix='define' \ + "${myconf[@]}" \ + || die "Unable to configure" + else + sh Configure \ + -des \ + -Dinstallprefix="${EPREFIX}"'/usr' \ + -Dinstallusrbinperl='n' \ + "${myconf[@]}" \ + || die "Unable to configure" + fi +} + +src_test() { + export NO_GENTOO_NETWORK_TESTS=1; + export GENTOO_ASSUME_SANDBOXED="${GENTOO_ASSUME_SANDBOXED:-1}" + export GENTOO_NO_PORTING_TESTS="${GENTOO_NO_PORTING_TESTS:-1}" + if [[ ${EUID} == 0 ]] ; then + ewarn "Test fails with a sandbox error (#328793) if run as root. Skipping tests..." + return 0 + fi + use elibc_uclibc && export MAKEOPTS+=" -j1" + TEST_JOBS="$(makeopts_jobs)" make test_harness || die "test failed" +} + +src_install() { + local i + local coredir="${ARCH_LIB}/CORE" + + emake DESTDIR="${D}" install + + rm -f "${ED}/usr/bin/perl${MY_PV}" + ln -s perl "${ED}"/usr/bin/perl${MY_PV} || die + + if ! tc-is-static-only ; then + dolib.so "${ED}"${coredir}/${LIBPERL} + rm -f "${ED}"${coredir}/${LIBPERL} + ln -sf ${LIBPERL} "${ED}"/usr/$(get_libdir)/libperl$(get_libname ${SHORT_PV}) || die + ln -sf ${LIBPERL} "${ED}"/usr/$(get_libdir)/libperl$(get_libname) || die + + ln -sf ../../../../${LIBPERL} "${ED}"${coredir}/${LIBPERL} || die + ln -sf ../../../../${LIBPERL} "${ED}"${coredir}/libperl$(get_libname ${SHORT_PV}) || die + ln -sf ../../../../${LIBPERL} "${ED}"${coredir}/libperl$(get_libname) || die + fi + + rm -rf "${ED}"/usr/share/man/man3 || die "Unable to remove module man pages" + + # This removes ${D} from Config.pm + for i in $(find "${D}" -iname "Config.pm" ) ; do + einfo "Removing ${D} from ${i}..." + sed -i -e "s:${D}::" "${i}" || die "Sed failed" + done + + dodoc Changes* README AUTHORS + + if use doc ; then + # HTML Documentation + # We expect errors, warnings, and such with the following. + + dodir /usr/share/doc/${PF}/html + LD_LIBRARY_PATH=. ./perl installhtml \ + --podroot='.' \ + --podpath='lib:ext:pod:vms' \ + --recurse \ + --htmldir="${ED}/usr/share/doc/${PF}/html" + fi + + [[ -d ${ED}/usr/local ]] && rm -r "${ED}"/usr/local + + dual_scripts +} + +pkg_preinst() { + check_rebuild +} + +pkg_postinst() { + dual_scripts + + if [[ "${ROOT}" = "/" ]] ; then + local INC DIR file + INC=$(perl -e 'for $line (@INC) { next if $line eq "."; next if $line =~ m/'${SHORT_PV}'|etc|local|perl$/; print "$line\n" }') + einfo "Removing old .ph files" + for DIR in ${INC} ; do + if [[ -d "${DIR}" ]] ; then + for file in $(find "${DIR}" -name "*.ph" -type f ) ; do + rm -f "${file}" + einfo "<< ${file}" + done + fi + done + # Silently remove the now empty dirs + for DIR in ${INC} ; do + if [[ -d "${DIR}" ]] ; then + find "${DIR}" -depth -type d -print0 | xargs -0 -r rmdir &> /dev/null + fi + done + + fi +} + +pkg_postrm() { + dual_scripts +} diff --git a/dev-lang/php/php-7.3.26.ebuild b/dev-lang/php/php-7.3.26.ebuild index b5f39bbfeb3a..7fb97fec058c 100644 --- a/dev-lang/php/php-7.3.26.ebuild +++ b/dev-lang/php/php-7.3.26.ebuild @@ -19,7 +19,7 @@ LICENSE="PHP-3.01 unicode? ( BSD-2 LGPL-2.1 )" SLOT="$(ver_cut 1-2)" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" S="${WORKDIR}/${PN}-${MY_PV}" diff --git a/dev-lang/php/php-7.4.14.ebuild b/dev-lang/php/php-7.4.14.ebuild index 68fc1e11e37d..6fee9aef25d3 100644 --- a/dev-lang/php/php-7.4.14.ebuild +++ b/dev-lang/php/php-7.4.14.ebuild @@ -21,7 +21,7 @@ LICENSE="PHP-3.01 unicode? ( BSD-2 LGPL-2.1 )" SLOT="$(ver_cut 1-2)" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" S="${WORKDIR}/${PN}-${MY_PV}" diff --git a/dev-lang/spidermonkey/Manifest b/dev-lang/spidermonkey/Manifest index 9f61526c28bd..fc700ec5cca1 100644 --- a/dev-lang/spidermonkey/Manifest +++ b/dev-lang/spidermonkey/Manifest @@ -1,6 +1,7 @@ DIST firefox-68.0-patches-15.tar.xz 16060 BLAKE2B f9e6cd58ea51bed1af90a9d30fd551dc7e939afcd1b4d00de1271bd4bda94021c6f1799fd9945962c14ffa1fd0b6a6429369c4e45efc2000f179b9b2e46971e7 SHA512 9cb2479637dd8b84e0ab68dc0fe144acd2dc74feca282fd3c4b485ca6f0de8190244587622713a5421b243ccda153f738e9a8f463e87e15e93e9b725d943e128 DIST firefox-68.12.0esr.source.tar.xz 313856956 BLAKE2B eeaa4acc9fabf15ec1b313170a30cee8e1fc10a8b08512b915b83b7d6a81c09b365733ed94638bd434864fd7b0cb8cbf1bc2e43441be69e31117e8e6a099234c SHA512 839b02422e4c87bdb12e0995cd35ca8c1996f3fba00bbb46b419e46b67df5ec48a264cb14632db777ce29166ee4fdcb06e2ee3ce847e64328c58c9a2f9129f4c DIST firefox-78.6.0esr.source.tar.xz 338098664 BLAKE2B 9d082b6104bffbd0d918dc1adf2a01ac32613d8048faf399177834c4949714a00c1f4383b778a21d6b6684296d8f9bd44fa547ee2507a8631d206e3764d2ceeb SHA512 a1e2d6af0020784d00ed3cb4d778c136685e7c2f6ae536cc270fbd331d51d483d17dff9acd7ad8e6b3b231b9df894c146092889357b23715814a080c6f08d11a +DIST firefox-78.7.0esr.source.tar.xz 332849732 BLAKE2B 66e224021cbd15b6b625da3c0a98b05026f4f284afbef5299368a218c16da24cd05431ab82c52859b835baf63298ec832681fbc58b3bfe833e68dea1737c6dcb SHA512 afa37d2f6bbe04715d84a8964f75139042364501c358da98771115d7fe7d23788e95b6ff29d77c064a9cfcd208c1424924017ef2a72cbb79dbb45d6f365f030c DIST firefox-78esr-patches-07.tar.xz 66156 BLAKE2B 8f69883432dcbd484b1fb15e3fde1630b1424e502ba78d9ec3cbe70cb2676a6876853d3477c8bfe35e92bca91b200e2d14543de1778d895676a52d2608109af2 SHA512 b4a01d3499002bd33a7fb45a1a80e9e73ba27a0986b6bfa43b3482dd8d82a686a14ae0c5e013402c8c8f359a642632a40bf4c362a0e83a1f53b453914f42e3a7 DIST js185-1.0.0.tar.gz 6164605 BLAKE2B 76a37f0ceae05d3475853875bd0ce4be6e525e4114816f8f281ea6fc6b60a71060975a0fa1cb843f57ad1e2f842dfb26b24244fa0fd6c20f6ae2ebbe430f70be SHA512 2af7122a7c7007fd7b6668776fe1222515a810b3e43bbf0f76b8f94e1ef406ffd3fb5ccec393021b00274c05b38a77235bc8d6886994c56762fcaf0aa7cf6718 DIST mozjs-52.9.1pre1.tar.bz2 30178574 BLAKE2B 0920432b5140e78297a9bcbccb54268d75a223d5e75e4ff90b3b01aab4f7736b4a4e05c47b3a925ff0a74607a0abad3b6583c75d070ef5142009b20ebaf6e4bf SHA512 187b231b246a5ae09e55c0fef77866b316d75f38f4c2e066d5d4325d8da63433027020c929439cab46af3253ac63ab2f780223a8fd2c6ff535b3409bb6c4aa0f diff --git a/dev-lang/spidermonkey/spidermonkey-78.7.0.ebuild b/dev-lang/spidermonkey/spidermonkey-78.7.0.ebuild new file mode 100644 index 000000000000..6baa8676e0ba --- /dev/null +++ b/dev-lang/spidermonkey/spidermonkey-78.7.0.ebuild @@ -0,0 +1,436 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +# Patch version +FIREFOX_PATCHSET="firefox-78esr-patches-07.tar.xz" +SPIDERMONKEY_PATCHSET="spidermonkey-78-patches-03.tar.xz" + +LLVM_MAX_SLOT=11 + +PYTHON_COMPAT=( python3_{6..9} ) + +WANT_AUTOCONF="2.1" + +inherit autotools check-reqs flag-o-matic llvm multiprocessing python-any-r1 toolchain-funcs + +MY_PN="mozjs" +MY_PV="${PV/_pre*}" # Handle Gentoo pre-releases + +MY_MAJOR=$(ver_cut 1) + +MOZ_ESR=yes + +MOZ_PV=${PV} +MOZ_PV_SUFFIX= +if [[ ${PV} =~ (_(alpha|beta|rc).*)$ ]] ; then + MOZ_PV_SUFFIX=${BASH_REMATCH[1]} + + # Convert the ebuild version to the upstream Mozilla version + MOZ_PV="${MOZ_PV/_alpha/a}" # Handle alpha for SRC_URI + MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI + MOZ_PV="${MOZ_PV%%_rc*}" # Handle rc for SRC_URI +fi + +if [[ -n ${MOZ_ESR} ]] ; then + # ESR releases have slightly different version numbers + MOZ_PV="${MOZ_PV}esr" +fi + +MOZ_PN="firefox" +MOZ_P="${MOZ_PN}-${MOZ_PV}" +MOZ_PV_DISTFILES="${MOZ_PV}${MOZ_PV_SUFFIX}" +MOZ_P_DISTFILES="${MOZ_PN}-${MOZ_PV_DISTFILES}" + +MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" + +if [[ ${PV} == *_rc* ]] ; then + MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/candidates/${MOZ_PV}-candidates/build${PV##*_rc}" +fi + +PATCH_URIS=( + https://dev.gentoo.org/~{whissi,polynomial-c,axs}/mozilla/patchsets/${FIREFOX_PATCHSET} + https://dev.gentoo.org/~{whissi,polynomial-c,axs}/mozilla/patchsets/${SPIDERMONKEY_PATCHSET} +) + +SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES}.source.tar.xz + ${PATCH_URIS[@]}" + +DESCRIPTION="SpiderMonkey is Mozilla's JavaScript engine written in C and C++" +HOMEPAGE="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey" + +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc64 ~s390 ~x86" + +SLOT="78" +LICENSE="MPL-2.0" +IUSE="clang cpu_flags_arm_neon debug +jit lto test" + +RESTRICT="!test? ( test )" + +BDEPEND="${PYTHON_DEPS} + >=virtual/rust-1.41.0 + virtual/pkgconfig + || ( + ( + sys-devel/llvm:11 + clang? ( + sys-devel/clang:11 + lto? ( =sys-devel/lld-11* ) + ) + ) + ( + sys-devel/llvm:10 + clang? ( + sys-devel/clang:10 + lto? ( =sys-devel/lld-10* ) + ) + ) + ( + sys-devel/llvm:9 + clang? ( + sys-devel/clang:9 + lto? ( =sys-devel/lld-9* ) + ) + ) + ) + lto? ( + !clang? ( sys-devel/binutils[gold] ) + )" + +CDEPEND=">=dev-libs/icu-67.1:= + >=dev-libs/nspr-4.25 + sys-libs/readline:0= + >=sys-libs/zlib-1.2.3" + +DEPEND="${CDEPEND} + test? ( + $(python_gen_any_dep 'dev-python/six[${PYTHON_USEDEP}]') + )" + +RDEPEND="${CDEPEND}" + +S="${WORKDIR}/firefox-${MY_PV}/js/src" + +llvm_check_deps() { + if use clang ; then + if ! has_version -b "sys-devel/clang:${LLVM_SLOT}" ; then + ewarn "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + return 1 + fi + + if use lto ; then + if ! has_version -b "=sys-devel/lld-${LLVM_SLOT}*" ; then + ewarn "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + return 1 + fi + fi + fi + + einfo "Using LLVM slot ${LLVM_SLOT} to build" >&2 +} + +python_check_deps() { + if use test ; then + has_version "dev-python/six[${PYTHON_USEDEP}]" + fi +} + +pkg_pretend() { + if use test ; then + CHECKREQS_DISK_BUILD="7600M" + else + CHECKREQS_DISK_BUILD="6400M" + fi + + check-reqs_pkg_pretend +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]] ; then + if use test ; then + CHECKREQS_DISK_BUILD="7600M" + else + CHECKREQS_DISK_BUILD="6400M" + fi + + check-reqs_pkg_setup + + llvm_pkg_setup + + if use clang && use lto ; then + local version_lld=$(ld.lld --version 2>/dev/null | awk '{ print $2 }') + [[ -n ${version_lld} ]] && version_lld=$(ver_cut 1 "${version_lld}") + [[ -z ${version_lld} ]] && die "Failed to read ld.lld version!" + + local version_llvm_rust=$(rustc -Vv 2>/dev/null | grep -F -- 'LLVM version:' | awk '{ print $3 }') + [[ -n ${version_llvm_rust} ]] && version_llvm_rust=$(ver_cut 1 "${version_llvm_rust}") + [[ -z ${version_llvm_rust} ]] && die "Failed to read used LLVM version from rustc!" + + if ver_test "${version_lld}" -ne "${version_llvm_rust}" ; then + eerror "Rust is using LLVM version ${version_llvm_rust} but ld.lld version belongs to LLVM version ${version_lld}." + eerror "You will be unable to link ${CATEGORY}/${PN}. To proceed you have the following options:" + eerror " - Manually switch rust version using 'eselect rust' to match used LLVM version" + eerror " - Switch to dev-lang/rust[system-llvm] which will guarantee matching version" + eerror " - Build ${CATEGORY}/${PN} without USE=lto" + die "LLVM version used by Rust (${version_llvm_rust}) does not match with ld.lld version (${version_lld})!" + fi + fi + + python-any-r1_pkg_setup + + # Build system is using /proc/self/oom_score_adj, bug #604394 + addpredict /proc/self/oom_score_adj + + if ! mountpoint -q /dev/shm ; then + # If /dev/shm is not available, configure is known to fail with + # a traceback report referencing /usr/lib/pythonN.N/multiprocessing/synchronize.py + ewarn "/dev/shm is not mounted -- expect build failures!" + fi + + # Ensure we use C locale when building, bug #746215 + export LC_ALL=C + fi +} + +src_prepare() { + pushd ../.. &>/dev/null || die + + use lto && rm -v "${WORKDIR}"/firefox-patches/*-LTO-Only-enable-LTO-*.patch + + eapply "${WORKDIR}"/firefox-patches + eapply "${WORKDIR}"/spidermonkey-patches + + default + + # Make LTO respect MAKEOPTS + sed -i \ + -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ + build/moz.configure/lto-pgo.configure \ + || die "sed failed to set num_cores" + + # sed-in toolchain prefix + sed -i \ + -e "s/objdump/${CHOST}-objdump/" \ + python/mozbuild/mozbuild/configure/check_debug_ranges.py \ + || die "sed failed to set toolchain prefix" + + einfo "Removing pre-built binaries ..." + find third_party -type f \( -name '*.so' -o -name '*.o' \) -print -delete || die + + MOZJS_BUILDDIR="${WORKDIR}/build" + mkdir "${MOZJS_BUILDDIR}" || die + + popd &>/dev/null || die + eautoconf +} + +src_configure() { + # Show flags set at the beginning + einfo "Current CFLAGS: ${CFLAGS}" + einfo "Current CXXFLAGS: ${CXXFLAGS}" + einfo "Current LDFLAGS: ${LDFLAGS}" + einfo "Current RUSTFLAGS: ${RUSTFLAGS}" + + local have_switched_compiler= + if use clang && ! tc-is-clang ; then + # Force clang + einfo "Enforcing the use of clang due to USE=clang ..." + have_switched_compiler=yes + AR=llvm-ar + CC=${CHOST}-clang + CXX=${CHOST}-clang++ + NM=llvm-nm + RANLIB=llvm-ranlib + elif ! use clang && ! tc-is-gcc ; then + # Force gcc + have_switched_compiler=yes + einfo "Enforcing the use of gcc due to USE=-clang ..." + AR=gcc-ar + CC=${CHOST}-gcc + CXX=${CHOST}-g++ + NM=gcc-nm + RANLIB=gcc-ranlib + fi + + if [[ -n "${have_switched_compiler}" ]] ; then + # Because we switched active compiler we have to ensure + # that no unsupported flags are set + strip-unsupported-flags + fi + + # Ensure we use correct toolchain + export HOST_CC="$(tc-getBUILD_CC)" + export HOST_CXX="$(tc-getBUILD_CXX)" + tc-export CC CXX LD AR NM OBJDUMP RANLIB PKG_CONFIG + + cd "${MOZJS_BUILDDIR}" || die + + # ../python/mach/mach/mixin/process.py fails to detect SHELL + export SHELL="${EPREFIX}/bin/bash" + + local -a myeconfargs=( + --host="${CBUILD:-${CHOST}}" + --target="${CHOST}" + --disable-jemalloc + --disable-optimize + --disable-strip + --enable-readline + --enable-shared-js + --with-intl-api + --with-system-icu + --with-system-nspr + --with-system-zlib + --with-toolchain-prefix="${CHOST}-" + $(use_enable debug) + $(use_enable jit) + $(use_enable test tests) + ) + + if ! use x86 && [[ ${CHOST} != armv*h* ]] ; then + myeconfargs+=( --enable-rust-simd ) + fi + + # Modifications to better support ARM, bug 717344 + if use cpu_flags_arm_neon ; then + myeconfargs+=( --with-fpu=neon ) + + if ! tc-is-clang ; then + # thumb options aren't supported when using clang, bug 666966 + myeconfargs+=( --with-thumb=yes ) + myeconfargs+=( --with-thumb-interwork=no ) + fi + fi + + # Tell build system that we want to use LTO + if use lto ; then + myeconfargs+=( --enable-lto ) + + if use clang ; then + myeconfargs+=( --enable-linker=lld ) + else + myeconfargs+=( --enable-linker=gold ) + fi + fi + + # LTO flag was handled via configure + filter-flags '-flto*' + + if tc-is-gcc ; then + if ver_test $(gcc-fullversion) -ge 10 ; then + einfo "Forcing -fno-tree-loop-vectorize to workaround GCC bug, see bug 758446 ..." + append-cxxflags -fno-tree-loop-vectorize + fi + fi + + # Show flags we will use + einfo "Build CFLAGS: ${CFLAGS}" + einfo "Build CXXFLAGS: ${CXXFLAGS}" + einfo "Build LDFLAGS: ${LDFLAGS}" + einfo "Build RUSTFLAGS: ${RUSTFLAGS}" + + # Forcing system-icu allows us to skip patching bundled ICU for PPC + # and other minor arches + ECONF_SOURCE="${S}" \ + econf \ + ${myeconfargs[@]} \ + XARGS="${EPREFIX}/usr/bin/xargs" +} + +src_compile() { + cd "${MOZJS_BUILDDIR}" || die + default +} + +src_test() { + if "${MOZJS_BUILDDIR}/js/src/js" -e 'print("Hello world!")'; then + einfo "Smoke-test successful, continuing with full test suite" + else + die "Smoke-test failed: did interpreter initialization fail?" + fi + + local -a KNOWN_TESTFAILURES + KNOWN_TESTFAILURES+=( non262/Date/reset-time-zone-cache-same-offset.js ) + KNOWN_TESTFAILURES+=( non262/Date/time-zone-path.js ) + KNOWN_TESTFAILURES+=( non262/Date/time-zones-historic.js ) + KNOWN_TESTFAILURES+=( non262/Date/time-zones-imported.js ) + KNOWN_TESTFAILURES+=( non262/Date/toString-localized.js ) + KNOWN_TESTFAILURES+=( non262/Date/toString-localized-posix.js ) + KNOWN_TESTFAILURES+=( non262/Intl/Date/toLocaleString_timeZone.js ) + KNOWN_TESTFAILURES+=( non262/Intl/Date/toLocaleDateString_timeZone.js ) + KNOWN_TESTFAILURES+=( non262/Intl/DateTimeFormat/format.js ) + KNOWN_TESTFAILURES+=( non262/Intl/DateTimeFormat/format_timeZone.js ) + KNOWN_TESTFAILURES+=( non262/Intl/DateTimeFormat/timeZone_backward_links.js ) + KNOWN_TESTFAILURES+=( non262/Intl/DateTimeFormat/tz-environment-variable.js ) + KNOWN_TESTFAILURES+=( non262/Intl/DisplayNames/language.js ) + KNOWN_TESTFAILURES+=( non262/Intl/DisplayNames/region.js ) + KNOWN_TESTFAILURES+=( non262/Intl/Locale/likely-subtags.js ) + KNOWN_TESTFAILURES+=( non262/Intl/Locale/likely-subtags-generated.js ) + KNOWN_TESTFAILURES+=( test262/intl402/Locale/prototype/minimize/removing-likely-subtags-first-adds-likely-subtags.js ) + + if use x86 ; then + KNOWN_TESTFAILURES+=( non262/Date/timeclip.js ) + KNOWN_TESTFAILURES+=( test262/built-ins/Number/prototype/toPrecision/return-values.js ) + KNOWN_TESTFAILURES+=( test262/language/types/number/S8.5_A2.1.js ) + KNOWN_TESTFAILURES+=( test262/language/types/number/S8.5_A2.2.js ) + fi + + if [[ $(tc-endian) == "big" ]] ; then + KNOWN_TESTFAILURES+=( test262/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-same-buffer-other-type.js ) + fi + + echo "" > "${T}"/known_failures.list || die + + local KNOWN_TESTFAILURE + for KNOWN_TESTFAILURE in ${KNOWN_TESTFAILURES[@]} ; do + echo "${KNOWN_TESTFAILURE}" >> "${T}"/known_failures.list + done + + PYTHONPATH="${S}/tests/lib" \ + ${PYTHON} \ + "${S}"/tests/jstests.py -d -s -t 1800 --wpt=disabled --no-progress \ + --exclude-file="${T}"/known_failures.list \ + "${MOZJS_BUILDDIR}"/js/src/js \ + || die + + if use jit ; then + KNOWN_TESTFAILURES=() + + echo "" > "${T}"/known_failures.list || die + + for KNOWN_TESTFAILURE in ${KNOWN_TESTFAILURES[@]} ; do + echo "${KNOWN_TESTFAILURE}" >> "${T}"/known_failures.list + done + + PYTHONPATH="${S}/tests/lib" \ + ${PYTHON} \ + "${S}"/tests/jstests.py -d -s -t 1800 --wpt=disabled --no-progress \ + --exclude-file="${T}"/known_failures.list \ + "${MOZJS_BUILDDIR}"/js/src/js basic \ + || die + fi +} + +src_install() { + cd "${MOZJS_BUILDDIR}" || die + default + + # fix soname links + pushd "${ED}"/usr/$(get_libdir) &>/dev/null || die + mv lib${MY_PN}-${MY_MAJOR}.so lib${MY_PN}-${MY_MAJOR}.so.0.0.0 || die + ln -s lib${MY_PN}-${MY_MAJOR}.so.0.0.0 lib${MY_PN}-${MY_MAJOR}.so.0 || die + ln -s lib${MY_PN}-${MY_MAJOR}.so.0 lib${MY_PN}-${MY_MAJOR}.so || die + popd &>/dev/null || die + + # remove unneeded files + rm \ + "${ED}"/usr/bin/js${MY_MAJOR}-config \ + "${ED}"/usr/$(get_libdir)/libjs_static.ajs \ + || die + + # fix permissions + chmod -x \ + "${ED}"/usr/$(get_libdir)/pkgconfig/*.pc \ + "${ED}"/usr/include/mozjs-${MY_MAJOR}/js-config.h \ + || die +} diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index 8565bde5c21e..8dcaf0b45836 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 new file mode 100644 index 000000000000..4b5e3e0dab4e --- /dev/null +++ b/dev-libs/aml/Manifest @@ -0,0 +1 @@ +DIST aml-0.2.0.tar.gz 20358 BLAKE2B 4be63726ea9069cbfe36fbf04e3a0b2229066d7df039aea1a41fdca27700d012fda9eda348115f8c0ef9d3f201640123722d0b96bc7b171841d920357a292152 SHA512 196cd891fdbaad47340d8b4ca9eb62a7f9e6b0969ae9ad744a3c9ea110a532691d53a1e39fde583bad0f8fdae4b51c3a4243bbdab65e952e5fc79ceb6efc3262 diff --git a/dev-libs/aml/aml-0.2.0.ebuild b/dev-libs/aml/aml-0.2.0.ebuild new file mode 100644 index 000000000000..db62c0b53724 --- /dev/null +++ b/dev-libs/aml/aml-0.2.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="event timer executor loop" +HOMEPAGE="https://github.com/any1/aml/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + 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 ~x86" +fi + +LICENSE="ISC" +SLOT="0" +IUSE="examples" + +src_configure() { + local emesonargs=( + $(meson_use examples) + ) + meson_src_configure +} diff --git a/dev-libs/aml/aml-9999.ebuild b/dev-libs/aml/aml-9999.ebuild new file mode 100644 index 000000000000..db62c0b53724 --- /dev/null +++ b/dev-libs/aml/aml-9999.ebuild @@ -0,0 +1,28 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="event timer executor loop" +HOMEPAGE="https://github.com/any1/aml/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + 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 ~x86" +fi + +LICENSE="ISC" +SLOT="0" +IUSE="examples" + +src_configure() { + local emesonargs=( + $(meson_use examples) + ) + meson_src_configure +} diff --git a/dev-libs/aml/metadata.xml b/dev-libs/aml/metadata.xml new file mode 100644 index 000000000000..9e2438fd5155 --- /dev/null +++ b/dev-libs/aml/metadata.xml @@ -0,0 +1,15 @@ + + + + + gentoo@aisha.cc + Aisha Tammy + + + proxy-maint@gentoo.org + Proxy Maintainers + + + Build and install examples + + diff --git a/dev-libs/boost/boost-1.74.0-r2.ebuild b/dev-libs/boost/boost-1.74.0-r2.ebuild index 154972fb428d..ff18e1505ab0 100644 --- a/dev-libs/boost/boost-1.74.0-r2.ebuild +++ b/dev-libs/boost/boost-1.74.0-r2.ebuild @@ -16,7 +16,7 @@ SRC_URI="https://dl.bintray.com/boostorg/release/${PV}/source/boost_${MY_PV}.tar LICENSE="Boost-1.0" SLOT="0/${PV}" # ${PV} instead ${MAJOR_V} due to bug 486122 -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 ~x86-solaris ~x86-winnt" +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 ~x86-solaris ~x86-winnt" IUSE="bzip2 context debug doc icu lzma +nls mpi numpy python static-libs +threads tools zlib zstd" REQUIRED_USE=" mpi? ( threads ) diff --git a/dev-libs/libofx/Manifest b/dev-libs/libofx/Manifest index 7cd2c9d067ae..020b39511de6 100644 --- a/dev-libs/libofx/Manifest +++ b/dev-libs/libofx/Manifest @@ -1,2 +1,3 @@ DIST libofx-0.10.0.tar.gz 225574 BLAKE2B 29ce24ce8f0a333e2d35371cba217223e59e72e1f41051279c15033fecd5f33d7381e9be8403f2e639c007ca6aca1d53cf651e057c9842350772c2296b92c436 SHA512 b7767088701e22a2eba072c365d379987c6e9b2403888550068d6f62f48eaee7935e5355fa6ec97ac7a79bb847c833552250c0bd3065f9274b209585a7884f1d +DIST libofx-0.10.1.tar.gz 226512 BLAKE2B bc0fa1ea0d5c7968730b50b9163a045304dd82f7e312e407ce9393a56ea6b1f9d47382b1299ee990640b98d5f047656aa38a9a8da4d8f19d3bea0236e0487cf1 SHA512 4575424abb56b93021ef223f90460979b544c32b4624936bbad16d0b5711afb6b5fa31b7c2cb835ff7a26be8c7ac51951198e5565a098713b8d33f0e17be774a DIST libofx-0.9.15.tar.gz 207361 BLAKE2B c84fd4593a9888268c691653dc1b5fff5c38013f12ccc4a8454f9a5026ba190388e5747074aa800266efcfd49a0fdb391a605d5837f664bdcb8fe1dc5c064839 SHA512 6014bf9c457adbe9053a47718064e6246c911c3bf081c690bf761650220208aabe94824aaa38794c1834462894b7948a06b3ff6b517a9a84b9f881ba51aee3a1 diff --git a/dev-libs/libofx/libofx-0.10.1.ebuild b/dev-libs/libofx/libofx-0.10.1.ebuild new file mode 100644 index 000000000000..1b4d6cf7be8e --- /dev/null +++ b/dev-libs/libofx/libofx-0.10.1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools flag-o-matic + +DESCRIPTION="Library to support the Open Financial eXchange XML format" +HOMEPAGE="https://github.com/libofx/libofx" +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0/10" +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + dev-util/gengetopt + sys-apps/help2man + virtual/pkgconfig + test? ( app-crypt/gnupg ) +" +RDEPEND=" + >app-text/opensp-1.5 + >=dev-cpp/libxmlpp-2.40.1:2.6 + >=net-misc/curl-7.9.7 + virtual/libiconv +" +DEPEND="${RDEPEND}" + +src_prepare() { + default + + # Not included in the tarball + sed -i -e '/INSTALL/d' Makefile.am || die + # Use correct location for docs + sed -i -e 's:doc/libofx:doc/${PF}:' Makefile.am doc/Makefile.am || die + + eautoreconf + append-cxxflags -std=c++14 # bug #566456 +} + +src_configure() { + econf --disable-static +} + +src_compile() { + emake -j1 +} + +src_install() { + default + + find "${ED}" -name '*.la' -type f -delete || die + find "${ED}" -name '*.a' -type f -delete || die +} diff --git a/dev-libs/libtomcrypt/libtomcrypt-1.18.2-r2.ebuild b/dev-libs/libtomcrypt/libtomcrypt-1.18.2-r2.ebuild index aabf12d29620..f80c8651f3fa 100644 --- a/dev-libs/libtomcrypt/libtomcrypt-1.18.2-r2.ebuild +++ b/dev-libs/libtomcrypt/libtomcrypt-1.18.2-r2.ebuild @@ -17,7 +17,7 @@ LICENSE="|| ( WTFPL-2 public-domain )" # Helpful site: # https://abi-laboratory.pro/index.php?view=timeline&l=libtomcrypt SLOT="0/1" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86" IUSE="+gmp +libtommath tomsfastmath" BDEPEND=" diff --git a/dev-libs/log4cplus/log4cplus-1.2.0.ebuild b/dev-libs/log4cplus/log4cplus-1.2.0.ebuild index 3fba18d21c2d..ae5197583f34 100644 --- a/dev-libs/log4cplus/log4cplus-1.2.0.ebuild +++ b/dev-libs/log4cplus/log4cplus-1.2.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${PN}-stable/${PV}/${P}.tar.bz2" LICENSE="|| ( Apache-2.0 BSD-2 )" SLOT="0/1.2-5" -KEYWORDS="amd64 ~arm64 ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86" IUSE="iconv qt5 threads working-locale working-c-locale" REQUIRED_USE="?? ( iconv working-locale working-c-locale )" diff --git a/dev-libs/serd/Manifest b/dev-libs/serd/Manifest index 1954e0f36179..206bc90aa0f7 100644 --- a/dev-libs/serd/Manifest +++ b/dev-libs/serd/Manifest @@ -1,2 +1,3 @@ +DIST serd-0.30.10.tar.bz2 586386 BLAKE2B 7f84b425a9eed36c5b59b22b8fd2cb9139a3de2bd1a47f92fd9888c433d931dcf83f13c2460d821c04f4244a79aa4330ba973017508ecb5f4564e78ae45b9b9a SHA512 ed7b49abfd3dc3a724b047f5f0cd07b811596330c96d91c0ce90540440f03260e05daee76c3ccccc3d4ca39afbbd4f3d07decbb601730e90c133a09c640c0006 DIST serd-0.30.6.tar.bz2 609365 BLAKE2B 35a86847642ffe806797ae8dbcd292ce26f08135edfa3b1fd39652f8964c35d73dba8f8627f32dcff399e9cddc332e5484f14a80580a32d52d93977cd9b42912 SHA512 db08d6c67d8627728679d0ed3770b8219a58f3eef82194ef8ba5682d3ff1f1033e2bbc8d6a1115a3fe0e32990f635c707a81ad8b4f457153fa78ff5991c9c30f DIST serd-0.30.8.tar.bz2 590817 BLAKE2B 31a485fccfb13e54e124cde0626ad16f3cc7f9c1f8d8c051ace7a98bd2bd5d6a2d159943f15f5734e028a31ce5eeea9d602f55bf6cf1277d532ae799e0c1895f SHA512 d12c4dea1a15b2aed9fb9d640affae23a4fbfb53b7f873af30b462ce96f3c22ee464f5b111f87a221e6ac51f4885c23bba023892331ab10d0a8aa0e27fcbd0fa diff --git a/dev-libs/serd/serd-0.30.10.ebuild b/dev-libs/serd/serd-0.30.10.ebuild new file mode 100644 index 000000000000..904e3cb77308 --- /dev/null +++ b/dev-libs/serd/serd-0.30.10.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} ) +PYTHON_REQ_USE='threads(+)' +inherit python-any-r1 waf-utils multilib-build multilib-minimal + +DESCRIPTION="Library for RDF syntax which supports reading and writing Turtle and NTriples" +HOMEPAGE="http://drobilla.net/software/serd/" +SRC_URI="http://download.drobilla.net/${P}.tar.bz2" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc static-libs test" +RESTRICT="!test? ( test )" + +BDEPEND=" + doc? ( app-doc/doxygen ) +" +RDEPEND="" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} +" +DOCS=( "AUTHORS" "NEWS" "README.md" ) + +src_prepare() { + sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die + default + multilib_copy_sources +} + +multilib_src_configure() { + waf-utils_src_configure \ + --docdir=/usr/share/doc/${PF} \ + $(multilib_native_usex doc --docs "") \ + $(usex test --test "") \ + $(usex static-libs --static "") +} + +multilib_src_test() { + ./waf test || die +} + +multilib_src_compile() { + waf-utils_src_compile + default +} + +multilib_src_install() { + waf-utils_src_install + default +} diff --git a/dev-libs/tomsfastmath/tomsfastmath-0.13.1-r1.ebuild b/dev-libs/tomsfastmath/tomsfastmath-0.13.1-r1.ebuild index 844b7e312478..74d47022645f 100644 --- a/dev-libs/tomsfastmath/tomsfastmath-0.13.1-r1.ebuild +++ b/dev-libs/tomsfastmath/tomsfastmath-0.13.1-r1.ebuild @@ -16,7 +16,7 @@ LICENSE="Unlicense" # Helpful site: # https://abi-laboratory.pro/index.php?view=timeline&l=tomsfastmath SLOT="0/1" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86" BDEPEND="sys-devel/libtool" diff --git a/dev-libs/unittest++/unittest++-2.0.0-r2.ebuild b/dev-libs/unittest++/unittest++-2.0.0-r2.ebuild index 4930c05f9b6e..a486fd6a9ed9 100644 --- a/dev-libs/unittest++/unittest++-2.0.0-r2.ebuild +++ b/dev-libs/unittest++/unittest++-2.0.0-r2.ebuild @@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-lua/Manifest.gz b/dev-lua/Manifest.gz index c387d5f9e722..b7b58a7765e5 100644 Binary files a/dev-lua/Manifest.gz and b/dev-lua/Manifest.gz differ diff --git a/dev-lua/ldoc/ldoc-1.4.6.ebuild b/dev-lua/ldoc/ldoc-1.4.6.ebuild deleted file mode 100644 index 191d469dd2e1..000000000000 --- a/dev-lua/ldoc/ldoc-1.4.6.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="A LuaDoc-compatible documentation generation system" -HOMEPAGE="https://stevedonovan.github.io/ldoc/" -SRC_URI="https://github.com/stevedonovan/LDoc/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm ppc ppc64 x86" -IUSE="" - -RDEPEND="dev-lua/penlight" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}/${PN}-1.4.6-mkdir.patch" ) - -S="${WORKDIR}/LDoc-${PV}" -RESTRICT="test" diff --git a/dev-lua/luajson/Manifest b/dev-lua/luajson/Manifest index 29fa7b008cb7..5f2473690bc4 100644 --- a/dev-lua/luajson/Manifest +++ b/dev-lua/luajson/Manifest @@ -1,2 +1 @@ -DIST luajson-1.3.3.tar.gz 42653 BLAKE2B 2bc7310317a1279906681c2de284dc7b9d50766c0c21c606da746d0e709168e5364c3a821798f3ce423dfdd246162212525c1fee7c13cb5f0999db56d1e5e3c3 SHA512 9b507148afaf59871f97e7cf78ad35dc01497d553699d1d1a928543fad6a375aebc3852da86d51d744f10ab2ec24c7b1d7c380852da8134ae05f2f22f6f200c2 DIST luajson-1.3.4.tar.gz 46941 BLAKE2B 50c8c20c487f92fd19b3e080a87eec58c2cb30d83dfc6acd7aca3f155a04f85a194c069f735a2881e14b0eb3fd3b16e4a75ea625ac81c65b9e25cb1c3601673c SHA512 d24dc8399337b96cde3254a83e5cc1fa995b76f0e1fae54ad91a490f0a6f4c5d0927919320f99d7bc4238ac5529d0ea57435c6be2519fb52e2a83f5005fbc4f7 diff --git a/dev-lua/luajson/luajson-1.3.3-r1.ebuild b/dev-lua/luajson/luajson-1.3.3-r1.ebuild deleted file mode 100644 index 48f67efbcaae..000000000000 --- a/dev-lua/luajson/luajson-1.3.3-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="JSON Parser/Constructor for Lua" -HOMEPAGE="https://www.eharning.us/wiki/luajson/" -SRC_URI="https://github.com/harningt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~mips ppc ppc64 sparc x86" -IUSE="test" - -RDEPEND="|| ( >=dev-lang/lua-5.1:0 dev-lang/luajit:2 ) - dev-lua/lpeg" -DEPEND="test? ( dev-lua/luafilesystem )" - -# lunit not in the tree yet -RESTRICT="test" - -# nothing to compile -src_compile() { :; } - -src_install() { - emake PREFIX="${EPREFIX}/usr" DESTDIR="${D}" install - dodoc README docs/ReleaseNotes-${PV}.txt docs/LuaJSON.txt -} diff --git a/dev-lua/luajson/luajson-1.3.4.ebuild b/dev-lua/luajson/luajson-1.3.4.ebuild deleted file mode 100644 index 23394e143028..000000000000 --- a/dev-lua/luajson/luajson-1.3.4.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="JSON Parser/Constructor for Lua" -HOMEPAGE="https://www.eharning.us/wiki/luajson/" -SRC_URI="https://github.com/harningt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="luajit test" - -# lunit not in the tree yet -RESTRICT="test" - -RDEPEND=" - dev-lua/lpeg - luajit? ( dev-lang/luajit:2 ) - !luajit? ( dev-lang/lua:0 ) -" -BDEPEND=" - virtual/pkgconfig - test? ( dev-lua/luafilesystem ) -" - -DOCS=( README.md docs/ReleaseNotes-${PV}.txt docs/LuaJSON.txt ) - -# nothing to compile -src_compile() { :; } - -src_install() { - emake DESTDIR="${ED}" INSTALL_LMOD="$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD $(usex luajit 'luajit' 'lua'))" install - - einstalldocs -} diff --git a/dev-lua/luv/Manifest b/dev-lua/luv/Manifest index 0aa57f799cf2..d5445635f8ba 100644 --- a/dev-lua/luv/Manifest +++ b/dev-lua/luv/Manifest @@ -1,3 +1,2 @@ DIST luv-1.32.0.0.tar.gz 91349 BLAKE2B e4a90b3241e2fe650f62e34439ed75f9ba53168d6bd96b8685fc5600d6f9cbb1bb598a7d40d918ab9123cf4bad99f872a79d0664056d35caba52d1eda9046020 SHA512 7db52afc1ca79052e349be7a37deb67066ee9005f8d7f7d0dae62bd83a93b4140103ee6dddeca2e02a3fc37b3880a5c18904429886af1d441f8de0cfabf5bd8c DIST luv-lua-compat-0.10.tar.gz 53695 BLAKE2B e570aedb23b8ed7ca38c4316ffab25b93a0f9f6f0fae79af563ca8a81dd6453ac273e1f9e70674c484a2dec68749e7d53a1c1736a72616c210b8e38a31b3f191 SHA512 f7f39085f4f6b16095f41e635b4c5477b3dab5e42b5b65a9d522941a3807ea521d4a27a77293a3c9d0ecea78a1f6c2a2497394b2d220f4d7d65e23510563d46d -DIST luv-lua-compat-0.7.tar.gz 51383 BLAKE2B ae86f314de971fcd7d8706009d59d684c035fb661ecf392c581a3c317cc1a396321ef7af0418d8f23151c52c66613a0749e8fa9ac889a183c2ffe749091dae35 SHA512 665ece98422a105b818cffd96eea5788696fbb854d2ba41d2d387e8bd25c1fa9de601468e55e22e9e749979a66d4d2e0f7dfd656e5bf27b489d37bb07c96f48d diff --git a/dev-lua/luv/luv-1.32.0.0.ebuild b/dev-lua/luv/luv-1.32.0.0.ebuild deleted file mode 100644 index 3d5ee15c180b..000000000000 --- a/dev-lua/luv/luv-1.32.0.0.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake unpacker - -# e.g. MY_PV = a.b.c-d -MY_PV="$(ver_rs 3 -)" -MY_P="${PN}-${MY_PV}" - -DESCRIPTION="Bare libuv bindings for lua" -HOMEPAGE="https://github.com/luvit/luv" - -LUA_COMPAT_PV="0.7" -SRC_URI=" - https://github.com/luvit/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz - https://github.com/keplerproject/lua-compat-5.3/archive/v${LUA_COMPAT_PV}.tar.gz -> ${PN}-lua-compat-${LUA_COMPAT_PV}.tar.gz -" - -LICENSE="Apache-2.0 MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="luajit test" -RESTRICT="!test? ( test )" - -BDEPEND="virtual/pkgconfig" -DEPEND=" - >=dev-libs/libuv-1.32.0:= - luajit? ( dev-lang/luajit:2 ) - !luajit? ( dev-lang/lua:0 ) -" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - # Fix libdir - # Match '/lib/' and '/lib"' without capturing / or ", replacing with libdir - sed -i -r "s/\/lib(\"|\/)/\/$(get_libdir)\1/g" CMakeLists.txt || die "Failed to sed CMakeLists.txt" - cmake_src_prepare -} - -src_configure() { - lua_compat_dir="${WORKDIR}/lua-compat-5.3-${LUA_COMPAT_PV}" - local mycmakeargs=( - -DBUILD_MODULE=OFF - -DLUA_BUILD_TYPE=System - -DLUA_COMPAT53_DIR="${lua_compat_dir}" - -DWITH_LUA_ENGINE=$(usex luajit LuaJIT Lua) - -DWITH_SHARED_LIBUV=ON - ) - cmake_src_configure -} - -src_test() { - local elua="$(usex luajit luajit lua)" - # We need to copy the library back so that the tests see it - ln -s "${BUILD_DIR}/libluv.so" "./luv.so" || die "Failed to symlink library for tests" - ${elua} "tests/run.lua" || die "Tests failed" -} diff --git a/dev-lua/messagepack/messagepack-0.5.2_p20201025.ebuild b/dev-lua/messagepack/messagepack-0.5.2_p20201025.ebuild deleted file mode 100644 index a4f23657c074..000000000000 --- a/dev-lua/messagepack/messagepack-0.5.2_p20201025.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -EGIT_COMMIT="18f316b3f62c02bf2b7a3096701780f78a4d2c67" -MY_PN="lua-MessagePack" -MY_P="${MY_PN}-${EGIT_COMMIT}" - -inherit toolchain-funcs - -DESCRIPTION="A pure Lua implementation of the MessagePack serialization format" -HOMEPAGE="https://fperrad.frama.io/lua-MessagePack" -SRC_URI="https://framagit.org/fperrad/${MY_PN}/-/archive/${EGIT_COMMIT}/${MY_P}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="luajit test" - -# Needed 'lua-TestMore' Lua module not in tree -RESTRICT="test" - -RDEPEND=" - luajit? ( dev-lang/luajit:2 ) - !luajit? ( dev-lang/lua:0 ) -" - -BDEPEND=" - virtual/pkgconfig - test? ( ${RDEPEND} ) -" - -src_compile() { - :; -} - -src_install() { - local myemakeargs=( - "LIBDIR=${ED}/$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD $(usex luajit 'luajit' 'lua'))" - "LUAVER=$($(tc-getPKG_CONFIG) --variable $(usex luajit 'abiver' 'V') $(usex luajit 'luajit' 'lua'))" - ) - - emake "${myemakeargs[@]}" install - - einstalldocs -} diff --git a/dev-lua/mpack/Manifest b/dev-lua/mpack/Manifest index 8b7ebcc7d5b4..e07fd5b835f8 100644 --- a/dev-lua/mpack/Manifest +++ b/dev-lua/mpack/Manifest @@ -1,2 +1 @@ -DIST mpack-1.0.4.tar.gz 46382 BLAKE2B 5092830e1a970ad96686ede4d96833a210543418cb23f218ba774bfd724267344f9e44e367490bb33dae8023e1145202ea6e457be7753a426eae990df906547d SHA512 8e40a562faf8b62137dec0733cbb9006fa7054e5a47bdd128fb4dfd676fac4e4385a23c3d908a4ce2edd65d673db25916695fa74bc08c5316b0c80e571a7442c DIST mpack-1.0.8.tar.gz 15616 BLAKE2B 06593296d1d36459127bf35eaeb37c894a0c0c6ccff0969cd0a82bee1920a715801db26f0ba0bc54a56399d07efc262666ee4ce79878288a5c0221fd27febea1 SHA512 6d21cc6bbdee583a1d808742991459e4b1796f347b2f4eaa747b576f5bb1ca989123339120e43246bac859c20e6f46ac57116ce9f135157256fecbd8cf817f75 diff --git a/dev-lua/mpack/mpack-1.0.4.ebuild b/dev-lua/mpack/mpack-1.0.4.ebuild deleted file mode 100644 index 0ad6a94afedf..000000000000 --- a/dev-lua/mpack/mpack-1.0.4.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="Lua bindings for libmpack" -HOMEPAGE="https://github.com/libmpack/libmpack/" -SRC_URI="https://github.com/libmpack/libmpack/archive/${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/libmpack-${PV}/binding/lua" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="luajit test" -RESTRICT="!test? ( test )" - -RDEPEND=" - !luajit? ( >=dev-lang/lua-5.1:0= ) - luajit? ( dev-lang/luajit:2= )" - -DEPEND=" - ${RDEPEND} - virtual/pkgconfig - test? ( dev-lua/busted )" - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - USE_SYSTEM_LUA=yes \ - LUA_INCLUDE="$($(tc-getPKG_CONFIG) --cflags $(usex luajit 'luajit' 'lua'))" \ - LUA_LIB="$($(tc-getPKG_CONFIG) --libs $(usex luajit 'luajit' 'lua'))" -} - -src_test() { - busted -o gtest test.lua || die -} - -src_install() { - emake \ - DESTDIR="${D}" \ - USE_SYSTEM_LUA=yes \ - LUA_CMOD_INSTALLDIR="$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD $(usex luajit 'luajit' 'lua'))" \ - install -} diff --git a/dev-lua/mpack/mpack-1.0.8-r1.ebuild b/dev-lua/mpack/mpack-1.0.8-r1.ebuild deleted file mode 100644 index 6a4b3afa624e..000000000000 --- a/dev-lua/mpack/mpack-1.0.8-r1.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -MY_PN="lib${PN}-lua" - -DESCRIPTION="Lua bindings for libmpack" -HOMEPAGE="https://github.com/libmpack/libmpack/" -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 ~x86" -IUSE="luajit test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/libmpack - luajit? ( dev-lang/luajit:2= ) - !luajit? ( >=dev-lang/lua-5.1:0= ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig - test? ( - dev-lua/busted - ${RDEPEND} - ) -" - -src_compile() { - local myemakeargs=( - "CC=$(tc-getCC)" - "LUA_INCLUDE=$($(tc-getPKG_CONFIG) --cflags $(usex luajit 'luajit' 'lua'))" - "LUA_LIB=$($(tc-getPKG_CONFIG) --libs $(usex luajit 'luajit' 'lua'))" - "USE_SYSTEM_MPACK=yes" - "USE_SYSTEM_LUA=yes" - ) - - emake "${myemakeargs[@]}" -} - -src_test() { - if use luajit; then - # "[ 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. - ewarn "Not running tests under ${ELUA} because they are known to fail" - return - else - busted --lua=lua test.lua || die - fi -} - -src_install() { - local myemakeargs=( - "DESTDIR=${ED}" - "LUA_CMOD_INSTALLDIR=$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD $(usex luajit 'luajit' 'lua'))" - "USE_SYSTEM_MPACK=yes" - "USE_SYSTEM_LUA=yes" - ) - - emake "${myemakeargs[@]}" install - - einstalldocs -} diff --git a/dev-lua/toluapp/toluapp-1.0.93_p20190513-r1.ebuild b/dev-lua/toluapp/toluapp-1.0.93_p20190513-r1.ebuild deleted file mode 100644 index 66740e80284c..000000000000 --- a/dev-lua/toluapp/toluapp-1.0.93_p20190513-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils - -MY_PN=${PN/pp/++} -COMMIT_ID="b34075b76835b778bb6b2ce0aa224afd9d182887" - -DESCRIPTION="A tool to integrate C/C++ code with Lua" -HOMEPAGE="https://github.com/LuaDist/toluapp" -SRC_URI="https://github.com/LuaDist/toluapp/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 ppc ppc64 sparc x86" -IUSE="" - -RDEPEND="=dev-lang/lua-5.1*:0=[deprecated]" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${PN}-${COMMIT_ID}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.0.93_p20190513-fix-multilib.patch -) -CMAKE_REMOVE_MODULES_LIST="dist lua FindLua" diff --git a/dev-lua/toluapp/toluapp-1.0.93_p20190513-r2.ebuild b/dev-lua/toluapp/toluapp-1.0.93_p20190513-r2.ebuild deleted file mode 100644 index b717b9263fe0..000000000000 --- a/dev-lua/toluapp/toluapp-1.0.93_p20190513-r2.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -MY_PN=${PN/pp/++} -COMMIT_ID="b34075b76835b778bb6b2ce0aa224afd9d182887" - -DESCRIPTION="A tool to integrate C/C++ code with Lua" -HOMEPAGE="https://github.com/LuaDist/toluapp" -SRC_URI="https://github.com/LuaDist/toluapp/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 ppc ppc64 sparc x86" -IUSE="" - -RDEPEND="dev-lang/lua:0=" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${PN}-${COMMIT_ID}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.0.93_p20190513-fix-multilib.patch -) -CMAKE_REMOVE_MODULES_LIST="dist lua FindLua" diff --git a/dev-ml/Manifest.gz b/dev-ml/Manifest.gz index 8fac1199ba29..ea14b5427631 100644 Binary files a/dev-ml/Manifest.gz and b/dev-ml/Manifest.gz differ diff --git a/dev-ml/camldbm/camldbm-1.2.ebuild b/dev-ml/camldbm/camldbm-1.2.ebuild index 4bae2351d3f3..4b6ad3aee3d6 100644 --- a/dev-ml/camldbm/camldbm-1.2.ebuild +++ b/dev-ml/camldbm/camldbm-1.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,6 +16,11 @@ DEPEND=">=sys-libs/gdbm-1.9.1-r2[berkdb] >=dev-lang/ocaml-3.12:=[ocamlopt]" RDEPEND="${DEPEND}" +QA_FLAGS_IGNORED=( + /usr/'lib.*'/ocaml/dbm.cmxs + /usr/'lib.*'/ocaml/stublibs/dllcamldbm.so +) + src_install() { dodir "$(ocamlc -where)/stublibs" # required and makefile does not create it emake LIBDIR="${D}/$(ocamlc -where)" install diff --git a/dev-ml/camldbm/metadata.xml b/dev-ml/camldbm/metadata.xml index 6f49eba8f496..9f27ba42c7de 100644 --- a/dev-ml/camldbm/metadata.xml +++ b/dev-ml/camldbm/metadata.xml @@ -1,5 +1,8 @@ - + + ml@gentoo.org + ML + diff --git a/dev-php/Manifest.gz b/dev-php/Manifest.gz index 3a73d708f8aa..6030a80ef8b4 100644 Binary files a/dev-php/Manifest.gz and b/dev-php/Manifest.gz differ diff --git a/dev-php/pecl-apcu/Manifest b/dev-php/pecl-apcu/Manifest index 6e3d57640682..ee5a4d2cf52c 100644 --- a/dev-php/pecl-apcu/Manifest +++ b/dev-php/pecl-apcu/Manifest @@ -1,2 +1 @@ -DIST apcu-5.1.18.tgz 94668 BLAKE2B c88af867a5f0f3feb550b4b93b83451d972d8f9c2281af8b000b45cb42e2d005f82fe626da8665e0490c79bc378cf9ee5c9a0136d0b490a1155a885bb56fe4f2 SHA512 5e9c5b4540be7abdf2f473d2f8955d8708934a1d6e05cb2c99154cc7ba8a2bbf9afde51769e20f46ef278efd6f60b9172e0864c31e0976b9d3096a337035e7a9 DIST apcu-5.1.19.tgz 96583 BLAKE2B 330c08a4e557691d0b402111877b3caf56b211256db17cce52a76aeefce7237505eca4ecd71f3770ef3c405182a1604a92cc458cb9bca435b42370fe917e21a7 SHA512 45077e3bd0eac207539e2eafe21968c71f49b8c8920168dbafa87961b041f1d348b6bf1c130104744bc541e1f690854f0a29062e9520db81c04edeee3ef2ed99 diff --git a/dev-php/pecl-apcu/pecl-apcu-5.1.18.ebuild b/dev-php/pecl-apcu/pecl-apcu-5.1.18.ebuild deleted file mode 100644 index 187fdd7b9eff..000000000000 --- a/dev-php/pecl-apcu/pecl-apcu-5.1.18.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PHP_EXT_NAME="apcu" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" -DOCS=( NOTICE README.md TECHNOTES.txt ) - -USE_PHP="php7-1 php7-2 php7-3 php7-4" - -inherit php-ext-pecl-r3 - -KEYWORDS="amd64 arm64 x86" - -DESCRIPTION="Stripped down version of APC supporting only user cache" -LICENSE="PHP-3.01" -SLOT="7" - -LOCKS="pthreadmutex pthreadrw spinlock semaphore" - -LUSE="" -for l in ${LOCKS}; do - LUSE+="lock-${l} " -done - -IUSE="+mmap ${LUSE/lock-pthreadrw/+lock-pthreadrw}" - -REQUIRED_USE="^^ ( $LUSE )" - -src_prepare() { - php-ext-source-r3_src_prepare - # Remove broken tests from php 7.4 due to trivial output differences - if use php_targets_php7-4 ; then - php_init_slot_env "php7.4" - rm "${PHP_EXT_S}"/tests/apc_entry_00{2,3}.phpt || die - fi -} - -src_configure() { - local PHP_EXT_ECONF_ARGS=( - --enable-apcu - $(use_enable mmap apcu-mmap) - $(use_enable lock-spinlock apcu-spinlocks) - ) - # Broken upstream autoconf test disables if present at all - use lock-pthreadrw || PHP_EXT_ECONF_ARGS+=( --disable-apcu-rwlocks ) - - php-ext-source-r3_src_configure -} - -src_install() { - php-ext-pecl-r3_src_install - - insinto /usr/share/php7/apcu - doins apc.php -} - -pkg_postinst() { - elog "The apc.php file shipped with this release of pecl-apcu was" - elog "installed to ${EPREFIX}/usr/share/php7/apcu/." - elog - elog "If you depend on the apc_* functions," - elog "please install dev-php/pecl-apcu_bc as this extension no longer" - elog "provides backwards compatibility." -} diff --git a/dev-php/pecl-apcu/pecl-apcu-5.1.19.ebuild b/dev-php/pecl-apcu/pecl-apcu-5.1.19.ebuild index 7c59ac219002..777b8df0cd0c 100644 --- a/dev-php/pecl-apcu/pecl-apcu-5.1.19.ebuild +++ b/dev-php/pecl-apcu/pecl-apcu-5.1.19.ebuild @@ -12,7 +12,7 @@ USE_PHP="php7-2 php7-3 php7-4 php8-0" inherit php-ext-pecl-r3 -KEYWORDS="amd64 ~arm64 x86" +KEYWORDS="amd64 arm64 x86" DESCRIPTION="Stripped down version of APC supporting only user cache" LICENSE="PHP-3.01" diff --git a/dev-php/pecl-apcu_bc/Manifest b/dev-php/pecl-apcu_bc/Manifest index 99201b68c412..c73d9fc2e92e 100644 --- a/dev-php/pecl-apcu_bc/Manifest +++ b/dev-php/pecl-apcu_bc/Manifest @@ -1,2 +1 @@ -DIST apcu_bc-1.0.4.tgz 7406 BLAKE2B c7099f13bfe589c9752fb7fa8454f16094a13d63924ceef614db1fef11d37265673e745383241836685dcabca8ae83af3c71ba2f2d8a77b4ab213db209924f12 SHA512 633ae74c4be3ee0c2c98540f696dc440f3f345c52811e856cb46c65c6b6fa8fa9f06ecb1d784cd990cf8b5219b65e14a29b97e57828dc6e7aa6b91d2475e6a0e DIST apcu_bc-1.0.5.tgz 7415 BLAKE2B d86c5a4949239d9196b4bfc22c19f97ff66b47ec87962540295a0d9f08c72c0f1213439dd6c4006355a73c7fa3dbdcc51e9f897b289f134116d33d9eb2c67cb7 SHA512 60ee1540c31873d7963fd8efa6293006eae19cb6c7815cea1f3b50b197a982840472a1e632cc7af5666f6af5522008bec30e48cd764920240a6c5a0d0eb0e6e0 diff --git a/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4-r1.ebuild b/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4-r1.ebuild deleted file mode 100644 index 4841dd913dec..000000000000 --- a/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PHP_INI_NAME="bc_apc" -PHP_EXT_NAME="apc" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" -PHP_EXT_EXTRA_ECONF="" -DOCS=( README.md ) - -USE_PHP="php7-1 php7-2 php7-3" - -inherit php-ext-pecl-r3 multilib - -KEYWORDS="amd64 x86" - -DESCRIPTION="Provides APC backwards compatibility functions via APCu" -LICENSE="PHP-3.01" -SLOT="0" -IUSE="" - -DEPEND="dev-php/pecl-apcu:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?]" -RDEPEND="${DEPEND}" - -src_test() { - # This fixed version is necessary to have apcu load - # from the install before the tested apc. - # It is intentional to specify phpoptions twice. - # This mimics the Makefile. - local slot phpoptions - for slot in $(php_get_slots); do - php_init_slot_env "${slot}" - ln -s "${EXT_DIR}/apcu$(get_libname)" \ - "modules/" || die - phpoptions=( -n -d extension_dir="${PHP_EXT_S}/modules" - -d extension=apcu$(get_libname) - -d extension=apc$(get_libname) ) - NO_INTERACTION="yes" TEST_PHP_EXECUTABLE="${PHPCLI}" \ - "${PHPCLI}" "${phpoptions[@]}" \ - run-tests.php "${phpoptions[@]}" || die - done -} diff --git a/dev-php/pecl-mailparse/pecl-mailparse-3.1.1.ebuild b/dev-php/pecl-mailparse/pecl-mailparse-3.1.1.ebuild index 7d35d94796ae..35e848549fa6 100644 --- a/dev-php/pecl-mailparse/pecl-mailparse-3.1.1.ebuild +++ b/dev-php/pecl-mailparse/pecl-mailparse-3.1.1.ebuild @@ -14,7 +14,7 @@ DOCS=( README.md ) inherit php-ext-pecl-r3 -KEYWORDS="amd64 ~ppc ppc64 x86" +KEYWORDS="amd64 ppc ppc64 x86" DESCRIPTION="PHP extension for parsing and working with RFC822 and MIME compliant messages" LICENSE="PHP-3.01" diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index ba6d682e4d4a..f927b6423d3b 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/bpython/Manifest b/dev-python/bpython/Manifest index 68f1f88354c6..9635173bd57c 100644 --- a/dev-python/bpython/Manifest +++ b/dev-python/bpython/Manifest @@ -1 +1,2 @@ DIST bpython-0.20.1.tar.gz 223953 BLAKE2B b26ee6e4d41609e9a04a013d90f4ae7f598ba28028d9982a77aa7f11887a60c39855e875ae004b416e375b0c906e066a22a18f0251d2e7192d690fe03afe51c7 SHA512 ff69b175afbb1f050f1aa481966bbc32580b3d113a886f49a97fa8f01e3c8c0edf2c0075785fc61ac616168c97d61ee7daeed85d0b08f1317fb774f7ad6bf439 +DIST bpython-0.21.tar.gz 208206 BLAKE2B 22db7abe3786df337af50f6217fa8c6702871b50de41245797270e70622084a22b3d6615cfe634044599a532c5bc14677b01dc77042d228213eaae2cad11b623 SHA512 a0eea1b9c2329ce5665456e99703ef476faab38f880eb8a330a6536970888cfdaada9f0e377d3c1acd8b6c79eb0c562ada43e82bac9df4cce5878594c3399ddf diff --git a/dev-python/bpython/bpython-0.21.ebuild b/dev-python/bpython/bpython-0.21.ebuild new file mode 100644 index 000000000000..4625638f76d2 --- /dev/null +++ b/dev-python/bpython/bpython-0.21.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="Syntax highlighting and autocompletion for the Python interpreter" +HOMEPAGE="https://www.bpython-interpreter.org/ https://github.com/bpython/bpython https://pypi.org/project/bpython/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=dev-python/curtsies-0.3.5[${PYTHON_USEDEP}] + dev-python/cwcwidth[${PYTHON_USEDEP}] + dev-python/greenlet[${PYTHON_USEDEP}] + dev-python/jedi[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/pyxdg[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/urwid[${PYTHON_USEDEP}] + dev-python/watchdog[${PYTHON_USEDEP}] + " +# sphinx is used implicitly to build manpages +BDEPEND=" + dev-python/sphinx[${PYTHON_USEDEP}] + " + +DOCS=( AUTHORS CHANGELOG sample.theme light.theme ) + +distutils_enable_sphinx doc/sphinx/source --no-autodoc +distutils_enable_tests unittest diff --git a/dev-python/cachetools/Manifest b/dev-python/cachetools/Manifest index 4e25d9d8c648..81e204debe71 100644 --- a/dev-python/cachetools/Manifest +++ b/dev-python/cachetools/Manifest @@ -1,2 +1,3 @@ DIST cachetools-4.1.1.tar.gz 23574 BLAKE2B 5777d243ae87635766811fd2aea8789f9f1674ae3a7ddcc08bb3c8d4345002d65cdbd00cbaf75ba801dccffb1896a75688a6e97f984e1d498a93726854398196 SHA512 254e8821feaaf4fff656aa2beaf0b2c1c6dbe8698148be783bb18a6476f758061471906e4774f47bd8722dbbbc09745088a8f61eb5c455fbe85ef17a3816ce7d DIST cachetools-4.2.0.tar.gz 24713 BLAKE2B 06488dbc37f99081ed0dd3784f35d3471a57a7674b9bc9aff5eb366b06e65179bd17ac409abee3e13e4040fb8b4824a1591b0a3db3e8b8621d7d2d3e3aec6561 SHA512 d573d0ad9a6371d25526dc5de8db31f701419ced2206109e101faeb0f867fdaf2ebeaa7f0b92554b9e5b3486253a314863d818a53ba9211824aa8a46618f7052 +DIST cachetools-4.2.1.tar.gz 24753 BLAKE2B 90345deed94ea6d5ce9c4e3d609ae5a5a8e29f506e559c017fe24e5e8c73e056da4bd4d01e80ccc91686e03ff204e1918375b9701abd8ab571241d09c7556cbb SHA512 bf5a05fc513241f05e61547b5d45813308f20a58319d1c057f3269533a55b739203ba74bc2360d38383cd222a148dcf192f6e58614258bcac2855b633145733c diff --git a/dev-python/cachetools/cachetools-4.2.1.ebuild b/dev-python/cachetools/cachetools-4.2.1.ebuild new file mode 100644 index 000000000000..4e0424ad1b9d --- /dev/null +++ b/dev-python/cachetools/cachetools-4.2.1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="Extensible memoizing collections and decorators" +HOMEPAGE="https://pypi.org/project/cachetools/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +distutils_enable_tests pytest diff --git a/dev-python/cfn-python-lint/Manifest b/dev-python/cfn-python-lint/Manifest index 97d19f4e9652..0c473692247f 100644 --- a/dev-python/cfn-python-lint/Manifest +++ b/dev-python/cfn-python-lint/Manifest @@ -2,3 +2,4 @@ DIST cfn-python-lint-0.44.1.tar.gz 5339578 BLAKE2B 7982cba9fe422a8323c6ea270bd7f DIST cfn-python-lint-0.44.2.tar.gz 5515542 BLAKE2B 9da951dc7faa000d2abd1610595e463045079e5a2e73ad59779fb715f32fca39c1cef189484d62de3bc57a48b7776f5cebcc21c39948b7d73e394b89a4cebba9 SHA512 ca0cba19f930960711676ec285b10e0b60ff36359326098d5040bd2fd8f7ca6cfee985544c4bf94770baefa0e50eecead45c4d769ff3587031c3bf463f26355f DIST cfn-python-lint-0.44.3.tar.gz 5591470 BLAKE2B 7d8f6763023a86d528f132b36b9b860b726241576037a1dd92a296f4b5ec5389ffe24e4a41a8f504ae8351b9dafc166d96ae3b17b90ac23062af2159baa36220 SHA512 a3c5fa435ed9afce32336d01cfc6c94d1965dc5c296601aba75064fdaecda9df5bfaf2976837729b56f00bc3e8cea7fe8cd5141c58335091a35dbec31a630b69 DIST cfn-python-lint-0.44.4.tar.gz 5632477 BLAKE2B 3520cb016f926e180bb1547b4e467d6fb5251ca5e2ef0ceaaed487f40f10b58f5b6700a5f1995d4a764b53e83ba8a4ab7a9e67fe9803557bef54df3036e691ee SHA512 39e244963109953b92cc9e9fd84e33ede157c9e752854f685dd81d2a3e09ea88ec402addc8f2c12f044f0f7ab8e0bbf53486153be9517b76f0a89fed3ff94a14 +DIST cfn-python-lint-0.44.5.tar.gz 5657765 BLAKE2B e35fca9cf8232bc802666333184a52b544bad5858ec8e4c16fe435ea5c421ca25296bb9d8a3bf351276dc1e36ee3101cb0c950ca9d8ce87f5dd2f64cf347ba30 SHA512 e23e415f7d5dd3933e70e7c5b0d9d001bc9aefd0ec67ba9245b4cecbad0c5470376439c12d2cd532eb39e900a325de52c4856351bba2ca27cdc0760ed091ccca diff --git a/dev-python/cfn-python-lint/cfn-python-lint-0.44.5.ebuild b/dev-python/cfn-python-lint/cfn-python-lint-0.44.5.ebuild new file mode 100644 index 000000000000..1b41006fc099 --- /dev/null +++ b/dev-python/cfn-python-lint/cfn-python-lint-0.44.5.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{7..9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend +inherit distutils-r1 + +DESCRIPTION="CloudFormation Linter" +HOMEPAGE="https://pypi.org/project/cfn-lint/ https://github.com/aws-cloudformation/cfn-python-lint" +SRC_URI="https://github.com/aws-cloudformation/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + >=dev-python/aws-sam-translator-1.25.0[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/importlib_resources[${PYTHON_USEDEP}] + ' python3_6) + dev-python/jsonpatch[${PYTHON_USEDEP}] + >=dev-python/jsonschema-3.0[${PYTHON_USEDEP}] + dev-python/junit-xml[${PYTHON_USEDEP}] + dev-python/networkx[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + >=dev-python/requests-2.15.0[${PYTHON_USEDEP}] + >=dev-python/six-1.11[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests --install unittest + +PATCHES=( + "${FILESDIR}/cfn-python-lint-0.30.1-tests.patch" +) + +src_prepare() { + # unpin the deps + sed -e 's:~=[0-9.]*::' -i setup.py || die + # requires git checkout + sed -e 's:test_update_docs:_&:' \ + -i test/unit/module/maintenance/test_update_documentation.py || die + distutils-r1_src_prepare +} diff --git a/dev-python/coverage/coverage-5.3.1.ebuild b/dev-python/coverage/coverage-5.3.1.ebuild index d230bee7bae8..b1c4533ff516 100644 --- a/dev-python/coverage/coverage-5.3.1.ebuild +++ b/dev-python/coverage/coverage-5.3.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~x64-macos" #IUSE="test" # The tests are impossible to appease. Please run them externally # via tox. Or fix the ebuild if you have hours of time to spend diff --git a/dev-python/cx_Freeze/Manifest b/dev-python/cx_Freeze/Manifest index 6dbe8b8495e8..61f8ec1d25b0 100644 --- a/dev-python/cx_Freeze/Manifest +++ b/dev-python/cx_Freeze/Manifest @@ -1 +1,2 @@ DIST cx_Freeze-6.4.2.tar.gz 108571 BLAKE2B 742d2491154706f51ebb3e072428afac1ce5c647f2b8cb6325ea166bbedc1852503ad40e56a532345f1e2a045532620cdad24622e19ecb12d9577cf57abd291d SHA512 4c9a92b6f8dc458f82abb144171b18db1349e75b237f707ca37b7b68527508e8fb3adcf5d7b142922709727501fdc46f16a01619b29e98a6af1a0c09f9306b82 +DIST cx_Freeze-6.5.3.tar.gz 112334 BLAKE2B 77558e35ca13bc598a810ea70acfe59901c036daf37b2f9582c4f2761680d54d5be559e9abbf16bd995d7f4a4e7bd5d8793e0b53c24111767d54a69c633c9b46 SHA512 37ba5c920306ff62a21ab46c1b9fd6b1780864095d00223776c308fa28e60a5473c74e7da4e7478725de14b7f5628d8d8445f42c0671bc502e5e2d8ecb5ffae5 diff --git a/dev-python/cx_Freeze/cx_Freeze-6.5.3.ebuild b/dev-python/cx_Freeze/cx_Freeze-6.5.3.ebuild new file mode 100644 index 000000000000..9599093bee6c --- /dev/null +++ b/dev-python/cx_Freeze/cx_Freeze-6.5.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python{3_7,3_8,3_9} ) +inherit distutils-r1 + +DESCRIPTION="Create standalone executables from Python scripts" +HOMEPAGE="https://cx-freeze.readthedocs.io/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="PYTHON" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +PATCHES=( + # bug #491602 + "${FILESDIR}/${PN}-6.5.3-buildsystem.patch" +) + +# bug #765385 +RESTRICT="test" diff --git a/dev-python/cx_Freeze/files/cx_Freeze-6.5.3-buildsystem.patch b/dev-python/cx_Freeze/files/cx_Freeze-6.5.3-buildsystem.patch new file mode 100644 index 000000000000..c280767a442d --- /dev/null +++ b/dev-python/cx_Freeze/files/cx_Freeze-6.5.3-buildsystem.patch @@ -0,0 +1,11 @@ +--- a/setup.py 2021-01-25 13:34:17.219027624 +0300 ++++ b/setup.py 2021-01-25 13:34:26.107026971 +0300 +@@ -67,8 +67,6 @@ + if "--with-lto" in get_config_var("CONFIG_ARGS"): + extra_args.append("-flto") + extra_args.append("-Wl,-export_dynamic") +- else: +- extra_args.append("-s") + self.compiler.link_executable( + objects, + fullname, diff --git a/dev-python/gevent/gevent-20.12.0.ebuild b/dev-python/gevent/gevent-20.12.0.ebuild index 1890739c7d37..350626dc50b4 100644 --- a/dev-python/gevent/gevent-20.12.0.ebuild +++ b/dev-python/gevent/gevent-20.12.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" +KEYWORDS="~alpha ~amd64 ~arm arm64 ~mips ~ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" IUSE="doc examples test" RESTRICT="!test? ( test )" diff --git a/dev-python/google-api-core/Manifest b/dev-python/google-api-core/Manifest index 32fe914de2f6..b12781dc0e7f 100644 --- a/dev-python/google-api-core/Manifest +++ b/dev-python/google-api-core/Manifest @@ -1,2 +1,3 @@ DIST google-api-core-1.24.0.tar.gz 129718 BLAKE2B 08bb8aef03d5f5cbc96c06c01d103e1e569f15bad5084ba24a5e13f732b10d9d97a299fe22db7dfdaea73809e9458b811de87a028f77dcb00ca62fc069af63b1 SHA512 9517e86389edb824fe178128003fa245857de47f4b2416e0a345b66e02fe5fb109b7a72f2e9adfd52478862165548ce6945761a5a2ca02eda4a0187ca608760b DIST google-api-core-1.25.0.tar.gz 130928 BLAKE2B be7864046b2d04ecbbcf368803e77eb472a06cbb0f1601e8c95209bbdbeff6a335a5cc7f75fd89e8e9a91b566aa5d50a9b06ebad4c65c59f54de9d5c7a2951e7 SHA512 d8a1f973ad5bece84fe413528491a37d89ca39d9638a8508ec0cf8359cc238ea62c76e2563cb5ef995e4d0997dd3e4aa1feda7d0e48c21f85851a50f7f90404c +DIST google-api-core-1.25.1.tar.gz 131189 BLAKE2B 3b5ec782b0492a699d146539d95f613c07aab00735a08287eb93f3d458f98bd57b5e46082fde37aa4dd9986c24443ea22707ec18ec8a4dd2f80f5bb937bb4153 SHA512 cd29370b5a3eaca2c9b5076b6df12b114f28132fcbae63e7574dc9380b7caeea4c1ed476bc332ed16845efe85a44775391ba4f6ceb705b7ece49837056cedc25 diff --git a/dev-python/google-api-core/google-api-core-1.25.1.ebuild b/dev-python/google-api-core/google-api-core-1.25.1.ebuild new file mode 100644 index 000000000000..452b0c651760 --- /dev/null +++ b/dev-python/google-api-core/google-api-core-1.25.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend +inherit distutils-r1 + +DESCRIPTION="Core Library for Google Client Libraries" +HOMEPAGE="https://github.com/googleapis/python-api-core + https://googleapis.dev/python/google-api-core/latest" +SRC_URI="https://github.com/googleapis/${PN//google/python}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P//google/python}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + dev-python/namespace-google[${PYTHON_USEDEP}] + dev-python/protobuf-python[${PYTHON_USEDEP}] + dev-python/googleapis-common-protos[${PYTHON_USEDEP}] + >=dev-python/google-auth-1.21.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.18.0[${PYTHON_USEDEP}] + grozin@gentoo.org Andrey Grozin + + python@gentoo.org + Python + iminuit - iminuit/iminuit + scikit-hep/iminuit diff --git a/dev-python/iniconfig/iniconfig-1.1.1.ebuild b/dev-python/iniconfig/iniconfig-1.1.1.ebuild index 5733655e09f4..0b2889853b1f 100644 --- a/dev-python/iniconfig/iniconfig-1.1.1.ebuild +++ b/dev-python/iniconfig/iniconfig-1.1.1.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~x64-macos" BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]" diff --git a/dev-python/jaraco-classes/Manifest b/dev-python/jaraco-classes/Manifest index b9df73dcccb2..9fc528fd1b24 100644 --- a/dev-python/jaraco-classes/Manifest +++ b/dev-python/jaraco-classes/Manifest @@ -1 +1,2 @@ DIST jaraco.classes-3.1.0.tar.gz 11616 BLAKE2B 5b438f7582a9a93ca4fc97a71725c1fe3275e4bfb48f5e06b549f7ac8fb6900262165b1ad0638114d3a8d11c10f449b7930d4c2d66fa928665aaff820af88937 SHA512 697d892a01c4e8ad83f57e69dcd744f976cea67fa3efcd55b10eda02f6bf1916162c0fa952d0d711e62f62fdff62740ee55a93be9fc46ebd4ab22416092f0ff6 +DIST jaraco.classes-3.2.0.tar.gz 12277 BLAKE2B 4512d2ef96a6dba8c5f226da5947e69beb21a7bef20402fc1ef3cd8a0495bedadaf261b1d47757af10838897923ce0561ac063cb2d6d53c2ebf2be909c335dc1 SHA512 89cc24826c647ebb4a08ceb76159e6d123b7067c7f725989195b073895f1482a04db82e3e52059faf825a6dec7c9b9201859267de06880d4a80d397a7ab209b6 diff --git a/dev-python/jaraco-classes/jaraco-classes-3.2.0.ebuild b/dev-python/jaraco-classes/jaraco-classes-3.2.0.ebuild new file mode 100644 index 000000000000..20b9ab27a6cb --- /dev/null +++ b/dev-python/jaraco-classes/jaraco-classes-3.2.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( pypy3 python3_{7..9} ) + +inherit distutils-r1 + +MY_P="${P/-/.}" +DESCRIPTION="Classes used by other projects by developer jaraco" +HOMEPAGE="https://github.com/jaraco/jaraco.classes" +SRC_URI="mirror://pypi/${PN:0:1}/${PN/-/.}/${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos" + +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + dev-python/toml[${PYTHON_USEDEP}] +" + +distutils_enable_sphinx docs \ + ">=dev-python/jaraco-packaging-3.2" \ + ">=dev-python/rst-linker-1.9" +distutils_enable_tests pytest diff --git a/dev-python/keyring/Manifest b/dev-python/keyring/Manifest index 32f37e4cca41..177ef3c44b60 100644 --- a/dev-python/keyring/Manifest +++ b/dev-python/keyring/Manifest @@ -1,3 +1,3 @@ -DIST keyring-21.5.0.tar.gz 45885 BLAKE2B 73fe60f0d414cad3b36e0c995b63f048f75358b9f4d389f41ae3a32d68c82ccb9d1fe76d9bd375d06519bcebb8ad9aa34ba98676bf37f3c5a10d9424c161e074 SHA512 25cbbcac0810829e48e6ff4c9497b8c9f3c03011047e76a6901f6c422d6eb1711e535233a90d96f8dc16a77352d4228114f3b447d9e196184a9d87402658f5bd DIST keyring-21.7.0.tar.gz 46998 BLAKE2B 469d2de254ed88604a40a4e05c001f50986f55296d35b54969cfa8612473cbd5184f36bd6babdfb6631ab908e03f81858434b7e52471a2d366f97293c2c0ed93 SHA512 8fc5e8f0f0cf2a336c6ce900d59fcd31b4ec270d62559a1c2b4c36803428532b463bad0b2ace9af33b6fb0d50de94229449c4ef4042287ecaa8f1fac37c5faf8 DIST keyring-21.8.0.tar.gz 47639 BLAKE2B 3b8b11cd7ea121f9d8544a5775d9f62de23613da0265f0d815687ad311f4a7b6ed431142682df3059fbe43a342c6151871782a850c416a5b50c1df14a64d609a SHA512 4acadf421946644466b5c43481eddd111170185ba3993f4fec38cad0129259bd17aebad4dc2e2d2e88e84aa814e62d37b39efe7385ccd569e40a5291d5f4ae40 +DIST keyring-22.0.0.tar.gz 47693 BLAKE2B 88a151327778e5e039c43caa68e53705d985d6ef2b7b668df1d941160b843f47a0e2f6f79c9afc39bc66a36373c0374333296a3cb98f1c65c620a8fad3f43fec SHA512 5e9e27cf9b09f042747909b442864a1ea0669b36f69592538b487978a582e16e58056d6bd68b35566143000ed3f5c7733e3ef471c66935a811e09fc4b7f56f6f diff --git a/dev-python/keyring/keyring-21.7.0.ebuild b/dev-python/keyring/keyring-21.7.0.ebuild index e2a8239584f5..891ec2d70560 100644 --- a/dev-python/keyring/keyring-21.7.0.ebuild +++ b/dev-python/keyring/keyring-21.7.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,7 +14,7 @@ SRC_URI="https://github.com/jaraco/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" SLOT="0" LICENSE="PSF-2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos" IUSE="doc" RDEPEND=" diff --git a/dev-python/keyring/keyring-21.5.0.ebuild b/dev-python/keyring/keyring-22.0.0.ebuild similarity index 78% rename from dev-python/keyring/keyring-21.5.0.ebuild rename to dev-python/keyring/keyring-22.0.0.ebuild index 1c9e6512b951..d62127ef81b5 100644 --- a/dev-python/keyring/keyring-21.5.0.ebuild +++ b/dev-python/keyring/keyring-22.0.0.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( pypy3 python3_{6..9} ) +PYTHON_COMPAT=( pypy3 python3_{7..9} ) inherit distutils-r1 @@ -14,8 +14,7 @@ SRC_URI="https://github.com/jaraco/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" SLOT="0" LICENSE="PSF-2" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos" -IUSE="doc" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos" RDEPEND=" dev-python/secretstorage[${PYTHON_USEDEP}] @@ -23,7 +22,7 @@ RDEPEND=" dev-python/jeepney[${PYTHON_USEDEP}] $(python_gen_cond_dep ' dev-python/importlib_metadata[${PYTHON_USEDEP}] - ' pypy3 python3_{5,6,7}) + ' pypy3 python3_7) " BDEPEND=" dev-python/setuptools_scm[${PYTHON_USEDEP}] @@ -36,7 +35,6 @@ distutils_enable_sphinx docs \ dev-python/rst-linker python_prepare_all() { - sed -i -e 's:--flake8 --black --cov --mypy::' pytest.ini || die rm tests/backends/test_kwallet.py || die distutils-r1_python_prepare_all diff --git a/dev-python/llfuse/Manifest b/dev-python/llfuse/Manifest index 19a139722185..10b53ddefdf9 100644 --- a/dev-python/llfuse/Manifest +++ b/dev-python/llfuse/Manifest @@ -1 +1,2 @@ DIST llfuse-1.3.6.tar.bz2 361750 BLAKE2B 74387a6aeb28c3f49234a4f430c3f2aaeefa2057d69e681405d9588c63b3a6e4a6daa58b8996541825c73ff4dabc5607874c2d7885586d793a6436e3f680aec2 SHA512 d67e39daf65c92ebb5bf69abb0c5dc3a88460228b5ec5ee762a11fc909369562411297e8ff9f512ee1ef539d8abec765924be581703fb7e99963c6512cb1f0bd +DIST llfuse-1.4.0.tar.gz 478758 BLAKE2B bec4d6b53936bc79ab4ca8fce7b34d60e39aff6128a186d58caeac68ad135d7d29bbd667cf669e065256e31e257ff4516ff967759d6152672659df0062d03e6d SHA512 8ab92912279a478ba50cf0c151cce3ce1125de27922a97c4da4b3af4ff0714e3a2c5a9e6fd10b87653eb552509491084f018ae3ce4feb7bf952de00a5be3eccc diff --git a/dev-python/llfuse/llfuse-1.3.6.ebuild b/dev-python/llfuse/llfuse-1.3.6.ebuild index 36cd2ebd58dc..4debdfd5f55d 100644 --- a/dev-python/llfuse/llfuse-1.3.6.ebuild +++ b/dev-python/llfuse/llfuse-1.3.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="amd64 ~ppc64 x86" +KEYWORDS="amd64 ~arm ~ppc64 x86" IUSE="doc examples" RDEPEND=" diff --git a/dev-python/llfuse/llfuse-1.4.0.ebuild b/dev-python/llfuse/llfuse-1.4.0.ebuild new file mode 100644 index 000000000000..bc330b795374 --- /dev/null +++ b/dev-python/llfuse/llfuse-1.4.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{7..9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Python bindings for the low-level FUSE API" +HOMEPAGE="https://github.com/python-llfuse/python-llfuse/ https://pypi.org/project/llfuse/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="doc examples" + +RDEPEND=" + >=sys-fs/fuse-2.8.0:0 +" +DEPEND=" + sys-apps/attr + virtual/pkgconfig +" + +PATCHES=( + "${FILESDIR}"/llfuse-1.3.5-cflags.patch +) + +distutils_enable_tests pytest + +python_install_all() { + use doc && local HTML_DOCS=( doc/html/. ) + use examples && dodoc -r examples + distutils-r1_python_install_all +} diff --git a/dev-python/natsort/Manifest b/dev-python/natsort/Manifest index 2496903f72af..a1bdb8cd5459 100644 --- a/dev-python/natsort/Manifest +++ b/dev-python/natsort/Manifest @@ -1 +1,2 @@ DIST natsort-7.1.0.tar.gz 143534 BLAKE2B 3ab6c977aca40330fac0af9e4be36d973e88d931799b3135a81daf0a475988af5cc2f9abb30ade1498aad07d9c986e514c7c8cdbbb63da195a81dded4f6f25da SHA512 41293d70c3dc2214f9dc1c123f31cd7886341ae25c6342ac49f3d53d06ba15ecd8d666f1763fe790848c93668940a81b7e7f1fe896f0b91f180ca557dd922ac3 +DIST natsort-7.1.1.tar.gz 142749 BLAKE2B dffd5b7b18ac49653d4d65ae1335c85d441748903aa983df092778476988cf0ca59c08526ee0da1761fce1afe4849d4c9a9e2f3e0c5400ebca2478781d0986dc SHA512 1903c933c6203ef0cd194ea444d79276b79ec385728a92b6e73d1698abc8e1351e96ed8ea4ae5f9f413ef6daecfd269a4d0de74c45eedff682fe929d8f977f30 diff --git a/dev-python/natsort/natsort-7.1.1.ebuild b/dev-python/natsort/natsort-7.1.1.ebuild new file mode 100644 index 000000000000..4e20f739fa86 --- /dev/null +++ b/dev-python/natsort/natsort-7.1.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="Natural sorting for Python" +HOMEPAGE="https://pypi.org/project/natsort/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ia64 ~x86" + +DEPEND=" + test? ( + dev-python/hypothesis[${PYTHON_USEDEP}] + dev-python/pytest-mock[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest diff --git a/dev-python/pychroot/Manifest b/dev-python/pychroot/Manifest index 374595c93e08..cf220a4297e1 100644 --- a/dev-python/pychroot/Manifest +++ b/dev-python/pychroot/Manifest @@ -1 +1 @@ -DIST pychroot-0.10.3.tar.gz 23637 BLAKE2B 9ea0d3fdbabddd2901cf263b9f29eb91a6a6eb732c8973773c69630a320d6e39f458fb4f420f099617ba4f6e43353fe36dc4576cb84bca271a8e7b4db260b36c SHA512 b4d9fab3d2ba9bd5fd9bf6bcb988a1e63ea03aef0c898baf724d51de97943cb41c0223a235f4fa9f733cf737a3089a90006ae5ecb9049d74ec8c78712a1b6e7a +DIST pychroot-0.10.4.tar.gz 23745 BLAKE2B cce7be8c88b193b69838f14dfad62a5374936039bfe6478b8448b9a7f9e1ffcb373d5649ad1953beec6ca9ae138adc6871e129418a6fc64067b09eb6d4b4fa4c SHA512 fd93dba0a104eebe238f56e254fc445e1d34a2dbec6dcc307327fb92ebd7c85b1e729497ec818b756dee934f267cad755037ff004f78623d858617e39b473468 diff --git a/dev-python/pychroot/pychroot-0.10.3.ebuild b/dev-python/pychroot/pychroot-0.10.4.ebuild similarity index 92% rename from dev-python/pychroot/pychroot-0.10.3.ebuild rename to dev-python/pychroot/pychroot-0.10.4.ebuild index 925ca082a684..6258c1a766d0 100644 --- a/dev-python/pychroot/pychroot-0.10.3.ebuild +++ b/dev-python/pychroot/pychroot-0.10.4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6..9} ) +PYTHON_COMPAT=( python3_{8,9} ) inherit distutils-r1 if [[ ${PV} == *9999 ]] ; then diff --git a/dev-python/pychroot/pychroot-9999.ebuild b/dev-python/pychroot/pychroot-9999.ebuild index 9ec7b332eb8a..6258c1a766d0 100644 --- a/dev-python/pychroot/pychroot-9999.ebuild +++ b/dev-python/pychroot/pychroot-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 diff --git a/dev-python/pycryptodome/pycryptodome-3.9.9-r1.ebuild b/dev-python/pycryptodome/pycryptodome-3.9.9-r1.ebuild index 9b15a6060a55..cafb6a82f9b4 100644 --- a/dev-python/pycryptodome/pycryptodome-3.9.9-r1.ebuild +++ b/dev-python/pycryptodome/pycryptodome-3.9.9-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -18,7 +18,7 @@ SRC_URI=" LICENSE="BSD-2 Unlicense" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86" IUSE="" DEPEND=" diff --git a/dev-python/pyfakefs/Manifest b/dev-python/pyfakefs/Manifest index e08a898ac782..6fe1839e516c 100644 --- a/dev-python/pyfakefs/Manifest +++ b/dev-python/pyfakefs/Manifest @@ -1,2 +1 @@ -DIST pyfakefs-4.3.2.tar.gz 194897 BLAKE2B c3b36e280cb73c4bcd2349382eb67726c19627b0c6dc392a0f38ec7f9f001e5ddbe93734de6d177c68ea1e2213c5c7d06827e3aa12af0c7cd744ba35b8d5df5c SHA512 50479d2ac7b8622ee30c4c2f09cb3d2bdfb315b4eb61eecb37f8946f038ec9048d653250a0f58dcef55b1b8347b040ecd416f61f26ecfdf7b083801114770803 DIST pyfakefs-4.3.3.tar.gz 194498 BLAKE2B 4ad300889e8c8462f4a237c2a12a9d93cbaaff6e9e6347e667bc366abf9705023eb1838c4291488c10a51d5209810c773edcb08c58e3759ccd9f851b17ea82e1 SHA512 e4cc3603496705216c1ea1448f835a19efa5a1429f3ecd67911ab2dc76d6754af7bb25312a6b15046355af26b8b72528acf68db50960d2eaba8bb3ef80fccaa0 diff --git a/dev-python/pyfakefs/pyfakefs-4.3.2.ebuild b/dev-python/pyfakefs/pyfakefs-4.3.2.ebuild deleted file mode 100644 index a5365edad911..000000000000 --- a/dev-python/pyfakefs/pyfakefs-4.3.2.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6..9} pypy3 ) -DISTUTILS_IN_SOURCE_BUILD=1 - -inherit distutils-r1 - -DESCRIPTION="a fake file system that mocks the Python file system modules" -HOMEPAGE="https://github.com/jmcgeheeiv/pyfakefs/ https://pypi.org/project/pyfakefs/" -SRC_URI="https://github.com/jmcgeheeiv/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" - -distutils_enable_tests pytest - -python_test() { - "${EPYTHON}" -m pyfakefs.tests.all_tests -v || die "tests failed under ${EPYTHON}" -} diff --git a/dev-python/pyfakefs/pyfakefs-4.3.3.ebuild b/dev-python/pyfakefs/pyfakefs-4.3.3.ebuild index 687f985da695..66a4dad83a9d 100644 --- a/dev-python/pyfakefs/pyfakefs-4.3.3.ebuild +++ b/dev-python/pyfakefs/pyfakefs-4.3.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,7 +14,7 @@ SRC_URI="https://github.com/jmcgeheeiv/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" distutils_enable_tests pytest diff --git a/dev-python/pygame/pygame-2.0.1.ebuild b/dev-python/pygame/pygame-2.0.1.ebuild index 8b75a6b5e7fd..ff63fff586dc 100644 --- a/dev-python/pygame/pygame-2.0.1.ebuild +++ b/dev-python/pygame/pygame-2.0.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,7 +17,7 @@ S=${WORKDIR}/${MY_P} LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="doc examples midi opengl test X" RESTRICT="!test? ( test )" diff --git a/dev-python/pyjwt/metadata.xml b/dev-python/pyjwt/metadata.xml index 4789bfa6fc45..969d60495d00 100644 --- a/dev-python/pyjwt/metadata.xml +++ b/dev-python/pyjwt/metadata.xml @@ -1,13 +1,14 @@ - - python@gentoo.org - Python - - - PyJWT - jpadilla/pyjwt - cpe:/a:pyjwt_project:pyjwt - + + python@gentoo.org + Python + + + + PyJWT + jpadilla/pyjwt + cpe:/a:pyjwt_project:pyjwt + diff --git a/dev-python/pyjwt/pyjwt-2.0.0.ebuild b/dev-python/pyjwt/pyjwt-2.0.0.ebuild index b74a2aeeafea..42b9cd8b8e27 100644 --- a/dev-python/pyjwt/pyjwt-2.0.0.ebuild +++ b/dev-python/pyjwt/pyjwt-2.0.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,7 +15,7 @@ S="${WORKDIR}"/${MY_PN}-${PV} LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm arm64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux" RDEPEND="" DEPEND=" diff --git a/dev-python/pylibacl/Manifest b/dev-python/pylibacl/Manifest index 468d71210f08..1375f3311cd5 100644 --- a/dev-python/pylibacl/Manifest +++ b/dev-python/pylibacl/Manifest @@ -1,3 +1 @@ -DIST pylibacl-0.5.4_p20191217.tar.gz 40283 BLAKE2B dfe5baababe4cce24bc12dd61263c30160e93be7dc0625abdcad9e4daed19c5ac1ebf43351f9f5815884162258884cd8c7e2edb323ec9ce51247a43d53fea20e SHA512 6d4a84e1885a2000226f956580a8e767216d6280d4b8ae1066e6a1c1f82708d06a4f2eacc3ae45ff7ae3b122125da9fb6afbaae038e117b63cd7d91ac95e2624 DIST pylibacl-0.6.0.gh.tar.gz 40231 BLAKE2B ba76f5540de62cec8572960b65f65289d7fe2066f76861240849c4c8175a9219b7ced086739b5a9b4d560a125c8fe759cc7b5b688bd4dc3d84ca4dc78897ea75 SHA512 a93ad199d9946490a863906411893a204bf801df71cf70217d6b29940a9365f05fd121116f22e054a3b8d27cd62e35c73566c1e0dd246ae5c0edd2f967df50ba -DIST pylibacl-v0.5.3.tar.gz 32792 BLAKE2B 005785dda2b7933ff71dd1296b1d4315a6492fc893aba56136c775f78b9aa3bd8f9d4898bbe0160fac53a306329977ddaecd073739531ba42dd0b6cc622b9eef SHA512 ea648acc3df9e1cf2fd68576b0b691a353b257d00b74fc80aa7f60089b9dbc912452ebe6b84da2930cac888b9047740530dd0e38b4d5be52c37fc6d3a29a7ce2 diff --git a/dev-python/pylibacl/pylibacl-0.5.3.ebuild b/dev-python/pylibacl/pylibacl-0.5.3.ebuild deleted file mode 100644 index 61d45648459c..000000000000 --- a/dev-python/pylibacl/pylibacl-0.5.3.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit distutils-r1 - -DESCRIPTION="POSIX ACLs (Access Control Lists) for Python" -HOMEPAGE="https://pylibacl.k1024.org/ - https://pypi.org/project/pylibacl/" -SRC_URI="https://github.com/iustin/${PN}/archive/${PN}-v${PV}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86" - -RDEPEND="sys-apps/acl" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -S="${WORKDIR}/${PN}-${PN}-v${PV}" - -python_test() { - if ! "${EPYTHON}" test/test_acls.py -v; then - eerror - eerror "If you got the following errors:" - eerror "\"IOError: [Errno 95] Operation not supported\"," - eerror "then you should remount the filesystem containing" - eerror "build directory with \"acl\" option enabled." - eerror - die "Tests fail with ${EPYTHON}" - fi -} diff --git a/dev-python/pylibacl/pylibacl-0.5.4_p20191217.ebuild b/dev-python/pylibacl/pylibacl-0.5.4_p20191217.ebuild deleted file mode 100644 index 9dbb99161cbc..000000000000 --- a/dev-python/pylibacl/pylibacl-0.5.4_p20191217.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8,9} ) - -inherit distutils-r1 - -EGIT_COMMIT=2ae494bd2e3303141a703f32e44263e083c1ffb0 -DESCRIPTION="POSIX ACLs (Access Control Lists) for Python" -HOMEPAGE=" - https://pylibacl.k1024.org/ - https://pypi.org/project/pylibacl/ - https://github.com/iustin/pylibacl/" -SRC_URI=" - https://github.com/iustin/pylibacl/archive/${EGIT_COMMIT}.tar.gz - -> ${P}.tar.gz" -S=${WORKDIR}/${PN}-${EGIT_COMMIT} - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ~ppc64 sparc x86" - -RDEPEND="sys-apps/acl" -DEPEND=${RDEPEND} - -distutils_enable_tests pytest - -python_test() { - if ! pytest -vv; then - eerror - eerror "If you got the following errors:" - eerror "\"IOError: [Errno 95] Operation not supported\"," - eerror "then you should remount the filesystem containing" - eerror "build directory with \"acl\" option enabled." - eerror - die "Tests fail with ${EPYTHON}" - fi -} diff --git a/dev-python/pylibacl/pylibacl-0.6.0.ebuild b/dev-python/pylibacl/pylibacl-0.6.0.ebuild index 4c5f5c0e12ce..11e5d13f1e0c 100644 --- a/dev-python/pylibacl/pylibacl-0.6.0.ebuild +++ b/dev-python/pylibacl/pylibacl-0.6.0.ebuild @@ -18,7 +18,7 @@ SRC_URI=" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ~ppc64 sparc x86" +KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 sparc x86" RDEPEND="sys-apps/acl" DEPEND=${RDEPEND} diff --git a/dev-python/pytest/Manifest b/dev-python/pytest/Manifest index e0dadfcfa54d..e9e02d072008 100644 --- a/dev-python/pytest/Manifest +++ b/dev-python/pytest/Manifest @@ -1,5 +1,5 @@ DIST pytest-4.6.11.tar.gz 952305 BLAKE2B af07adf5e8fc614b1fdb7b5673fb9c557ff0dd3f22e2f3bf853c643c5c8bd38f307018579299b700d90034a826db73a3e569857d6d6f7ac6646ace894b35a39b SHA512 6fddf4944bd9fab83024aa2d338d54aaf3d164bd5c7f634357376f3b0d2dab6a43d784e7fb567236c2d2f029151c5d9e2cb36c22e9b551c2c8823c52a2246e9c DIST pytest-5.4.3.tar.gz 1022353 BLAKE2B 70d4f23cbbfc4c4ce63c512ee0a01556973761a6d3ebb71a6d9ed4fb4a4a21531e1b151ed0e4c5e56e5dd3243a1a272441f17c4c2c4e3b0b19c24654b74e8e52 SHA512 0a07d4f4f791969c6f21961a0ba0f8c6670e5870c6cc1cebf93766587bb9cb3e10db8e57f0bd33dd22b275f3aad7aa674949f124ac80e0ccca64e35be4beee4e DIST pytest-6.1.2.tar.gz 1084943 BLAKE2B cbdf29c54118b5daf699f11fb674d37d5972a163a7a53f42f6ddf9224e2d8d9e84b9a88106d5a77e70f470ccbffb15c2cf9a939be69bc0a2cab1fc4c76054562 SHA512 6335e994c5273881c8d1c334fe6bfa9cd0a3e5c251f3d6a9332f7f7c1427e6560ff48d8f235b307ea5eb53491072daf30c41f566bb67b304354fd88d286c61b1 -DIST pytest-6.2.0.tar.gz 1101619 BLAKE2B c59d5c23c70aaa7670eb0e96cd5d57c6cdf21f2cdfacc2fb9c01a6baf211f85e5f757d7087589db2dc9a6f0b387ec7b25da5816d4cffc86f6e2c3c08b9f07f59 SHA512 58315bb5f9a696f5196da08912a0f32fd367ea11987d37ff74b0d00d961bb706e0d3604bc7c25a762e4ee66bd46ef4389b50eca11b3109406c169aefff395d51 DIST pytest-6.2.1.tar.gz 1102958 BLAKE2B 336757fe911e2bfa1041d7d9c1f83ce66418c55bbe0a1accdac45a36ed5ace972f124bc5f68d2847e3d310bcb2e68a8ced04c74e818ff6f1d43c3ba8b915332d SHA512 abd130212411e0a26265aec922958053e41d05d09d14942b75c1ba81d0ad7c5115d851110a257b32f0b05a2d515961ad068a1fd65f7e275cfe65d16150d008a6 +DIST pytest-6.2.2.tar.gz 1116980 BLAKE2B 7e74050f01fdc4b1ba8a6d703915b0d707305e6e8299917fff8e0cedb873f998c9a904728b77e7234718016ccdac15d491d10411c582d1bfa60d2450a8a2fa7b SHA512 a81def83759c550c169b3db8ed43b4df40433a88acb663e2e9422ef562149ed52041724b7f3cc5d0d6b532f2243a8d9a9614ffbcd87ed571f7fdde7f036c2297 diff --git a/dev-python/pytest/pytest-6.2.1.ebuild b/dev-python/pytest/pytest-6.2.1.ebuild index 20df0cab76ed..29cd63b67765 100644 --- a/dev-python/pytest/pytest-6.2.1.ebuild +++ b/dev-python/pytest/pytest-6.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/pytest/pytest-6.2.0.ebuild b/dev-python/pytest/pytest-6.2.2.ebuild similarity index 90% rename from dev-python/pytest/pytest-6.2.0.ebuild rename to dev-python/pytest/pytest-6.2.2.ebuild index f9b00ac08732..173f3694ca7a 100644 --- a/dev-python/pytest/pytest-6.2.0.ebuild +++ b/dev-python/pytest/pytest-6.2.2.ebuild @@ -4,7 +4,7 @@ EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{6..9} pypy3 ) +PYTHON_COMPAT=( python3_{7..9} pypy3 ) inherit distutils-r1 @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )" @@ -22,7 +22,7 @@ RDEPEND=" >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}] $(python_gen_cond_dep ' dev-python/importlib_metadata[${PYTHON_USEDEP}] - ' python3_{6,7} pypy3) + ' python3_7 pypy3) dev-python/iniconfig[${PYTHON_USEDEP}] >=dev-python/more-itertools-4.0.0[${PYTHON_USEDEP}] dev-python/packaging[${PYTHON_USEDEP}] diff --git a/dev-python/python-sshpubkeys/Manifest b/dev-python/python-sshpubkeys/Manifest index d768ce355e01..e80cefb56254 100644 --- a/dev-python/python-sshpubkeys/Manifest +++ b/dev-python/python-sshpubkeys/Manifest @@ -1,2 +1,3 @@ DIST python-sshpubkeys-3.1.0.tar.gz 55289 BLAKE2B bf1836c173b542f0edc8dc0635a1f5bf109ef95936ffbabf6bbb79ac3bc34c10a769733d622c338b1f3a87d5be84b89ea9779f7fa293cad706f364d5e8867afc SHA512 4f07cb7bd2b1839a63bff842660499cee816e8675d8fde1e84ee567e354c82677a69e539b99505c6d1c5e0e7a5962a36175eb0cfcc763886a33952d2346c3405 DIST python-sshpubkeys-3.2.1.tar.gz 57872 BLAKE2B b3a5a3aa719d3fac4608e6f43fcee4d3377baad73d0acc451fb4fc6c8a3895f5288607b68a2b3b3b65d86210d28a22e0c83cb8b3758eeaf88969ae803568efcf SHA512 10e593f5250e14e91b6212e29831c8575cf1d335e9db5c8241a3d3614793aacd2ddc609b07c4bd4bed99900fffb5c40562daff24c6a0715927ef1f75a484273e +DIST python-sshpubkeys-3.3.0.tar.gz 57904 BLAKE2B b716f91f99539a27574842687ca71b9eef4f715a667931576a94094687a6dd9bbb2ad50826fe2a4d7f21d546c4dd1e33daa815128e62e2446ade30218c3b42a2 SHA512 41314001e6f32a6286927833e64622c45bc5c55729722351dbb2305919a5b44fe74e528988a3fad672595eb2e8da7db225ad7ea6395aa14dc5abdc38187a600c diff --git a/dev-python/python-sshpubkeys/python-sshpubkeys-3.3.0.ebuild b/dev-python/python-sshpubkeys/python-sshpubkeys-3.3.0.ebuild new file mode 100644 index 000000000000..c2a98bb36685 --- /dev/null +++ b/dev-python/python-sshpubkeys/python-sshpubkeys-3.3.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +inherit distutils-r1 + +DESCRIPTION="OpenSSH public key parser for Python" +HOMEPAGE=" + https://pypi.org/project/sshpubkeys/ + https://github.com/ojarva/python-sshpubkeys" +SRC_URI=" + https://github.com/ojarva/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/ecdsa[${PYTHON_USEDEP}] +" + +distutils_enable_tests unittest diff --git a/dev-python/python-utils/Manifest b/dev-python/python-utils/Manifest index 2ad81c552c1a..e09474476c13 100644 --- a/dev-python/python-utils/Manifest +++ b/dev-python/python-utils/Manifest @@ -2,3 +2,4 @@ DIST python-utils-2.3.0.tar.gz 19384 BLAKE2B 1746deadc8dbaf49a6499fe9c79d25c2b5c DIST python-utils-2.4.0.tar.gz 22230 BLAKE2B 1c144f62a009a2470ec43341283048842cba61f1b677e8b1d197d3ef39dd1d890b364e63ed8da0b30ad5560d335ab0eb2dfc329ff6dfea86c0f64e909de730b9 SHA512 bfad0ef30383df634b89bb2206a00e45434eff9fee9ba0eeab99361bacfb56f3fb420019608b639713a7e8777870de75becb1d7b48aa09c582df27f9ebe8c512 DIST python-utils-2.5.1.tar.gz 115307 BLAKE2B 2938b9f188c92d407baf09147338ea2c54b9c70c5a8746f14cd4d4b5026e6bd7bab418c9cde6c99ae4c4072da6967033bf59ed32acb0e21bfb5aacff8640620e SHA512 886ed6c1c7027012c1e5a59dfe3f81ac2b07974cc5869b5cb8f5fc91f8ca733acf0ee03dbb559be69a389228974d713666ced950ec766117075aa5ea781216fb DIST python-utils-2.5.2.tar.gz 14034 BLAKE2B 1d9ec9ba84ee1ebff2c4ef915bb0e57c34185c0577252f8b4cc9678f2e5b6e5a815f7c049c2f512d2f79aa8be855870ff21ec2291b1305bf8a369614220bc582 SHA512 5bcf4f33eac88b83e0cccf6b50162a5c913d9e72c4395b2265017cda566c91fa36c24eb5c3d23269b71330df65ac14226834d7b339b5b767afad3177734b9934 +DIST python-utils-2.5.3.tar.gz 49110 BLAKE2B 13b6a20278c73acc1e52c12dff3833b1dc6ebe6c1373ab5b972300d778bb4f110af79333dddc805b29a7d34265973ebf0136a607b82880b5c43c4c4d0c9f391c SHA512 7e0a584a80ce5eca654eca5335080b98b21bed11bcef7d238639d07e386f58d44a00765133b487dc5492cb35a221bc9e8042513099ee3b49177c77334129c8bd diff --git a/dev-python/python-utils/python-utils-2.5.3.ebuild b/dev-python/python-utils/python-utils-2.5.3.ebuild new file mode 100644 index 000000000000..b83efbe8075e --- /dev/null +++ b/dev-python/python-utils/python-utils-2.5.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{7..9} pypy3) + +inherit distutils-r1 + +DESCRIPTION="Collection of small Python functions & classes" +HOMEPAGE="https://pypi.org/project/python-utils/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest + +python_prepare_all() { + sed -i -e '/--cov/d' -e '/--flake8/d' pytest.ini || die + distutils-r1_python_prepare_all +} diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest index 279d67660139..d6828aeb1c46 100644 --- a/dev-python/tqdm/Manifest +++ b/dev-python/tqdm/Manifest @@ -1,4 +1,3 @@ -DIST tqdm-4.54.0.tar.gz 178664 BLAKE2B 68d0f054b2c95079e13ad9df3e9467f48925311151e5eed94795d3fab232301da99c2704daafd80f748037a467d25416913f0921d6b7c44d725c5ed6861fe347 SHA512 dbb2a61df848ebd84ab805134b7e7297e1cf7626abaa830a08159ce7b1852eba40a6a7f2cc7c8445294a184bbfbd69bf08430371f3e2d71f6a622a271ba49e95 DIST tqdm-4.55.0.tar.gz 161594 BLAKE2B 890bbb47db356678be2c3edd893d70b085f5bc8fefbf87f12ba8c69fe14ac523a1eed6e335fb84f2ff43b2b0fea901411f8a72b24212cb2ad5ef4955ec8f2df5 SHA512 84062f7d2a109e4067e0868990b6e53578c7c2ec2b81a0cbdc980c91d2d82a8bda37e0c9688777fcf14cc80b7ddf7b28b7a5acfe37608e37903fe45908103913 DIST tqdm-4.55.1.tar.gz 161638 BLAKE2B 0149269f1ea854589647deb4ddd7415748924942ecc03d5fd6231470e5df959c1b8034d4d8416d83aa0a43ad1fafed15789f7ebaac12e5d525a7fe0bee88752a SHA512 82a6d3d8e10d4c46e40e03e557febe9f7cac3cc01c01c9e29b20cf8f2adcc7370829fe5d4497ff0edb506bf38b9ec14de86377d1bbd9b8b9e57687d951ae683f DIST tqdm-4.55.2.tar.gz 162632 BLAKE2B 02e49f442c8d5ad3799de143dd8a188796293253e836c24d04e75aa45f7cbeecb967f1503467ca7486dfd412538da6f7a3aa4c674e16f0da3954f44347c5a498 SHA512 f61f28f2b8f7c4d848e31a3d791822a0433573b36aa900d055e1919b555b84ee36d988c6f51d6951355e70821f4d24bee72bdd4472262ea55ea012ff0556b0df diff --git a/dev-python/tqdm/tqdm-4.54.0.ebuild b/dev-python/tqdm/tqdm-4.54.0.ebuild deleted file mode 100644 index 602af892bba2..000000000000 --- a/dev-python/tqdm/tqdm-4.54.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} ) - -inherit distutils-r1 - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/tqdm/tqdm" -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos" -fi - -DESCRIPTION="Add a progress meter to your loops in a second" -HOMEPAGE="https://github.com/tqdm/tqdm" - -LICENSE="MIT" -SLOT="0" -IUSE="examples" - -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] - dev-python/toml[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -python_test() { - # Skip unpredictable performance tests - pytest -vv --ignore 'tests/tests_perf.py' || - die "Tests failed with ${EPYTHON}" -} - -python_install() { - doman "${BUILD_DIR}"/lib/tqdm/tqdm.1 - rm "${BUILD_DIR}"/lib/tqdm/tqdm.1 || die - distutils-r1_python_install -} - -python_install_all() { - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi - distutils-r1_python_install_all -} diff --git a/dev-python/tqdm/tqdm-4.55.0.ebuild b/dev-python/tqdm/tqdm-4.55.0.ebuild index bfed1d06c33e..5a7d1c2f9cfd 100644 --- a/dev-python/tqdm/tqdm-4.55.0.ebuild +++ b/dev-python/tqdm/tqdm-4.55.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/tqdm/tqdm" else SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos" fi DESCRIPTION="Add a progress meter to your loops in a second" diff --git a/dev-python/tqdm/tqdm-4.56.0.ebuild b/dev-python/tqdm/tqdm-4.56.0.ebuild index 81b4fb498481..0bf4e4570b83 100644 --- a/dev-python/tqdm/tqdm-4.56.0.ebuild +++ b/dev-python/tqdm/tqdm-4.56.0.ebuild @@ -28,6 +28,7 @@ BDEPEND=" dev-python/toml[${PYTHON_USEDEP}] test? ( dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/pytest-timeout[${PYTHON_USEDEP}] )" distutils_enable_tests pytest diff --git a/dev-python/twine/Manifest b/dev-python/twine/Manifest index 03a73d81249c..565838b1acc7 100644 --- a/dev-python/twine/Manifest +++ b/dev-python/twine/Manifest @@ -1,2 +1 @@ -DIST twine-3.2.0.tar.gz 145280 BLAKE2B b25fa984486a375e09705703a47994b529f6e5b48c6733c0a07b57bec6c0dfcdf4096d6ac6b0f9b7a7bfebfb32ea1cfb49c5de79f29495eb2a8fc59a5f8de4e5 SHA512 9959430913ea570d22f2d8b94e929af36b409b71691b3f66de8ddb77cfbfbe36590e21a6062db2a4a4f56ce2eb96984b0a474a93ea96b7734f53ada7a6411c28 DIST twine-3.3.0.tar.gz 148996 BLAKE2B 60668acd0481534631ca0ecf3c755df7e9e46c6d183d0f1c73ed7467cfecc144878d6ccf7ef2ee62efa17eb5629f5ed74c77c8ae4d57ef16530fad31afe40d97 SHA512 94fc7a9b3f2b5fc7c06baf55debf4fd55f6a2b4c4321c9bff46b844166769ce8bdcab10355c4967998149b62e13b26e11a30ff66042bfdd5af24d448321fd291 diff --git a/dev-python/twine/twine-3.2.0.ebuild b/dev-python/twine/twine-3.2.0.ebuild deleted file mode 100644 index a4ec13e3cc3c..000000000000 --- a/dev-python/twine/twine-3.2.0.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Collection of utilities for publishing packages on PyPI" -HOMEPAGE="https://twine.readthedocs.io/ https://github.com/pypa/twine https://pypi.org/project/twine/" -SRC_URI="https://github.com/pypa/twine/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND=" - test? ( - dev-python/jaraco-envs[${PYTHON_USEDEP}] - dev-python/jaraco-functools[${PYTHON_USEDEP}] - dev-python/munch[${PYTHON_USEDEP}] - dev-python/portend[${PYTHON_USEDEP}] - dev-python/pretend[${PYTHON_USEDEP}] - dev-python/pypiserver[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - ) -" -RDEPEND=" - >=dev-python/tqdm-4.14[${PYTHON_USEDEP}] - >=dev-python/pkginfo-1.4.2[${PYTHON_USEDEP}] - >=dev-python/readme_renderer-21.0[${PYTHON_USEDEP}] - >=dev-python/requests-2.20.0[${PYTHON_USEDEP}] - >=dev-python/requests-toolbelt-0.8.0[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_{6,7} pypy{,3}) - >=dev-python/keyring-15.1[${PYTHON_USEDEP}] - >=dev-python/rfc3986-1.4.0[${PYTHON_USEDEP}] - >=dev-python/colorama-0.4.3[${PYTHON_USEDEP}] -" - -python_prepare_all() { - # avoid a setuptools_scm dependency - sed -i "s:use_scm_version=True:version='${PV}',name='${PN//-/.}':" setup.py || die - sed -r -i "s:setuptools(_|-)scm[[:space:]]*([><=]{1,2}[[:space:]]*[0-9.a-zA-Z]+|)[[:space:]]*::" \ - setup.cfg || die - - # requires internet - sed -e 's:test_check_status_code_for_wrong_repo_url:_&:' \ - -i tests/test_upload.py || die - rm -f tests/test_integration.py || die - - sed -i -e '/--cov/d' pytest.ini || die - - distutils-r1_python_prepare_all -} - -python_test() { - distutils_install_for_testing - pytest -vv || die "Tests fail with ${EPYTHON}" -} diff --git a/dev-python/twine/twine-3.3.0.ebuild b/dev-python/twine/twine-3.3.0.ebuild index 6dc766493a09..fced01735bb0 100644 --- a/dev-python/twine/twine-3.3.0.ebuild +++ b/dev-python/twine/twine-3.3.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,7 +14,7 @@ SRC_URI="https://github.com/pypa/twine/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/unidecode/Manifest b/dev-python/unidecode/Manifest index f1080e6dfa7e..3ca597e7a002 100644 --- a/dev-python/unidecode/Manifest +++ b/dev-python/unidecode/Manifest @@ -1,2 +1 @@ -DIST Unidecode-1.1.1.tar.gz 212151 BLAKE2B 9884f89bb45c7c99569d42e0b287731638b8b1b697afab2c812b56340c6bd12dc3214b42177554f1b0aa214ce1b73fe1f05208ac6fc33d1949ed1200e42914ab SHA512 5474f04be843ed94ddceb1a7e5f1ca986ee5f2e88ee35bd9347784c7a11b51e1d94d61e1a2a10dd2e71b3587c5b7b76717756f6cf4e2446d83222178c2360696 DIST Unidecode-1.1.2.tar.gz 213644 BLAKE2B c4a9ecb441eb05800d931ccd43843d19ae07f74829d43bc3c24462955e8872f4edf4bb9b3909fc5155b13676b8d255848cdd90772a88cd453152ca13af0d3fab SHA512 8ee45ae05064612638ecbaa4eb74759580e5ea5cba9f3116b8e63db4af13affc266c7a07aaefbbd70b50ead7e483a72d7676c64e20b5bee2a6ba831aaccd6748 diff --git a/dev-python/unidecode/metadata.xml b/dev-python/unidecode/metadata.xml index 8c0ee79c9834..71526fd8e6e0 100644 --- a/dev-python/unidecode/metadata.xml +++ b/dev-python/unidecode/metadata.xml @@ -1,13 +1,14 @@ - - python@gentoo.org - Python - - - Unidecode - avian2/unidecode - https://github.com/avian2/unidecode/issues - + + python@gentoo.org + Python + + + + Unidecode + avian2/unidecode + https://github.com/avian2/unidecode/issues + diff --git a/dev-python/unidecode/unidecode-1.1.1.ebuild b/dev-python/unidecode/unidecode-1.1.1.ebuild deleted file mode 100644 index 1f405239af20..000000000000 --- a/dev-python/unidecode/unidecode-1.1.1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{6..9} ) -PYTHON_REQ_USE="wide-unicode(+)" -DISTUTILS_USE_SETUPTOOLS="rdepend" - -inherit distutils-r1 - -MY_P=Unidecode-${PV} -DESCRIPTION="Module providing ASCII transliterations of Unicode text" -HOMEPAGE="https://pypi.org/project/Unidecode/" -SRC_URI="mirror://pypi/${MY_P:0:1}/${PN^}/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 sparc x86" - -distutils_enable_tests setup.py diff --git a/dev-python/unidecode/unidecode-1.1.2.ebuild b/dev-python/unidecode/unidecode-1.1.2.ebuild index fe98ac54f6e8..56ff5c960f50 100644 --- a/dev-python/unidecode/unidecode-1.1.2.ebuild +++ b/dev-python/unidecode/unidecode-1.1.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,6 +17,6 @@ S="${WORKDIR}/${MY_P}" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 sparc x86" distutils_enable_tests setup.py diff --git a/dev-python/virtualenv-clone/virtualenv-clone-0.5.3.ebuild b/dev-python/virtualenv-clone/virtualenv-clone-0.5.3.ebuild index 22203a2a79eb..6ee62913c5e8 100644 --- a/dev-python/virtualenv-clone/virtualenv-clone-0.5.3.ebuild +++ b/dev-python/virtualenv-clone/virtualenv-clone-0.5.3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6,7,8,9} ) # rdepend is correct despite warning, see https://bugs.gentoo.org/705362 DISTUTILS_USE_SETUPTOOLS=rdepend diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild index 5e1b6b196766..3e2b097d65b3 100644 --- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild +++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6,7,8,9} ) inherit distutils-r1 diff --git a/dev-python/xmlschema/Manifest b/dev-python/xmlschema/Manifest index b8f6dcff10b6..7ea8508bfc78 100644 --- a/dev-python/xmlschema/Manifest +++ b/dev-python/xmlschema/Manifest @@ -1,2 +1,2 @@ -DIST xmlschema-1.3.1.tar.gz 318853 BLAKE2B 1f2f960c5dad0c82a7ca0345bca052560d39f07b3fff9f443ec5d206a2ec92743462be2209e69a9330f432dbeb7e5908dae4168f7815cf64c141047876844453 SHA512 3bd2ba3004c1a397aff1c81c1105a603dd219f9c2c4afd0742aea3d7263dd0c50adbc05f4ccf96ad0a0f8bd5c116002152eba8194619e6bb636ef46111e6a2a4 DIST xmlschema-1.4.1.tar.gz 329488 BLAKE2B 80125c6867facb8f94574f4aa210239057f6c8429ff52daac047457eaf6c836b051ccf8e0dec751c1bc57e4de7343781849fe88290117b8546ecd9b8ee99859a SHA512 935e4bffa5361e87fe0656c04b79fe50213098db86e18de38d82d9c04e45557b7ce9468379644c202ab25bdbd6f430bf85a639c3aa7636833d4bbe8533738e82 +DIST xmlschema-1.4.2.tar.gz 331747 BLAKE2B 013a74e7d929e46d497a55ad67888f0dd25b60097e390c3ad3b69c9a87d9e5a83bd68873336137805d755a47d0e5cb5b7347403ee38bcb7457e70803c6aca2ff SHA512 a490d1686f3e8cc7fd45bcb51f00ddf8b734e0c928f8690f9988232f8781fa070f7f03be7473ed5e8b3d1ab67bb08e123c79b408c3daaebfd2df0e94c8827888 diff --git a/dev-python/xmlschema/xmlschema-1.4.1.ebuild b/dev-python/xmlschema/xmlschema-1.4.1.ebuild index 008edc769d93..234bb23ad376 100644 --- a/dev-python/xmlschema/xmlschema-1.4.1.ebuild +++ b/dev-python/xmlschema/xmlschema-1.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2020 Gentoo Authors +# Copyright 2019-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/xmlschema/xmlschema-1.3.1.ebuild b/dev-python/xmlschema/xmlschema-1.4.2.ebuild similarity index 71% rename from dev-python/xmlschema/xmlschema-1.3.1.ebuild rename to dev-python/xmlschema/xmlschema-1.4.2.ebuild index a64f1e1d80d3..41bb9568be18 100644 --- a/dev-python/xmlschema/xmlschema-1.3.1.ebuild +++ b/dev-python/xmlschema/xmlschema-1.4.2.ebuild @@ -1,10 +1,10 @@ -# Copyright 2019-2020 Gentoo Authors +# Copyright 2019-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{6..9} pypy3 ) +PYTHON_COMPAT=( python3_{7..9} pypy3 ) inherit distutils-r1 @@ -14,12 +14,12 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )" RDEPEND=" - >=dev-python/elementpath-2.0.2[${PYTHON_USEDEP}]" + >=dev-python/elementpath-2.1.2[${PYTHON_USEDEP}]" BDEPEND="${RDEPEND} test? ( dev-python/lxml[${PYTHON_USEDEP}] diff --git a/dev-python/zope-schema/Manifest b/dev-python/zope-schema/Manifest index 171d703a8e5d..be25e444d9cf 100644 --- a/dev-python/zope-schema/Manifest +++ b/dev-python/zope-schema/Manifest @@ -1 +1,2 @@ DIST zope.schema-6.0.0.tar.gz 110343 BLAKE2B 8dad6fcbd5bf3ef5902657bb7cfc4d31509cf8b74be3e44ec2a5977dc998bbe9b2605dd0edd85aec7f5e67e5e4e7ea6e9ddde2e63f5d56226dfead804e10eb61 SHA512 3258e6b2bf97485b9496f19319ef5af9a1e908b6c2661c27f45cfd64057597cfd514acbe79d86ddda1b80e66be45a10680fc3d9e662513b360d5f047917735d8 +DIST zope.schema-6.0.1.tar.gz 108325 BLAKE2B 4e23b2a864ce8ca650d71723f2ec89f04e05e7739cbe6b236ebdd4ffe80261a75faac414ae411b1ea525f93375f8eb4b6eb1e6186e04d225467b729f5c630b77 SHA512 c8b9182975b1f2834827877c725a8d0c800bf3cbed9dce2625bb3e1715c0fb7d346b8206f47a96994fa79240a0cb30c4aa38cea56f9ecb79351fd97e0bc021ba diff --git a/dev-python/zope-schema/zope-schema-6.0.1.ebuild b/dev-python/zope-schema/zope-schema-6.0.1.ebuild new file mode 100644 index 000000000000..f137c80de517 --- /dev/null +++ b/dev-python/zope-schema/zope-schema-6.0.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{7..9} pypy3 ) + +inherit distutils-r1 + +MY_PN=${PN/-/.} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Zope schema Architecture" +HOMEPAGE="https://github.com/zopefoundation/zope.schema http://docs.zope.org/zope.schema/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +RDEPEND=" + dev-python/zope-event[${PYTHON_USEDEP}] + >=dev-python/zope-interface-5.0.0[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/zope-i18nmessageid[${PYTHON_USEDEP}] + dev-python/zope-testing[${PYTHON_USEDEP}] + dev-python/zope-testrunner[${PYTHON_USEDEP}] + )" + +distutils_enable_tests setup.py + +python_install_all() { + distutils-r1_python_install_all + + # remove .pth files since dev-python/namespace-zope handles the ns + find "${D}" -name '*.pth' -delete || die +} diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz index 90d7822872e2..0be9f5c22031 100644 Binary files a/dev-ruby/Manifest.gz and b/dev-ruby/Manifest.gz differ diff --git a/dev-ruby/rack-attack/Manifest b/dev-ruby/rack-attack/Manifest index 873e4e133102..00bc7af43bd3 100644 --- a/dev-ruby/rack-attack/Manifest +++ b/dev-ruby/rack-attack/Manifest @@ -1 +1,2 @@ DIST rack-attack-6.3.1.gem 25088 BLAKE2B 97a6f36ad3571508f68b33090644db8fb21f6eb43f8ae16b0107dd3e0e1b8b728b6eaa43959dfa8b9781672147673b750c215c9ed01366de90175ba063d5d2b5 SHA512 e6c3fbc5a09cc3d15d06b450baf911b84dd412de7b1a9d0f67661da2106d1474ea2f7c2ec6a7cf5bbd9756642be519e618134c5c7888c41f44270afc4f8aff4a +DIST rack-attack-6.4.0.gem 25088 BLAKE2B 97f54f8d411d279731bf85ea5c43b875bdfe8f9eb32991b5c10b65cc6fd747b6b518b47da29bfccff9a037c9295f2c09b7b0c721bd24d42eaf0bda1012fc56b1 SHA512 f7d86521b65ecc92544c0f0d0af01e1de2e95d1087c732bd2e2c6aa944835bb5618bb35ca4bc60c42061627b5e8b5b030701238f42d61cd851d6b21ddb709e36 diff --git a/dev-ruby/rack-attack/rack-attack-6.4.0.ebuild b/dev-ruby/rack-attack/rack-attack-6.4.0.ebuild new file mode 100644 index 000000000000..e716cede7381 --- /dev/null +++ b/dev-ruby/rack-attack/rack-attack-6.4.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27" + +# Skip integration tests since they require additional unpackaged +# dependencies and running daemons. +RUBY_FAKEGEM_TASK_TEST="test:units" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_BINWRAP="" + +inherit ruby-fakegem + +DESCRIPTION="A DSL for blocking & throttling abusive clients" +HOMEPAGE="https://github.com/kickstarter/rack-attack" + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64" +IUSE="test" + +ruby_add_rdepend "dev-ruby/rack:*" +ruby_add_bdepend "test? ( + dev-ruby/actionpack + dev-ruby/activesupport + dev-ruby/railties + dev-ruby/rack-test + dev-ruby/minitest )" + +all_ruby_prepare() { + sed -i -e '/\(bundler\|byebug\)/ s:^:#:' Rakefile spec/spec_helper.rb || die + sed -i -e '3igem "actionpack"' spec/spec_helper.rb || die + sed -i -e '/rubocop/I s:^:#:' Rakefile || die + + # Avoid specs requiring a live redis service + sed -i -e '/should delete rack attack key/askip "requires redis service"' spec/rack_attack_spec.rb || die +} diff --git a/dev-tcltk/Manifest.gz b/dev-tcltk/Manifest.gz index 41d4dc79cb04..668ba11502a3 100644 Binary files a/dev-tcltk/Manifest.gz and b/dev-tcltk/Manifest.gz differ diff --git a/dev-tcltk/tls/tls-1.7.22.ebuild b/dev-tcltk/tls/tls-1.7.22.ebuild index cc7eacb17cb8..677ba168287c 100644 --- a/dev-tcltk/tls/tls-1.7.22.ebuild +++ b/dev-tcltk/tls/tls-1.7.22.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://core.tcl.tk/tcltls/uv/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="tk" DEPEND=" diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz index 89b6b64b76cc..283a9532c605 100644 Binary files a/dev-util/Manifest.gz and b/dev-util/Manifest.gz differ diff --git a/dev-util/crash/Manifest b/dev-util/crash/Manifest index 3faa5d4ea04f..99eb117d6c73 100644 --- a/dev-util/crash/Manifest +++ b/dev-util/crash/Manifest @@ -1,3 +1,2 @@ -DIST crash-7.2.8.tar.gz 32253097 BLAKE2B 26a8a07749cb62947053992ba761b541ba5d06f0f3bf67312d8228c9d851f51edf1201e732574f7f2f2768d6087324b8dd1f843ea47916bd9f95e514df967589 SHA512 3269760a50b49f25af0e1c43d60432e603036793aa542f8ccfb0b8019376da45afa7c053d3860ae2130b6471f3ac72cff78f1096e9ffa8c6f1d34afb52208e70 DIST crash-7.2.9.tar.gz 1324947 BLAKE2B dac5485742119fce1cdcab37a87a2a417e408108a73bffdd6fa215587e4c5dec29508d5f11285dbe2a21cd8365cee437296168b85f2f43dc743461061fd0a26e SHA512 57b7b7780ad71bad09d962bfb2d5ad729dd167d9aaffd86f7b5467c98f52e8cb2c6ebb317bf1ad285dcb78ffa300b5dd733c63efd7aaa4ef03ddfe076c269984 DIST gdb-7.6.tar.gz 31437633 BLAKE2B fb8cb9f0c33f360c864c5776c3dd0233ad534d376a9df8157c7bc9f1c4ccfc8698933409561700f134705c0107038d8bfa23844e512cd3a08e24925d37a1ce58 SHA512 02d9c62fa73bcb79138d14c7fc182443f0ca82d4545b4d260b67d3f0074ed75f899a657814a56727e601032a668b0ddd7b48aabd49215fc012eeea6077bca368 diff --git a/dev-util/crash/crash-7.2.8-r1.ebuild b/dev-util/crash/crash-7.2.8-r1.ebuild deleted file mode 100644 index 45bbff515903..000000000000 --- a/dev-util/crash/crash-7.2.8-r1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit toolchain-funcs - -DESCRIPTION="Red Hat crash utility; used for analyzing kernel core dumps" -HOMEPAGE="https://people.redhat.com/anderson/" -SRC_URI="https://people.redhat.com/anderson/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="-* ~alpha ~amd64 ~arm ~ia64 ~ppc64 ~s390 ~x86" -IUSE="" -# there is no "make test" target, but there is a test.c so the automatic -# make rules catch it and tests fail -RESTRICT="test" - -src_prepare() { - sed -i -e "s|ar -rs|\${AR} -rs|g" Makefile || die - default -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - AR="$(tc-getAR)" \ - CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -} diff --git a/dev-util/crash/crash-7.2.9.ebuild b/dev-util/crash/crash-7.2.9.ebuild index e807f3d302e0..65a7a71821fd 100644 --- a/dev-util/crash/crash-7.2.9.ebuild +++ b/dev-util/crash/crash-7.2.9.ebuild @@ -18,7 +18,7 @@ else fi DESCRIPTION="Red Hat crash utility; used for analyzing kernel core dumps" -HOMEPAGE="https://github.com/crash-utility/crash" +HOMEPAGE="https://crash-utility.github.io/" LICENSE="GPL-3" SLOT="0" diff --git a/dev-util/crash/crash-9999.ebuild b/dev-util/crash/crash-9999.ebuild index e807f3d302e0..65a7a71821fd 100644 --- a/dev-util/crash/crash-9999.ebuild +++ b/dev-util/crash/crash-9999.ebuild @@ -18,7 +18,7 @@ else fi DESCRIPTION="Red Hat crash utility; used for analyzing kernel core dumps" -HOMEPAGE="https://github.com/crash-utility/crash" +HOMEPAGE="https://crash-utility.github.io/" LICENSE="GPL-3" SLOT="0" diff --git a/dev-util/glslang/glslang-10.11.0.0_pre20201216.ebuild b/dev-util/glslang/glslang-10.11.0.0_pre20201216.ebuild index 87855efb185f..c13a82d8e338 100644 --- a/dev-util/glslang/glslang-10.11.0.0_pre20201216.ebuild +++ b/dev-util/glslang/glslang-10.11.0.0_pre20201216.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == *9999* ]]; then else SNAPSHOT_COMMIT="c594de23cdd790d64ad5f9c8b059baae0ee2941d" SRC_URI="https://github.com/KhronosGroup/${PN}/archive/${SNAPSHOT_COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~x86" S="${WORKDIR}/${PN}-${SNAPSHOT_COMMIT}" fi diff --git a/dev-util/spirv-headers/spirv-headers-1.5.4.1.ebuild b/dev-util/spirv-headers/spirv-headers-1.5.4.1.ebuild index 01d0cc3fc991..04183969c896 100644 --- a/dev-util/spirv-headers/spirv-headers-1.5.4.1.ebuild +++ b/dev-util/spirv-headers/spirv-headers-1.5.4.1.ebuild @@ -12,6 +12,6 @@ SRC_URI="https://github.com/KhronosGroup/SPIRV-Headers/archive/${EGIT_COMMIT}.ta LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~x86" +KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~x86" S="${WORKDIR}/SPIRV-Headers-${EGIT_COMMIT}" diff --git a/dev-util/spirv-tools/spirv-tools-2020.6.ebuild b/dev-util/spirv-tools/spirv-tools-2020.6.ebuild index 8671a31dec81..c9d0aee51f86 100644 --- a/dev-util/spirv-tools/spirv-tools-2020.6.ebuild +++ b/dev-util/spirv-tools/spirv-tools-2020.6.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == *9999* ]]; then else EGIT_COMMIT="${PV}" SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/v${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~x86" S="${WORKDIR}"/${MY_PN}-${EGIT_COMMIT} fi diff --git a/dev-util/vulkan-headers/vulkan-headers-1.2.162.ebuild b/dev-util/vulkan-headers/vulkan-headers-1.2.162.ebuild index 07d567083fac..118ed20a994a 100644 --- a/dev-util/vulkan-headers/vulkan-headers-1.2.162.ebuild +++ b/dev-util/vulkan-headers/vulkan-headers-1.2.162.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~x86" S="${WORKDIR}"/${MY_PN}-${PV} fi diff --git a/dev-util/vulkan-tools/vulkan-tools-1.2.162.ebuild b/dev-util/vulkan-tools/vulkan-tools-1.2.162.ebuild index fa74d0ce22c7..1495ee55e608 100644 --- a/dev-util/vulkan-tools/vulkan-tools-1.2.162.ebuild +++ b/dev-util/vulkan-tools/vulkan-tools-1.2.162.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm arm64 ~ppc ppc64" + KEYWORDS="amd64 arm arm64 ppc ppc64" S="${WORKDIR}"/${MY_PN}-${PV} fi diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz index 67c144fa9010..d1e438a67ee4 100644 Binary files a/eclass/Manifest.gz and b/eclass/Manifest.gz differ diff --git a/eclass/findlib.eclass b/eclass/findlib.eclass index 8fc5fd625a17..8090d6ce5c29 100644 --- a/eclass/findlib.eclass +++ b/eclass/findlib.eclass @@ -10,7 +10,8 @@ # @DESCRIPTION: # ocamlfind (a.k.a. findlib) eclass - +# Do not complain about CFLAGS etc since ml projects do not use them. +QA_FLAGS_IGNORED='.*' # From this findlib version there is proper stublibs support. DEPEND=">=dev-ml/findlib-1.0.4-r1" diff --git a/eclass/opam.eclass b/eclass/opam.eclass index 0420b99f71c5..05ebea510548 100644 --- a/eclass/opam.eclass +++ b/eclass/opam.eclass @@ -17,6 +17,9 @@ case ${EAPI:-0} in *) die "${ECLASS}: EAPI ${EAPI} not supported" ;; esac +# Do not complain about CFLAGS etc since ml projects do not use them. +QA_FLAGS_IGNORED='.*' + # @ECLASS-VARIABLE: OPAM_INSTALLER_DEP # @DESCRIPTION: # Override dependency for OPAM_INSTALLER diff --git a/games-engines/Manifest.gz b/games-engines/Manifest.gz index 96a7514c16fb..9aed58de6bbd 100644 Binary files a/games-engines/Manifest.gz and b/games-engines/Manifest.gz differ diff --git a/games-engines/love/love-0.7.2-r2.ebuild b/games-engines/love/love-0.7.2-r2.ebuild deleted file mode 100644 index 0743c3dd9250..000000000000 --- a/games-engines/love/love-0.7.2-r2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="A framework for 2D games in Lua" -HOMEPAGE="https://love2d.org/" -SRC_URI="https://github.com/love2d/${PN}/releases/download/${PV}/${P}-linux-src.tar.gz" - -LICENSE="ZLIB" -SLOT="0.7" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=" - dev-games/physfs - dev-lang/lua:0[deprecated] - media-libs/devil[mng,png,tiff] - media-libs/freetype:2 - media-libs/libmodplug - media-libs/libsdl[joystick,opengl] - media-libs/libvorbis - media-libs/openal - media-sound/mpg123 - virtual/opengl -" -DEPEND="${RDEPEND} - media-libs/libmng:0 - media-libs/tiff:0 -" - -S="${WORKDIR}/${PN}-HEAD" - -PATCHES=( - "${FILESDIR}"/${PN}-0.7.2-opengl_glext_prototypes.patch - "${FILESDIR}"/${PN}-0.8.0-freetype2.patch -) - -src_install() { - DOCS="readme.txt changes.txt" \ - default - - mv "${ED}/usr/bin/${PN}" "${ED}/usr/bin/${PN}-${SLOT}" || die -} diff --git a/games-engines/love/love-0.8.0-r2.ebuild b/games-engines/love/love-0.8.0-r2.ebuild deleted file mode 100644 index 9297277d9f52..000000000000 --- a/games-engines/love/love-0.8.0-r2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="A framework for 2D games in Lua" -HOMEPAGE="https://love2d.org/" -SRC_URI="https://github.com/love2d/${PN}/releases/download/${PV}/${P}-linux-src.tar.gz" -KEYWORDS="~amd64 ~arm ~x86" - -LICENSE="ZLIB" -SLOT="0.8" -IUSE="" - -RDEPEND=" - dev-games/physfs - dev-lang/lua:0[deprecated] - media-libs/devil[mng,png,tiff] - media-libs/freetype:2 - media-libs/libmodplug - media-libs/libsdl[joystick,opengl,video] - media-libs/libvorbis - media-libs/openal - media-sound/mpg123 - virtual/opengl -" -DEPEND="${RDEPEND} - media-libs/libmng:0 - media-libs/tiff:0 -" - -PATCHES=( - "${FILESDIR}"/${PN}-0.8.0-freetype2.patch - "${FILESDIR}"/${PN}-0.8.0-opengl_glext_prototypes.patch -) - -src_install() { - DOCS="readme.md changes.txt" \ - default - - mv "${ED}/usr/bin/${PN}" "${ED}/usr/bin/${PN}-${SLOT}" || die -} diff --git a/games-engines/love/love-11.3.ebuild b/games-engines/love/love-11.3.ebuild deleted file mode 100644 index df62bac35ad5..000000000000 --- a/games-engines/love/love-11.3.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg-utils - -if [[ ${PV} == 9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/love2d/${PN}.git" -else - SRC_URI="https://github.com/love2d/${PN}/releases/download/${PV}/${P}-linux-src.tar.gz" - KEYWORDS="~amd64 ~arm ~x86" -fi - -DESCRIPTION="A framework for 2D games in Lua" -HOMEPAGE="https://love2d.org/" - -LICENSE="ZLIB" -SLOT="0" -IUSE="+luajit" - -RDEPEND="sys-libs/zlib - !luajit? ( dev-lang/lua:0 ) - luajit? ( dev-lang/luajit:2 ) - media-libs/freetype - media-libs/libmodplug - media-libs/libsdl2[joystick,opengl] - media-libs/libogg - media-libs/libtheora - media-libs/libvorbis - media-libs/openal - media-sound/mpg123 - virtual/opengl" -DEPEND="${RDEPEND}" - -DOCS=( "readme.md" "changes.txt" ) - -src_prepare() { - default - if [[ ${PV} == 9999* ]]; then - ./platform/unix/automagic || die - fi -} - -src_configure() { - econf --with-lua=$(usex luajit luajit lua) -} - -src_install() { - default - - find "${D}" -name '*.la' -delete || die - - if [[ ${SLOT} != 0 ]]; then - mv "${ED}/usr/bin/${PN}" "${ED}/usr/bin/${PN}-${SLOT}" || die - mv "${ED}"/usr/share/applications/love{,"-$SLOT"}.desktop || die - sed -i -e "/^Name=/s/$/ ($SLOT)/" -e "s|/usr/bin/love|/usr/bin/love-$SLOT|" "${ED}/usr/share/applications/love-$SLOT.desktop" || die - rm -r "${ED}"/usr/{lib64/liblove.so,share/{mime/,pixmaps/,icons/,man/}} || die - fi -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update - xdg_mimeinfo_database_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update - xdg_mimeinfo_database_update -} diff --git a/games-engines/love/love-9999.ebuild b/games-engines/love/love-9999.ebuild index 6265299294f3..4de07ea8e793 100644 --- a/games-engines/love/love-9999.ebuild +++ b/games-engines/love/love-9999.ebuild @@ -3,7 +3,9 @@ EAPI=7 -inherit xdg-utils +LUA_COMPAT=( lua5-{1..3} luajit ) + +inherit lua-single xdg-utils if [[ ${PV} == 9999* ]]; then inherit git-r3 @@ -14,15 +16,15 @@ else fi DESCRIPTION="A framework for 2D games in Lua" -HOMEPAGE="http://love2d.org/" +HOMEPAGE="https://love2d.org/" LICENSE="ZLIB" SLOT="0" -IUSE="+luajit" + +REQUIRED_USE="${LUA_REQUIRED_USE}" RDEPEND="sys-libs/zlib - !luajit? ( dev-lang/lua:0 ) - luajit? ( dev-lang/luajit:2 ) + ${LUA_DEPS} media-libs/freetype media-libs/libmodplug media-libs/libsdl2[joystick,opengl] @@ -44,7 +46,8 @@ src_prepare() { } src_configure() { - econf --with-lua=$(usex luajit luajit lua) + econf --with-lua=$(usex lua_single_target_luajit luajit lua) \ + --with-luaversion=$(ver_cut 1-2 $(lua_get_version)) } src_install() { diff --git a/games-kids/Manifest.gz b/games-kids/Manifest.gz index a93782169281..2546651acd6f 100644 Binary files a/games-kids/Manifest.gz and b/games-kids/Manifest.gz differ diff --git a/games-kids/gcompris/Manifest b/games-kids/gcompris/Manifest index 45ec459f906d..caa30e91afaf 100644 --- a/games-kids/gcompris/Manifest +++ b/games-kids/gcompris/Manifest @@ -1,2 +1 @@ -DIST gcompris-qt-0.97.tar.xz 75362060 BLAKE2B e6bc429ba4a8a622792935c9b2e68149f5c1f4d9aae4cac84ca517ebe83e59a9b4307f6ce84b36e658256cad5c8bd37b7cbc60a058b6d65be372ad1934cf666f SHA512 23cc807238121a6ea3abb8816795b2f3b243c3be1acf782705468d92758a2032a8cb5393c3c30028877d174ff53ebc3a62f69e9045bc70a5281d1d245b6e4eba DIST gcompris-qt-1.0.tar.xz 75856376 BLAKE2B d10e1c7f80d45214fea11e221cc6cc8910ddbc3446f431279b8047103b51ffe3dbcda387908bb3a66e383383ea83f85f350c1b7c3468420dea668764672422fa SHA512 8ba89035f9e332b375808f3ba228f8ff211ef08a8edc0637399b5d00cd99120700c89e01c2e5ebd5e90a958229f34034f11c1bbdba044381005f588252af3c86 diff --git a/games-kids/gcompris/gcompris-0.97-r1.ebuild b/games-kids/gcompris/gcompris-0.97-r1.ebuild deleted file mode 100644 index c320ebcd4ec7..000000000000 --- a/games-kids/gcompris/gcompris-0.97-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ECM_HANDBOOK="optional" -ECM_TEST="true" -QTMIN=5.12.3 -inherit ecm kde.org - -DESCRIPTION="Full featured educational application for children from 2 to 10" -HOMEPAGE="https://gcompris.net/" - -if [[ ${KDE_BUILD_TYPE} = release ]]; then - SRC_URI="https://gcompris.net/download/qt/src/${PN}-qt-${PV}.tar.xz" - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${PN}-qt-${PV}" -fi - -LICENSE="GPL-3+" -SLOT="0" -IUSE="kiosk" - -BDEPEND=" - >=dev-qt/linguist-tools-${QTMIN}:5 - test? ( - dev-util/cppcheck - sys-devel/clang - ) -" -COMMON_DEPEND=" - >=dev-qt/qtdeclarative-${QTMIN}:5 - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtnetwork-${QTMIN}:5 - >=dev-qt/qtsensors-${QTMIN}:5 - >=dev-qt/qtsvg-${QTMIN}:5 -" -DEPEND="${COMMON_DEPEND} - >=dev-qt/qtmultimedia-${QTMIN}:5 - >=dev-qt/qtxml-${QTMIN}:5 - >=dev-qt/qtxmlpatterns-${QTMIN}:5 -" -RDEPEND="${COMMON_DEPEND} - >=dev-qt/qtgraphicaleffects-${QTMIN}:5 - >=dev-qt/qtmultimedia-${QTMIN}:5[qml] - >=dev-qt/qtquickcontrols-${QTMIN}:5 -" - -src_configure() { - local mycmakeargs=( - -DQML_BOX2D_MODULE=disabled - -DWITH_KIOSK_MODE=$(usex kiosk) - ) - ecm_src_configure -} diff --git a/games-simulation/Manifest.gz b/games-simulation/Manifest.gz index e07540d33f3e..6ed5aa2ea9a0 100644 Binary files a/games-simulation/Manifest.gz and b/games-simulation/Manifest.gz differ diff --git a/games-simulation/flightgear-data/Manifest b/games-simulation/flightgear-data/Manifest index 35816de847bb..7064a4008709 100644 --- a/games-simulation/flightgear-data/Manifest +++ b/games-simulation/flightgear-data/Manifest @@ -1 +1 @@ -DIST FlightGear-2020.1.2-data.tar.bz2 1954932485 BLAKE2B e3f06ed6a36d2cfc6518f4a1cac4aaf28df2b7e1fb4720488dd38f3df7dfccb1cc9b48e0f216fa79db5fc3b380dcdd1161325ba0195cc14aadbc2d79fab39031 SHA512 16329d230f8cfd35dbd60aad0afc66225134e5c2f98abb89ca271837f04917f6aa876fc35868783a3a3d56c4ba1d25f429436de516a8086f4b7e296a0d352e03 +DIST FlightGear-2020.3.6-data.tar.bz2 2009894075 BLAKE2B 5f8ed7c7290ede6c4b0a902d3d3ace515c2713ec237542c7f3537bfb48d99e480958344b8b5897e350ef800258408a2fe9c3058786c522402e4d88b18dfd5a72 SHA512 d29ff4feb72be167b57b9baae461c810aef537085084bfb0c0ffbb2d1575ced38a951478fa1fd395c219919528af7e050a6c5199c337592cf607da5a3c682017 diff --git a/games-simulation/flightgear-data/flightgear-data-2020.1.2.ebuild b/games-simulation/flightgear-data/flightgear-data-2020.3.6.ebuild similarity index 100% rename from games-simulation/flightgear-data/flightgear-data-2020.1.2.ebuild rename to games-simulation/flightgear-data/flightgear-data-2020.3.6.ebuild diff --git a/games-simulation/flightgear/Manifest b/games-simulation/flightgear/Manifest index 2977ffa6f2d4..78a719620d54 100644 --- a/games-simulation/flightgear/Manifest +++ b/games-simulation/flightgear/Manifest @@ -1 +1 @@ -DIST flightgear-2020.1.2.tar.bz2 8504580 BLAKE2B 699db9490e27b3de82bcf2903321c7ee24784e6a96285784bb449eb05fb23f3a0417d015ea10a55992c3783c0e42a2cda7e591d998532145213d1941811b1725 SHA512 a27897a1e23fe78c64717df1a86ef37dba047a1942af1dd2e4e3f3da05975bb5c524ee03444c8067551966d6a1bbfe36866f2617fa6fe1f6b957d5769c31058c +DIST flightgear-2020.3.6.tar.bz2 8837251 BLAKE2B 28b8032bd2b6da91f72ae19d4c0c3a6d38122ec2ce7e2e8d1bc3022003551c6c5887711d67868fd9546d79eb6def6c0f0571e62361e73deb6f0edc9c3159c8fa SHA512 b0bfa6e02cf5c2e64aea85fb7433e583141471e15a7dff69dbc12c227835c6e52dcf5b2947a30847c2b291442878eee6265217311e441abb32c5f95bbf7df990 diff --git a/games-simulation/flightgear/files/flightgear-2020.1.2-boost.patch b/games-simulation/flightgear/files/flightgear-2020.1.2-boost.patch deleted file mode 100644 index 43e2a7d0cb13..000000000000 --- a/games-simulation/flightgear/files/flightgear-2020.1.2-boost.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -515,7 +515,7 @@ - set(NOMINMAX 1) - endif(WIN32) - --set (BOOST_CXX_FLAGS "-DBOOST_BIMAP_DISABLE_SERIALIZATION") -+set (BOOST_CXX_FLAGS "-DBOOST_BIMAP_DISABLE_SERIALIZATION -DBOOST_NO_STDLIB_CONFIG") - - # append the SIMD flags if requested - if (ENABLE_SIMD) diff --git a/games-simulation/flightgear/files/flightgear-2020.1.2-cmake.patch b/games-simulation/flightgear/files/flightgear-2020.3.5-cmake.patch similarity index 54% rename from games-simulation/flightgear/files/flightgear-2020.1.2-cmake.patch rename to games-simulation/flightgear/files/flightgear-2020.3.5-cmake.patch index f463c458b5a0..0af961beacdf 100644 --- a/games-simulation/flightgear/files/flightgear-2020.1.2-cmake.patch +++ b/games-simulation/flightgear/files/flightgear-2020.3.5-cmake.patch @@ -1,18 +1,18 @@ -diff -ruN flightgear-2020.1.2/CMakeLists.txt fgfs-my/CMakeLists.txt ---- flightgear-2020.1.2/CMakeLists.txt 2020-05-24 17:14:48.000000000 +0200 -+++ fgfs-my/CMakeLists.txt 2020-05-31 13:56:41.745941586 +0200 -@@ -367,7 +367,7 @@ +diff -ruN flightgear-2020.3.5/CMakeLists.txt fgfs-my/CMakeLists.txt +--- flightgear-2020.3.5/CMakeLists.txt 2020-12-18 12:43:09.000000000 +0100 ++++ fgfs-my/CMakeLists.txt 2021-01-24 01:36:57.547695230 +0100 +@@ -373,7 +373,7 @@ ## Qt5 setup setup if (ENABLE_QT) message(STATUS "Qt launcher enabled, checking for Qt >= 5.4 / qmake") -- find_package(Qt5 5.4 COMPONENTS Widgets Network Qml Quick Svg) -+ find_package(Qt5 5.4 COMPONENTS Widgets Network Qml Quick) +- find_package(Qt5 5.4 COMPONENTS Widgets Gui Network Qml Quick Svg) ++ find_package(Qt5 5.4 COMPONENTS Widgets Gui Network Qml Quick) if (Qt5Widgets_FOUND) message(STATUS "Will enable Qt launcher GUI") set(HAVE_QT 1) -diff -ruN flightgear-2020.1.2/CMakeModules/SetupFGFSLibraries.cmake fgfs-my/CMakeModules/SetupFGFSLibraries.cmake ---- flightgear-2020.1.2/CMakeModules/SetupFGFSLibraries.cmake 2020-05-24 17:14:48.000000000 +0200 -+++ fgfs-my/CMakeModules/SetupFGFSLibraries.cmake 2020-05-31 13:55:33.484421108 +0200 +diff -ruN flightgear-2020.3.5/CMakeModules/SetupFGFSLibraries.cmake fgfs-my/CMakeModules/SetupFGFSLibraries.cmake +--- flightgear-2020.3.5/CMakeModules/SetupFGFSLibraries.cmake 2020-12-18 12:43:09.000000000 +0100 ++++ fgfs-my/CMakeModules/SetupFGFSLibraries.cmake 2021-01-24 01:35:31.298263659 +0100 @@ -33,15 +33,8 @@ # PkgConfig::DBUS target @@ -31,15 +31,15 @@ diff -ruN flightgear-2020.1.2/CMakeModules/SetupFGFSLibraries.cmake fgfs-my/CMak endif() if(FG_HAVE_GPERFTOOLS) -diff -ruN flightgear-2020.1.2/src/GUI/CMakeLists.txt fgfs-my/src/GUI/CMakeLists.txt ---- flightgear-2020.1.2/src/GUI/CMakeLists.txt 2020-05-24 17:14:48.000000000 +0200 -+++ fgfs-my/src/GUI/CMakeLists.txt 2020-05-31 13:56:41.745941586 +0200 -@@ -137,7 +137,7 @@ - ${qml_sources}) +diff -ruN flightgear-2020.3.5/src/GUI/CMakeLists.txt fgfs-my/src/GUI/CMakeLists.txt +--- flightgear-2020.3.5/src/GUI/CMakeLists.txt 2020-12-18 12:43:09.000000000 +0100 ++++ fgfs-my/src/GUI/CMakeLists.txt 2021-01-24 01:40:02.008618256 +0100 +@@ -142,7 +142,7 @@ set_property(TARGET fglauncher PROPERTY AUTOMOC ON) + target_include_directories(fglauncher PRIVATE ${PROJECT_BINARY_DIR}/src/GUI) - target_link_libraries(fglauncher Qt5::Core Qt5::Widgets Qt5::Network Qt5::Qml Qt5::Quick Qt5::Svg SimGearCore) + target_link_libraries(fglauncher Qt5::Core Qt5::Widgets Qt5::Network Qt5::Qml Qt5::Quick SimGearCore) - target_include_directories(fglauncher PRIVATE ${PROJECT_BINARY_DIR}/src/GUI) - add_library(fgqmlui QQuickDrawable.cxx + if (ENABLE_QQ_UI) + set(QQUI_SOURCES diff --git a/games-simulation/flightgear/flightgear-2020.1.2.ebuild b/games-simulation/flightgear/flightgear-2020.3.6.ebuild similarity index 95% rename from games-simulation/flightgear/flightgear-2020.1.2.ebuild rename to games-simulation/flightgear/flightgear-2020.3.6.ebuild index c472dcc0fa53..23f6c894ed34 100644 --- a/games-simulation/flightgear/flightgear-2020.1.2.ebuild +++ b/games-simulation/flightgear/flightgear-2020.3.6.ebuild @@ -64,8 +64,7 @@ RDEPEND="${COMMON_DEPEND} " PATCHES=( - "${FILESDIR}/${PN}-2020.1.2-cmake.patch" - "${FILESDIR}/${P}-boost.patch" + "${FILESDIR}/${PN}-2020.3.5-cmake.patch" ) DOCS=(AUTHORS ChangeLog NEWS README Thanks) @@ -95,7 +94,7 @@ src_configure() { -DENABLE_PROFILE=OFF -DENABLE_QT=$(usex qt5) -DENABLE_RTI=OFF - -DENABLE_SIMD=OFF # see CPU_FLAGS + -DENABLE_SIMD=$(usex cpu_flags_x86_sse2) -DENABLE_STGMERGE=ON -DENABLE_SWIFT=OFF # swift pilot client not packaged yet -DENABLE_TERRASYNC=$(usex utils) @@ -118,9 +117,6 @@ src_configure() { -DUSE_DBUS=$(usex dbus) -DWITH_FGPANEL=$(usex utils) ) - if use cpu_flags_x86_sse2; then - append-flags -msse2 -mfpmath=sse - fi if use gdal && use utils; then mycmakeargs+=(-DENABLE_DEMCONVERT=ON) else diff --git a/games-simulation/flightgear/flightgear-9999.ebuild b/games-simulation/flightgear/flightgear-9999.ebuild index 2eea53f95a81..551102d90c57 100644 --- a/games-simulation/flightgear/flightgear-9999.ebuild +++ b/games-simulation/flightgear/flightgear-9999.ebuild @@ -66,7 +66,7 @@ RDEPEND="${COMMON_DEPEND} " PATCHES=( -# "${FILESDIR}/${PN}-2020.1.2-cmake.patch" + "${FILESDIR}/${PN}-2020.3.5-cmake.patch" ) DOCS=(AUTHORS ChangeLog NEWS README Thanks) @@ -96,7 +96,7 @@ src_configure() { -DENABLE_PROFILE=OFF -DENABLE_QT=$(usex qt5) -DENABLE_RTI=OFF - -DENABLE_SIMD=OFF # see CPU_FLAGS + -DENABLE_SIMD=$(usex cpu_flags_x86_sse2) -DENABLE_STGMERGE=ON -DENABLE_SWIFT=OFF # swift pilot client not packaged yet -DENABLE_TERRASYNC=$(usex utils) @@ -119,9 +119,6 @@ src_configure() { -DUSE_DBUS=$(usex dbus) -DWITH_FGPANEL=$(usex utils) ) - if use cpu_flags_x86_sse2; then - append-flags -msse2 -mfpmath=sse - fi if use gdal && use utils; then mycmakeargs+=(-DENABLE_DEMCONVERT=ON) else diff --git a/gui-apps/Manifest.gz b/gui-apps/Manifest.gz index ee3ec18cf2cf..626a91bad2fe 100644 Binary files a/gui-apps/Manifest.gz and b/gui-apps/Manifest.gz differ diff --git a/gui-apps/waypipe/Manifest b/gui-apps/waypipe/Manifest new file mode 100644 index 000000000000..50c4b956b8a0 --- /dev/null +++ b/gui-apps/waypipe/Manifest @@ -0,0 +1 @@ +DIST waypipe-0.7.2.tar.gz 202601 BLAKE2B bc8a03c8b47ee65a158ca45047f1989761c36b7b6fb5196784637f4e937fa2e5076497079f8368daf20592351e60a12fda5f4500b7220320b4c4a73ca9e5b1e0 SHA512 b126ea9d30864ecba67447793f39dbbe8bc73ab33c79879ac243023c64930e9aae887f13c0fdcc4cdf307b0ca6766b1012915dc88c596b7c250e3b35f6ba9190 diff --git a/gui-apps/waypipe/files/waypipe-0.7.2-no-simd.patch b/gui-apps/waypipe/files/waypipe-0.7.2-no-simd.patch new file mode 100644 index 000000000000..df464810e1b3 --- /dev/null +++ b/gui-apps/waypipe/files/waypipe-0.7.2-no-simd.patch @@ -0,0 +1,38 @@ +make simd instructions optional + +--- a/meson_options.txt ++++ b/meson_options.txt +@@ -5,3 +5,7 @@ option('with_lz4', type : 'feature', value : 'auto', description : 'Support LZ4 + option('with_zstd', type : 'feature', value : 'auto', description : 'Support ZStandard as a compression mechanism') + option('with_vaapi', type : 'feature', value : 'auto', description : 'Link with libva and use VAAPI to perform hardware video output color space conversions on GPU') + option('with_systemtap', type: 'boolean', value: true, description: 'Enable tracing using sdt and provide static tracepoints for profiling') ++option('with_avx512f', type: 'boolean', value: true, description: 'Enable avx512f SIMD instructions') ++option('with_avx2', type: 'boolean', value: true, description: 'Enable avx2 SIMD instructions') ++option('with_sse3', type: 'boolean', value: true, description: 'Enable sse3 SIMD instructions') ++option('with_neon_opts', type: 'boolean', value: true, description: 'Enable optimizations for ARM64 neon cpus') +--- a/src/meson.build ++++ b/src/meson.build +@@ -25,19 +25,19 @@ endif + # Conditionally compile SIMD-optimized code. + # (The meson simd module is a bit too limited for this) + kernel_libs = [] +-if cc.has_argument('-mavx512f') and cc.has_argument('-mlzcnt') and cc.has_argument('-mbmi') ++if cc.has_argument('-mavx512f') and cc.has_argument('-mlzcnt') and cc.has_argument('-mbmi') and get_option('with_avx512f') + kernel_libs += static_library('kernel_avx512f', 'kernel_avx512f.c', c_args:['-mavx512f', '-mlzcnt', '-mbmi']) + config_data.set('HAVE_AVX512F', 1, description: 'Compiler supports AVX-512F') + endif +-if cc.has_argument('-mavx2') and cc.has_argument('-mlzcnt') and cc.has_argument('-mbmi') ++if cc.has_argument('-mavx2') and cc.has_argument('-mlzcnt') and cc.has_argument('-mbmi') and get_option('with_avx2') + kernel_libs += static_library('kernel_avx2', 'kernel_avx2.c', c_args:['-mavx2', '-mlzcnt', '-mbmi']) + config_data.set('HAVE_AVX2', 1, description: 'Compiler supports AVX2') + endif +-if cc.has_argument('-msse3') ++if cc.has_argument('-msse3') and get_option('with_sse3') + kernel_libs += static_library('kernel_sse3', 'kernel_sse3.c', c_args:['-msse3']) + config_data.set('HAVE_SSE3', 1, description: 'Compiler supports SSE 3') + endif +-if host_machine.cpu_family() == 'aarch64' or cc.has_argument('-mfpu=neon') ++if ( host_machine.cpu_family() == 'aarch64' or cc.has_argument('-mfpu=neon') ) and get_option('with_neon_opts') + neon_args = host_machine.cpu_family() == 'aarch64' ? [] : ['-mfpu=neon'] + + # Clang additionally enforces that NEON code only be compiled diff --git a/gui-apps/waypipe/files/waypipe-0.7.2-werror.patch b/gui-apps/waypipe/files/waypipe-0.7.2-werror.patch new file mode 100644 index 000000000000..289a0c29acb5 --- /dev/null +++ b/gui-apps/waypipe/files/waypipe-0.7.2-werror.patch @@ -0,0 +1,12 @@ +diff --git a/meson.build b/meson.build +index d023f1f..372f0e3 100644 +--- a/meson.build ++++ b/meson.build +@@ -6,7 +6,6 @@ project( + default_options: [ + 'c_std=c11', + 'warning_level=3', +- 'werror=true', + ], + version: '0.7.2', + ) diff --git a/gui-apps/waypipe/metadata.xml b/gui-apps/waypipe/metadata.xml new file mode 100644 index 000000000000..c0b193b3bddb --- /dev/null +++ b/gui-apps/waypipe/metadata.xml @@ -0,0 +1,24 @@ + + + + + gentoo@aisha.cc + Aisha Tammy + + + proxy-maint@gentoo.org + Proxy Maintainers + + + waypipe is a proxy for wayland clients to allow streaming. + sessions over tcp. It forwards Wayland messages and + serializes changes to shared memory buffers over a single socket. + This makes application forwarding similar to ssh -X feasible. + + + Use dmabuf for data exchange and hardware decoding + Link with ffmpeg for software decoding + Build and install man pages + Enable SystemTAP/DTrace tracing + + diff --git a/gui-apps/waypipe/waypipe-0.7.2.ebuild b/gui-apps/waypipe/waypipe-0.7.2.ebuild new file mode 100644 index 000000000000..ad21057c1731 --- /dev/null +++ b/gui-apps/waypipe/waypipe-0.7.2.ebuild @@ -0,0 +1,72 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit meson python-any-r1 + +DESCRIPTION="network transparency with Wayland" +HOMEPAGE="https://gitlab.freedesktop.org/mstoeckl/waypipe" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.freedesktop.org/mstoeckl/waypipe" +else + SRC_URI="https://gitlab.freedesktop.org/mstoeckl/waypipe/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}"/${PN}-v${PV} + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" + +CPU_FLAGS_X86=( "avx2" "avx512f" "sse3" ) +IUSE="dmabuf ffmpeg lz4 man neon systemtap test vaapi zstd ${CPU_FLAGS_X86[@]/#/cpu_flags_x86_}" +REQUIRED_USE="vaapi? ( ffmpeg )" +RESTRICT="!test? ( test )" + +DEPEND=" + dmabuf? ( + media-libs/mesa[gbm,vaapi?,wayland] + x11-libs/libdrm + ) + lz4? ( app-arch/lz4 ) + systemtap? ( dev-util/systemtap ) + vaapi? ( x11-libs/libva[drm,wayland] ) + ffmpeg? ( + media-video/ffmpeg[x264,vaapi?] + ) + zstd? ( app-arch/zstd ) +" +RDEPEND="${DEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + virtual/pkgconfig + man? ( app-text/scdoc ) + test? ( dev-libs/weston[wayland-compositor,screen-sharing] ) +" + +PATCHES=( + "${FILESDIR}"/waypipe-0.7.2-werror.patch + "${FILESDIR}"/waypipe-0.7.2-no-simd.patch +) + +src_configure() { + local mymesonargs=( + $(meson_use systemtap with_systemtap) + $(meson_use neon with_neon_opts) + $(meson_feature dmabuf with_dmabuf) + $(meson_feature ffmpeg with_video) + $(meson_feature lz4 with_lz4) + $(meson_feature man man-pages) + $(meson_feature vaapi with_vaapi) + $(meson_feature zstd with_zstd) + ) + local fl + for fl in "${CPU_FLAGS_X86[@]}"; do + mymesonargs+=( $(meson_use cpu_flags_x86_$fl with_$fl ) ) + done + meson_src_configure +} diff --git a/gui-apps/waypipe/waypipe-9999.ebuild b/gui-apps/waypipe/waypipe-9999.ebuild new file mode 100644 index 000000000000..60bffcfedb71 --- /dev/null +++ b/gui-apps/waypipe/waypipe-9999.ebuild @@ -0,0 +1,72 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit meson python-any-r1 + +DESCRIPTION="transparent network proxy for Wayland compositors" +HOMEPAGE="https://gitlab.freedesktop.org/mstoeckl/waypipe" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.freedesktop.org/mstoeckl/waypipe" +else + SRC_URI="https://gitlab.freedesktop.org/mstoeckl/waypipe/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}"/${PN}-v${PV} + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" + +CPU_FLAGS_X86=( "avx2" "avx512f" "sse3" ) +IUSE="dmabuf ffmpeg lz4 man neon systemtap test vaapi zstd ${CPU_FLAGS_X86[@]/#/cpu_flags_x86_}" +REQUIRED_USE="vaapi? ( ffmpeg )" +RESTRICT="!test? ( test )" + +DEPEND=" + dmabuf? ( + media-libs/mesa[gbm,vaapi?,wayland] + x11-libs/libdrm + ) + lz4? ( app-arch/lz4 ) + systemtap? ( dev-util/systemtap ) + vaapi? ( x11-libs/libva[drm,wayland] ) + ffmpeg? ( + media-video/ffmpeg[x264,vaapi?] + ) + zstd? ( app-arch/zstd ) +" +RDEPEND="${DEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + virtual/pkgconfig + man? ( app-text/scdoc ) + test? ( dev-libs/weston[wayland-compositor,screen-sharing] ) +" + +PATCHES=( + "${FILESDIR}"/waypipe-0.7.2-werror.patch + "${FILESDIR}"/waypipe-0.7.2-no-simd.patch +) + +src_configure() { + local mymesonargs=( + $(meson_use systemtap with_systemtap) + $(meson_use neon with_neon_opts) + $(meson_feature dmabuf with_dmabuf) + $(meson_feature ffmpeg with_video) + $(meson_feature lz4 with_lz4) + $(meson_feature man man-pages) + $(meson_feature vaapi with_vaapi) + $(meson_feature zstd with_zstd) + ) + local fl + for fl in "${CPU_FLAGS_X86[@]}"; do + mymesonargs+=( $(meson_use cpu_flags_x86_$fl with_$fl ) ) + done + meson_src_configure +} diff --git a/gui-apps/wayvnc/Manifest b/gui-apps/wayvnc/Manifest new file mode 100644 index 000000000000..1bc4a3ef8614 --- /dev/null +++ b/gui-apps/wayvnc/Manifest @@ -0,0 +1 @@ +DIST wayvnc-0.4.0.tar.gz 52157 BLAKE2B 7c8456d5136ef361ca7dd72ffa7501514eeb7a61ae1777a02391fb7fceea6b020d68951300ab76254f2afd5e2610fe66ce0f461d18dc38522706691438f4620e SHA512 b8f1af24213077dc6126ae1f613b9cdeed8f365f9d1989a5b053563f0eb4bc49921e746e0f1026fe0e02bfeea23b912798678a5a337a052d977aa04496a75570 diff --git a/gui-apps/wayvnc/metadata.xml b/gui-apps/wayvnc/metadata.xml new file mode 100644 index 000000000000..32c02efdbf9e --- /dev/null +++ b/gui-apps/wayvnc/metadata.xml @@ -0,0 +1,24 @@ + + + + + VNC server for wlroots based Wayland compositors. + It attaches to a running Wayland session, creates + virtual input devices and exposes a single display + via the RFB protocol. The Wayland session may be a + headless one, so it is also possible to run wayvnc + without a physical display attached. + + + gentoo@aisha.cc + Aisha Tammy + + + proxy-maint@gentoo.org + Proxy Maintainers + + + enable GPU-side screencopy (experimental) + Trace kernel and memory calls + + diff --git a/gui-apps/wayvnc/wayvnc-0.4.0.ebuild b/gui-apps/wayvnc/wayvnc-0.4.0.ebuild new file mode 100644 index 000000000000..369ff2e67cac --- /dev/null +++ b/gui-apps/wayvnc/wayvnc-0.4.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="VNC server for wlroots based Wayland compositors" +HOMEPAGE="https://github.com/any1/wayvnc" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + 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" +fi + +LICENSE="ISC" +SLOT="0" +IUSE="gbm tracing" + +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 ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + dev-libs/wayland-protocols +" + +src_configure() { + local emesonargs=( + $(meson_feature gbm screencopy-dmabuf) + $(meson_use tracing systemtap) + ) + meson_src_configure +} diff --git a/gui-apps/wayvnc/wayvnc-9999.ebuild b/gui-apps/wayvnc/wayvnc-9999.ebuild new file mode 100644 index 000000000000..369ff2e67cac --- /dev/null +++ b/gui-apps/wayvnc/wayvnc-9999.ebuild @@ -0,0 +1,44 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="VNC server for wlroots based Wayland compositors" +HOMEPAGE="https://github.com/any1/wayvnc" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + 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" +fi + +LICENSE="ISC" +SLOT="0" +IUSE="gbm tracing" + +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 ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + dev-libs/wayland-protocols +" + +src_configure() { + local emesonargs=( + $(meson_feature gbm screencopy-dmabuf) + $(meson_use tracing systemtap) + ) + meson_src_configure +} diff --git a/gui-libs/Manifest.gz b/gui-libs/Manifest.gz index 512883f268c7..3c0abe96d5cd 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 new file mode 100644 index 000000000000..7636ee781a0b --- /dev/null +++ b/gui-libs/neatvnc/Manifest @@ -0,0 +1 @@ +DIST neatvnc-0.4.0.tar.gz 555438 BLAKE2B d6676521c3bceb43055589406419c12aca8139b561dc2f9de1ac3abae3e3c84e7ce133fb18a6206941ee9a00306a3c5c4dbebf2c36b15e57a11bd950a20f69a6 SHA512 cfbba3e81e1319b3c0f87644c7fb92e2a72d993c107722d6cb2e23674e1c4bfe9c281442a508a14d3e16964529d0646d1b9726d8f081157fb902454637346a7d diff --git a/gui-libs/neatvnc/metadata.xml b/gui-libs/neatvnc/metadata.xml new file mode 100644 index 000000000000..90575035113f --- /dev/null +++ b/gui-libs/neatvnc/metadata.xml @@ -0,0 +1,17 @@ + + + + + gentoo@aisha.cc + Aisha Tammy + + + proxy-maint@gentoo.org + Proxy Maintainers + + + Build and install examples + Enable fast encodings + Trace kernel and memory calls + + diff --git a/gui-libs/neatvnc/neatvnc-0.4.0.ebuild b/gui-libs/neatvnc/neatvnc-0.4.0.ebuild new file mode 100644 index 000000000000..0e82ff2aa460 --- /dev/null +++ b/gui-libs/neatvnc/neatvnc-0.4.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="liberally licensed VNC server library with a clean interface" +HOMEPAGE="https://github.com/any1/neatvnc/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + 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 ~x86" +fi + +LICENSE="ISC" +SLOT="0" +IUSE="examples ssl jpeg tracing" + +DEPEND=" + x11-libs/pixman + x11-libs/libdrm + dev-libs/aml + sys-libs/zlib + ssl? ( net-libs/gnutls:= ) + jpeg? ( media-libs/libjpeg-turbo:= ) + tracing? ( dev-util/systemtap ) +" +RDEPEND="${DEPEND}" +BDEPEND=" + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + $(meson_use examples) + $(meson_feature jpeg) + $(meson_feature ssl tls) + $(meson_use tracing systemtap) + ) + meson_src_configure +} diff --git a/gui-libs/neatvnc/neatvnc-9999.ebuild b/gui-libs/neatvnc/neatvnc-9999.ebuild new file mode 100644 index 000000000000..0e82ff2aa460 --- /dev/null +++ b/gui-libs/neatvnc/neatvnc-9999.ebuild @@ -0,0 +1,45 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="liberally licensed VNC server library with a clean interface" +HOMEPAGE="https://github.com/any1/neatvnc/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + 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 ~x86" +fi + +LICENSE="ISC" +SLOT="0" +IUSE="examples ssl jpeg tracing" + +DEPEND=" + x11-libs/pixman + x11-libs/libdrm + dev-libs/aml + sys-libs/zlib + ssl? ( net-libs/gnutls:= ) + jpeg? ( media-libs/libjpeg-turbo:= ) + tracing? ( dev-util/systemtap ) +" +RDEPEND="${DEPEND}" +BDEPEND=" + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + $(meson_use examples) + $(meson_feature jpeg) + $(meson_feature ssl tls) + $(meson_use tracing systemtap) + ) + meson_src_configure +} diff --git a/kde-frameworks/Manifest.gz b/kde-frameworks/Manifest.gz index 7f652523e9df..8c42ef801f63 100644 Binary files a/kde-frameworks/Manifest.gz and b/kde-frameworks/Manifest.gz differ diff --git a/kde-frameworks/kcompletion/files/kcompletion-5.78.0-fix-klineedit.patch b/kde-frameworks/kcompletion/files/kcompletion-5.78.0-fix-klineedit.patch new file mode 100644 index 000000000000..0dd7ace61cd9 --- /dev/null +++ b/kde-frameworks/kcompletion/files/kcompletion-5.78.0-fix-klineedit.patch @@ -0,0 +1,27 @@ +From 7acda936f06193e9fc85ae5cf9ccc8d65971f657 Mon Sep 17 00:00:00 2001 +From: Albert Astals Cid +Date: Tue, 12 Jan 2021 23:43:19 +0100 +Subject: [PATCH] Fix regression caused due to porting from operator+ to + operator| + +BUGS: 431493 +--- + src/klineedit.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/klineedit.cpp b/src/klineedit.cpp +index 1cc9316..8201259 100644 +--- a/src/klineedit.cpp ++++ b/src/klineedit.cpp +@@ -1222,7 +1222,7 @@ bool KLineEditPrivate::overrideShortcut(const QKeyEvent *e) + // but doesn't dare force as "stronger than kaction shortcuts"... + else if (e->matches(QKeySequence::SelectAll)) { + return true; +- } else if (qApp->platformName() == QLatin1String("xcb") && (key == Qt::CTRL | Qt::Key_E || key == Qt::CTRL | Qt::Key_U)) { ++ } else if (qApp->platformName() == QLatin1String("xcb") && (key == (Qt::CTRL | Qt::Key_E) || key == (Qt::CTRL | Qt::Key_U))) { + return true; + } + +-- +GitLab + diff --git a/kde-frameworks/kcompletion/kcompletion-5.78.0.ebuild b/kde-frameworks/kcompletion/kcompletion-5.78.0-r1.ebuild similarity index 91% rename from kde-frameworks/kcompletion/kcompletion-5.78.0.ebuild rename to kde-frameworks/kcompletion/kcompletion-5.78.0-r1.ebuild index 3381e8ca5305..e75d75f2fc92 100644 --- a/kde-frameworks/kcompletion/kcompletion-5.78.0.ebuild +++ b/kde-frameworks/kcompletion/kcompletion-5.78.0-r1.ebuild @@ -25,6 +25,8 @@ DEPEND=" " RDEPEND="${DEPEND}" +PATCHES=( "${FILESDIR}/${P}-fix-klineedit.patch" ) # KDE-Bug 431493 + src_configure() { local mycmakeargs=( -DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON # bug 746866 diff --git a/kde-plasma/Manifest.gz b/kde-plasma/Manifest.gz index 0df2df216f67..ce74b853caeb 100644 Binary files a/kde-plasma/Manifest.gz and b/kde-plasma/Manifest.gz differ diff --git a/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-5.20.0-r1.ebuild b/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-5.20.0-r1.ebuild index 74a974a91fb2..01e7196203bb 100644 --- a/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-5.20.0-r1.ebuild +++ b/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-5.20.0-r1.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="https://invent.kde.org/plasma/plasma-systemmonitor" if [[ ${KDE_BUILD_TYPE} == release ]]; then SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" - KEYWORDS="~amd64 ~ppc64" + KEYWORDS="~amd64 ~arm ~ppc64" fi LICENSE="|| ( GPL-3 GPL-2 )" diff --git a/mail-client/Manifest.gz b/mail-client/Manifest.gz index 1899d87b536d..bc0c6a98ef1f 100644 Binary files a/mail-client/Manifest.gz and b/mail-client/Manifest.gz differ diff --git a/mail-client/mutt/Manifest b/mail-client/mutt/Manifest index 50745d386af2..73bb3449b571 100644 --- a/mail-client/mutt/Manifest +++ b/mail-client/mutt/Manifest @@ -1,6 +1,4 @@ -DIST mutt-2.0.2.tar.gz 5293613 BLAKE2B 215a4d54e6dd202ebced91d0536a7f70e774b3c41c129ef87a55ea75a298e485b72145e5dd3c654d9b28138800c4b3e87a3815ab789d952b6b58cfc068fd397b SHA512 5dea02edf60b33e4873806481aa4256f91d90b05de99a9eccc620c459bd924197b656f85eb5a31757a61675389e6c4d76571128a757cfda255240934e82eec29 DIST mutt-2.0.4.tar.gz 5293913 BLAKE2B 9c5d2d17fae9653868cca08eb7d92f9c6e122702590ba88a2ba04ee8606cfba5bca99716045b59cf40a21e95a0e32f3b21a34ee34440f155a3e2788720c3d57c SHA512 8080107810d2ff572b1532bb441573e4dcfbfbc03f28be711dcdebd1e6a1c8b5adf5c5a4f386ce0a661ff7050722b41e122c58964feae665ff4138013af18762 DIST mutt-2.0.5.tar.gz 5294710 BLAKE2B f33f4d496629c34ad4f341ecd02a1ef6b9e59b77234ca80c096acf30e189fcfbd4d8cf1182d8efcdcac8aeaab8fe0f9b4fdeb47f361a5db23da0c690ea5bf638 SHA512 41849d700b88e1b28b51fb90be2a9f6b639e8b111dce914073b66327e4655b5d4ca04dc3aedf2d44a0aa1a80ac3c4fcca6058eae7fb4f71f6b506fbe00a2a740 -DIST mutt-gentoo-2.0.2-patches-r0.tar.xz 26380 BLAKE2B 3ce2dbe07f9340adbaeb0489fe88564b6cc44ef330d298915d42617357799a26f277cc0dcab2b78a5620f20a2533f2fe43287bab76eeb9529013e9f9c7659ffb SHA512 79fb00ccf6084da805c75eedbdb1631b12e616318e91a4c246d0194a478b803e3dc5d2815f757fecc91316c010058c2d0e9ecaf3fe40d5664ac25af63a0d7e13 DIST mutt-gentoo-2.0.4-patches-r1.tar.xz 26908 BLAKE2B b2ca74496328cd9bcc0eb843e48b99a6a066be6530228534d2d0a60223984e03dde2718116d8314f9cec0f22db0c4fa52521ed4fb95f7e153cfc7fb9f37f84a8 SHA512 7bb6617d900d1058e1d6b9fefd1d557efc669386501c281976c93c2a4c0d1a1a1de459dd39c46a257bd3f9bd64155e1c92add1421d40ed4e061f2fc26d17600a DIST mutt-gentoo-2.0.5-patches-r0.tar.xz 26408 BLAKE2B f0ce4b72ccc3bdf870bde2b52b6dec7a89f227533982036524e34b6e37093e419eede4fcac79fe4c0436f475ca8672f0de872b78459959b4c3e78e0628f9a67d SHA512 1db20c1e2dad6d35ca86b0d52020ad02946ebfef9fbf46341d9dcc95f16b864d026b147a9bd05992416b1b7204e4475df80603c900a5cd85efb00a071758e0fc diff --git a/mail-client/mutt/mutt-2.0.2.ebuild b/mail-client/mutt/mutt-2.0.2.ebuild deleted file mode 100644 index b5c1a188f270..000000000000 --- a/mail-client/mutt/mutt-2.0.2.ebuild +++ /dev/null @@ -1,265 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit eutils flag-o-matic autotools - -PATCHREV="r0" -PATCHSET="gentoo-${PVR}/${PATCHREV}" - -DESCRIPTION="A small but very powerful text-based mail client" -HOMEPAGE="http://www.mutt.org/" -MUTT_G_PATCHES="mutt-gentoo-${PV}-patches-${PATCHREV}.tar.xz" -SRC_URI="ftp://ftp.mutt.org/pub/mutt/${P}.tar.gz - https://bitbucket.org/${PN}/${PN}/downloads/${P}.tar.gz - https://dev.gentoo.org/~grobian/distfiles/${MUTT_G_PATCHES}" -IUSE="autocrypt berkdb debug doc gdbm gnutls gpgme +hcache idn +imap kerberos libressl +lmdb mbox nls pgp-classic pop qdbm +sasl selinux slang smime-classic +smtp +ssl tokyocabinet vanilla prefix" -# hcache: allow multiple, bug #607360 -REQUIRED_USE=" - hcache? ( || ( berkdb gdbm lmdb qdbm tokyocabinet ) ) - imap? ( ssl ) - pop? ( ssl ) - smime-classic? ( ssl !gnutls ) - smtp? ( ssl sasl ) - sasl? ( || ( imap pop smtp ) ) - kerberos? ( || ( imap pop smtp ) ) - autocrypt? ( gpgme )" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -# yes, we overdepend on the backend impls here, hopefully one day we can -# have REQUIRED_USE do what it is made for again. bug #607360 -CDEPEND=" - app-misc/mime-types - virtual/libiconv - - berkdb? ( >=sys-libs/db-4:= ) - gdbm? ( sys-libs/gdbm ) - lmdb? ( dev-db/lmdb:= ) - qdbm? ( dev-db/qdbm ) - tokyocabinet? ( dev-db/tokyocabinet ) - - ssl? ( - gnutls? ( >=net-libs/gnutls-1.0.17:= ) - !gnutls? ( - libressl? ( dev-libs/libressl:= ) - !libressl? ( >=dev-libs/openssl-0.9.6:0= ) - ) - ) - - nls? ( virtual/libintl ) - sasl? ( >=dev-libs/cyrus-sasl-2 ) - kerberos? ( virtual/krb5 ) - idn? ( net-dns/libidn2 ) - gpgme? ( >=app-crypt/gpgme-0.9.0:= ) - autocrypt? ( >=dev-db/sqlite-3 ) - slang? ( sys-libs/slang ) - !slang? ( >=sys-libs/ncurses-5.2:0= ) -" -DEPEND="${CDEPEND} - net-mail/mailbase - doc? ( - dev-libs/libxml2 - dev-libs/libxslt - app-text/docbook-xsl-stylesheets - || ( www-client/lynx www-client/w3m www-client/elinks ) - )" -RDEPEND="${CDEPEND} - selinux? ( sec-policy/selinux-mutt ) - smime-classic? ( || ( dev-libs/libressl >=dev-libs/openssl-0.9.6:0 ) ) - pgp-classic? ( app-crypt/gnupg ) -" - -src_prepare() { - local PATCHDIR="${WORKDIR}"/mutt-gentoo-${PV}-patches-${PATCHREV} - - if use !vanilla ; then - # apply patches - export EPATCH_FORCE="yes" - export EPATCH_SUFFIX="patch" - # http://hg.code.sf.net/p/gentoomuttpatches/code/file/mutt-1.10 - local patches=( - patches-mutt - bugs-gentoo - features-common - features-extra - gentoo - ) - local patchset - for patchset in "${patches[@]}" ; do - [[ -d "${PATCHDIR}/${patchset}" ]] || continue - einfo "Patches for ${PATCHSET} patchset ${patchset}" - EPATCH_SOURCE="${PATCHDIR}"/${patchset} epatch \ - || die "patchset ${patchset} failed" - done - # add some explanation as to why not to go upstream - sed -i \ - -e '/ReachingUs = N_(/aThis release of Mutt is heavily enriched with patches.\\nFor this reason, any bugs are better reported at https://bugs.gentoo.org/\\nor re-emerge with USE=vanilla and try to reproduce your problem.\\n\\' \ - main.c || die "Failed to add bug instructions" - fi - - local upatches= - # allow user patches - eapply_user && upatches=" with user patches" - - # patch version string for bug reports - local patchset= - use vanilla || patchset=", ${PATCHSET}" - sed -i -e 's|"Mutt %s (%s)"|"Mutt %s (%s'"${patchset}${upatches}"')"|' \ - muttlib.c || die "failed patching in Gentoo version" - - # many patches touch the buildsystem, we always need this - AT_M4DIR="m4" eautoreconf - - # the configure script contains some "cleverness" whether or not to setgid - # the dotlock program, resulting in bugs like #278332 - sed -i -e 's/@DOTLOCK_GROUP@//' Makefile.in || die "sed failed" -} - -src_configure() { - local myconf=( - # signing and encryption - $(use_enable autocrypt) $(use_with autocrypt sqlite3) - $(use_enable pgp-classic pgp) - $(use_enable smime-classic smime) - $(use_enable gpgme) - - # features - $(use_enable debug) - $(use_enable doc) - $(use_enable nls) - - # protocols - $(use_enable imap) - $(use_enable pop) - $(use_enable smtp) - - $(use ssl && use gnutls && echo --with-gnutls --without-ssl) - $(use ssl && use !gnutls && echo --without-gnutls --with-ssl ) - $(use !ssl && echo --without-gnutls --without-ssl) - - $(use_with sasl) - $(use_with idn idn2) --without-idn # avoid automagic libidn dep - $(use_with kerberos gss) - "$(use slang && echo --with-slang="${EPREFIX}"/usr || echo a=b)" - "$(use_with !slang curses "${EPREFIX}"/usr)" - - "--enable-compressed" - "--enable-external-dotlock" - "--enable-iconv" - "--enable-nfs-fix" - "--enable-sidebar" - "--sysconfdir=${EPREFIX}/etc/${PN}" - "--with-docdir=${EPREFIX}/usr/share/doc/${PN}-${PVR}" - "--without-bundled-regex" # use the implementation from libc - "--with-exec-shell=${EPREFIX}/bin/sh" - ) - - if [[ ${CHOST} == *-solaris2.* && ${CHOST#*-solaris2.} -le 10 ]] ; then - # arrows in index view do not show when using wchar_t - # or misalign due to wrong computations - myconf+=( "--without-wc-funcs" ) - fi - - # note: REQUIRED_USE should have selected only one of these, but for - # bug #607360 we're forced to allow multiple. For that reason, this - # list is ordered to preference, and only the first is taken. - local hcaches=( - "lmdb" - "qdbm" - "tokyocabinet" - "gdbm" - "berkdb:bdb" - ) - local ucache hcache lcache - for hcache in "${hcaches[@]}" ; do - if use ${hcache%%:*} ; then - ucache=${hcache} - break - fi - done - if [[ -n ${ucache} ]] ; then - myconf+=( "--enable-hcache" ) - else - myconf+=( "--disable-hcache" ) - fi - for hcache in "${hcaches[@]}" ; do - [[ ${hcache} == ${ucache} ]] \ - && myconf+=( "--with-${hcache#*:}" ) \ - || myconf+=( "--without-${hcache#*:}" ) - done - - if use mbox; then - myconf+=( "--with-mailpath=${EPREFIX}/var/spool/mail" ) - else - myconf+=( "--with-homespool=Maildir" ) - fi - - econf "${myconf[@]}" -} - -src_install() { - emake DESTDIR="${D}" install - insinto /etc/${PN} - if use mbox; then - newins "${FILESDIR}"/Muttrc.mbox Muttrc - else - doins "${FILESDIR}"/Muttrc - fi - - # include attachment settings, it's mandatory and shouldn't harm - # when not being referenced (index_format using %X) - { - echo - echo "# mandatory attachments settings, not setting these is a BUG!" - echo "# see https://marc.info/?l=mutt-dev&m=158347284923517&w=2" - grep '^attachments' "${ED}"/etc/${PN}/Muttrc.dist - } >> "${ED}"/etc/${PN}/Muttrc - - # add setting to actually enable gpgme usage - if use gpgme || use autocrypt ; then - { - echo - echo "# this setting enables the gpgme backend (via USE=gpgme)" - # https is broken due to a certificate mismatch :( - echo "# see http://www.mutt.org/doc/manual/#crypt-use-gpgme" - echo "set crypt_use_gpgme = yes" - } >> "${ED}"/etc/${PN}/Muttrc - fi - - # similar for autocrypt - if use autocrypt ; then - { - echo - echo "# enables autocrypt (via USE=autocrypt)" - echo "# see http://www.mutt.org/doc/manual/#autocryptdoc" - echo "set autocrypt = yes" - } >> "${ED}"/etc/${PN}/Muttrc - fi - - # A newer file is provided by app-misc/mime-types. So we link it. - rm "${ED}"/etc/${PN}/mime.types - dosym ../mime.types /etc/${PN}/mime.types - - # nuke manpages that should be provided by an MTA, bug #177605 - rm "${ED}"/usr/share/man/man5/{mbox,mmdf}.5 \ - || ewarn "failed to remove files, please file a bug" - - if use !prefix ; then - fowners root:mail /usr/bin/mutt_dotlock - fperms g+s /usr/bin/mutt_dotlock - fi - - dodoc COPYRIGHT ChangeLog NEWS OPS* PATCHES README* TODO VERSION -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]] ; then - echo - elog "If you are new to mutt you may want to take a look at" - elog "the Gentoo QuickStart Guide to Mutt E-Mail:" - elog " https://wiki.gentoo.org/wiki/Mutt" - echo - fi -} diff --git a/mail-client/neomutt/metadata.xml b/mail-client/neomutt/metadata.xml index f0b7a7e03387..2fbef90b636b 100644 --- a/mail-client/neomutt/metadata.xml +++ b/mail-client/neomutt/metadata.xml @@ -27,4 +27,7 @@ Build classic-smime backend to support S/MIME + + neomutt/neomutt + diff --git a/mail-filter/Manifest.gz b/mail-filter/Manifest.gz index 7515a00f525a..238812f1dfad 100644 Binary files a/mail-filter/Manifest.gz and b/mail-filter/Manifest.gz differ diff --git a/mail-filter/imapfilter/imapfilter-2.6.16.ebuild b/mail-filter/imapfilter/imapfilter-2.6.16.ebuild deleted file mode 100644 index 417dbe9b66eb..000000000000 --- a/mail-filter/imapfilter/imapfilter-2.6.16.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="An IMAP mail filtering utility" -HOMEPAGE="https://github.com/lefcha/imapfilter" -SRC_URI="https://github.com/lefcha/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc x86" - -IUSE="libressl" - -RDEPEND=" - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - dev-libs/libpcre - dev-lang/lua:0=" -DEPEND="${RDEPEND}" - -DOCS="AUTHORS NEWS README samples/*" - -PATCHES=( "${FILESDIR}"/${P}-libressl.patch ) - -src_prepare() { - default - sed -i -e "/^PREFIX/s:/usr/local:${EPREFIX}/usr:" \ - -e "/^MANDIR/s:man:share/man:" \ - -e "/^CFLAGS/s:CFLAGS =:CFLAGS +=:" \ - -e "/^CFLAGS/s/-O//" \ - src/Makefile || die -} - -src_compile() { - emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" -} - -src_install() { - default - doman doc/imapfilter.1 doc/imapfilter_config.5 -} diff --git a/mail-mta/Manifest.gz b/mail-mta/Manifest.gz index 45127bffbdd6..23a2cdcd9f8a 100644 Binary files a/mail-mta/Manifest.gz and b/mail-mta/Manifest.gz differ diff --git a/mail-mta/protonmail-bridge/Manifest b/mail-mta/protonmail-bridge/Manifest index 85a436ae6ca8..73d4d57581e4 100644 --- a/mail-mta/protonmail-bridge/Manifest +++ b/mail-mta/protonmail-bridge/Manifest @@ -372,4 +372,4 @@ DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20191120175047-4206685974f2.mod 95 BLAKE2B DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod 95 BLAKE2B fbb87f0644ec9da5d4386358d23cdb15b0d23e8212e712f16f338455a3a0ad19fbfd63e92c955c359237ddfa8bb76d6d08280eead24d321668431891eca1e8ab SHA512 307ca9123efc577ca04828996ee9d8edbb51794ccb4b8d9f169ba689e7276aa5f6ae106a04b22b7fab853ffacfebcbf74468b64eaefd57445864c1fbc77fad9d DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.zip 101467 BLAKE2B 8bb0aec8e693a4c0da59f1931e1fdcf6f94a236faba149d5af91e87284f39c693d20be65248eecde739cb555e371804fa6c723a56c69e6d02a347ba908e968b1 SHA512 bee7757d760f5ba1b9f7523af358652a5cb65f2b0064da097f78450871b2636efcbab0298a9871bbb3ce8012bf95a155949251d4f61464dde510097b936b47a8 DIST protonmail-bridge-1.5.4.tar.gz 1838395 BLAKE2B b81cc14f7da259941f4bdfae0f3e06782e22ce959193a34873aea06480658b3cde6e73f01d6796097d8e103b85d32ac845f371faf17aca7210e45667f74b0325 SHA512 83621ceaac54190b9143f67c50ae98ec3ea96bff399f415838561d64cf277e772925793af701b5f493460fb0edced4383253dc5a24264f4a89e30417f12de49f -DIST protonmail-bridge-1.5.6.tar.gz 1843107 BLAKE2B b61a7ca5fadaea9551eb801482a5fe6d4979b67ed61ec421cd8c7a43b4e9d8aef72684f82b4333ea73d119cc232188230686b67d66d662a71539837d0a687dbf SHA512 345091ff5f09e357daea7fb05e04be2803a6632c4cb3ba5c6475799ed5a193e76d23f540a8f77f88fed3098e27dda6ff4334aa9a96eb2c6b88333a8ff33d99d2 +DIST protonmail-bridge-1.5.7.tar.gz 1843039 BLAKE2B 302479620048718eb2f430ad45aa08dbdc94c0db3e32fc7e9b813097fe12a19cb8b1839e32ad0570fe3d350e710612774e8019c60924a6005883e31a7c70621a SHA512 9a0baee9ba4afbf1ef79cf8af36cf971996a3057b1f1cb407cdbf56ac33c0e82b4074aaab9729dc1c924a414ef8551d1b6d7fc8addf4f21d7426ff097fc156c8 diff --git a/mail-mta/protonmail-bridge/protonmail-bridge-1.5.6.ebuild b/mail-mta/protonmail-bridge/protonmail-bridge-1.5.7.ebuild similarity index 100% rename from mail-mta/protonmail-bridge/protonmail-bridge-1.5.6.ebuild rename to mail-mta/protonmail-bridge/protonmail-bridge-1.5.7.ebuild diff --git a/media-fonts/Manifest.gz b/media-fonts/Manifest.gz index 264688d417c1..60fea0d14f41 100644 Binary files a/media-fonts/Manifest.gz and b/media-fonts/Manifest.gz differ diff --git a/media-fonts/fira-mono/Manifest b/media-fonts/fira-mono/Manifest index 25cbab25898f..63140fadaa77 100644 --- a/media-fonts/fira-mono/Manifest +++ b/media-fonts/fira-mono/Manifest @@ -1 +1,2 @@ +DIST Fira-4.202.tar.gz 94581261 BLAKE2B 346e18a115098570a3540345d165018477a071d4ee3d9d305f8de5442bd6341439ebfc58ec364b428ddd1e1833224ce27bd9fdde4e4251173ef271c26d72c237 SHA512 fec770fa038f2aa0654f9382f95aa1266a2655970f4c7755b237af9d1c09f47ce719f8daf3afc39812fc69448b9481ee0e2a1414f1d007ad70b4254c92950ebb DIST FiraMonoFonts3205.zip 1210827 BLAKE2B 99152a5b62ecf32369b84ba3b66662cb5db1662d0bac5f7c2d1cefb7e3cd0e72be13a2177f2d08e77cae30cebba2ad5c55b0b34235c55317f9f726dc774e82f9 SHA512 d1a05ed2610e6d1c688b5709bd30ff6de4597c93db99d049fca9f8a8b3e2bfd2faf2de2a6d23a5b24efaa502e0cb2f23f5239cadc0bb5cb709d04da1d37cba15 diff --git a/media-fonts/fira-mono/fira-mono-4.202.ebuild b/media-fonts/fira-mono/fira-mono-4.202.ebuild new file mode 100644 index 000000000000..6a4e2221c274 --- /dev/null +++ b/media-fonts/fira-mono/fira-mono-4.202.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit font + +MY_PN="Fira" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Default monospaced typeface for FirefoxOS, designed for legibility" +HOMEPAGE="https://mozilla.github.io/Fira" +SRC_URI="https://github.com/mozilla/Fira/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" + +LICENSE="OFL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="+otf ttf" + +REQUIRED_USE="|| ( otf ttf )" + +S="${WORKDIR}/${MY_P}" + +DOCS=( README.md LICENSE ) + +src_prepare() { + default + + use ttf && { rm "${S}"/ttf/FiraSans-*.ttf || die; } + use otf && { rm "${S}"/otf/FiraSans*.otf || die; } +} + +src_install() { + use otf && { FONT_S="${S}/otf"; FONT_SUFFIX="otf"; } + use ttf && { FONT_S="${S}/ttf"; FONT_SUFFIX="ttf"; } + + font_src_install + einstalldocs +} diff --git a/media-fonts/fira-mono/metadata.xml b/media-fonts/fira-mono/metadata.xml index d0f1df7c94c0..4eb642804cfd 100644 --- a/media-fonts/fira-mono/metadata.xml +++ b/media-fonts/fira-mono/metadata.xml @@ -5,4 +5,8 @@ fonts@gentoo.org Fonts + + Install the OpenType version of the font + Install the TrueType version of the font + diff --git a/media-fonts/fira-sans/Manifest b/media-fonts/fira-sans/Manifest index 48405656ff73..9588c7af3a3f 100644 --- a/media-fonts/fira-sans/Manifest +++ b/media-fonts/fira-sans/Manifest @@ -1,2 +1,3 @@ +DIST Fira-4.202.tar.gz 94581261 BLAKE2B 346e18a115098570a3540345d165018477a071d4ee3d9d305f8de5442bd6341439ebfc58ec364b428ddd1e1833224ce27bd9fdde4e4251173ef271c26d72c237 SHA512 fec770fa038f2aa0654f9382f95aa1266a2655970f4c7755b237af9d1c09f47ce719f8daf3afc39812fc69448b9481ee0e2a1414f1d007ad70b4254c92950ebb DIST FiraFonts4002.zip 22975177 BLAKE2B 6dfc143568605ecd4fa956d8ef567ce4d86e187e985e9f43213dda41dd9de2d417e7e29dafcf27ab97ffff11ca6571f0cd5ca084e623fa6a6dd84297cf514013 SHA512 9ce5350cea8fddf5fc5282a23ffe3d142ddb6fb778a78308bf4083be50f036feb1faadf72ade5c0e62638302c26a1ead91692ca016e0220d152871294b467508 DIST FiraFonts4105.zip 27227111 BLAKE2B c8ef15673735537c0d849c3e0dfa46a0b9cdcb7fff1d82d50d18b0119192282fa3956f57fa182420f71479f9479a4b8da5f87cddedea2469fd01562dc7bf8ee3 SHA512 f451e99d761ae9e714461e1ac244ee1c12af11751f61c94fa7ed10bf04bfa26520fbf50d1aeae55346348aec932481888780ae12df27349c966ba79a3eeae37d diff --git a/media-fonts/fira-sans/fira-sans-4.202.ebuild b/media-fonts/fira-sans/fira-sans-4.202.ebuild new file mode 100644 index 000000000000..18116e8c4234 --- /dev/null +++ b/media-fonts/fira-sans/fira-sans-4.202.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit font + +MY_PN="Fira" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Default monospaced typeface for FirefoxOS, designed for legibility" +HOMEPAGE="https://mozilla.github.io/Fira" +SRC_URI="https://github.com/mozilla/Fira/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" + +LICENSE="OFL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="otf +ttf" + +REQUIRED_USE="|| ( otf ttf )" + +S="${WORKDIR}/${MY_P}" + +DOCS=( README.md LICENSE ) + +src_prepare() { + default + + use ttf && { rm "${S}"/ttf/FiraMono-*.ttf || die; } + use otf && { rm "${S}"/otf/FiraMono*.otf || die; } +} + +src_install() { + use otf && { FONT_S="${S}/otf"; FONT_SUFFIX="otf"; } + use ttf && { FONT_S="${S}/ttf"; FONT_SUFFIX="ttf"; } + + font_src_install + einstalldocs +} diff --git a/media-fonts/fira-sans/metadata.xml b/media-fonts/fira-sans/metadata.xml index d0f1df7c94c0..4eb642804cfd 100644 --- a/media-fonts/fira-sans/metadata.xml +++ b/media-fonts/fira-sans/metadata.xml @@ -5,4 +5,8 @@ fonts@gentoo.org Fonts + + Install the OpenType version of the font + Install the TrueType version of the font + diff --git a/media-gfx/Manifest.gz b/media-gfx/Manifest.gz index ec54fa8edd0b..524ff55fa9d8 100644 Binary files a/media-gfx/Manifest.gz and b/media-gfx/Manifest.gz differ diff --git a/media-gfx/imagemagick/metadata.xml b/media-gfx/imagemagick/metadata.xml index 03046b7fbb47..b8cb95f4c2a3 100644 --- a/media-gfx/imagemagick/metadata.xml +++ b/media-gfx/imagemagick/metadata.xml @@ -1,6 +1,10 @@ + + codec@gentoo.org + Gentoo Codec Project + dilfridge@gentoo.org Andreas K. Huettel diff --git a/media-gfx/openvdb/openvdb-7.1.0-r1.ebuild b/media-gfx/openvdb/openvdb-7.1.0-r1.ebuild index 50f2feb253b5..0b228501008f 100644 --- a/media-gfx/openvdb/openvdb-7.1.0-r1.ebuild +++ b/media-gfx/openvdb/openvdb-7.1.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -13,7 +13,7 @@ SRC_URI="https://github.com/AcademySoftwareFoundation/${PN}/archive/v${PV}.tar.g LICENSE="MPL-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" IUSE="cpu_flags_x86_avx cpu_flags_x86_sse4_2 doc numpy python static-libs test utils abi6-compat +abi7-compat" RESTRICT="!test? ( test )" diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index d814c6d60bce..e90a828d2611 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/giflib/metadata.xml b/media-libs/giflib/metadata.xml index bc534d2f74eb..0471d8c2adb3 100644 --- a/media-libs/giflib/metadata.xml +++ b/media-libs/giflib/metadata.xml @@ -1,7 +1,10 @@ - + + codec@gentoo.org + Gentoo Codec Project + giflib diff --git a/media-libs/glfw/glfw-3.3.2.ebuild b/media-libs/glfw/glfw-3.3.2.ebuild index f265b08bf58b..126bde0fc027 100644 --- a/media-libs/glfw/glfw-3.3.2.ebuild +++ b/media-libs/glfw/glfw-3.3.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/glfw/glfw/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="ZLIB" SLOT="0" -KEYWORDS="amd64 ~arm64 ~hppa ~ppc64 x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc64 x86" IUSE="wayland" RDEPEND=" diff --git a/media-libs/libexif/metadata.xml b/media-libs/libexif/metadata.xml index dd7cee55e09a..14fb686dc139 100644 --- a/media-libs/libexif/metadata.xml +++ b/media-libs/libexif/metadata.xml @@ -1,7 +1,10 @@ - + + codec@gentoo.org + Gentoo Codec Project + cpe:/a:curtis_galloway:libexif libexif/libexif diff --git a/media-libs/libpng/metadata.xml b/media-libs/libpng/metadata.xml index 973c824aaa41..34fc4dce7b8c 100644 --- a/media-libs/libpng/metadata.xml +++ b/media-libs/libpng/metadata.xml @@ -5,6 +5,10 @@ base-system@gentoo.org Gentoo Base System + + codec@gentoo.org + Codec project + support unofficial APNG (Animated PNG) spec diff --git a/media-libs/libwmf/libwmf-0.2.8.4-r8.ebuild b/media-libs/libwmf/libwmf-0.2.8.4-r8.ebuild index d281f1d619df..5015c38df7d8 100644 --- a/media-libs/libwmf/libwmf-0.2.8.4-r8.ebuild +++ b/media-libs/libwmf/libwmf-0.2.8.4-r8.ebuild @@ -6,7 +6,7 @@ EAPI=6 inherit autotools gnome2-utils DESCRIPTION="A library for reading vector images in Microsoft's Windows Metafile Format (WMF)" -HOMEPAGE="https://wvware.sourceforge.net/" +HOMEPAGE="http://wvware.sourceforge.net/" SRC_URI="mirror://sourceforge/wvware/${P}.tar.gz" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" diff --git a/media-libs/plib/files/plib-1.8.5-shared-libs.patch b/media-libs/plib/files/plib-1.8.5-shared-libs.patch new file mode 100644 index 000000000000..6ed51fd7dd75 --- /dev/null +++ b/media-libs/plib/files/plib-1.8.5-shared-libs.patch @@ -0,0 +1,256 @@ +diff -ru ../plib-1.8.5/configure.in ./configure.in +--- ../plib-1.8.5/configure.in 2008-03-11 03:09:43.000000000 +0100 ++++ ./configure.in 2010-07-02 05:27:45.478055160 +0200 +@@ -36,7 +36,7 @@ + AC_PROG_CXX + AC_PROG_CXXCPP + AC_PROG_INSTALL +-AC_PROG_RANLIB ++AC_PROG_LIBTOOL + + dnl Command line arguments + +diff -ru ../plib-1.8.5/src/fnt/Makefile.am ./src/fnt/Makefile.am +--- ../plib-1.8.5/src/fnt/Makefile.am 2008-03-11 03:06:20.000000000 +0100 ++++ ./src/fnt/Makefile.am 2010-07-02 06:17:35.838107988 +0200 +@@ -1,10 +1,13 @@ + if BUILD_FNT + +-lib_LIBRARIES = libplibfnt.a ++lib_LTLIBRARIES = libplibfnt.la + + include_HEADERS = fnt.h + +-libplibfnt_a_SOURCES = fnt.cxx fntTXF.cxx fntLocal.h fntBitmap.cxx ++libplibfnt_la_LDFLAGS = -version-info 9:5:8 ++libplibfnt_la_LIBADD = $(top_builddir)/src/util/libplibul.la ++ ++libplibfnt_la_SOURCES = fnt.cxx fntTXF.cxx fntLocal.h fntBitmap.cxx + + INCLUDES = -I$(top_srcdir)/src/sg -I$(top_srcdir)/src/util + +diff -ru ../plib-1.8.5/src/js/Makefile.am ./src/js/Makefile.am +--- ../plib-1.8.5/src/js/Makefile.am 2008-03-11 03:06:21.000000000 +0100 ++++ ./src/js/Makefile.am 2010-07-02 06:12:40.559441988 +0200 +@@ -1,10 +1,13 @@ + if BUILD_JS + +-lib_LIBRARIES = libplibjs.a ++lib_LTLIBRARIES = libplibjs.la + + include_HEADERS = js.h + +-libplibjs_a_SOURCES = js.cxx jsLinux.cxx jsLinuxOld.cxx jsMacOS.cxx \ ++libplibjs_la_LDFLAGS = -version-info 9:5:8 ++libplibjs_la_LIBADD = $(top_builddir)/src/util/libplibul.la ++ ++libplibjs_la_SOURCES = js.cxx jsLinux.cxx jsLinuxOld.cxx jsMacOS.cxx \ + jsMacOSX.cxx jsWindows.cxx jsBSD.cxx \ + jsNone.cxx + +diff -ru ../plib-1.8.5/src/Makefile.am ./src/Makefile.am +--- ../plib-1.8.5/src/Makefile.am 2008-03-11 03:06:24.000000000 +0100 ++++ ./src/Makefile.am 2010-07-02 06:38:53.486390426 +0200 +@@ -1 +1 @@ +-SUBDIRS = util js sl pui puAux sg ssg fnt ssgAux net psl pw ++SUBDIRS = util js sl fnt pui sg ssg puAux ssgAux net psl pw +diff -ru ../plib-1.8.5/src/net/Makefile.am ./src/net/Makefile.am +--- ../plib-1.8.5/src/net/Makefile.am 2008-03-11 03:06:20.000000000 +0100 ++++ ./src/net/Makefile.am 2010-07-02 06:14:40.710350074 +0200 +@@ -1,11 +1,14 @@ + if BUILD_NET + +-lib_LIBRARIES = libplibnet.a ++lib_LTLIBRARIES = libplibnet.la + + include_HEADERS = netBuffer.h netChannel.h netChat.h netMessage.h \ + netMonitor.h netSocket.h net.h + +-libplibnet_a_SOURCES = netBuffer.cxx netChannel.cxx netChat.cxx \ ++libplibnet_la_LDFLAGS = -version-info 9:5:8 ++libplibnet_la_LIBADD = $(top_builddir)/src/util/libplibul.la ++ ++libplibnet_la_SOURCES = netBuffer.cxx netChannel.cxx netChat.cxx \ + netMessage.cxx netMonitor.cxx netSocket.cxx + + INCLUDES = -I$(top_srcdir)/src/util +diff -ru ../plib-1.8.5/src/psl/Makefile.am ./src/psl/Makefile.am +--- ../plib-1.8.5/src/psl/Makefile.am 2008-03-11 03:06:24.000000000 +0100 ++++ ./src/psl/Makefile.am 2010-07-02 06:13:48.314158343 +0200 +@@ -1,11 +1,14 @@ + + if BUILD_PSL + +-lib_LIBRARIES = libplibpsl.a ++lib_LTLIBRARIES = libplibpsl.la + + include_HEADERS = psl.h + +-libplibpsl_a_SOURCES = psl.cxx pslCodeGen.cxx pslContext.cxx \ ++libplibpsl_la_LDFLAGS = -version-info 9:5:8 ++libplibpsl_la_LIBADD = $(top_builddir)/src/util/libplibul.la ++ ++libplibpsl_la_SOURCES = psl.cxx pslCodeGen.cxx pslContext.cxx \ + pslCompiler.cxx pslSymbols.cxx pslToken.cxx \ + pslExpression.cxx pslProgram.cxx pslDump.cxx \ + pslError.cxx pslFileIO.cxx pslCompiler.h \ +diff -ru ../plib-1.8.5/src/puAux/Makefile.am ./src/puAux/Makefile.am +--- ../plib-1.8.5/src/puAux/Makefile.am 2008-03-11 03:06:20.000000000 +0100 ++++ ./src/puAux/Makefile.am 2010-07-02 06:16:04.001410273 +0200 +@@ -1,10 +1,13 @@ + if BUILD_PUAUX + +-lib_LIBRARIES = libplibpuaux.a ++lib_LTLIBRARIES = libplibpuaux.la + + include_HEADERS = puAux.h puAuxLocal.h + +-libplibpuaux_a_SOURCES = puAux.cxx \ ++libplibpuaux_la_LDFLAGS = -version-info 9:5:8 ++libplibpuaux_la_LIBADD = $(top_builddir)/src/util/libplibul.la $(top_builddir)/src/fnt/libplibfnt.la $(top_builddir)/src/pui/libplibpu.la $(top_builddir)/src/sg/libplibsg.la ++ ++libplibpuaux_la_SOURCES = puAux.cxx \ + puAuxBiSlider.cxx \ + puAuxBiSliderWithEnds.cxx \ + puAuxComboBox.cxx \ +diff -ru ../plib-1.8.5/src/pui/Makefile.am ./src/pui/Makefile.am +--- ../plib-1.8.5/src/pui/Makefile.am 2008-03-11 03:06:23.000000000 +0100 ++++ ./src/pui/Makefile.am 2010-07-02 06:14:25.110128517 +0200 +@@ -1,10 +1,13 @@ + if BUILD_PUI + +-lib_LIBRARIES = libplibpu.a ++lib_LTLIBRARIES = libplibpu.la + + include_HEADERS = pu.h puGLUT.h puFLTK.h puSDL.h puNative.h puPW.h + +-libplibpu_a_SOURCES = \ ++libplibpu_la_LDFLAGS = -version-info 9:5:8 ++libplibpu_la_LIBADD = $(top_builddir)/src/util/libplibul.la $(top_builddir)/src/fnt/libplibfnt.la ++ ++libplibpu_la_SOURCES = \ + pu.cxx puBox.cxx puButton.cxx puButtonBox.cxx \ + puArrowButton.cxx puDialogBox.cxx puFrame.cxx puGroup.cxx \ + puInput.cxx puInterface.cxx puLocal.h puMenuBar.cxx \ +diff -ru ../plib-1.8.5/src/pw/Makefile.am ./src/pw/Makefile.am +--- ../plib-1.8.5/src/pw/Makefile.am 2008-03-11 03:06:20.000000000 +0100 ++++ ./src/pw/Makefile.am 2010-07-02 05:27:45.487123738 +0200 +@@ -1,10 +1,11 @@ + if BUILD_PW + +-lib_LIBRARIES = libplibpw.a ++lib_LTLIBRARIES = libplibpw.la + + include_HEADERS = pw.h + +-libplibpw_a_SOURCES = pw.cxx pwX11.cxx pwWindows.cxx pwMacOSX.cxx ++libplibpw_la_LDFLAGS = -version-info 9:5:8 ++libplibpw_la_SOURCES = pw.cxx pwX11.cxx pwWindows.cxx pwMacOSX.cxx + + INCLUDES = -I$(top_srcdir)/src/util + +diff -ru ../plib-1.8.5/src/sg/Makefile.am ./src/sg/Makefile.am +--- ../plib-1.8.5/src/sg/Makefile.am 2008-03-11 03:06:20.000000000 +0100 ++++ ./src/sg/Makefile.am 2010-07-02 06:16:21.526342543 +0200 +@@ -1,10 +1,13 @@ + if BUILD_SG + +-lib_LIBRARIES = libplibsg.a ++lib_LTLIBRARIES = libplibsg.la + + include_HEADERS = sg.h + +-libplibsg_a_SOURCES = sg.cxx sgd.cxx \ ++libplibsg_la_LDFLAGS = -version-info 9:5:8 ++libplibsg_la_LIBADD = $(top_builddir)/src/util/libplibul.la ++ ++libplibsg_la_SOURCES = sg.cxx sgd.cxx \ + sgIsect.cxx sgdIsect.cxx \ + sgPerlinNoise.cxx + +diff -ru ../plib-1.8.5/src/sl/Makefile.am ./src/sl/Makefile.am +--- ../plib-1.8.5/src/sl/Makefile.am 2008-03-11 03:06:24.000000000 +0100 ++++ ./src/sl/Makefile.am 2010-07-02 06:12:48.165324370 +0200 +@@ -1,16 +1,20 @@ + if BUILD_SL + +-lib_LIBRARIES = libplibsl.a libplibsm.a ++lib_LTLIBRARIES = libplibsl.la libplibsm.la + + include_HEADERS = sl.h slPortability.h sm.h + +-libplibsl_a_SOURCES = \ ++libplibsl_la_LDFLAGS = -version-info 9:5:8 ++libplibsl_la_LIBADD = $(top_builddir)/src/util/libplibul.la ++ ++libplibsl_la_SOURCES = \ + slDSP.cxx slSample.cxx slEnvelope.cxx \ + slPlayer.cxx slMODPlayer.cxx slSamplePlayer.cxx \ + slScheduler.cxx slMODdacio.cxx slMODfile.cxx \ + slMODinst.cxx slMODnote.cxx slMODPrivate.h slMODfile.h + +-libplibsm_a_SOURCES = slPortability.h smMixer.cxx ++libplibsm_la_LDFLAGS = -version-info 9:5:8 ++libplibsm_la_SOURCES = slPortability.h smMixer.cxx + + INCLUDES = -I$(top_srcdir)/src/util + +diff -ru ../plib-1.8.5/src/ssg/Makefile.am ./src/ssg/Makefile.am +--- ../plib-1.8.5/src/ssg/Makefile.am 2008-03-11 03:06:23.000000000 +0100 ++++ ./src/ssg/Makefile.am 2010-07-02 06:13:29.638301515 +0200 +@@ -1,10 +1,13 @@ + if BUILD_SSG + +-lib_LIBRARIES = libplibssg.a ++lib_LTLIBRARIES = libplibssg.la + + include_HEADERS = ssg.h ssgconf.h ssgMSFSPalette.h ssgKeyFlier.h pcx.h + +-libplibssg_a_SOURCES = ssg.cxx ssgAnimation.cxx ssgBase.cxx \ ++libplibssg_la_LDFLAGS = -version-info 9:5:8 ++libplibssg_la_LIBADD = $(top_builddir)/src/util/libplibul.la $(top_builddir)/src/sg/libplibsg.la ++ ++libplibssg_la_SOURCES = ssg.cxx ssgAnimation.cxx ssgBase.cxx \ + ssgBaseTransform.cxx ssgBranch.cxx ssgContext.cxx ssgCutout.cxx \ + ssgDList.cxx ssgEntity.cxx ssgIsect.cxx ssgLeaf.cxx ssgList.cxx \ + ssgLoadDOF.cxx ssgLoadAC.cxx \ +diff -ru ../plib-1.8.5/src/ssgAux/Makefile.am ./src/ssgAux/Makefile.am +--- ../plib-1.8.5/src/ssgAux/Makefile.am 2008-03-11 03:06:21.000000000 +0100 ++++ ./src/ssgAux/Makefile.am 2010-07-02 06:17:02.592635791 +0200 +@@ -1,6 +1,6 @@ + if BUILD_SSGAUX + +-lib_LIBRARIES = libplibssgaux.a ++lib_LTLIBRARIES = libplibssgaux.la + + include_HEADERS = ssgAux.h \ + ssgaShapes.h \ +@@ -13,7 +13,10 @@ + ssgaFire.h \ + ssgaBillboards.h + +-libplibssgaux_a_SOURCES = ssgAux.cxx \ ++libplibssgaux_la_LDFLAGS = -version-info 9:5:8 ++libplibssgaux_la_LIBADD = $(top_builddir)/src/util/libplibul.la $(top_builddir)/src/ssg/libplibssg.la $(top_builddir)/src/sg/libplibsg.la ++ ++libplibssgaux_la_SOURCES = ssgAux.cxx \ + ssgaShapes.cxx \ + ssgaPatch.cxx \ + ssgaParticleSystem.cxx \ +diff -ru ../plib-1.8.5/src/util/Makefile.am ./src/util/Makefile.am +--- ../plib-1.8.5/src/util/Makefile.am 2008-03-11 03:06:23.000000000 +0100 ++++ ./src/util/Makefile.am 2010-07-02 05:34:06.711150524 +0200 +@@ -1,10 +1,11 @@ + if BUILD_UL + +-lib_LIBRARIES = libplibul.a ++lib_LTLIBRARIES = libplibul.la + + include_HEADERS = ul.h ulRTTI.h + +-libplibul_a_SOURCES = ul.cxx ulClock.cxx ulError.cxx ulLinkedList.cxx \ ++libplibul_la_LDFLAGS = -version-info 9:5:8 ++libplibul_la_SOURCES = ul.cxx ulClock.cxx ulError.cxx ulLinkedList.cxx \ + ulList.cxx ulLocal.h ulRTTI.cxx + + endif diff --git a/media-libs/plib/plib-1.8.5-r3.ebuild b/media-libs/plib/plib-1.8.5-r3.ebuild new file mode 100644 index 000000000000..21af7bffc8de --- /dev/null +++ b/media-libs/plib/plib-1.8.5-r3.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +inherit autotools multilib-minimal + +DESCRIPTION="multimedia library used by many games" +HOMEPAGE="http://plib.sourceforge.net/" +SRC_URI="http://plib.sourceforge.net/dist/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" + +DEPEND="virtual/opengl" +RDEPEND=${DEPEND} + +PATCHES=( + "${FILESDIR}"/${P}-shared-libs.patch + "${FILESDIR}"/${P}-X11-r1.patch + "${FILESDIR}"/${P}-CVE-2011-4620.patch + "${FILESDIR}"/${P}-CVE-2012-4552.patch +) + +src_prepare() { + default + mv configure.in configure.ac || die + eautoreconf +} + +multilib_src_configure() { + local myconf=( + --disable-static + --enable-shared + ) + ECONF_SOURCE=${S} econf "${myconf[@]}" +} + +multilib_src_install_all() { + DOCS=( AUTHORS ChangeLog KNOWN_BUGS NOTICE README* TODO* ) + einstalldocs + find "${ED}" -name '*.la' -delete || die +} diff --git a/media-libs/sbc/sbc-1.5.ebuild b/media-libs/sbc/sbc-1.5.ebuild index 64a4c14a8bd7..064e414a01e8 100644 --- a/media-libs/sbc/sbc-1.5.ebuild +++ b/media-libs/sbc/sbc-1.5.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://www.kernel.org/pub/linux/bluetooth/${P}.tar.xz" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86" IUSE="static-libs" # --enable-tester is building src/sbctester but the tarball is missing required diff --git a/media-libs/tiff/metadata.xml b/media-libs/tiff/metadata.xml index 414505a38dd4..7cc4f8fccac4 100644 --- a/media-libs/tiff/metadata.xml +++ b/media-libs/tiff/metadata.xml @@ -1,7 +1,10 @@ - + + codec@gentoo.org + Gentoo Codec Project + TIFF image library and tools, mostly for scanner and fax support, but also used by GIS and other imaging tools. diff --git a/media-libs/vulkan-layers/vulkan-layers-1.2.162.ebuild b/media-libs/vulkan-layers/vulkan-layers-1.2.162.ebuild index c68d74b182cd..9d84dce7be48 100644 --- a/media-libs/vulkan-layers/vulkan-layers-1.2.162.ebuild +++ b/media-libs/vulkan-layers/vulkan-layers-1.2.162.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~x86" S="${WORKDIR}"/${MY_PN}-${PV} fi diff --git a/media-libs/vulkan-loader/vulkan-loader-1.2.162-r1.ebuild b/media-libs/vulkan-loader/vulkan-loader-1.2.162-r1.ebuild index 16436c313f27..e12bf3b94aa4 100644 --- a/media-libs/vulkan-loader/vulkan-loader-1.2.162-r1.ebuild +++ b/media-libs/vulkan-loader/vulkan-loader-1.2.162-r1.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~x86" S="${WORKDIR}"/${MY_PN}-${PV} fi diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index 2cfb5c5125ea..970b44eb22dd 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/ncmpcpp/Manifest b/media-sound/ncmpcpp/Manifest index 0b6159ba9e28..582cf8e9639d 100644 --- a/media-sound/ncmpcpp/Manifest +++ b/media-sound/ncmpcpp/Manifest @@ -1,2 +1,3 @@ DIST ncmpcpp-0.8.2.tar.bz2 465713 BLAKE2B 0d07477b3473e1ac7362175cef4bfb085ebdb4c8b1e77f7bb68d8bf4c645fdcccd067d12e2080a740ade18c57dd055f270d2e50096f0ad3afaa40175e19259cf SHA512 9384edd162f40af23e4f26f437356520f117e4e2ab513ed3de132d2f11e597082d1cb7f0dd3696660d0c9bb85ad03e31fb921c97a11c7b28b32c5907fdbb8e8f DIST ncmpcpp-0.9.1.tar.bz2 474436 BLAKE2B 89f6a6d68baf54b0a0eca6d3df96dcd5bcd1346e6f93d0a580f2fbbe4b4246218b62e5332f3db2567c9a91ee30ceb367039a328fa7f491c2a756c2c03fed76c3 SHA512 8fa9f512ac09c144eab4e4721a9c54f3f411593fe13c26db12fbaa3ccf6b08d7cd54923e1e4148b2db45dc69431280611b2be2d153513c0d38eaf92af8ceb9fb +DIST ncmpcpp-0.9.2.tar.bz2 486266 BLAKE2B 160597493b93bac790b8619881e8a1fcf0efce4a538e35f54f31b06f3ed66691f02b37198cca46b475b7296aebbc864cb62a4398c60bd1e43907f9907a9bc118 SHA512 bbcb3b50233e363412af3c1cf1c0118122733dc376759cd35dee79950f42e098a0402ff670684df91847b990b26022630c9a71192e462bd46e70628e31489742 diff --git a/media-sound/ncmpcpp/ncmpcpp-0.9.2.ebuild b/media-sound/ncmpcpp/ncmpcpp-0.9.2.ebuild new file mode 100644 index 000000000000..9f375cc8a75e --- /dev/null +++ b/media-sound/ncmpcpp/ncmpcpp-0.9.2.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="featureful ncurses based MPD client inspired by ncmpc" +HOMEPAGE="https://ncmpcpp.rybczak.net/ https://github.com/ncmpcpp/ncmpcpp" +SRC_URI="https://rybczak.net/ncmpcpp/stable/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" +IUSE="clock outputs taglib visualizer" + +RDEPEND=" + !dev-libs/boost:0/1.57.0 + >=media-libs/libmpdclient-2.1 + dev-libs/boost:=[icu,nls,threads] + dev-libs/icu:= + net-misc/curl + sys-libs/ncurses:=[unicode] + sys-libs/readline:* + taglib? ( media-libs/taglib ) + visualizer? ( sci-libs/fftw:3.0= ) +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + + sed -i -e '/^docdir/d' {,doc/}Makefile{.am,.in} || die + sed -i -e 's|COPYING||g' Makefile{.am,.in} || die +} + +src_configure() { + econf \ + $(use_enable clock) \ + $(use_enable outputs) \ + $(use_enable visualizer) \ + $(use_with taglib) \ + $(use_with visualizer fftw) +} + +src_install() { + default + + dodoc doc/{bindings,config} +} + +pkg_postinst() { + echo + elog "Example configuration files have been installed at" + elog "${EROOT}/usr/share/doc/${PF}" + elog "${P} uses ~/.ncmpcpp/config and ~/.ncmpcpp/bindings" + elog "as user configuration files." + echo + if use visualizer; then + elog "If you want to use the visualizer, you need mpd with fifo enabled." + echo + fi +} diff --git a/media-sound/qsynth/qsynth-9999.ebuild b/media-sound/qsynth/qsynth-9999.ebuild index e7d76b663936..b0cfa6dfb05c 100644 --- a/media-sound/qsynth/qsynth-9999.ebuild +++ b/media-sound/qsynth/qsynth-9999.ebuild @@ -34,8 +34,6 @@ DEPEND=" " RDEPEND="${DEPEND}" -PATCHES=( "${FILESDIR}/${PN}-0.9.0-cmake-no-git-version.patch" ) - src_prepare() { cmake_src_prepare diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index cf6a7bf039a5..4a187c8faa18 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 07ee96252b17..f0dad6f0dc60 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Mon, 25 Jan 2021 05:38:35 +0000 +Tue, 26 Jan 2021 05:38:33 +0000 diff --git a/metadata/glsa/Manifest.files.gz b/metadata/glsa/Manifest.files.gz index a9f977329de2..2c32eada3a89 100644 Binary files a/metadata/glsa/Manifest.files.gz and b/metadata/glsa/Manifest.files.gz differ diff --git a/metadata/glsa/glsa-202101-22.xml b/metadata/glsa/glsa-202101-22.xml new file mode 100644 index 000000000000..36a94ff168ac --- /dev/null +++ b/metadata/glsa/glsa-202101-22.xml @@ -0,0 +1,42 @@ + + + + libvirt: Unintended access to /dev/mapper/control + A vulnerability in libvirt may allow root privilege escalation. + libvirt + 2021-01-26 + 2021-01-26 + 739948 + local + + + 6.7.0 + 6.7.0 + + + +

libvirt is a C toolkit for manipulating virtual machines.

+
+ +

A file descriptor for /dev/mapper/control was insufficiently protected.

+
+ +

A local attacker may be able to escalate to root privileges.

+
+ +

There is no known workaround at this time.

+
+ +

All libvirt users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=app-emulation/libvirt-6.7.0" + +
+ + CVE-2020-14339 + + sam_c + sam_c +
diff --git a/metadata/glsa/glsa-202101-23.xml b/metadata/glsa/glsa-202101-23.xml new file mode 100644 index 000000000000..d3ba7f305498 --- /dev/null +++ b/metadata/glsa/glsa-202101-23.xml @@ -0,0 +1,49 @@ + + + + PEAR Archive_Tar: Directory traversal + Multiple vulnerabilities have been found in PEAR Archive_Tar, the + worst of which could result in the arbitrary execution of code. + + PEAR-Archive_Tar + 2021-01-26 + 2021-01-26 + 755653 + 766036 + remote + + + 1.4.12 + 1.4.12 + + + +

This class provides handling of tar files in PHP.

+
+ +

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

+
+ +

Please review the referenced CVE identifiers for details.

+
+ +

There is no known workaround at this time.

+
+ +

All PEAR-Archive_Tar users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-php/PEAR-Archive_Tar-1.4.12" + +
+ + CVE-2020-28948 + CVE-2020-28949 + CVE-2020-36193 + + sam_c + sam_c +
diff --git a/metadata/glsa/glsa-202101-24.xml b/metadata/glsa/glsa-202101-24.xml new file mode 100644 index 000000000000..3e9fb3f77765 --- /dev/null +++ b/metadata/glsa/glsa-202101-24.xml @@ -0,0 +1,49 @@ + + + + cfitsio: Multiple vulnerabilities + Multiple vulnerabilities have been found in cfitsio, the worst of + which could result in the arbitrary execution of code. + + cfitsio + 2021-01-26 + 2021-01-26 + 673944 + remote + + + 3.490 + 3.490 + + + +

A C and Fortran library for manipulating FITS files.

+
+ +

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

+
+ +

Please review the referenced CVE identifiers for details.

+
+ +

There is no known workaround at this time.

+
+ +

All cfitsio users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=sci-libs/cfitsio-3.490" + +
+ + CVE-2018-3846 + CVE-2018-3847 + CVE-2018-3848 + CVE-2018-3849 + + sam_c + sam_c +
diff --git a/metadata/glsa/glsa-202101-25.xml b/metadata/glsa/glsa-202101-25.xml new file mode 100644 index 000000000000..6914662437b5 --- /dev/null +++ b/metadata/glsa/glsa-202101-25.xml @@ -0,0 +1,44 @@ + + + + Mutt: Denial of service + A vulnerability in Mutt could lead to a Denial of Service + condition. + + mutt + 2021-01-26 + 2021-01-26 + 765790 + remote + + + 2.0.4-r1 + 2.0.4-r1 + + + +

Mutt is a small but very powerful text-based mail client.

+
+ +

A memory leak could occur when a crafted email message is received.

+
+ +

An attacker could cause a possible Denial of Service condition.

+
+ +

There is no known workaround at this time.

+
+ +

All Mutt users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=mail-client/mutt-2.0.4-r1" + +
+ + CVE-2021-3181 + + sam_c + sam_c +
diff --git a/metadata/glsa/glsa-202101-26.xml b/metadata/glsa/glsa-202101-26.xml new file mode 100644 index 000000000000..64fbf2c1b631 --- /dev/null +++ b/metadata/glsa/glsa-202101-26.xml @@ -0,0 +1,50 @@ + + + + f2fs-tools: Multiple vulnerabilities + Multiple vulnerabilities have been found in f2fs-tools, the worst + of which could result in the arbitrary execution of code. + + f2fs-tools + 2021-01-26 + 2021-01-26 + 749318 + remote + + + 1.14.0 + 1.14.0 + + + +

Tools for Flash-Friendly File System (F2FS).

+
+ +

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

+
+ +

Please review the referenced CVE identifiers for details.

+
+ +

There is no known workaround at this time.

+
+ +

All f2fs-tools users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=sys-fs/f2fs-tools-1.14.0" + +
+ + CVE-2020-6104 + CVE-2020-6105 + CVE-2020-6106 + CVE-2020-6107 + CVE-2020-6108 + + sam_c + sam_c +
diff --git a/metadata/glsa/glsa-202101-27.xml b/metadata/glsa/glsa-202101-27.xml new file mode 100644 index 000000000000..776a91822460 --- /dev/null +++ b/metadata/glsa/glsa-202101-27.xml @@ -0,0 +1,45 @@ + + + + FreeRADIUS: Root privilege escalation + Multiple vulnerabilities were discovered in Gentoo's systemd unit + for FreeRADIUS which could lead to root privilege escalation. + + freeradius + 2021-01-26 + 2021-01-26 + 630910 + local + + + 3.0.20-r1 + 3.0.20-r1 + + + +

FreeRADIUS is a modular, high performance free RADIUS suite.

+
+ +

It was discovered that Gentoo’s FreeRADIUS systemd unit set + permissions on an unsafe directory on start. +

+
+ +

A local attacker could escalate privileges.

+
+ +

There is no known workaround at this time.

+
+ +

All FreeRADIUS users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=net-dialup/freeradius-3.0.20-r1" + +
+ + + sam_c + sam_c +
diff --git a/metadata/glsa/glsa-202101-28.xml b/metadata/glsa/glsa-202101-28.xml new file mode 100644 index 000000000000..8ba014862bfd --- /dev/null +++ b/metadata/glsa/glsa-202101-28.xml @@ -0,0 +1,47 @@ + + + + ncurses: Multiple vulnerabilities + Multiple vulnerabilities have been found in ncurses, the worst of + which could result in a Denial of Service condition. + + ncurses + 2021-01-26 + 2021-01-26 + 698210 + remote + + + 6.2 + 6.2 + + + +

A console display library.

+
+ +

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

+
+ +

Please review the referenced CVE identifiers for details.

+
+ +

There is no known workaround at this time.

+
+ +

All ncurses users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=sys-apps/ncurses-6.2" + +
+ + CVE-2019-17594 + CVE-2019-17595 + + sam_c + sam_c +
diff --git a/metadata/glsa/glsa-202101-29.xml b/metadata/glsa/glsa-202101-29.xml new file mode 100644 index 000000000000..5f2c0b02b104 --- /dev/null +++ b/metadata/glsa/glsa-202101-29.xml @@ -0,0 +1,65 @@ + + + + OpenJPEG: Multiple vulnerabilities + Multiple vulnerabilities have been found in OpenJPEG, the worst of + which could result in the arbitrary execution of code. + + openjpeg + 2021-01-26 + 2021-01-26 + 711260 + 718918 + remote + + + 2.4.0 + 2.4.0 + 1.5.2-r1 + + + +

OpenJPEG is an open-source JPEG 2000 library.

+
+ +

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

+
+ +

Please review the referenced CVE identifiers for details.

+
+ +

There is no known workaround at this time.

+
+ +

All OpenJPEG 2 users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=media-libs/openjpeg-2.4.0:2" + + +

Gentoo has discontinued support OpenJPEG 1.x and any dependent packages + should now be using OpenJPEG 2 or have dropped support for the library. + We recommend that users unmerge OpenJPEG 1.x: +

+ + + # emerge --unmerge "media-libs/openjpeg:1" + +
+ + CVE-2018-21010 + CVE-2019-12973 + CVE-2020-15389 + CVE-2020-27814 + CVE-2020-27841 + CVE-2020-27842 + CVE-2020-27843 + CVE-2020-27844 + CVE-2020-27845 + + sam_c + sam_c +
diff --git a/metadata/glsa/glsa-202101-30.xml b/metadata/glsa/glsa-202101-30.xml new file mode 100644 index 000000000000..0c4e07eeaaa7 --- /dev/null +++ b/metadata/glsa/glsa-202101-30.xml @@ -0,0 +1,151 @@ + + + + Qt WebEngine: Multiple vulnerabilities + Multiple vulnerabilities have been found in Qt WebEngine, the worst + of which could result in the arbitrary execution of code. + + qtwebengine + 2021-01-26 + 2021-01-26 + 734600 + 754852 + remote + + + 5.15.2 + 5.15.2 + + + +

Library for rendering dynamic web content in Qt5 C++ and QML + applications. +

+
+ +

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

+
+ +

Please review the referenced CVE identifiers for details.

+
+ +

There is no known workaround at this time.

+
+ +

All Qt WebEngine users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-qt/qtwebengine-5.15.2" + +
+ + CVE-2020-15959 + CVE-2020-15959 + CVE-2020-15960 + CVE-2020-15960 + CVE-2020-15961 + CVE-2020-15961 + CVE-2020-15962 + CVE-2020-15962 + CVE-2020-15963 + CVE-2020-15963 + CVE-2020-15964 + CVE-2020-15964 + CVE-2020-15965 + CVE-2020-15965 + CVE-2020-15966 + CVE-2020-15966 + CVE-2020-15968 + CVE-2020-15968 + CVE-2020-15969 + CVE-2020-15969 + CVE-2020-15972 + CVE-2020-15972 + CVE-2020-15974 + CVE-2020-15974 + CVE-2020-15976 + CVE-2020-15976 + CVE-2020-15977 + CVE-2020-15977 + CVE-2020-15978 + CVE-2020-15978 + CVE-2020-15979 + CVE-2020-15979 + CVE-2020-15985 + CVE-2020-15985 + CVE-2020-15987 + CVE-2020-15987 + CVE-2020-15989 + CVE-2020-15989 + CVE-2020-15992 + CVE-2020-15992 + CVE-2020-16001 + CVE-2020-16001 + CVE-2020-16002 + CVE-2020-16002 + CVE-2020-16003 + CVE-2020-16003 + CVE-2020-6467 + CVE-2020-6467 + CVE-2020-6470 + CVE-2020-6470 + CVE-2020-6471 + CVE-2020-6471 + CVE-2020-6472 + CVE-2020-6473 + CVE-2020-6474 + CVE-2020-6475 + CVE-2020-6476 + CVE-2020-6480 + CVE-2020-6481 + CVE-2020-6482 + CVE-2020-6483 + CVE-2020-6486 + CVE-2020-6487 + CVE-2020-6489 + CVE-2020-6490 + CVE-2020-6506 + CVE-2020-6510 + CVE-2020-6511 + CVE-2020-6512 + CVE-2020-6513 + CVE-2020-6514 + CVE-2020-6518 + CVE-2020-6523 + CVE-2020-6524 + CVE-2020-6526 + CVE-2020-6529 + CVE-2020-6530 + CVE-2020-6531 + CVE-2020-6532 + CVE-2020-6533 + CVE-2020-6534 + CVE-2020-6535 + CVE-2020-6540 + CVE-2020-6541 + CVE-2020-6542 + CVE-2020-6543 + CVE-2020-6544 + CVE-2020-6545 + CVE-2020-6548 + CVE-2020-6549 + CVE-2020-6550 + CVE-2020-6551 + CVE-2020-6555 + CVE-2020-6557 + CVE-2020-6559 + CVE-2020-6561 + CVE-2020-6562 + CVE-2020-6569 + CVE-2020-6570 + CVE-2020-6571 + CVE-2020-6573 + CVE-2020-6575 + CVE-2020-6576 + + sam_c + sam_c +
diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 07ee96252b17..c7744d0bca9d 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Mon, 25 Jan 2021 05:38:35 +0000 +Tue, 26 Jan 2021 05:38:34 +0000 diff --git a/metadata/glsa/timestamp.commit b/metadata/glsa/timestamp.commit index b2bef79a533d..eedbed471a3e 100644 --- a/metadata/glsa/timestamp.commit +++ b/metadata/glsa/timestamp.commit @@ -1 +1 @@ -e56d3f16a9a9a346d1e560e3cd68075e259e5961 1611533263 2021-01-25T00:07:43+00:00 +c62c6ad356b90a9c035e6ac2c40715c5fb63a836 1611629802 2021-01-26T02:56:42+00:00 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index 4abb31a7f471..bc74d3533a38 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 450fb05ebada..59dcff4072ab 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/brltty-6.1 b/metadata/md5-cache/app-accessibility/brltty-6.1 index abd32e750514..ba3ec02c4859 100644 --- a/metadata/md5-cache/app-accessibility/brltty-6.1 +++ b/metadata/md5-cache/app-accessibility/brltty-6.1 @@ -11,5 +11,5 @@ RDEPEND=app-accessibility/at-spi2-core:2 dev-libs/libpcre2[pcre32] sys-apps/dbus REQUIRED_USE=doc? ( api ) java? ( api ) ocaml? ( api ) python? ( api || ( python_targets_python3_7 python_targets_python3_8 ) ) tcl? ( api ) SLOT=0 SRC_URI=https://brltty.app/archive/brltty-6.1.tar.xz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 udev 452708c3f55cf6e918b045adb949a9e6 usr-ldscript 7c918d239d0f9098867d0c8e33348fc9 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 udev 452708c3f55cf6e918b045adb949a9e6 usr-ldscript 7c918d239d0f9098867d0c8e33348fc9 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=42ef3c43cceb8345a726f019b9496826 diff --git a/metadata/md5-cache/app-accessibility/caribou-0.4.21-r2 b/metadata/md5-cache/app-accessibility/caribou-0.4.21-r2 index d22763ab761b..377351ef2b62 100644 --- a/metadata/md5-cache/app-accessibility/caribou-0.4.21-r2 +++ b/metadata/md5-cache/app-accessibility/caribou-0.4.21-r2 @@ -4,11 +4,11 @@ DESCRIPTION=Input assistive technology intended for switch and pointer users EAPI=6 HOMEPAGE=https://wiki.gnome.org/Projects/Caribou IUSE=python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=LGPL-2.1 RDEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7:= dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst python_targets_python3_7? ( dev-lang/python:3.7[xml] ) python_targets_python3_8? ( dev-lang/python:3.8[xml] ) python_targets_python3_9? ( dev-lang/python:3.9[xml] ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] || ( dev-lang/vala:0.50 dev-lang/vala:0.48 dev-lang/vala:0.46 dev-lang/vala:0.44 dev-lang/vala:0.40 dev-lang/vala:0.36 ) dev-libs/glib[dbus] >=dev-python/pyatspi-2.1.90[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=gnome-base/gsettings-desktop-schemas-3 gnome-base/librsvg:2 sys-apps/dbus ! exo-1.23.0.tar.gz +_md5_=a638813d2b712f85d21a976d47d1d5b9 diff --git a/metadata/md5-cache/app-admin/undertaker-scripts-1 b/metadata/md5-cache/app-admin/undertaker-scripts-1 new file mode 100644 index 000000000000..d8d728b492f5 --- /dev/null +++ b/metadata/md5-cache/app-admin/undertaker-scripts-1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install setup +DESCRIPTION=Scripts to help retiring Gentoo developers +EAPI=7 +HOMEPAGE=https://github.com/mgorny/undertaker-scripts +IUSE=python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD-2 +RDEPEND=python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_7? ( dev-python/jinja[python_targets_python3_7(-)] dev-python/lxml[python_targets_python3_7(-)] dev-python/python-bugzilla[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/jinja[python_targets_python3_8(-)] dev-python/lxml[python_targets_python3_8(-)] dev-python/python-bugzilla[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/jinja[python_targets_python3_9(-)] dev-python/lxml[python_targets_python3_9(-)] dev-python/python-bugzilla[python_targets_python3_9(-)] ) +REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) +SLOT=0 +SRC_URI=https://github.com/mgorny/undertaker-scripts/archive/v1.tar.gz -> undertaker-scripts-1.tar.gz +_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=467b765d3204bf805795b93472015147 diff --git a/metadata/md5-cache/app-backup/Manifest.gz b/metadata/md5-cache/app-backup/Manifest.gz index 74ca1b0934a0..8dfbfec4fbd8 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/borgbackup-1.1.15 b/metadata/md5-cache/app-backup/borgbackup-1.1.15 index b03bcf355fcb..260afce8b3e7 100644 --- a/metadata/md5-cache/app-backup/borgbackup-1.1.15 +++ b/metadata/md5-cache/app-backup/borgbackup-1.1.15 @@ -5,11 +5,11 @@ DESCRIPTION=Deduplicating backup program with compression and authenticated encr EAPI=7 HOMEPAGE=https://borgbackup.readthedocs.io/ IUSE=libressl python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~ppc64 ~x86 LICENSE=BSD RDEPEND=!!app-office/borg app-arch/lz4 virtual/acl dev-python/llfuse[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/b/borgbackup/borgbackup-1.1.15.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=c1c54c7f8c0d113f926c8f4726b90391 +_md5_=08638cc1db765c59b6271006e177cf6f diff --git a/metadata/md5-cache/app-benchmarks/Manifest.gz b/metadata/md5-cache/app-benchmarks/Manifest.gz index a5db8b441e88..1e1efaf92fb1 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/hyperfine-1.11.0 b/metadata/md5-cache/app-benchmarks/hyperfine-1.11.0 index 3ddf44797e64..9a5c64c53f79 100644 --- a/metadata/md5-cache/app-benchmarks/hyperfine-1.11.0 +++ b/metadata/md5-cache/app-benchmarks/hyperfine-1.11.0 @@ -4,9 +4,9 @@ DESCRIPTION=A command-line benchmarking tool (runs other benchmarks) EAPI=7 HOMEPAGE=https://github.com/sharkdp/hyperfine IUSE=debug -KEYWORDS=amd64 ~ppc64 +KEYWORDS=amd64 ~arm64 ~ppc64 LICENSE=Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 Boost-1.0 ISC MIT MPL-2.0 Unlicense SLOT=0 SRC_URI=https://github.com/sharkdp/hyperfine/archive/v1.11.0.tar.gz -> hyperfine-1.11.0.tar.gz https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/approx/0.3.2/download -> approx-0.3.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/0.1.7/download -> autocfg-0.1.7.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/bstr/0.2.13/download -> bstr-0.2.13.crate https://crates.io/api/v1/crates/byteorder/1.3.4/download -> byteorder-1.3.4.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/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/cloudabi/0.0.3/download -> cloudabi-0.0.3.crate https://crates.io/api/v1/crates/colored/2.0.0/download -> colored-2.0.0.crate https://crates.io/api/v1/crates/console/0.12.0/download -> console-0.12.0.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/encode_unicode/0.3.6/download -> encode_unicode-0.3.6.crate https://crates.io/api/v1/crates/fuchsia-cprng/0.1.1/download -> fuchsia-cprng-0.1.1.crate https://crates.io/api/v1/crates/getrandom/0.1.15/download -> getrandom-0.1.15.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/indicatif/0.15.0/download -> indicatif-0.15.0.crate https://crates.io/api/v1/crates/itoa/0.4.6/download -> itoa-0.4.6.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/memchr/2.3.3/download -> memchr-2.3.3.crate https://crates.io/api/v1/crates/num/0.2.1/download -> num-0.2.1.crate https://crates.io/api/v1/crates/number_prefix/0.3.0/download -> number_prefix-0.3.0.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-integer/0.1.43/download -> num-integer-0.1.43.crate https://crates.io/api/v1/crates/num-iter/0.1.41/download -> num-iter-0.1.41.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.12/download -> num-traits-0.2.12.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/proc-macro2/1.0.24/download -> proc-macro2-1.0.24.crate https://crates.io/api/v1/crates/quote/1.0.7/download -> quote-1.0.7.crate https://crates.io/api/v1/crates/rand/0.6.5/download -> rand-0.6.5.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.1.1/download -> rand_chacha-0.1.1.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.3.1/download -> rand_core-0.3.1.crate https://crates.io/api/v1/crates/rand_core/0.4.2/download -> rand_core-0.4.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.1.0/download -> rand_hc-0.1.0.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/rand_isaac/0.1.1/download -> rand_isaac-0.1.1.crate https://crates.io/api/v1/crates/rand_jitter/0.1.4/download -> rand_jitter-0.1.4.crate https://crates.io/api/v1/crates/rand_os/0.1.3/download -> rand_os-0.1.3.crate https://crates.io/api/v1/crates/rand_pcg/0.1.2/download -> rand_pcg-0.1.2.crate https://crates.io/api/v1/crates/rand_xorshift/0.1.1/download -> rand_xorshift-0.1.1.crate https://crates.io/api/v1/crates/rdrand/0.4.0/download -> rdrand-0.4.0.crate https://crates.io/api/v1/crates/regex/1.4.1/download -> regex-1.4.1.crate https://crates.io/api/v1/crates/regex-automata/0.1.9/download -> regex-automata-0.1.9.crate https://crates.io/api/v1/crates/regex-syntax/0.6.20/download -> regex-syntax-0.6.20.crate https://crates.io/api/v1/crates/rust_decimal/1.8.1/download -> rust_decimal-1.8.1.crate https://crates.io/api/v1/crates/ryu/1.0.5/download -> ryu-1.0.5.crate https://crates.io/api/v1/crates/serde/1.0.117/download -> serde-1.0.117.crate https://crates.io/api/v1/crates/serde_derive/1.0.117/download -> serde_derive-1.0.117.crate https://crates.io/api/v1/crates/serde_json/1.0.59/download -> serde_json-1.0.59.crate https://crates.io/api/v1/crates/statistical/1.0.0/download -> statistical-1.0.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.44/download -> syn-1.0.44.crate https://crates.io/api/v1/crates/terminal_size/0.1.13/download -> terminal_size-0.1.13.crate https://crates.io/api/v1/crates/termios/0.3.3/download -> termios-0.3.3.crate https://crates.io/api/v1/crates/term_size/0.3.2/download -> term_size-0.3.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.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/unicode-xid/0.2.1/download -> unicode-xid-0.2.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/version_check/0.9.2/download -> version_check-0.9.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/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 _eclasses_=cargo 7ffdd252643addc68abff0a08cca5306 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=17274c56457d23f5e80e6798388c5166 +_md5_=851c11b0093a66798865f38e56bed69e diff --git a/metadata/md5-cache/app-crypt/Manifest.gz b/metadata/md5-cache/app-crypt/Manifest.gz index 2822c1a123bc..55007838dda0 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/cardpeek-0.7.2 b/metadata/md5-cache/app-crypt/cardpeek-0.7.2 deleted file mode 100644 index 751d79652654..000000000000 --- a/metadata/md5-cache/app-crypt/cardpeek-0.7.2 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=postinst postrm preinst prepare -DEPEND=>=x11-libs/gtk+-2.12:2 sys-apps/pcsc-lite dev-lang/lua:0 !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Tool to read the contents of smartcards -EAPI=7 -HOMEPAGE=http://pannetrat.com/Cardpeek -IUSE=libressl -KEYWORDS=~amd64 -LICENSE=GPL-3 -RDEPEND=>=x11-libs/gtk+-2.12:2 sys-apps/pcsc-lite dev-lang/lua:0 !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) -SLOT=0 -SRC_URI=https://cardpeek.googlecode.com/files/cardpeek-0.7.2.tar.gz -_eclasses_=xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9d073d6a030e4a62aa74499ff1d55629 diff --git a/metadata/md5-cache/app-crypt/ekeyd-1.1.5-r1 b/metadata/md5-cache/app-crypt/ekeyd-1.1.5-r1 deleted file mode 100644 index 8fb68114b329..000000000000 --- a/metadata/md5-cache/app-crypt/ekeyd-1.1.5-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig virtual/pkgconfig -DEFINED_PHASES=compile install postinst setup -DEPEND=!minimal? ( dev-lang/lua:0 ) -DESCRIPTION=Entropy Key userspace daemon -EAPI=7 -HOMEPAGE=http://www.entropykey.co.uk/ -IUSE=kernel_linux munin minimal usb kernel_linux -KEYWORDS=~amd64 ~x86 -LICENSE=MIT GPL-2 -RDEPEND=!minimal? ( dev-lang/lua:0 dev-lua/luasocket kernel_linux? ( virtual/udev ) munin? ( net-analyzer/munin ) ) virtual/service-manager -REQUIRED_USE=minimal? ( !munin ) -SLOT=0 -SRC_URI=mirror://ubuntu/pool/universe/e/ekeyd/ekeyd_1.1.5.orig.tar.gz -_eclasses_=linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib d410501a125f99ffb560b0c523cd3d1e systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 udev 452708c3f55cf6e918b045adb949a9e6 -_md5_=e25cc6a3bdd1dfc815eb525306a07fcd diff --git a/metadata/md5-cache/app-crypt/pinentry-1.1.0-r3 b/metadata/md5-cache/app-crypt/pinentry-1.1.0-r4 similarity index 72% rename from metadata/md5-cache/app-crypt/pinentry-1.1.0-r3 rename to metadata/md5-cache/app-crypt/pinentry-1.1.0-r4 index e5d98d2e6ebc..1f0d5970c17a 100644 --- a/metadata/md5-cache/app-crypt/pinentry-1.1.0-r3 +++ b/metadata/md5-cache/app-crypt/pinentry-1.1.0-r4 @@ -1,14 +1,14 @@ BDEPEND=sys-devel/gettext virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst postrm prepare -DEPEND=app-eselect/eselect-pinentry >=dev-libs/libassuan-2.1 >=dev-libs/libgcrypt-1.6.3 >=dev-libs/libgpg-error-1.17 caps? ( sys-libs/libcap ) fltk? ( x11-libs/fltk ) gnome-keyring? ( app-crypt/libsecret ) gtk? ( x11-libs/gtk+:2 ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) +DEPEND=app-eselect/eselect-pinentry >=dev-libs/libassuan-2.1 >=dev-libs/libgcrypt-1.6.3 >=dev-libs/libgpg-error-1.17 caps? ( sys-libs/libcap ) gnome-keyring? ( app-crypt/libsecret ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) DESCRIPTION=Simple passphrase entry dialogs which utilize the Assuan protocol EAPI=7 HOMEPAGE=https://gnupg.org/aegypten2/index.html -IUSE=caps emacs gnome-keyring fltk gtk ncurses qt5 +IUSE=caps emacs gnome-keyring gtk ncurses qt5 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 -RDEPEND=app-eselect/eselect-pinentry >=dev-libs/libassuan-2.1 >=dev-libs/libgcrypt-1.6.3 >=dev-libs/libgpg-error-1.17 caps? ( sys-libs/libcap ) fltk? ( x11-libs/fltk ) gnome-keyring? ( app-crypt/libsecret ) gtk? ( x11-libs/gtk+:2 ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) gnome-keyring? ( app-crypt/gcr ) +RDEPEND=app-eselect/eselect-pinentry >=dev-libs/libassuan-2.1 >=dev-libs/libgcrypt-1.6.3 >=dev-libs/libgpg-error-1.17 caps? ( sys-libs/libcap ) gnome-keyring? ( app-crypt/libsecret ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) gtk? ( app-crypt/gcr ) SLOT=0 SRC_URI=mirror://gnupg/pinentry/pinentry-1.1.0.tar.bz2 _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e qmake-utils dc74fe3891abc25e80dad5cd3d7c6e47 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=d63e569da59bbf329837f226b261b66e +_md5_=fde1c1eeea2e546a22694e6b237ee732 diff --git a/metadata/md5-cache/app-crypt/pinentry-1.1.1 b/metadata/md5-cache/app-crypt/pinentry-1.1.1 new file mode 100644 index 000000000000..e2b160620f1e --- /dev/null +++ b/metadata/md5-cache/app-crypt/pinentry-1.1.1 @@ -0,0 +1,14 @@ +BDEPEND=sys-devel/gettext virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=configure install postinst postrm prepare +DEPEND=app-eselect/eselect-pinentry >=dev-libs/libassuan-2.1 >=dev-libs/libgcrypt-1.6.3 >=dev-libs/libgpg-error-1.17 caps? ( sys-libs/libcap ) gnome-keyring? ( app-crypt/libsecret ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) +DESCRIPTION=Simple passphrase entry dialogs which utilize the Assuan protocol +EAPI=7 +HOMEPAGE=https://gnupg.org/aegypten2/index.html +IUSE=caps emacs gnome-keyring gtk ncurses qt5 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=app-eselect/eselect-pinentry >=dev-libs/libassuan-2.1 >=dev-libs/libgcrypt-1.6.3 >=dev-libs/libgpg-error-1.17 caps? ( sys-libs/libcap ) gnome-keyring? ( app-crypt/libsecret ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) gtk? ( app-crypt/gcr ) +SLOT=0 +SRC_URI=mirror://gnupg/pinentry/pinentry-1.1.1.tar.bz2 +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e qmake-utils dc74fe3891abc25e80dad5cd3d7c6e47 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=4ea7601ecedaf3f470d85f0eadf5282c diff --git a/metadata/md5-cache/app-editors/Manifest.gz b/metadata/md5-cache/app-editors/Manifest.gz index e99b0ba52290..6805f4d2e10f 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/neovim-0.4.3 b/metadata/md5-cache/app-editors/neovim-0.4.3 deleted file mode 100644 index af5818953db8..000000000000 --- a/metadata/md5-cache/app-editors/neovim-0.4.3 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=dev-util/gperf virtual/libiconv virtual/libintl virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=dev-libs/libuv:0= >=dev-libs/libvterm-0.1.2 dev-libs/msgpack:0= dev-lua/lpeg[luajit=] dev-lua/luv[luajit=] dev-lua/mpack[luajit=] net-libs/libnsl luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:0= dev-lua/LuaBitOp ) tui? ( dev-libs/libtermkey >=dev-libs/unibilium-2.0.0:0= ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Vim-fork focused on extensibility and agility. -EAPI=7 -HOMEPAGE=https://neovim.io -IUSE=+luajit +nvimpager +tui -KEYWORDS=amd64 ~arm ~arm64 x86 -LICENSE=Apache-2.0 vim -RDEPEND=dev-libs/libuv:0= >=dev-libs/libvterm-0.1.2 dev-libs/msgpack:0= dev-lua/lpeg[luajit=] dev-lua/luv[luajit=] dev-lua/mpack[luajit=] net-libs/libnsl luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:0= dev-lua/LuaBitOp ) tui? ( dev-libs/libtermkey >=dev-libs/unibilium-2.0.0:0= ) app-eselect/eselect-vi -SLOT=0 -SRC_URI=https://github.com/neovim/neovim/archive/v0.4.3.tar.gz -> neovim-0.4.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f optfeature 6a2add34e06e5a05d88471a33ccdd73e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=34540cd10919bc1b5a92f199c898f60e diff --git a/metadata/md5-cache/app-editors/neovim-0.4.4 b/metadata/md5-cache/app-editors/neovim-0.4.4 deleted file mode 100644 index 25d9680e29b5..000000000000 --- a/metadata/md5-cache/app-editors/neovim-0.4.4 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=dev-util/gperf virtual/libiconv virtual/libintl virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=dev-libs/libuv:0= >=dev-libs/libvterm-0.1.2 dev-libs/msgpack:0= dev-lua/lpeg[luajit=] dev-lua/luv[luajit=] dev-lua/mpack[luajit=] net-libs/libnsl luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:0= dev-lua/LuaBitOp ) tui? ( dev-libs/libtermkey >=dev-libs/unibilium-2.0.0:0= ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Vim-fork focused on extensibility and agility. -EAPI=7 -HOMEPAGE=https://neovim.io -IUSE=+lto +luajit +nvimpager +tui -KEYWORDS=amd64 ~arm ~arm64 x86 -LICENSE=Apache-2.0 vim -RDEPEND=dev-libs/libuv:0= >=dev-libs/libvterm-0.1.2 dev-libs/msgpack:0= dev-lua/lpeg[luajit=] dev-lua/luv[luajit=] dev-lua/mpack[luajit=] net-libs/libnsl luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:0= dev-lua/LuaBitOp ) tui? ( dev-libs/libtermkey >=dev-libs/unibilium-2.0.0:0= ) app-eselect/eselect-vi -SLOT=0 -SRC_URI=https://github.com/neovim/neovim/archive/v0.4.4.tar.gz -> neovim-0.4.4.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f optfeature 6a2add34e06e5a05d88471a33ccdd73e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9b9e28efd64f6b3bd5a513c6c68efa88 diff --git a/metadata/md5-cache/app-emulation/Manifest.gz b/metadata/md5-cache/app-emulation/Manifest.gz index 37ff343596c0..32ea2942ef2b 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/docker-compose-1.28.0_rc1 b/metadata/md5-cache/app-emulation/docker-compose-1.28.0_rc1 deleted file mode 100644 index ebf8f95e3cd4..000000000000 --- a/metadata/md5-cache/app-emulation/docker-compose-1.28.0_rc1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/cached-property-1.2.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/distro-1.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/docker-py-4.3.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/dockerpty-0.4.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/docopt-0.6.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/python-dotenv-0.13.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/jsonschema-2.5.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/paramiko[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/PySocks-1.6.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyyaml-3.10[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-2.20.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/six-1.3.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/texttable-0.9.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/websocket-client-0.32.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( >=dev-python/pytest-5[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/ddt-1.2.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) -DESCRIPTION=Multi-container orchestration for Docker -EAPI=7 -HOMEPAGE=https://github.com/docker/compose -IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/cached-property-1.2.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/distro-1.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/docker-py-4.3.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/dockerpty-0.4.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/docopt-0.6.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/python-dotenv-0.13.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/jsonschema-2.5.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/paramiko[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/PySocks-1.6.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyyaml-3.10[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-2.20.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/six-1.3.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/texttable-0.9.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/websocket-client-0.32.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/docker/compose/archive/1.28.0-rc1.tar.gz -> docker-compose-1.28.0_rc1.tar.gz -_eclasses_=bash-completion-r1 be99724bde4274de21e581204e9d164a distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=8827a8b1a120ecb6edaddc96d82099d3 diff --git a/metadata/md5-cache/app-emulation/docker-compose-1.28.0_rc2 b/metadata/md5-cache/app-emulation/docker-compose-1.28.0_rc2 deleted file mode 100644 index f8814a4de195..000000000000 --- a/metadata/md5-cache/app-emulation/docker-compose-1.28.0_rc2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/cached-property-1.2.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/distro-1.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/docker-py-4.4.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/dockerpty-0.4.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/docopt-0.6.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/python-dotenv-0.13.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/jsonschema-2.5.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/paramiko[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/PySocks-1.6.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyyaml-3.10[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-2.20.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/six-1.3.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/texttable-0.9.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/websocket-client-0.32.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( >=dev-python/pytest-5[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/ddt-1.2.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) -DESCRIPTION=Multi-container orchestration for Docker -EAPI=7 -HOMEPAGE=https://github.com/docker/compose -IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/cached-property-1.2.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/distro-1.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/docker-py-4.4.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/dockerpty-0.4.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/docopt-0.6.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/python-dotenv-0.13.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/jsonschema-2.5.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/paramiko[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/PySocks-1.6.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyyaml-3.10[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-2.20.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/six-1.3.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/texttable-0.9.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/websocket-client-0.32.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/docker/compose/archive/1.28.0-rc2.tar.gz -> docker-compose-1.28.0_rc2.tar.gz -_eclasses_=bash-completion-r1 be99724bde4274de21e581204e9d164a distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=09aa7409ba20aa3062207347710bcead diff --git a/metadata/md5-cache/app-emulation/docker-compose-1.28.0_rc3 b/metadata/md5-cache/app-emulation/docker-compose-1.28.1 similarity index 98% rename from metadata/md5-cache/app-emulation/docker-compose-1.28.0_rc3 rename to metadata/md5-cache/app-emulation/docker-compose-1.28.1 index 6b8d21933288..cfc2ea054f9e 100644 --- a/metadata/md5-cache/app-emulation/docker-compose-1.28.0_rc3 +++ b/metadata/md5-cache/app-emulation/docker-compose-1.28.1 @@ -11,6 +11,6 @@ RDEPEND=dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/docker/compose/archive/1.28.0-rc3.tar.gz -> docker-compose-1.28.0_rc3.tar.gz +SRC_URI=https://github.com/docker/compose/archive/1.28.1.tar.gz -> docker-compose-1.28.1.tar.gz _eclasses_=bash-completion-r1 be99724bde4274de21e581204e9d164a distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=09aa7409ba20aa3062207347710bcead diff --git a/metadata/md5-cache/app-eselect/Manifest.gz b/metadata/md5-cache/app-eselect/Manifest.gz index ccbf46e3b54a..8bf3528f6f04 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-pinentry-0.7 b/metadata/md5-cache/app-eselect/eselect-pinentry-0.7.1 similarity index 100% rename from metadata/md5-cache/app-eselect/eselect-pinentry-0.7 rename to metadata/md5-cache/app-eselect/eselect-pinentry-0.7.1 diff --git a/metadata/md5-cache/app-misc/Manifest.gz b/metadata/md5-cache/app-misc/Manifest.gz index ee76ac365679..202580b2821b 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/figlet-2.2.5-r1 b/metadata/md5-cache/app-misc/figlet-2.2.5-r1 index 4cfd4b00e764..ce1e709d4f17 100644 --- a/metadata/md5-cache/app-misc/figlet-2.2.5-r1 +++ b/metadata/md5-cache/app-misc/figlet-2.2.5-r1 @@ -2,9 +2,9 @@ DEFINED_PHASES=compile install DESCRIPTION=program for making large letters out of ordinary text EAPI=6 HOMEPAGE=http://www.figlet.org/ -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos LICENSE=BSD SLOT=0 SRC_URI=ftp://ftp.figlet.org/pub/figlet/program/unix/figlet-2.2.5.tar.gz _eclasses_=bash-completion-r1 be99724bde4274de21e581204e9d164a desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=414bd1be1c5c5055be2056b287630c87 +_md5_=f8f2cfe2eeea746591028f221f4bf7e6 diff --git a/metadata/md5-cache/app-misc/worker-3.8.3 b/metadata/md5-cache/app-misc/worker-3.8.3 deleted file mode 100644 index c3d429ddd0eb..000000000000 --- a/metadata/md5-cache/app-misc/worker-3.8.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install -DEPEND=x11-libs/libX11 avfs? ( >=sys-fs/avfs-0.9.5 ) dbus? ( dev-libs/dbus-glib ) lua? ( dev-lang/lua:0 ) magic? ( sys-apps/file ) xft? ( x11-libs/libXft ) xinerama? ( x11-libs/libXinerama ) -DESCRIPTION=Worker Filemanager: Amiga Directory Opus 4 clone -EAPI=6 -HOMEPAGE=http://www.boomerangsworld.de/cms/worker/ -IUSE=avfs debug dbus examples libnotify lua +magic xinerama xft -KEYWORDS=amd64 ~arm ~hppa ppc ~ppc64 x86 -LICENSE=GPL-2 -RDEPEND=x11-libs/libX11 avfs? ( >=sys-fs/avfs-0.9.5 ) dbus? ( dev-libs/dbus-glib ) lua? ( dev-lang/lua:0 ) magic? ( sys-apps/file ) xft? ( x11-libs/libXft ) xinerama? ( x11-libs/libXinerama ) -SLOT=0 -SRC_URI=http://www.boomerangsworld.de/cms/worker/downloads/worker-3.8.3.tar.bz2 -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=7bfd184c2176f31fbddc1a5e2f445ee6 diff --git a/metadata/md5-cache/app-misc/worker-4.6.1 b/metadata/md5-cache/app-misc/worker-4.6.1 deleted file mode 100644 index a747f1c8c54d..000000000000 --- a/metadata/md5-cache/app-misc/worker-4.6.1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=configure install prepare -DEPEND=x11-libs/libX11 avfs? ( >=sys-fs/avfs-0.9.5 ) dbus? ( sys-apps/dbus ) lua? ( dev-lang/lua:0 ) magic? ( sys-apps/file ) xft? ( x11-libs/libXft ) xinerama? ( x11-libs/libXinerama ) -DESCRIPTION=Worker Filemanager: Amiga Directory Opus 4 clone -EAPI=7 -HOMEPAGE=http://www.boomerangsworld.de/cms/worker/ -IUSE=avfs debug dbus examples libnotify lua +magic xinerama xft -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 -LICENSE=GPL-2 -RDEPEND=x11-libs/libX11 avfs? ( >=sys-fs/avfs-0.9.5 ) dbus? ( sys-apps/dbus ) lua? ( dev-lang/lua:0 ) magic? ( sys-apps/file ) xft? ( x11-libs/libXft ) xinerama? ( x11-libs/libXinerama ) -SLOT=0 -SRC_URI=http://www.boomerangsworld.de/cms/worker/downloads/worker-4.6.1.tar.bz2 -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=14621f20e9d755fb0dec2a56da6cd66c diff --git a/metadata/md5-cache/app-office/Manifest.gz b/metadata/md5-cache/app-office/Manifest.gz index c01fe67dbf17..1e487b99d28e 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/skrooge-2.24.0 b/metadata/md5-cache/app-office/skrooge-2.24.0 deleted file mode 100644 index 981c3adde32c..000000000000 --- a/metadata/md5-cache/app-office/skrooge-2.24.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-libs/libxslt virtual/pkgconfig dev-util/ninja dev-util/cmake test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) handbook? ( >=kde-frameworks/kdoctools-5.74.0:5 ) >=kde-frameworks/extra-cmake-modules-5.74.0:5 -DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=>=app-crypt/qca-2.3.0:2 dev-db/sqlcipher dev-libs/grantlee:5 >=dev-qt/qtconcurrent-5.15.1:5 >=dev-qt/qtdbus-5.15.1:5 >=dev-qt/qtdeclarative-5.15.1:5[widgets] >=dev-qt/qtgui-5.15.1:5 >=dev-qt/qtnetwork-5.15.1:5 >=dev-qt/qtprintsupport-5.15.1:5 >=dev-qt/qtscript-5.15.1:5 >=dev-qt/qtsql-5.15.1:5= >=dev-qt/qtsvg-5.15.1:5 >=dev-qt/qtwebengine-5.15.1:5[widgets] >=dev-qt/qtwidgets-5.15.1:5 >=dev-qt/qtxml-5.15.1:5 >=kde-frameworks/karchive-5.74.0:5 >=kde-frameworks/kcompletion-5.74.0:5 >=kde-frameworks/kconfig-5.74.0:5 >=kde-frameworks/kconfigwidgets-5.74.0:5 >=kde-frameworks/kcoreaddons-5.74.0:5 >=kde-frameworks/kdbusaddons-5.74.0:5 >=kde-frameworks/ki18n-5.74.0:5 >=kde-frameworks/kiconthemes-5.74.0:5 >=kde-frameworks/kio-5.74.0:5 >=kde-frameworks/kitemviews-5.74.0:5 >=kde-frameworks/knewstuff-5.74.0:5 >=kde-frameworks/knotifications-5.74.0:5 >=kde-frameworks/knotifyconfig-5.74.0:5 >=kde-frameworks/kparts-5.74.0:5 >=kde-frameworks/kservice-5.74.0:5 >=kde-frameworks/ktextwidgets-5.74.0:5 >=kde-frameworks/kwallet-5.74.0:5 >=kde-frameworks/kwidgetsaddons-5.74.0:5 >=kde-frameworks/kxmlgui-5.74.0:5 activities? ( >=kde-frameworks/kactivities-5.74.0:5 ) kde? ( >=kde-frameworks/krunner-5.74.0:5 ) ofx? ( dev-libs/libofx:= ) >=kde-frameworks/kguiaddons-5.74.0:5 >=kde-frameworks/kjobwidgets-5.74.0:5 >=kde-frameworks/kwindowsystem-5.74.0:5 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 -DESCRIPTION=Personal finances manager, aiming at being simple and intuitive -EAPI=7 -HOMEPAGE=https://skrooge.org/ -IUSE=activities kde ofx test debug +handbook test -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=app-crypt/qca-2.3.0:2 dev-db/sqlcipher dev-libs/grantlee:5 >=dev-qt/qtconcurrent-5.15.1:5 >=dev-qt/qtdbus-5.15.1:5 >=dev-qt/qtdeclarative-5.15.1:5[widgets] >=dev-qt/qtgui-5.15.1:5 >=dev-qt/qtnetwork-5.15.1:5 >=dev-qt/qtprintsupport-5.15.1:5 >=dev-qt/qtscript-5.15.1:5 >=dev-qt/qtsql-5.15.1:5= >=dev-qt/qtsvg-5.15.1:5 >=dev-qt/qtwebengine-5.15.1:5[widgets] >=dev-qt/qtwidgets-5.15.1:5 >=dev-qt/qtxml-5.15.1:5 >=kde-frameworks/karchive-5.74.0:5 >=kde-frameworks/kcompletion-5.74.0:5 >=kde-frameworks/kconfig-5.74.0:5 >=kde-frameworks/kconfigwidgets-5.74.0:5 >=kde-frameworks/kcoreaddons-5.74.0:5 >=kde-frameworks/kdbusaddons-5.74.0:5 >=kde-frameworks/ki18n-5.74.0:5 >=kde-frameworks/kiconthemes-5.74.0:5 >=kde-frameworks/kio-5.74.0:5 >=kde-frameworks/kitemviews-5.74.0:5 >=kde-frameworks/knewstuff-5.74.0:5 >=kde-frameworks/knotifications-5.74.0:5 >=kde-frameworks/knotifyconfig-5.74.0:5 >=kde-frameworks/kparts-5.74.0:5 >=kde-frameworks/kservice-5.74.0:5 >=kde-frameworks/ktextwidgets-5.74.0:5 >=kde-frameworks/kwallet-5.74.0:5 >=kde-frameworks/kwidgetsaddons-5.74.0:5 >=kde-frameworks/kxmlgui-5.74.0:5 activities? ( >=kde-frameworks/kactivities-5.74.0:5 ) kde? ( >=kde-frameworks/krunner-5.74.0:5 ) ofx? ( dev-libs/libofx:= ) >=dev-qt/qtquickcontrols-5.15.1:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 -RESTRICT=!test? ( test ) !test? ( test ) test -SLOT=5 -SRC_URI=mirror://kde/stable/skrooge/skrooge-2.24.0.tar.xz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm 23462b13731a265a5d99e493ec4a7720 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 8a81008797ecdb979e3100d782ab5513 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=8a36fd4c1244b0f73495a9b59f0e4fd8 diff --git a/metadata/md5-cache/app-text/Manifest.gz b/metadata/md5-cache/app-text/Manifest.gz index 61d43c0b26ee..fc8b41948ec4 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/cpdf-2.3.1 b/metadata/md5-cache/app-text/cpdf-2.3.1 index ee487011f3e2..6f1e4171c595 100644 --- a/metadata/md5-cache/app-text/cpdf-2.3.1 +++ b/metadata/md5-cache/app-text/cpdf-2.3.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt] ~dev-ml/camlpdf-2.3.1:= RESTRICT=mirror bindist SLOT=0 SRC_URI=https://github.com/johnwhitington/cpdf-source/archive/v2.3.1.tar.gz -> cpdf-2.3.1.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=11a709aeb4df4210994788eb005ae36a diff --git a/metadata/md5-cache/app-text/scdoc-1.11.1 b/metadata/md5-cache/app-text/scdoc-1.11.1 index 56ed3dd34d85..39b47c8bf51d 100644 --- a/metadata/md5-cache/app-text/scdoc-1.11.1 +++ b/metadata/md5-cache/app-text/scdoc-1.11.1 @@ -2,9 +2,9 @@ DEFINED_PHASES=compile install prepare DESCRIPTION=Standalone tool for generating man pages with a simple syntax EAPI=7 HOMEPAGE=https://git.sr.ht/~sircmpwn/scdoc -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://git.sr.ht/~sircmpwn/scdoc/archive/1.11.1.tar.gz -> scdoc-1.11.1.tar.gz _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=03c5ca4da9d94e23b9d19912c0afcf1c +_md5_=1347d419f45ce808853eace34736697f diff --git a/metadata/md5-cache/app-text/xapian-omega-1.4.18 b/metadata/md5-cache/app-text/xapian-omega-1.4.18 index 42406a71f401..8d7f8c939303 100644 --- a/metadata/md5-cache/app-text/xapian-omega-1.4.18 +++ b/metadata/md5-cache/app-text/xapian-omega-1.4.18 @@ -1,11 +1,11 @@ DEFINED_PHASES=install -DEPEND=dev-libs/xapian:0/30 dev-lang/perl dev-libs/libpcre sys-libs/zlib +DEPEND=~dev-libs/xapian-1.4.18:0/30 dev-lang/perl dev-libs/libpcre sys-libs/zlib DESCRIPTION=An application built on Xapian, consisting of indexers and a CGI search frontend EAPI=7 HOMEPAGE=https://xapian.org/ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=dev-libs/xapian:0/30 dev-lang/perl dev-libs/libpcre sys-libs/zlib +RDEPEND=~dev-libs/xapian-1.4.18:0/30 dev-lang/perl dev-libs/libpcre sys-libs/zlib SLOT=0 SRC_URI=http://www.oligarchy.co.uk/xapian/1.4.18/xapian-omega-1.4.18.tar.xz -_md5_=71bf31b562f58ba7eb28c8b3924a83a6 +_md5_=6cf24faac4e1a1babce78d173d0155af diff --git a/metadata/md5-cache/dev-embedded/Manifest.gz b/metadata/md5-cache/dev-embedded/Manifest.gz index 6b35a0115731..051a0ce94de4 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/rpi-eeprom-11.0_p1 b/metadata/md5-cache/dev-embedded/rpi-eeprom-11.0_p1 index 96565b59f3a2..1dea78e9ce39 100644 --- a/metadata/md5-cache/dev-embedded/rpi-eeprom-11.0_p1 +++ b/metadata/md5-cache/dev-embedded/rpi-eeprom-11.0_p1 @@ -5,11 +5,11 @@ DESCRIPTION=Updater for Raspberry Pi 4 bootloader and the VL805 USB controller EAPI=7 HOMEPAGE=https://github.com/raspberrypi/rpi-eeprom/ IUSE=python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~arm ~arm64 +KEYWORDS=~arm arm64 LICENSE=BSD rpi-eeprom RDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] sys-apps/flashrom || ( >=media-libs/raspberrypi-userland-0_pre20201022 >=media-libs/raspberrypi-userland-bin-1.20201022 ) REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=https://archive.raspberrypi.org/debian/pool/main/r/rpi-eeprom/rpi-eeprom_11.0-1.debian.tar.xz https://archive.raspberrypi.org/debian/pool/main/r/rpi-eeprom/rpi-eeprom_11.0.orig.tar.gz _eclasses_=multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=778318ec9a5673ebde9ad45e1da393c0 +_md5_=f3f4e89bea827502e1be39dcf9ac62a2 diff --git a/metadata/md5-cache/dev-games/Manifest.gz b/metadata/md5-cache/dev-games/Manifest.gz index 9a1c1fec63c9..f524fc0fbb73 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/simgear-2020.1.2 b/metadata/md5-cache/dev-games/simgear-2020.3.6 similarity index 92% rename from metadata/md5-cache/dev-games/simgear-2020.1.2 rename to metadata/md5-cache/dev-games/simgear-2020.3.6 index 7059411d5937..7bf86692aae4 100644 --- a/metadata/md5-cache/dev-games/simgear-2020.1.2 +++ b/metadata/md5-cache/dev-games/simgear-2020.3.6 @@ -10,6 +10,6 @@ LICENSE=GPL-2 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 -SRC_URI=mirror://sourceforge/flightgear/simgear-2020.1.2.tar.bz2 +SRC_URI=mirror://sourceforge/flightgear/simgear-2020.3.6.tar.bz2 _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=059b93c5d04866158bc0a8270ff2d018 +_md5_=521cae22f501733a59a6cffe17490d49 diff --git a/metadata/md5-cache/dev-games/simgear-9999 b/metadata/md5-cache/dev-games/simgear-9999 index df2c21d12fc8..b3957497fa2b 100644 --- a/metadata/md5-cache/dev-games/simgear-9999 +++ b/metadata/md5-cache/dev-games/simgear-9999 @@ -11,4 +11,4 @@ RDEPEND=dev-libs/expat dev-games/openscenegraph media-libs/openal net-misc/curl RESTRICT=!test? ( test ) SLOT=0 _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6179819ba2e96321209c3d7462772641 +_md5_=708625d79825df1618e77f92f3b14347 diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index f14c2cf55cd5..670646e00ca0 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/perl-5.32.1 b/metadata/md5-cache/dev-lang/perl-5.32.1 new file mode 100644 index 000000000000..19df3c392e81 --- /dev/null +++ b/metadata/md5-cache/dev-lang/perl-5.32.1 @@ -0,0 +1,15 @@ +BDEPEND=berkdb? ( sys-libs/db:= ) gdbm? ( >=sys-libs/gdbm-1.8.3:= ) app-arch/bzip2 sys-libs/zlib virtual/libcrypt:= +DEFINED_PHASES=configure install postinst postrm preinst prepare setup test +DEPEND=berkdb? ( sys-libs/db:= ) gdbm? ( >=sys-libs/gdbm-1.8.3:= ) app-arch/bzip2 sys-libs/zlib virtual/libcrypt:= +DESCRIPTION=Larry Wall's Practical Extraction and Report Language +EAPI=7 +HOMEPAGE=https://www.perl.org/ +IUSE=berkdb debug doc gdbm ithreads minimal +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=|| ( Artistic GPL-1+ ) +PDEPEND=!minimal? ( >=app-admin/perl-cleaner-2.5 >=virtual/perl-File-Temp-0.230.400-r2 >=virtual/perl-Data-Dumper-2.154.0 virtual/perl-Test-Harness ) +RDEPEND=berkdb? ( sys-libs/db:= ) gdbm? ( >=sys-libs/gdbm-1.8.3:= ) app-arch/bzip2 sys-libs/zlib virtual/libcrypt:= +SLOT=0/5.32 +SRC_URI=mirror://cpan/src/5.0/perl-5.32.1.tar.xz mirror://cpan/authors/id/X/XS/XSAWYERX/perl-5.32.1.tar.xz https://github.com/gentoo-perl/perl-patchset/releases/download/perl-5.32.0-patches-1/perl-5.32.0-patches-1.tar.xz https://dev.gentoo.org/~kentnl/distfiles/perl-5.32.0-patches-1.tar.xz https://github.com/arsv/perl-cross/releases/download/1.3.4/perl-cross-1.3.4.tar.gz +_eclasses_=alternatives 157585d50231966c07e6cf816e7d9c5b edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=d31b0dcbbd2ee833550ce0a86403aa84 diff --git a/metadata/md5-cache/dev-lang/php-7.3.26 b/metadata/md5-cache/dev-lang/php-7.3.26 index 5c35d54641e3..58d74c6a1eab 100644 --- a/metadata/md5-cache/dev-lang/php-7.3.26 +++ b/metadata/md5-cache/dev-lang/php-7.3.26 @@ -5,7 +5,7 @@ DESCRIPTION=The PHP language runtime engine EAPI=7 HOMEPAGE=https://www.php.net/ IUSE=embed +cli cgi fpm apache2 phpdbg threads acl argon2 bcmath berkdb bzip2 calendar cdb cjk coverage +ctype curl debug enchant exif +fileinfo +filter firebird +flatfile ftp gd gdbm gmp +hash +iconv imap inifile intl iodbc ipv6 +json kerberos ldap ldap-sasl libedit libressl lmdb mhash mssql mysql mysqli nls oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm readline recode selinux +session session-mm sharedmem +simplexml snmp soap sockets sodium spell sqlite ssl sysvipc systemd test tidy +tokenizer tokyocabinet truetype unicode wddx webp +xml xmlreader xmlwriter xmlrpc xpm xslt zip zip-encryption zlib -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos LICENSE=PHP-3.01 BSD Zend-2.0 bcmath? ( LGPL-2.1+ ) fpm? ( BSD-2 ) gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 ) RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre2-10.30[unicode] fpm? ( acl? ( sys-apps/acl ) ) apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) argon2? ( app-crypt/argon2:= ) berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:5.1 sys-libs/db:4.8 sys-libs/db:4.7 sys-libs/db:4.6 sys-libs/db:4.5 ) ) bzip2? ( app-arch/bzip2:0= ) cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) coverage? ( dev-util/lcov ) curl? ( >=net-misc/curl-7.10.5 ) enchant? ( =virtual/jpeg-0-r3:0 media-libs/libpng:0= >=sys-libs/zlib-1.2.0.4 ) gdbm? ( >=sys-libs/gdbm-1.8.0:0= ) gmp? ( dev-libs/gmp:0= ) iconv? ( virtual/libiconv ) imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] ) intl? ( dev-libs/icu:= ) iodbc? ( dev-db/libiodbc ) kerberos? ( virtual/krb5 ) ldap? ( >=net-nds/openldap-1.2.11 ) ldap-sasl? ( dev-libs/cyrus-sasl >=net-nds/openldap-1.2.11 ) libedit? ( dev-libs/libedit ) lmdb? ( dev-db/lmdb:= ) mssql? ( dev-db/freetds[mssql] ) nls? ( sys-devel/gettext ) oci8-instant-client? ( dev-db/oracle-instantclient-basic ) odbc? ( >=dev-db/unixODBC-1.8.13 ) postgres? ( dev-db/postgresql:* ) qdbm? ( dev-db/qdbm ) readline? ( sys-libs/readline:0= ) recode? ( app-text/recode:0= ) session-mm? ( dev-libs/mm ) simplexml? ( >=dev-libs/libxml2-2.6.8 ) snmp? ( >=net-analyzer/net-snmp-5.2 ) soap? ( >=dev-libs/libxml2-2.6.8 ) sodium? ( dev-libs/libsodium:= ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.1:0= ) libressl? ( dev-libs/libressl:0= ) ) tidy? ( || ( app-text/tidy-html5 app-text/htmltidy ) ) tokyocabinet? ( dev-db/tokyocabinet ) truetype? ( =media-libs/freetype-2* ) unicode? ( dev-libs/oniguruma:= ) wddx? ( >=dev-libs/libxml2-2.6.8 ) webp? ( media-libs/libwebp:0= ) xml? ( >=dev-libs/libxml2-2.6.8 ) xmlrpc? ( >=dev-libs/libxml2-2.6.8 virtual/libiconv ) xmlreader? ( >=dev-libs/libxml2-2.6.8 ) xmlwriter? ( >=dev-libs/libxml2-2.6.8 ) xpm? ( x11-libs/libXpm ) xslt? ( dev-libs/libxslt >=dev-libs/libxml2-2.6.8 ) zip? ( >=sys-libs/zlib-1.2.0.4:0= ) zip-encryption? ( >=dev-libs/libzip-1.2.0:= ) zlib? ( >=sys-libs/zlib-1.2.0.4:0= ) virtual/mta fpm? ( selinux? ( sec-policy/selinux-phpfpm ) systemd? ( sys-apps/systemd ) ) REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) qdbm? ( !gdbm ) readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) zip-encryption? ( zip ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=7.3 SRC_URI=https://www.php.net/distributions/php-7.3.26.tar.xz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=4ac5a4af859aa50f277cc2a219a08309 +_md5_=6a0a4a2df6cc560bf1269106495284a5 diff --git a/metadata/md5-cache/dev-lang/php-7.4.14 b/metadata/md5-cache/dev-lang/php-7.4.14 index 6bb1eb12d886..6ea0b0531299 100644 --- a/metadata/md5-cache/dev-lang/php-7.4.14 +++ b/metadata/md5-cache/dev-lang/php-7.4.14 @@ -5,7 +5,7 @@ DESCRIPTION=The PHP language runtime engine EAPI=7 HOMEPAGE=https://www.php.net/ IUSE=embed +cli cgi fpm apache2 phpdbg threads acl argon2 bcmath berkdb bzip2 calendar cdb cjk coverage +ctype curl debug enchant exif ffi +fileinfo +filter firebird +flatfile ftp gd gdbm gmp +iconv imap inifile intl iodbc ipv6 +json kerberos ldap ldap-sasl libedit libressl lmdb mhash mssql mysql mysqli nls oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm readline selinux +session session-mm sharedmem +simplexml snmp soap sockets sodium spell sqlite ssl sysvipc systemd test tidy +tokenizer tokyocabinet truetype unicode webp +xml xmlreader xmlwriter xmlrpc xpm xslt zip zlib -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos LICENSE=PHP-3.01 BSD Zend-2.0 bcmath? ( LGPL-2.1+ ) fpm? ( BSD-2 ) gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 ) RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre2-10.30[unicode] fpm? ( acl? ( sys-apps/acl ) ) apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) argon2? ( app-crypt/argon2:= ) berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:5.1 sys-libs/db:4.8 sys-libs/db:4.7 sys-libs/db:4.6 sys-libs/db:4.5 ) ) bzip2? ( app-arch/bzip2:0= ) cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) coverage? ( dev-util/lcov ) curl? ( >=net-misc/curl-7.10.5 ) enchant? ( =dev-libs/libffi-3.0.11 ) firebird? ( dev-db/firebird ) gd? ( >=virtual/jpeg-0-r3:0 media-libs/libpng:0= ) gdbm? ( >=sys-libs/gdbm-1.8.0:0= ) gmp? ( dev-libs/gmp:0= ) iconv? ( virtual/libiconv ) imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] ) intl? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( >=net-nds/openldap-1.2.11 ) ldap-sasl? ( dev-libs/cyrus-sasl ) libedit? ( dev-libs/libedit ) lmdb? ( dev-db/lmdb:= ) mssql? ( dev-db/freetds[mssql] ) nls? ( sys-devel/gettext ) oci8-instant-client? ( dev-db/oracle-instantclient-basic ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( >=dev-db/unixODBC-1.8.13 ) ) postgres? ( dev-db/postgresql:* ) qdbm? ( dev-db/qdbm ) readline? ( sys-libs/readline:0= ) session-mm? ( dev-libs/mm ) snmp? ( >=net-analyzer/net-snmp-5.2 ) sodium? ( dev-libs/libsodium:= ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.1:0= ) libressl? ( dev-libs/libressl:0= ) ) tidy? ( || ( app-text/tidy-html5 app-text/htmltidy ) ) tokyocabinet? ( dev-db/tokyocabinet ) truetype? ( =media-libs/freetype-2* ) unicode? ( dev-libs/oniguruma:= ) webp? ( media-libs/libwebp:0= ) xml? ( >=dev-libs/libxml2-2.7.6 ) xpm? ( x11-libs/libXpm ) xslt? ( dev-libs/libxslt ) zip? ( >=dev-libs/libzip-1.2.0:= ) zlib? ( >=sys-libs/zlib-1.2.0.4:0= ) virtual/mta fpm? ( selinux? ( sec-policy/selinux-phpfpm ) systemd? ( sys-apps/systemd ) ) REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) !cli? ( ?? ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) xmlrpc? ( xml iconv ) xmlreader? ( xml ) xmlwriter? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) qdbm? ( !gdbm ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) firebird? ( pdo ) mssql? ( pdo ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=7.4 SRC_URI=https://www.php.net/distributions/php-7.4.14.tar.xz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=5a28f8dbdce41b1d9135863e9474c77e +_md5_=aeef76294422587608f024851b250f3f diff --git a/metadata/md5-cache/dev-lang/spidermonkey-78.7.0 b/metadata/md5-cache/dev-lang/spidermonkey-78.7.0 new file mode 100644 index 000000000000..eec80a9f4be2 --- /dev/null +++ b/metadata/md5-cache/dev-lang/spidermonkey-78.7.0 @@ -0,0 +1,15 @@ +BDEPEND=|| ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) >=virtual/rust-1.41.0 virtual/pkgconfig || ( ( sys-devel/llvm:11 clang? ( sys-devel/clang:11 lto? ( =sys-devel/lld-11* ) ) ) ( sys-devel/llvm:10 clang? ( sys-devel/clang:10 lto? ( =sys-devel/lld-10* ) ) ) ( sys-devel/llvm:9 clang? ( sys-devel/clang:9 lto? ( =sys-devel/lld-9* ) ) ) ) lto? ( !clang? ( sys-devel/binutils[gold] ) ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install prepare pretend setup test +DEPEND=>=dev-libs/icu-67.1:= >=dev-libs/nspr-4.25 sys-libs/readline:0= >=sys-libs/zlib-1.2.3 test? ( || ( ( dev-lang/python:3.9 dev-python/six[python_targets_python3_9(-),-python_single_target_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/six[python_targets_python3_8(-),-python_single_target_python3_8(-)] ) ( dev-lang/python:3.7 dev-python/six[python_targets_python3_7(-),-python_single_target_python3_7(-)] ) ) ) !!sys-devel/llvm:0 +DESCRIPTION=SpiderMonkey is Mozilla's JavaScript engine written in C and C++ +EAPI=7 +HOMEPAGE=https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey +IUSE=clang cpu_flags_arm_neon debug +jit lto test +KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc64 ~s390 ~x86 +LICENSE=MPL-2.0 +RDEPEND=>=dev-libs/icu-67.1:= >=dev-libs/nspr-4.25 sys-libs/readline:0= >=sys-libs/zlib-1.2.3 +RESTRICT=!test? ( test ) +SLOT=78 +SRC_URI=https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/source/firefox-78.7.0esr.source.tar.xz -> firefox-78.7.0esr.source.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-78esr-patches-07.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-78esr-patches-07.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-78esr-patches-07.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/spidermonkey-78-patches-03.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/spidermonkey-78-patches-03.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/spidermonkey-78-patches-03.tar.xz +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=9c87e359e6fc5c1bcbeecbc7c390859b diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index 2923fa537a4b..2e725d078014 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.0 b/metadata/md5-cache/dev-libs/aml-0.2.0 new file mode 100644 index 000000000000..245e00a8afdb --- /dev/null +++ b/metadata/md5-cache/dev-libs/aml-0.2.0 @@ -0,0 +1,12 @@ +BDEPEND=>=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install test +DESCRIPTION=event timer executor loop +EAPI=7 +HOMEPAGE=https://github.com/any1/aml/ +IUSE=examples +KEYWORDS=~amd64 ~x86 +LICENSE=ISC +SLOT=0 +SRC_URI=https://github.com/any1/aml/archive/v0.2.0.tar.gz -> aml-0.2.0.tar.gz +_eclasses_=meson fdaf2a7b9376934c1c7ddbd32114defb multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=028a91eaff859d67422be3df31ae1784 diff --git a/metadata/md5-cache/dev-libs/aml-9999 b/metadata/md5-cache/dev-libs/aml-9999 new file mode 100644 index 000000000000..fd2a2d94678b --- /dev/null +++ b/metadata/md5-cache/dev-libs/aml-9999 @@ -0,0 +1,11 @@ +BDEPEND=>=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile configure install test unpack +DESCRIPTION=event timer executor loop +EAPI=7 +HOMEPAGE=https://github.com/any1/aml/ +IUSE=examples +LICENSE=ISC +PROPERTIES=live +SLOT=0 +_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 meson fdaf2a7b9376934c1c7ddbd32114defb multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=028a91eaff859d67422be3df31ae1784 diff --git a/metadata/md5-cache/dev-libs/boost-1.74.0-r2 b/metadata/md5-cache/dev-libs/boost-1.74.0-r2 index 778f67876271..daf6bebd5656 100644 --- a/metadata/md5-cache/dev-libs/boost-1.74.0-r2 +++ b/metadata/md5-cache/dev-libs/boost-1.74.0-r2 @@ -5,7 +5,7 @@ DESCRIPTION=Boost Libraries for C++ EAPI=7 HOMEPAGE=https://www.boost.org/ IUSE=bzip2 context debug doc icu lzma +nls mpi numpy python static-libs +threads tools zlib zstd python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -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 ~x86-solaris ~x86-winnt +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 ~x86-solaris ~x86-winnt LICENSE=Boost-1.0 RDEPEND=!app-admin/eselect-boost !dev-libs/boost-numpy !=dev-libs/icu-3.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !icu? ( 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(-)?] ) lzma? ( app-arch/xz-utils:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mpi? ( >=virtual/mpi-2.0-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(-)?,cxx,threads] ) python? ( python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] numpy? ( python_targets_python3_7? ( dev-python/numpy[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( dev-python/numpy[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( dev-python/numpy[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) ) ) 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(-)?] ) zstd? ( app-arch/zstd:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) REQUIRED_USE=mpi? ( threads ) python? ( || ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/1.74.0 SRC_URI=https://dl.bintray.com/boostorg/release/1.74.0/source/boost_1_74_0.tar.bz2 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=ab117a8fe89e88d608d88310d82399e4 +_md5_=9990e1750d6f8c008eca5c65a3531aac diff --git a/metadata/md5-cache/dev-libs/libofx-0.10.1 b/metadata/md5-cache/dev-libs/libofx-0.10.1 new file mode 100644 index 000000000000..5bb8829a8a66 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libofx-0.10.1 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/gengetopt sys-apps/help2man virtual/pkgconfig test? ( app-crypt/gnupg ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install prepare +DEPEND=>app-text/opensp-1.5 >=dev-cpp/libxmlpp-2.40.1:2.6 >=net-misc/curl-7.9.7 virtual/libiconv +DESCRIPTION=Library to support the Open Financial eXchange XML format +EAPI=7 +HOMEPAGE=https://github.com/libofx/libofx +IUSE=test +KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=>app-text/opensp-1.5 >=dev-cpp/libxmlpp-2.40.1:2.6 >=net-misc/curl-7.9.7 virtual/libiconv +RESTRICT=!test? ( test ) +SLOT=0/10 +SRC_URI=https://github.com/libofx/libofx/archive/0.10.1.tar.gz -> libofx-0.10.1.tar.gz +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=0d41c896f5b0c0c4ee6318a5f6175601 diff --git a/metadata/md5-cache/dev-libs/libtomcrypt-1.18.2-r2 b/metadata/md5-cache/dev-libs/libtomcrypt-1.18.2-r2 index eb45d7eedfab..b859d934b9e7 100644 --- a/metadata/md5-cache/dev-libs/libtomcrypt-1.18.2-r2 +++ b/metadata/md5-cache/dev-libs/libtomcrypt-1.18.2-r2 @@ -5,10 +5,10 @@ DESCRIPTION=LibTomCrypt is a comprehensive, modular and portable cryptographic t EAPI=7 HOMEPAGE=https://www.libtom.net/LibTomCrypt/ https://github.com/libtom/libtomcrypt IUSE=+gmp +libtommath tomsfastmath -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86 LICENSE=|| ( WTFPL-2 public-domain ) RDEPEND=gmp? ( dev-libs/gmp:= ) libtommath? ( dev-libs/libtommath:= ) tomsfastmath? ( dev-libs/tomsfastmath:= ) SLOT=0/1 SRC_URI=https://github.com/libtom/libtomcrypt/releases/download/v1.18.2/crypt-1.18.2.tar.xz -> libtomcrypt-1.18.2.tar.xz _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=b92e8b0cb377e3bed3bf0c07dbc2c1a9 +_md5_=cb74a35f93764a33922f3992b3894373 diff --git a/metadata/md5-cache/dev-libs/log4cplus-1.2.0 b/metadata/md5-cache/dev-libs/log4cplus-1.2.0 index b7dfe2c4e4ae..39d0a5810e7d 100644 --- a/metadata/md5-cache/dev-libs/log4cplus-1.2.0 +++ b/metadata/md5-cache/dev-libs/log4cplus-1.2.0 @@ -4,11 +4,11 @@ DESCRIPTION=C++ port of the Log for Java (log4j) logging library EAPI=6 HOMEPAGE=http://log4cplus.sourceforge.net/ https://github.com/log4cplus/log4cplus IUSE=iconv qt5 threads working-locale working-c-locale -KEYWORDS=amd64 ~arm64 ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=|| ( Apache-2.0 BSD-2 ) RDEPEND=iconv? ( virtual/libiconv ) qt5? ( dev-qt/qtcore:5 ) REQUIRED_USE=?? ( iconv working-locale working-c-locale ) SLOT=0/1.2-5 SRC_URI=mirror://sourceforge/project/log4cplus/log4cplus-stable/1.2.0/log4cplus-1.2.0.tar.bz2 _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=7dabbc742b748303df0add218d475175 +_md5_=ab8da484d8db3aadeb9c0750329b9ecf diff --git a/metadata/md5-cache/dev-libs/serd-0.30.10 b/metadata/md5-cache/dev-libs/serd-0.30.10 new file mode 100644 index 000000000000..a347c4827774 --- /dev/null +++ b/metadata/md5-cache/dev-libs/serd-0.30.10 @@ -0,0 +1,14 @@ +BDEPEND=doc? ( app-doc/doxygen ) +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=|| ( dev-lang/python:3.9[threads(+)] dev-lang/python:3.8[threads(+)] dev-lang/python:3.7[threads(+)] ) +DESCRIPTION=Library for RDF syntax which supports reading and writing Turtle and NTriples +EAPI=7 +HOMEPAGE=http://drobilla.net/software/serd/ +IUSE=doc 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=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=ISC +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=http://download.drobilla.net/serd-0.30.10.tar.bz2 +_eclasses_=multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 waf-utils 0a6e492cdcbd52b1304cfcd9eba5abc6 +_md5_=b186913eb31f1f9e088c18b95400319c diff --git a/metadata/md5-cache/dev-libs/tomsfastmath-0.13.1-r1 b/metadata/md5-cache/dev-libs/tomsfastmath-0.13.1-r1 index eacf38a12417..03bffd9aa963 100644 --- a/metadata/md5-cache/dev-libs/tomsfastmath-0.13.1-r1 +++ b/metadata/md5-cache/dev-libs/tomsfastmath-0.13.1-r1 @@ -3,9 +3,9 @@ DEFINED_PHASES=compile install test DESCRIPTION=Fast public domain large integer arithmetic library EAPI=7 HOMEPAGE=https://www.libtom.net/TomsFastMath/ https://github.com/libtom/tomsfastmath -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86 LICENSE=Unlicense SLOT=0/1 SRC_URI=https://github.com/libtom/tomsfastmath/releases/download/v0.13.1/tfm-0.13.1.tar.xz _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=00f5ebf153d360667250a4ee66c4e536 +_md5_=962a4202a6d70c050ba39c04aff6d882 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 f09244673090..36a50078b635 100644 --- a/metadata/md5-cache/dev-libs/unittest++-2.0.0-r2 +++ b/metadata/md5-cache/dev-libs/unittest++-2.0.0-r2 @@ -4,10 +4,10 @@ DESCRIPTION=A lightweight unit testing framework for C++ EAPI=7 HOMEPAGE=https://unittest-cpp.github.io/ IUSE=test -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 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 ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9bc4d693812006e4ffabcff95c19c007 +_md5_=19446e6325dc7b9b5f9fc4f3cff8d5f8 diff --git a/metadata/md5-cache/dev-lua/Manifest.gz b/metadata/md5-cache/dev-lua/Manifest.gz index bb5968a583d3..e33148401bd2 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/ldoc-1.4.6 b/metadata/md5-cache/dev-lua/ldoc-1.4.6 deleted file mode 100644 index 1ea2f9bbdcb0..000000000000 --- a/metadata/md5-cache/dev-lua/ldoc-1.4.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=- -DEPEND=dev-lua/penlight -DESCRIPTION=A LuaDoc-compatible documentation generation system -EAPI=6 -HOMEPAGE=https://stevedonovan.github.io/ldoc/ -KEYWORDS=amd64 arm ppc ppc64 x86 -LICENSE=MIT -RDEPEND=dev-lua/penlight -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/stevedonovan/LDoc/archive/1.4.6.tar.gz -> ldoc-1.4.6.tar.gz -_md5_=3a1e7aa924cb9ab791f244fe6b3cf273 diff --git a/metadata/md5-cache/dev-lua/luajson-1.3.3-r1 b/metadata/md5-cache/dev-lua/luajson-1.3.3-r1 deleted file mode 100644 index bc7e6193ae86..000000000000 --- a/metadata/md5-cache/dev-lua/luajson-1.3.3-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install -DEPEND=test? ( dev-lua/luafilesystem ) -DESCRIPTION=JSON Parser/Constructor for Lua -EAPI=5 -HOMEPAGE=https://www.eharning.us/wiki/luajson/ -IUSE=test -KEYWORDS=amd64 ~arm ~arm64 ~hppa ~mips ppc ppc64 sparc x86 -LICENSE=MIT -RDEPEND=|| ( >=dev-lang/lua-5.1:0 dev-lang/luajit:2 ) dev-lua/lpeg -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/harningt/luajson/archive/1.3.3.tar.gz -> luajson-1.3.3.tar.gz -_md5_=67c6b51e0f42f4ee790278771f2fff4a diff --git a/metadata/md5-cache/dev-lua/luajson-1.3.4 b/metadata/md5-cache/dev-lua/luajson-1.3.4 deleted file mode 100644 index 597862d0f78d..000000000000 --- a/metadata/md5-cache/dev-lua/luajson-1.3.4 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=virtual/pkgconfig test? ( dev-lua/luafilesystem ) -DEFINED_PHASES=compile install -DESCRIPTION=JSON Parser/Constructor for Lua -EAPI=7 -HOMEPAGE=https://www.eharning.us/wiki/luajson/ -IUSE=luajit test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 -LICENSE=MIT -RDEPEND=dev-lua/lpeg luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:0 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/harningt/luajson/archive/1.3.4.tar.gz -> luajson-1.3.4.tar.gz -_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=d87e8779ae2251dfc246dfe078a4ec9e diff --git a/metadata/md5-cache/dev-lua/luv-1.32.0.0 b/metadata/md5-cache/dev-lua/luv-1.32.0.0 deleted file mode 100644 index 33320a1d3ed4..000000000000 --- a/metadata/md5-cache/dev-lua/luv-1.32.0.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-libs/libuv-1.32.0:= luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:0 ) -DESCRIPTION=Bare libuv bindings for lua -EAPI=7 -HOMEPAGE=https://github.com/luvit/luv -IUSE=luajit test -KEYWORDS=amd64 ~arm ~arm64 x86 -LICENSE=Apache-2.0 MIT -RDEPEND=>=dev-libs/libuv-1.32.0:= luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:0 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/luvit/luv/archive/1.32.0-0.tar.gz -> luv-1.32.0.0.tar.gz https://github.com/keplerproject/lua-compat-5.3/archive/v0.7.tar.gz -> luv-lua-compat-0.7.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 45b49db67094fdafbb6a16a2299e894b wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=0d2079fb1ff5099ed702fc9e1da0cffc diff --git a/metadata/md5-cache/dev-lua/messagepack-0.5.2_p20201025 b/metadata/md5-cache/dev-lua/messagepack-0.5.2_p20201025 deleted file mode 100644 index 471062831c74..000000000000 --- a/metadata/md5-cache/dev-lua/messagepack-0.5.2_p20201025 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=virtual/pkgconfig test? ( luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:0 ) ) -DEFINED_PHASES=compile install -DESCRIPTION=A pure Lua implementation of the MessagePack serialization format -EAPI=7 -HOMEPAGE=https://fperrad.frama.io/lua-MessagePack -IUSE=luajit test -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:0 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://framagit.org/fperrad/lua-MessagePack/-/archive/18f316b3f62c02bf2b7a3096701780f78a4d2c67/lua-MessagePack-18f316b3f62c02bf2b7a3096701780f78a4d2c67.tar.gz -> messagepack-0.5.2_p20201025.tar.gz -_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=3bde9c64f0559e1deb37cbc4300d101e diff --git a/metadata/md5-cache/dev-lua/mpack-1.0.4 b/metadata/md5-cache/dev-lua/mpack-1.0.4 deleted file mode 100644 index 7cdb1d3312a7..000000000000 --- a/metadata/md5-cache/dev-lua/mpack-1.0.4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install test -DEPEND=!luajit? ( >=dev-lang/lua-5.1:0= ) luajit? ( dev-lang/luajit:2= ) virtual/pkgconfig test? ( dev-lua/busted ) -DESCRIPTION=Lua bindings for libmpack -EAPI=6 -HOMEPAGE=https://github.com/libmpack/libmpack/ -IUSE=luajit test -KEYWORDS=amd64 ~arm ~arm64 x86 -LICENSE=MIT -RDEPEND=!luajit? ( >=dev-lang/lua-5.1:0= ) luajit? ( dev-lang/luajit:2= ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/libmpack/libmpack/archive/1.0.4.tar.gz -> mpack-1.0.4.tar.gz -_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=aef7ea48236a384c79de494d35305b8f diff --git a/metadata/md5-cache/dev-lua/mpack-1.0.8-r1 b/metadata/md5-cache/dev-lua/mpack-1.0.8-r1 deleted file mode 100644 index 723cf890df48..000000000000 --- a/metadata/md5-cache/dev-lua/mpack-1.0.8-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig test? ( dev-lua/busted dev-libs/libmpack luajit? ( dev-lang/luajit:2= ) !luajit? ( >=dev-lang/lua-5.1:0= ) ) -DEFINED_PHASES=compile install test -DEPEND=dev-libs/libmpack luajit? ( dev-lang/luajit:2= ) !luajit? ( >=dev-lang/lua-5.1:0= ) -DESCRIPTION=Lua bindings for libmpack -EAPI=7 -HOMEPAGE=https://github.com/libmpack/libmpack/ -IUSE=luajit test -KEYWORDS=~amd64 ~arm ~arm64 ~x86 -LICENSE=MIT -RDEPEND=dev-libs/libmpack luajit? ( dev-lang/luajit:2= ) !luajit? ( >=dev-lang/lua-5.1:0= ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/libmpack/libmpack-lua/archive/1.0.8.tar.gz -> mpack-1.0.8.tar.gz -_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=8b82dd41982e94b521fc355e818ecf70 diff --git a/metadata/md5-cache/dev-lua/toluapp-1.0.93_p20190513-r1 b/metadata/md5-cache/dev-lua/toluapp-1.0.93_p20190513-r1 deleted file mode 100644 index a1d9384bb8b1..000000000000 --- a/metadata/md5-cache/dev-lua/toluapp-1.0.93_p20190513-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-lang/lua-5.1*:0=[deprecated] -DESCRIPTION=A tool to integrate C/C++ code with Lua -EAPI=7 -HOMEPAGE=https://github.com/LuaDist/toluapp -KEYWORDS=~alpha amd64 ppc ppc64 sparc x86 -LICENSE=MIT -RDEPEND==dev-lang/lua-5.1*:0=[deprecated] -SLOT=0 -SRC_URI=https://github.com/LuaDist/toluapp/archive/b34075b76835b778bb6b2ce0aa224afd9d182887.tar.gz -> toluapp-1.0.93_p20190513.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c1670a0f8d8aa957b5918ffb4eb09511 diff --git a/metadata/md5-cache/dev-lua/toluapp-1.0.93_p20190513-r2 b/metadata/md5-cache/dev-lua/toluapp-1.0.93_p20190513-r2 deleted file mode 100644 index 83efd9c5721f..000000000000 --- a/metadata/md5-cache/dev-lua/toluapp-1.0.93_p20190513-r2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-lang/lua:0= -DESCRIPTION=A tool to integrate C/C++ code with Lua -EAPI=7 -HOMEPAGE=https://github.com/LuaDist/toluapp -KEYWORDS=~alpha amd64 ppc ppc64 sparc x86 -LICENSE=MIT -RDEPEND=dev-lang/lua:0= -SLOT=0 -SRC_URI=https://github.com/LuaDist/toluapp/archive/b34075b76835b778bb6b2ce0aa224afd9d182887.tar.gz -> toluapp-1.0.93_p20190513.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=aef43759496aa95cfcb0b7d782749297 diff --git a/metadata/md5-cache/dev-ml/Manifest.gz b/metadata/md5-cache/dev-ml/Manifest.gz index 7551153b6ec5..9c81e923296f 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/alcotest-0.8.2 b/metadata/md5-cache/dev-ml/alcotest-0.8.2 index 99c51d054b5f..5d1f63a4aadc 100644 --- a/metadata/md5-cache/dev-ml/alcotest-0.8.2 +++ b/metadata/md5-cache/dev-ml/alcotest-0.8.2 @@ -10,5 +10,5 @@ RDEPEND=dev-ml/fmt:= dev-ml/astring:= dev-ml/cmdliner:= dev-ml/result:= >=dev-la RESTRICT=!test? ( test ) SLOT=0/0.8.2 SRC_URI=https://github.com/mirage/alcotest/archive/0.8.2.tar.gz -> alcotest-0.8.2.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=e88ebb65444a1e01d8632ee831408ba1 diff --git a/metadata/md5-cache/dev-ml/astring-0.8.3 b/metadata/md5-cache/dev-ml/astring-0.8.3 index a44030bb2d41..6ab3cbb52c57 100644 --- a/metadata/md5-cache/dev-ml/astring-0.8.3 +++ b/metadata/md5-cache/dev-ml/astring-0.8.3 @@ -8,5 +8,5 @@ LICENSE=ISC RDEPEND=dev-lang/ocaml:=[ocamlopt] >=dev-lang/ocaml-4:= SLOT=0/0.8.3 SRC_URI=https://erratique.ch/software/astring/releases/astring-0.8.3.tbz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=394c66729d8398c752a2d767955615fb diff --git a/metadata/md5-cache/dev-ml/astring-0.8.5 b/metadata/md5-cache/dev-ml/astring-0.8.5 index ec00a1ab4cfd..b0c5c4928925 100644 --- a/metadata/md5-cache/dev-ml/astring-0.8.5 +++ b/metadata/md5-cache/dev-ml/astring-0.8.5 @@ -9,5 +9,5 @@ LICENSE=ISC RDEPEND=>=dev-lang/ocaml-4.05.0:= >=dev-lang/ocaml-4:= SLOT=0/0.8.5 SRC_URI=https://erratique.ch/software/astring/releases/astring-0.8.5.tbz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=cfa3bf45ae4f6a023f74bb6144d81b2c diff --git a/metadata/md5-cache/dev-ml/async-0.9.0 b/metadata/md5-cache/dev-ml/async-0.9.0 index 6fc33a2adb61..102d0ca210b7 100644 --- a/metadata/md5-cache/dev-ml/async-0.9.0 +++ b/metadata/md5-cache/dev-ml/async-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/async_extra:= dev-ml/async_kernel:= dev-ml/async_unix:= dev-ml/core:= dev-ml/ppx_driver:= dev-ml/ppx_jane:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/async/archive/v0.9.0.tar.gz -> async-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=a986994d3355154bf98c7ebfba8f16ed diff --git a/metadata/md5-cache/dev-ml/batteries-2.7.0 b/metadata/md5-cache/dev-ml/batteries-2.7.0 index 2c058f4e1944..9a65a035a1f6 100644 --- a/metadata/md5-cache/dev-ml/batteries-2.7.0 +++ b/metadata/md5-cache/dev-ml/batteries-2.7.0 @@ -10,5 +10,5 @@ RDEPEND=dev-ml/camomile:= >=dev-lang/ocaml-3.12:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/2.7.0 SRC_URI=https://github.com/ocaml-batteries-team/batteries-included/archive/v2.7.0.tar.gz -> batteries-2.7.0.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=951448ab2ff88af375f944ee07a22905 diff --git a/metadata/md5-cache/dev-ml/cairo-ocaml-1.2.0-r1 b/metadata/md5-cache/dev-ml/cairo-ocaml-1.2.0-r1 index b1ae1421b6f5..af8f4458bfa6 100644 --- a/metadata/md5-cache/dev-ml/cairo-ocaml-1.2.0-r1 +++ b/metadata/md5-cache/dev-ml/cairo-ocaml-1.2.0-r1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/ocaml:= x11-libs/cairo gtk? ( dev-ml/lablgtk:2= ) pango? ( x11-libs/pango ) SLOT=0/1.2.0 SRC_URI=https://cgit.freedesktop.org/cairo-ocaml/snapshot/cairo-ocaml-1.2.0.tar.bz2 -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib df74899b0837d14d75b7e6bb42422b14 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib 9674d5e3d151793fecab20e2bb73e6c6 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=ec999f68294fcd1f84c8923368840afc diff --git a/metadata/md5-cache/dev-ml/calendar-2.04 b/metadata/md5-cache/dev-ml/calendar-2.04 index 27612b1eb7b5..62c4d739e638 100644 --- a/metadata/md5-cache/dev-ml/calendar-2.04 +++ b/metadata/md5-cache/dev-ml/calendar-2.04 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt] SLOT=0/2.04 SRC_URI=http://forge.ocamlcore.org/frs/download.php/1481/calendar-2.04.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=90f560df3cde1413499b2a5ec1fa6ea9 diff --git a/metadata/md5-cache/dev-ml/camlbz2-0.6.0-r1 b/metadata/md5-cache/dev-ml/camlbz2-0.6.0-r1 index 33cfe6a2ccc3..e3cd343297e2 100644 --- a/metadata/md5-cache/dev-ml/camlbz2-0.6.0-r1 +++ b/metadata/md5-cache/dev-ml/camlbz2-0.6.0-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=app-arch/bzip2 >=dev-lang/ocaml-3.12:=[ocamlopt] SLOT=0/0.6.0 SRC_URI=http://forge.ocamlcore.org/frs/download.php/72/camlbz2-0.6.0.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=77d8981ef8618173c2fb7726df02d012 diff --git a/metadata/md5-cache/dev-ml/camlbz2-0.7.0 b/metadata/md5-cache/dev-ml/camlbz2-0.7.0 index c2f1519cc1d1..55344cad834d 100644 --- a/metadata/md5-cache/dev-ml/camlbz2-0.7.0 +++ b/metadata/md5-cache/dev-ml/camlbz2-0.7.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=app-arch/bzip2 >=dev-lang/ocaml-3.12:=[ocamlopt] SLOT=0/0.7.0 SRC_URI=https://gitlab.com/irill/camlbz2/-/archive/0.7.0/camlbz2-0.7.0.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib df74899b0837d14d75b7e6bb42422b14 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib 9674d5e3d151793fecab20e2bb73e6c6 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=0d9344c4cfcf4b0e04daa4bd6c08e7d4 diff --git a/metadata/md5-cache/dev-ml/camldbm-1.2 b/metadata/md5-cache/dev-ml/camldbm-1.2 index e60e38a7f1fb..117ed77acd5a 100644 --- a/metadata/md5-cache/dev-ml/camldbm-1.2 +++ b/metadata/md5-cache/dev-ml/camldbm-1.2 @@ -8,4 +8,4 @@ LICENSE=LGPL-2-with-linking-exception RDEPEND=>=sys-libs/gdbm-1.9.1-r2[berkdb] >=dev-lang/ocaml-3.12:=[ocamlopt] SLOT=0/1.2 SRC_URI=https://github.com/ocaml/dbm/archive/camldbm-1.2.tar.gz -_md5_=077c044e5710e735f58a3604170a3322 +_md5_=86245b0d8323146d5c4f12a7e9651121 diff --git a/metadata/md5-cache/dev-ml/camlp5-7.11-r1 b/metadata/md5-cache/dev-ml/camlp5-7.11-r1 index e0d3bd75a27a..9d21d66f57e7 100644 --- a/metadata/md5-cache/dev-ml/camlp5-7.11-r1 +++ b/metadata/md5-cache/dev-ml/camlp5-7.11-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND= camlp5-7.11.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=004bbe5b7f9d521bf18f8ab4ac2bb6ed diff --git a/metadata/md5-cache/dev-ml/camlp5-7.12 b/metadata/md5-cache/dev-ml/camlp5-7.12 index d43311dcd4df..a773f349b01f 100644 --- a/metadata/md5-cache/dev-ml/camlp5-7.12 +++ b/metadata/md5-cache/dev-ml/camlp5-7.12 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/ocaml-3.10:=[ocamlopt?] SLOT=0/7.12 SRC_URI=https://github.com/camlp5/camlp5/archive/rel712.tar.gz -> camlp5-7.12.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf _md5_=16ff8f5223b15d7c96254419dbf36139 diff --git a/metadata/md5-cache/dev-ml/camlp5-7.13 b/metadata/md5-cache/dev-ml/camlp5-7.13 index 8eb8fc7a131e..d22c9a87f411 100644 --- a/metadata/md5-cache/dev-ml/camlp5-7.13 +++ b/metadata/md5-cache/dev-ml/camlp5-7.13 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/ocaml-3.10:=[ocamlopt?] SLOT=0/7.13 SRC_URI=https://github.com/camlp5/camlp5/archive/rel713.tar.gz -> camlp5-7.13.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf _md5_=28ab10a8b30abc4108982ece5dfd8b0b diff --git a/metadata/md5-cache/dev-ml/camlp5-7.14 b/metadata/md5-cache/dev-ml/camlp5-7.14 index f085ba6c8e2c..c857674b31f1 100644 --- a/metadata/md5-cache/dev-ml/camlp5-7.14 +++ b/metadata/md5-cache/dev-ml/camlp5-7.14 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/ocaml-3.10:=[ocamlopt?] SLOT=0/7.14 SRC_URI=https://github.com/camlp5/camlp5/archive/rel714.tar.gz -> camlp5-7.14.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf _md5_=14d638f300fc030f4f3742ff86118d07 diff --git a/metadata/md5-cache/dev-ml/camlp5-8.00 b/metadata/md5-cache/dev-ml/camlp5-8.00 index 946d0e010416..3c89e978a877 100644 --- a/metadata/md5-cache/dev-ml/camlp5-8.00 +++ b/metadata/md5-cache/dev-ml/camlp5-8.00 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/ocaml-3.10:=[ocamlopt?] SLOT=0/8.00 SRC_URI=https://github.com/camlp5/camlp5/archive/rel8.00.tar.gz -> camlp5-8.00.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf _md5_=48e986473caf2140f5658c17b94bdad3 diff --git a/metadata/md5-cache/dev-ml/camlpdf-2.3.1 b/metadata/md5-cache/dev-ml/camlpdf-2.3.1 index b7adfb1f7f8b..f1ed3cb2851f 100644 --- a/metadata/md5-cache/dev-ml/camlpdf-2.3.1 +++ b/metadata/md5-cache/dev-ml/camlpdf-2.3.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=dev-lang/ocaml:=[ocamlopt] SLOT=0/2.3.1 SRC_URI=https://github.com/johnwhitington/camlpdf/archive/v2.3.1.tar.gz -> camlpdf-2.3.1.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=0d359c4840afbfdbf87c8432fcfcdf42 diff --git a/metadata/md5-cache/dev-ml/camlzip-1.06 b/metadata/md5-cache/dev-ml/camlzip-1.06 index 3c96b58869c3..1ee187c7c69d 100644 --- a/metadata/md5-cache/dev-ml/camlzip-1.06 +++ b/metadata/md5-cache/dev-ml/camlzip-1.06 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/ocaml-4.05:=[ocamlopt?] >=sys-libs/zlib-1.1.3 SLOT=1/1.06 SRC_URI=http://forge.ocamlcore.org/frs/download.php/1616/camlzip-1.06.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=5cc9772d483125b0eeb82334bc358bbf diff --git a/metadata/md5-cache/dev-ml/camlzip-1.07 b/metadata/md5-cache/dev-ml/camlzip-1.07 index 6d0ffcd60686..a14607bd9fdc 100644 --- a/metadata/md5-cache/dev-ml/camlzip-1.07 +++ b/metadata/md5-cache/dev-ml/camlzip-1.07 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/ocaml-4.05:=[ocamlopt?] >=sys-libs/zlib-1.1.3 SLOT=1/1.07 SRC_URI=https://github.com/xavierleroy/camlzip/archive/rel107.tar.gz -> camlzip-1.07.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=bdad819faab23d7db378f2401e6ae287 diff --git a/metadata/md5-cache/dev-ml/camlzip-1.10 b/metadata/md5-cache/dev-ml/camlzip-1.10 index 390dc91ee8b2..47504ff69d3b 100644 --- a/metadata/md5-cache/dev-ml/camlzip-1.10 +++ b/metadata/md5-cache/dev-ml/camlzip-1.10 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/ocaml-4.05:=[ocamlopt?] >=sys-libs/zlib-1.1.3 SLOT=1/1.10 SRC_URI=https://github.com/xavierleroy/camlzip/archive/rel110.tar.gz -> camlzip-1.10.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=533527e07ecaad0378b51296ca010ab0 diff --git a/metadata/md5-cache/dev-ml/camomile-0.8.5-r2 b/metadata/md5-cache/dev-ml/camomile-0.8.5-r2 index 1cfedc157c62..9f432c00f2ad 100644 --- a/metadata/md5-cache/dev-ml/camomile-0.8.5-r2 +++ b/metadata/md5-cache/dev-ml/camomile-0.8.5-r2 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=>=dev-lang/ocaml-3.10.2:=[ocamlopt?] dev-ml/camlp4:= SLOT=0/0.8.5 SRC_URI=https://github.com/yoriyuki/Camomile/releases/download/rel-0.8.5/camomile-0.8.5.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ad0af90b9c47d7435435d73560359d3e diff --git a/metadata/md5-cache/dev-ml/cmdliner-1.0.4 b/metadata/md5-cache/dev-ml/cmdliner-1.0.4 index bc5400dbdc91..7520ae665c3e 100644 --- a/metadata/md5-cache/dev-ml/cmdliner-1.0.4 +++ b/metadata/md5-cache/dev-ml/cmdliner-1.0.4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/result:= dev-ml/findlib:= RESTRICT=!test? ( test ) SLOT=0/1.0.4 SRC_URI=http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.4.tbz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=9f01bcfd99c89409669080591428e5a4 diff --git a/metadata/md5-cache/dev-ml/core-0.9.1-r1 b/metadata/md5-cache/dev-ml/core-0.9.1-r1 index 5a9be4f9e2f2..da881af10d9d 100644 --- a/metadata/md5-cache/dev-ml/core-0.9.1-r1 +++ b/metadata/md5-cache/dev-ml/core-0.9.1-r1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/configurator:= dev-ml/core_kernel:= dev-ml/ppx_assert:= dev-ml/ppx_driver:= dev-ml/ppx_jane:= dev-ml/sexplib:= dev-ml/spawn:= dev-ml/stdio:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.1 SRC_URI=https://github.com/janestreet/core/archive/v0.9.1.tar.gz -> core-0.9.1.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=df4572d1e1b80028c10da6de7016e9ff diff --git a/metadata/md5-cache/dev-ml/core-0.9.2 b/metadata/md5-cache/dev-ml/core-0.9.2 index 613bee68a172..d4618fad4275 100644 --- a/metadata/md5-cache/dev-ml/core-0.9.2 +++ b/metadata/md5-cache/dev-ml/core-0.9.2 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/configurator:= dev-ml/core_kernel:= dev-ml/ppx_assert:= dev-ml/ppx_driver:= dev-ml/ppx_jane:= dev-ml/sexplib:= dev-ml/spawn:= dev-ml/stdio:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.2 SRC_URI=https://github.com/janestreet/core/archive/v0.9.2.tar.gz -> core-0.9.2.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=aee3b69142b609b9a4a6bf0f5895800f diff --git a/metadata/md5-cache/dev-ml/cppo-1.4.1 b/metadata/md5-cache/dev-ml/cppo-1.4.1 index adc5b599ce17..a58ca1ab91b1 100644 --- a/metadata/md5-cache/dev-ml/cppo-1.4.1 +++ b/metadata/md5-cache/dev-ml/cppo-1.4.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/ocaml-3.12:= dev-ml/ocamlbuild:= SLOT=0/1.4.1 SRC_URI=https://github.com/mjambon/cppo/archive/v1.4.1.tar.gz -> cppo-1.4.1.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=3cc428e32e0bf6b643bc639aea811d51 diff --git a/metadata/md5-cache/dev-ml/cppo-1.5.0 b/metadata/md5-cache/dev-ml/cppo-1.5.0 index a8adfbddbf44..8a38dfda9c7a 100644 --- a/metadata/md5-cache/dev-ml/cppo-1.5.0 +++ b/metadata/md5-cache/dev-ml/cppo-1.5.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] dev-ml/ocamlbuild:=[ocamlopt?] SLOT=0/1.5.0 SRC_URI=https://github.com/mjambon/cppo/archive/v1.5.0.tar.gz -> cppo-1.5.0.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=9a5d3024338884e3b8883d55aa10d8a1 diff --git a/metadata/md5-cache/dev-ml/cryptokit-1.10 b/metadata/md5-cache/dev-ml/cryptokit-1.10 index 241f6a7a5116..b5393d98aeaf 100644 --- a/metadata/md5-cache/dev-ml/cryptokit-1.10 +++ b/metadata/md5-cache/dev-ml/cryptokit-1.10 @@ -10,5 +10,5 @@ RDEPEND=zlib? ( >=sys-libs/zlib-1.1 ) >=dev-lang/ocaml-3.12:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/1.10 SRC_URI=http://forge.ocamlcore.org/frs/download.php/1493/cryptokit-1.10.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=26918f617760751c66ea0fe5135b623f diff --git a/metadata/md5-cache/dev-ml/cryptokit-1.11 b/metadata/md5-cache/dev-ml/cryptokit-1.11 index 7481e4cc5da2..5e09b5578720 100644 --- a/metadata/md5-cache/dev-ml/cryptokit-1.11 +++ b/metadata/md5-cache/dev-ml/cryptokit-1.11 @@ -11,5 +11,5 @@ REQUIRED_USE=test? ( ocamlopt ) RESTRICT=!test? ( test ) SLOT=0/1.11 SRC_URI=http://forge.ocamlcore.org/frs/download.php/1618/cryptokit-1.11.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=40aa7348136576f679ff51d07b8378c1 diff --git a/metadata/md5-cache/dev-ml/csv-1.7 b/metadata/md5-cache/dev-ml/csv-1.7 index 33d59feef7dc..a8bd27eb2a78 100644 --- a/metadata/md5-cache/dev-ml/csv-1.7 +++ b/metadata/md5-cache/dev-ml/csv-1.7 @@ -10,5 +10,5 @@ RDEPEND=lwt? ( dev-ml/lwt:= ) >=dev-lang/ocaml-3.12:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/1.7 SRC_URI=https://github.com/Chris00/ocaml-csv/archive/1.7.tar.gz -> csv-1.7.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=53da00c4126aa34709d4d08436dbe083 diff --git a/metadata/md5-cache/dev-ml/deriving-0.7.1 b/metadata/md5-cache/dev-ml/deriving-0.7.1 index d2c659ad9a8a..5fd58281b147 100644 --- a/metadata/md5-cache/dev-ml/deriving-0.7.1 +++ b/metadata/md5-cache/dev-ml/deriving-0.7.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-ml/type-conv-108:= dev-ml/optcomp:= dev-ml/findlib:= dev-ml/camlp4 RESTRICT=!test? ( test ) SLOT=0/0.7.1 SRC_URI=https://github.com/ocsigen/deriving/archive/0.7.1.tar.gz -> deriving-0.7.1.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=0fd38769fbc139df9d8f2e108fd910ac diff --git a/metadata/md5-cache/dev-ml/dns-1.0.0 b/metadata/md5-cache/dev-ml/dns-1.0.0 index e7e14bd59660..8ddabb7d66f6 100644 --- a/metadata/md5-cache/dev-ml/dns-1.0.0 +++ b/metadata/md5-cache/dev-ml/dns-1.0.0 @@ -9,5 +9,5 @@ RDEPEND=>=dev-ml/ocaml-base64-2.0.0:= >=dev-ml/ocaml-cstruct-3.0.2:=[ppx] dev-ml RESTRICT=test SLOT=0/1.0.0 SRC_URI=https://github.com/mirage/dns/archive/v1.0.0.tar.gz -> ocaml-dns-1.0.0.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 opam b4de444efce371928602cbf4cd91307e _md5_=6ce03d8214e5fe840ad2c595ed1061f5 diff --git a/metadata/md5-cache/dev-ml/easy-format-1.2.0 b/metadata/md5-cache/dev-ml/easy-format-1.2.0 index 52e38ce0dde1..c2b3e5c16901 100644 --- a/metadata/md5-cache/dev-ml/easy-format-1.2.0 +++ b/metadata/md5-cache/dev-ml/easy-format-1.2.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-lang/ocaml:=[ocamlopt?] SLOT=0/1.2.0 SRC_URI=https://github.com/mjambon/easy-format/archive/v1.2.0.tar.gz -> easy-format-1.2.0.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=6e7952ad6480e325dea6b9fd42f83911 diff --git a/metadata/md5-cache/dev-ml/eliom-6.2.0 b/metadata/md5-cache/dev-ml/eliom-6.2.0 index 07009d523bd5..fcd3403cb327 100644 --- a/metadata/md5-cache/dev-ml/eliom-6.2.0 +++ b/metadata/md5-cache/dev-ml/eliom-6.2.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.03:=[ocamlopt?] >=dev-ml/js_of_ocaml-2.8.2:=[xml] >=www-servers/ocsigenserver-2.8:= >=dev-ml/tyxml-4:= >=dev-ml/deriving-0.6:= >=dev-ml/reactiveData-0.2.1:= dev-ml/ocaml-ipaddr:= dev-ml/react:= dev-ml/ocaml-ssl:= >=dev-ml/lwt-2.5.0:= dev-ml/lwt_react:= dev-ml/camlp4:= ppx? ( >=dev-ml/ppx_tools-0.99.3:= ) SLOT=0/6.2.0 SRC_URI=https://github.com/ocsigen/eliom/archive/6.2.0.tar.gz -> eliom-6.2.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d832036c26a5349ca021f487b5f02256 diff --git a/metadata/md5-cache/dev-ml/eliom-9999 b/metadata/md5-cache/dev-ml/eliom-9999 index 5bcfe622a19a..ee3ac7a0a310 100644 --- a/metadata/md5-cache/dev-ml/eliom-9999 +++ b/metadata/md5-cache/dev-ml/eliom-9999 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1-with-linking-exception PROPERTIES=live RDEPEND=>=dev-lang/ocaml-4.03:=[ocamlopt?] >=dev-ml/js_of_ocaml-2.8.2:=[xml] >=www-servers/ocsigenserver-2.8:= >=dev-ml/tyxml-4:= >=dev-ml/deriving-0.6:= >=dev-ml/reactiveData-0.2.1:= dev-ml/ocaml-ipaddr:= dev-ml/react:= dev-ml/ocaml-ssl:= >=dev-ml/lwt-2.5.0:= dev-ml/lwt_react:= dev-ml/camlp4:= ppx? ( >=dev-ml/ppx_tools-0.99.3:= ) SLOT=0/9999 -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e284de7fc5cd8d76d9d87d46bd334bba diff --git a/metadata/md5-cache/dev-ml/extlib-1.7.7 b/metadata/md5-cache/dev-ml/extlib-1.7.7 index 45528fec5d7f..3371ae565a74 100644 --- a/metadata/md5-cache/dev-ml/extlib-1.7.7 +++ b/metadata/md5-cache/dev-ml/extlib-1.7.7 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/ocaml:=[ocamlopt?] SLOT=0/1.7.7 SRC_URI=https://github.com/ygrek/ocaml-extlib/archive/1.7.7.tar.gz -> extlib-1.7.7.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf _md5_=a8ff5a49753cae90cde26a946bf3ec7b diff --git a/metadata/md5-cache/dev-ml/extlib-1.7.8 b/metadata/md5-cache/dev-ml/extlib-1.7.8 index d34bf383556d..423e66df82cd 100644 --- a/metadata/md5-cache/dev-ml/extlib-1.7.8 +++ b/metadata/md5-cache/dev-ml/extlib-1.7.8 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/ocaml:=[ocamlopt?] SLOT=0/1.7.8 SRC_URI=https://github.com/ygrek/ocaml-extlib/archive/1.7.8.tar.gz -> extlib-1.7.8.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf _md5_=b5ac57c0e3d6f0655611ab656217d612 diff --git a/metadata/md5-cache/dev-ml/fmt-0.8.4 b/metadata/md5-cache/dev-ml/fmt-0.8.4 index 7297df01a571..3331ff97c35c 100644 --- a/metadata/md5-cache/dev-ml/fmt-0.8.4 +++ b/metadata/md5-cache/dev-ml/fmt-0.8.4 @@ -10,5 +10,5 @@ RDEPEND=dev-ml/result:=[ocamlopt] dev-lang/ocaml:=[ocamlopt] dev-ml/uchar:=[ocam RESTRICT=!test? ( test ) SLOT=0/0.8.4 SRC_URI=https://erratique.ch/software/fmt/releases/fmt-0.8.4.tbz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 opam b4de444efce371928602cbf4cd91307e _md5_=0943fd6eb645f0ad044ac64e6ad1fbc9 diff --git a/metadata/md5-cache/dev-ml/fpath-0.7.2 b/metadata/md5-cache/dev-ml/fpath-0.7.2 index 485d1a911b84..9c2e790b140b 100644 --- a/metadata/md5-cache/dev-ml/fpath-0.7.2 +++ b/metadata/md5-cache/dev-ml/fpath-0.7.2 @@ -8,5 +8,5 @@ LICENSE=ISC RDEPEND=dev-ml/result:= dev-ml/astring:= >=dev-lang/ocaml-4:= SLOT=0/0.7.2 SRC_URI=https://erratique.ch/software/fpath/releases/fpath-0.7.2.tbz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=2fea3947c7078d4c95c57f18739c79a9 diff --git a/metadata/md5-cache/dev-ml/gen-0.4.0.1 b/metadata/md5-cache/dev-ml/gen-0.4.0.1 index dcd1d911c69a..66374f73cd67 100644 --- a/metadata/md5-cache/dev-ml/gen-0.4.0.1 +++ b/metadata/md5-cache/dev-ml/gen-0.4.0.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/0.4.0.1 SRC_URI=https://github.com/c-cube/gen/archive/0.4.0.1.tar.gz -> gen-0.4.0.1.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a392610245c386561aa4f740d8bc4f92 diff --git a/metadata/md5-cache/dev-ml/gsl-ocaml-1.19.1 b/metadata/md5-cache/dev-ml/gsl-ocaml-1.19.1 index f3cb57c4b97c..5e60e9ccc699 100644 --- a/metadata/md5-cache/dev-ml/gsl-ocaml-1.19.1 +++ b/metadata/md5-cache/dev-ml/gsl-ocaml-1.19.1 @@ -10,5 +10,5 @@ RDEPEND=>=sci-libs/gsl-1.19 !dev-ml/ocamlgsl >=dev-lang/ocaml-3.12:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mmottl/gsl-ocaml/releases/download/v1.19.1/gsl-ocaml-1.19.1.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e51bbfdd30287784d373ea37fdd5a225 diff --git a/metadata/md5-cache/dev-ml/iTeML-2.7 b/metadata/md5-cache/dev-ml/iTeML-2.7 index 7bdbaa0afcff..1de06e13bea0 100644 --- a/metadata/md5-cache/dev-ml/iTeML-2.7 +++ b/metadata/md5-cache/dev-ml/iTeML-2.7 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=dev-ml/ounit:= dev-lang/ocaml:=[ocamlopt] >=dev-ml/qcheck-0.5:= SLOT=0/2.7 SRC_URI=https://github.com/vincent-hugot/iTeML/archive/v2.7.tar.gz -> iTeML-2.7.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=8b17093b979998210dd621ee22e3b8da diff --git a/metadata/md5-cache/dev-ml/jbuilder-1.0_beta14 b/metadata/md5-cache/dev-ml/jbuilder-1.0_beta14 index e1b45260fd00..86fa523bdfad 100644 --- a/metadata/md5-cache/dev-ml/jbuilder-1.0_beta14 +++ b/metadata/md5-cache/dev-ml/jbuilder-1.0_beta14 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4:= RESTRICT=!test? ( test ) SLOT=0/1.0_beta14 SRC_URI=https://github.com/janestreet/jbuilder/archive/1.0+beta14.tar.gz -> jbuilder-1.0-beta14.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=c506b3bd50e5dc7af6ef1e8ceab4a7b5 diff --git a/metadata/md5-cache/dev-ml/js_of_ocaml-2.8.4-r2 b/metadata/md5-cache/dev-ml/js_of_ocaml-2.8.4-r2 index cfd35691d600..e0cc575f737c 100644 --- a/metadata/md5-cache/dev-ml/js_of_ocaml-2.8.4-r2 +++ b/metadata/md5-cache/dev-ml/js_of_ocaml-2.8.4-r2 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?,X(+)?] >=dev-ml/lwt-2.4.4:=[camlp4(+)] react? ( dev-ml/react:= dev-ml/reactiveData:= ) xml? ( >=dev-ml/tyxml-4:= ) ppx? ( dev-ml/ppx_tools:= dev-ml/ppx_deriving:= dev-ml/ppx_driver:= ) dev-ml/cmdliner:= dev-ml/menhir:= dev-ml/ocaml-base64:= dev-ml/camlp4:= dev-ml/cppo:= dev-ml/uchar:= dev-ml/ocamlbuild:= dev-ml/yojson:= dev-ml/ocaml-migrate-parsetree:= deriving? ( >=dev-ml/deriving-0.6:= ) SLOT=0/2.8.4 SRC_URI=https://github.com/ocsigen/js_of_ocaml/archive/2.8.4.tar.gz -> js_of_ocaml-2.8.4.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1c001c6cddd67a426c85c551071045fc diff --git a/metadata/md5-cache/dev-ml/js_of_ocaml-3.0.0 b/metadata/md5-cache/dev-ml/js_of_ocaml-3.0.0 index 73519ea48981..e9f88bc15c8a 100644 --- a/metadata/md5-cache/dev-ml/js_of_ocaml-3.0.0 +++ b/metadata/md5-cache/dev-ml/js_of_ocaml-3.0.0 @@ -10,5 +10,5 @@ REQUIRED_USE=xml? ( ppx ) RESTRICT=!test? ( test ) SLOT=0/3.0.0 SRC_URI=https://github.com/ocsigen/js_of_ocaml/archive/3.0.0.tar.gz -> js_of_ocaml-3.0.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f054e0c49f7c6079c28853eae21a3a8b diff --git a/metadata/md5-cache/dev-ml/js_of_ocaml-9999 b/metadata/md5-cache/dev-ml/js_of_ocaml-9999 index 21be330d036e..7a719823ab00 100644 --- a/metadata/md5-cache/dev-ml/js_of_ocaml-9999 +++ b/metadata/md5-cache/dev-ml/js_of_ocaml-9999 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] camlp4? ( dev-ml/camlp4:= ) dev-ml/cm REQUIRED_USE=xml? ( ppx ) RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7a2d109691f312ead72a22cd45434578 diff --git a/metadata/md5-cache/dev-ml/jsonm-1.0.1 b/metadata/md5-cache/dev-ml/jsonm-1.0.1 index d3776197e579..a842bc3621df 100644 --- a/metadata/md5-cache/dev-ml/jsonm-1.0.1 +++ b/metadata/md5-cache/dev-ml/jsonm-1.0.1 @@ -8,5 +8,5 @@ LICENSE=ISC RDEPEND=>=dev-ml/uutf-1.0.0:= dev-lang/ocaml:= dev-ml/uchar:= SLOT=0/1.0.1 SRC_URI=https://erratique.ch/software/jsonm/releases/jsonm-1.0.1.tbz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=c56ddeca7e680b3a21ade99e3dabc59a diff --git a/metadata/md5-cache/dev-ml/lablgtk-2.18.5 b/metadata/md5-cache/dev-ml/lablgtk-2.18.5 index fdfb4cb762df..196995cb6252 100644 --- a/metadata/md5-cache/dev-ml/lablgtk-2.18.5 +++ b/metadata/md5-cache/dev-ml/lablgtk-2.18.5 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception examples? ( lablgtk-examples ) RDEPEND=>=x11-libs/gtk+-2.10:2 >=dev-lang/ocaml-3.10:=[ocamlopt?] svg? ( >=gnome-base/librsvg-2.2:2 ) glade? ( >=gnome-base/libglade-2.0.1 ) gnomecanvas? ( >=gnome-base/libgnomecanvas-2.2 ) spell? ( app-text/gtkspell:2 ) sourceview? ( x11-libs/gtksourceview:2.0 ) dev-ml/camlp4:= SLOT=2/2.18.5 SRC_URI=https://forge.ocamlcore.org/frs/download.php/1627/lablgtk-2.18.5.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=479b7d15087f9835e6cee042b30160e0 diff --git a/metadata/md5-cache/dev-ml/labltk-8.06.2 b/metadata/md5-cache/dev-ml/labltk-8.06.2 index 61e6714c581a..696b565b55f3 100644 --- a/metadata/md5-cache/dev-ml/labltk-8.06.2 +++ b/metadata/md5-cache/dev-ml/labltk-8.06.2 @@ -9,5 +9,5 @@ LICENSE=QPL-1.0 LGPL-2 RDEPEND=>=dev-lang/tk-8.0.3:= >=dev-lang/ocaml-4.04:=[ocamlopt?,X(+)?] SLOT=0/8.06.2 SRC_URI=https://forge.ocamlcore.org/frs/download.php/1628/labltk-8.06.2.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1c16857c60af8b9b5e4d474b13d59838 diff --git a/metadata/md5-cache/dev-ml/labltk-8.06.7 b/metadata/md5-cache/dev-ml/labltk-8.06.7 index 4a3e021c86f8..3453246b5ae4 100644 --- a/metadata/md5-cache/dev-ml/labltk-8.06.7 +++ b/metadata/md5-cache/dev-ml/labltk-8.06.7 @@ -9,5 +9,5 @@ LICENSE=QPL-1.0 LGPL-2 RDEPEND=>=dev-lang/tk-8.0.3:= >=dev-lang/ocaml-4.08:=[ocamlopt?,X(+)?] SLOT=0/8.06.7 SRC_URI=https://github.com/garrigue/labltk/archive/8.06.7.tar.gz -> labltk-8.06.7.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=bf810c4e2cc994451e62633dbd05afc4 diff --git a/metadata/md5-cache/dev-ml/labltk-8.06.9 b/metadata/md5-cache/dev-ml/labltk-8.06.9 index c4bd2e8faba2..4cc3f6ac1b67 100644 --- a/metadata/md5-cache/dev-ml/labltk-8.06.9 +++ b/metadata/md5-cache/dev-ml/labltk-8.06.9 @@ -9,5 +9,5 @@ LICENSE=QPL-1.0 LGPL-2 RDEPEND=dev-lang/tk:= >=dev-lang/ocaml-4.11:=[ocamlopt?,X(+)?] SLOT=0/8.06.9 SRC_URI=https://github.com/garrigue/labltk/archive/8.06.9.tar.gz -> labltk-8.06.9.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1f3b7d08050c6ebe957ece82cba3b8db diff --git a/metadata/md5-cache/dev-ml/logs-0.6.2 b/metadata/md5-cache/dev-ml/logs-0.6.2 index 381454cb8589..f1b42f6b946b 100644 --- a/metadata/md5-cache/dev-ml/logs-0.6.2 +++ b/metadata/md5-cache/dev-ml/logs-0.6.2 @@ -10,5 +10,5 @@ RDEPEND=dev-ml/result:=[ocamlopt] dev-lang/ocaml:=[ocamlopt] javascript? ( dev-m RESTRICT=!test? ( test ) SLOT=0/0.6.2 SRC_URI=https://erratique.ch/software/logs/releases/logs-0.6.2.tbz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=813e780e5bf15764a9d5a8bd679e64ef diff --git a/metadata/md5-cache/dev-ml/lwt_react-1.0.1 b/metadata/md5-cache/dev-ml/lwt_react-1.0.1 index 0fda0f1dec11..7a45d9552323 100644 --- a/metadata/md5-cache/dev-ml/lwt_react-1.0.1 +++ b/metadata/md5-cache/dev-ml/lwt_react-1.0.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-ml/lwt-3.0.0:= >=dev-ml/react-1.2:= >=dev-lang/ocaml-3.12:=[ocamlopt?] SLOT=0/1.0.1 SRC_URI=https://github.com/ocsigen/lwt/releases/download/3.0.0/lwt_react-1.0.1.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=49c732db5e85b600c47da89de8925c76 diff --git a/metadata/md5-cache/dev-ml/lwt_ssl-1.1.1 b/metadata/md5-cache/dev-ml/lwt_ssl-1.1.1 index 53cf6df52267..77e2e57c4a5c 100644 --- a/metadata/md5-cache/dev-ml/lwt_ssl-1.1.1 +++ b/metadata/md5-cache/dev-ml/lwt_ssl-1.1.1 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-ml/lwt-3.1:= >=dev-ml/ocaml-ssl-0.4.0:= >=dev-lang/ocaml-4:= SLOT=0/1.1.1 SRC_URI=https://github.com/ocsigen/lwt/archive/lwt_ssl-1.1.1.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=6c0c83196eb5aebe7ccd078109a2b78b diff --git a/metadata/md5-cache/dev-ml/macaque-0.7.4 b/metadata/md5-cache/dev-ml/macaque-0.7.4 index 09f9b5c96407..269fcbd2e21b 100644 --- a/metadata/md5-cache/dev-ml/macaque-0.7.4 +++ b/metadata/md5-cache/dev-ml/macaque-0.7.4 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-ml/pgocaml-2.1:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?] SLOT=0/0.7.4 SRC_URI=https://github.com/ocsigen/macaque/archive/0.7.4.tar.gz -> macaque-0.7.4.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e94c1b8ad8a730144111484da5ede78f diff --git a/metadata/md5-cache/dev-ml/markup-0.7.5 b/metadata/md5-cache/dev-ml/markup-0.7.5 index 0eeee07e1d7e..be1df19898e1 100644 --- a/metadata/md5-cache/dev-ml/markup-0.7.5 +++ b/metadata/md5-cache/dev-ml/markup-0.7.5 @@ -10,5 +10,5 @@ RDEPEND=dev-lang/ocaml:=[ocamlopt] dev-ml/lwt:=[ocamlopt(+)] >=dev-ml/uutf-1.0:= RESTRICT=!test? ( test ) SLOT=0/0.7.5p1 SRC_URI=https://github.com/aantron/markup.ml/archive/0.7.5.tar.gz -> markup-0.7.5.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=c8e41c31ccca9e6ef86c6fc63b14b009 diff --git a/metadata/md5-cache/dev-ml/menhir-20181006 b/metadata/md5-cache/dev-ml/menhir-20181006 index 86472783ccc8..c38624a3eb24 100644 --- a/metadata/md5-cache/dev-ml/menhir-20181006 +++ b/metadata/md5-cache/dev-ml/menhir-20181006 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.02:=[ocamlopt?] SLOT=0/20181006 SRC_URI=http://gallium.inria.fr/~fpottier/menhir/menhir-20181006.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=12c53d41328fb34a71231502078b10af diff --git a/metadata/md5-cache/dev-ml/menhir-20190924 b/metadata/md5-cache/dev-ml/menhir-20190924 index 931223fd8f15..6be5aad4891d 100644 --- a/metadata/md5-cache/dev-ml/menhir-20190924 +++ b/metadata/md5-cache/dev-ml/menhir-20190924 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.02:=[ocamlopt?] SLOT=0/20190924 SRC_URI=https://gitlab.inria.fr/fpottier/menhir/-/archive/20190924/menhir-20190924.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a2c8f8e83bf085a5da7ea17054528fae diff --git a/metadata/md5-cache/dev-ml/merlin-extend-0.3 b/metadata/md5-cache/dev-ml/merlin-extend-0.3 index 3fbf509f2a59..3ffce8513530 100644 --- a/metadata/md5-cache/dev-ml/merlin-extend-0.3 +++ b/metadata/md5-cache/dev-ml/merlin-extend-0.3 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=dev-lang/ocaml:= SLOT=0/0.3 SRC_URI=https://github.com/let-def/merlin-extend/archive/v0.3.tar.gz -> merlin-extend-0.3.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=315271c0ec42214ddf1359e876b5fab4 diff --git a/metadata/md5-cache/dev-ml/mtime-1.1.0 b/metadata/md5-cache/dev-ml/mtime-1.1.0 index b07b511d2001..544245732947 100644 --- a/metadata/md5-cache/dev-ml/mtime-1.1.0 +++ b/metadata/md5-cache/dev-ml/mtime-1.1.0 @@ -10,5 +10,5 @@ RDEPEND=dev-lang/ocaml:=[ocamlopt] javascript? ( dev-ml/js_of_ocaml:= ) >=dev-la RESTRICT=!test? ( test ) SLOT=0/1.1.0 SRC_URI=https://erratique.ch/software/mtime/releases/mtime-1.1.0.tbz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e opam 4f1cff0457cf4790a5510753a67d1cc1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e opam b4de444efce371928602cbf4cd91307e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=93c7bbb805f54c67e55b061897770193 diff --git a/metadata/md5-cache/dev-ml/num-1.3 b/metadata/md5-cache/dev-ml/num-1.3 index 61a19cc71dff..e714fc58ba05 100644 --- a/metadata/md5-cache/dev-ml/num-1.3 +++ b/metadata/md5-cache/dev-ml/num-1.3 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.09.0[ocamlopt] >=dev-ml/findlib-1.8.1[ocamlopt] SLOT=0 SRC_URI=https://github.com/ocaml/num/archive/v1.3.tar.gz -> num-1.3.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=756d47b47b19d570b2f6523b5137fc5e diff --git a/metadata/md5-cache/dev-ml/num-1.3-r1 b/metadata/md5-cache/dev-ml/num-1.3-r1 index d3352088ecd4..2f844491425c 100644 --- a/metadata/md5-cache/dev-ml/num-1.3-r1 +++ b/metadata/md5-cache/dev-ml/num-1.3-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.09.0:=[ocamlopt] >=dev-ml/findlib-1.8.1[ocamlopt] SLOT=0 SRC_URI=https://github.com/ocaml/num/archive/v1.3.tar.gz -> num-1.3.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=0e54dbc3282afa47cd47bcfd8dbc518e diff --git a/metadata/md5-cache/dev-ml/oasis-0.4.10 b/metadata/md5-cache/dev-ml/oasis-0.4.10 index e9daa583d0b0..f5f01949bd23 100644 --- a/metadata/md5-cache/dev-ml/oasis-0.4.10 +++ b/metadata/md5-cache/dev-ml/oasis-0.4.10 @@ -10,5 +10,5 @@ RDEPEND=>=dev-ml/ocaml-data-notation-0.0.11:= dev-ml/ocamlbuild:=[ocamlopt] dev- RESTRICT=!test? ( test ) strip SLOT=0/0.4.10 SRC_URI=http://forge.ocamlcore.org/frs/download.php/1694/oasis-0.4.10.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a37c94393441859c240fdb5312fb58ba diff --git a/metadata/md5-cache/dev-ml/ocaml-augeas-0.5 b/metadata/md5-cache/dev-ml/ocaml-augeas-0.5 index 119405352c3f..53ecba4bb048 100644 --- a/metadata/md5-cache/dev-ml/ocaml-augeas-0.5 +++ b/metadata/md5-cache/dev-ml/ocaml-augeas-0.5 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=app-admin/augeas dev-ml/ocaml-autoconf dev-ml/findlib dev-lang/ocaml[ocamlopt] SLOT=0 SRC_URI=https://people.redhat.com/~rjones/augeas/files/ocaml-augeas-0.5.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=76e54ded6746510da592d83b2bff3b37 diff --git a/metadata/md5-cache/dev-ml/ocaml-base64-2.2.0 b/metadata/md5-cache/dev-ml/ocaml-base64-2.2.0 index c51115a8c417..e84278ef47d3 100644 --- a/metadata/md5-cache/dev-ml/ocaml-base64-2.2.0 +++ b/metadata/md5-cache/dev-ml/ocaml-base64-2.2.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4:= RESTRICT=!test? ( test ) SLOT=0/2.2.0 SRC_URI=https://github.com/mirage/ocaml-base64/archive/v2.2.0.tar.gz -> ocaml-base64-2.2.0.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 opam b4de444efce371928602cbf4cd91307e _md5_=f0d607f5775ed53b334dd4e6437651f1 diff --git a/metadata/md5-cache/dev-ml/ocaml-cohttp-0.22.0 b/metadata/md5-cache/dev-ml/ocaml-cohttp-0.22.0 index b188434e4fe5..171b846e80cd 100644 --- a/metadata/md5-cache/dev-ml/ocaml-cohttp-0.22.0 +++ b/metadata/md5-cache/dev-ml/ocaml-cohttp-0.22.0 @@ -10,5 +10,5 @@ RDEPEND=dev-ml/ocaml-re:= dev-ml/stringext:= dev-ml/ocaml-uri:= dev-ml/fieldslib RESTRICT=!test? ( test ) SLOT=0/0.22.0 SRC_URI=https://github.com/mirage/ocaml-cohttp/archive/v0.22.0.tar.gz -> ocaml-cohttp-0.22.0.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e2e90dd6c1cc7b082502bf8dae1676b9 diff --git a/metadata/md5-cache/dev-ml/ocaml-compiler-libs-0.9.0 b/metadata/md5-cache/dev-ml/ocaml-compiler-libs-0.9.0 index 7ae5d8a2ef12..af565067ee01 100644 --- a/metadata/md5-cache/dev-ml/ocaml-compiler-libs-0.9.0 +++ b/metadata/md5-cache/dev-ml/ocaml-compiler-libs-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ocaml-compiler-libs/archive/v0.9.0.tar.gz -> ocaml-compiler-libs-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=85278258dffbf8bdfe72848d2ed4c816 diff --git a/metadata/md5-cache/dev-ml/ocaml-conduit-0.15.4 b/metadata/md5-cache/dev-ml/ocaml-conduit-0.15.4 index f329efc49eef..b258ac617072 100644 --- a/metadata/md5-cache/dev-ml/ocaml-conduit-0.15.4 +++ b/metadata/md5-cache/dev-ml/ocaml-conduit-0.15.4 @@ -8,5 +8,5 @@ LICENSE=ISC RDEPEND=dev-lang/ocaml:= dev-ml/sexplib:= dev-ml/stringext:= dev-ml/ocaml-uri:= dev-ml/logs:= dev-ml/ocaml-cstruct:= dev-ml/ocaml-ipaddr:= >=dev-ml/lwt-3:= dev-ml/lwt_ssl:= dev-ml/async:= dev-ml/dns:= dev-ml/ocaml-ssl:= SLOT=0/0.15.4 SRC_URI=https://github.com/mirage/ocaml-conduit/archive/v0.15.4.tar.gz -> ocaml-conduit-0.15.4.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=5bc408aead33a6d10f7e49493460bf10 diff --git a/metadata/md5-cache/dev-ml/ocaml-cstruct-3.1.1 b/metadata/md5-cache/dev-ml/ocaml-cstruct-3.1.1 index c59a4c2f1527..f29fd3a454c0 100644 --- a/metadata/md5-cache/dev-ml/ocaml-cstruct-3.1.1 +++ b/metadata/md5-cache/dev-ml/ocaml-cstruct-3.1.1 @@ -10,5 +10,5 @@ RDEPEND=async? ( dev-ml/async_kernel:= dev-ml/async_unix:= dev-ml/core_kernel:= RESTRICT=!test? ( test ) SLOT=0/3.1.1 SRC_URI=https://github.com/mirage/ocaml-cstruct/archive/v3.1.1.tar.gz -> ocaml-cstruct-3.1.1.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 opam b4de444efce371928602cbf4cd91307e _md5_=7baef6bed6fb57211c8515e34f89827f diff --git a/metadata/md5-cache/dev-ml/ocaml-ctypes-0.11.2 b/metadata/md5-cache/dev-ml/ocaml-ctypes-0.11.2 index b77f0d7a0ee0..d2ecf157839d 100644 --- a/metadata/md5-cache/dev-ml/ocaml-ctypes-0.11.2 +++ b/metadata/md5-cache/dev-ml/ocaml-ctypes-0.11.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4.02:=[ocamlopt] dev-libs/libffi RESTRICT=!test? ( test ) SLOT=0/0.11.2 SRC_URI=https://github.com/ocamllabs/ocaml-ctypes/archive/0.11.2.tar.gz -> ocaml-ctypes-0.11.2.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=7895a9002b0f62da8551067039349aa9 diff --git a/metadata/md5-cache/dev-ml/ocaml-ctypes-0.17.1 b/metadata/md5-cache/dev-ml/ocaml-ctypes-0.17.1 index 879ba4adad76..f97c36a5f1b0 100644 --- a/metadata/md5-cache/dev-ml/ocaml-ctypes-0.17.1 +++ b/metadata/md5-cache/dev-ml/ocaml-ctypes-0.17.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4.02:=[ocamlopt] >=dev-libs/libffi-3.3_rc0:0/7 dev-ml/i RESTRICT=!test? ( test ) SLOT=0/0.17.1 SRC_URI=https://github.com/ocamllabs/ocaml-ctypes/archive/0.17.1.tar.gz -> ocaml-ctypes-0.17.1.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=a92d23b86fcafac29b35e585d5d6d35b diff --git a/metadata/md5-cache/dev-ml/ocaml-data-notation-0.0.11-r1 b/metadata/md5-cache/dev-ml/ocaml-data-notation-0.0.11-r1 index 4ce7e4183f63..fbd324ea1fed 100644 --- a/metadata/md5-cache/dev-ml/ocaml-data-notation-0.0.11-r1 +++ b/metadata/md5-cache/dev-ml/ocaml-data-notation-0.0.11-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-ml/type-conv-108.07.01:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[o RESTRICT=!test? ( test ) SLOT=0/0.0.11 SRC_URI=http://forge.ocamlcore.org/frs/download.php/1310/ocaml-data-notation-0.0.11.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=005d13437cf9b8e2ce34595884e8d793 diff --git a/metadata/md5-cache/dev-ml/ocaml-dispatch-0.4.0 b/metadata/md5-cache/dev-ml/ocaml-dispatch-0.4.0 index 454e465e9db0..12e201b52fed 100644 --- a/metadata/md5-cache/dev-ml/ocaml-dispatch-0.4.0 +++ b/metadata/md5-cache/dev-ml/ocaml-dispatch-0.4.0 @@ -10,5 +10,5 @@ RDEPEND=dev-ml/result:= dev-lang/ocaml:= RESTRICT=!test? ( test ) SLOT=0/0.4.0 SRC_URI=https://github.com/inhabitedtype/ocaml-dispatch/archive/0.4.0.tar.gz -> ocaml-dispatch-0.4.0.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=bd2ddc078e2275a1885b5e49a121f906 diff --git a/metadata/md5-cache/dev-ml/ocaml-expat-1.1.0-r1 b/metadata/md5-cache/dev-ml/ocaml-expat-1.1.0-r1 index c8d4149bc8aa..2232c676083f 100644 --- a/metadata/md5-cache/dev-ml/ocaml-expat-1.1.0-r1 +++ b/metadata/md5-cache/dev-ml/ocaml-expat-1.1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/expat >=dev-lang/ocaml-3.10.2:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/1.1.0 SRC_URI=https://github.com/whitequark/ocaml-expat/archive/v1.1.0.tar.gz -> ocaml-expat-1.1.0.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=4daa72be9bb6f1eee66c927a3344b4c6 diff --git a/metadata/md5-cache/dev-ml/ocaml-expect-0.0.5 b/metadata/md5-cache/dev-ml/ocaml-expect-0.0.5 index 9e4254e4195c..d4c0d28be03b 100644 --- a/metadata/md5-cache/dev-ml/ocaml-expect-0.0.5 +++ b/metadata/md5-cache/dev-ml/ocaml-expect-0.0.5 @@ -10,5 +10,5 @@ RDEPEND=dev-ml/batteries:= dev-ml/pcre-ocaml:= >=dev-lang/ocaml-3.12:=[ocamlopt? RESTRICT=!test? ( test ) SLOT=0/0.0.5 SRC_URI=http://forge.ocamlcore.org/frs/download.php/1372/ocaml-expect-0.0.5.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=b77c289b8bc39aba3bd1196dd6099bcc diff --git a/metadata/md5-cache/dev-ml/ocaml-gettext-0.3.7-r2 b/metadata/md5-cache/dev-ml/ocaml-gettext-0.3.7-r2 index 1fa4cd08df77..1bd46639ea12 100644 --- a/metadata/md5-cache/dev-ml/ocaml-gettext-0.3.7-r2 +++ b/metadata/md5-cache/dev-ml/ocaml-gettext-0.3.7-r2 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/ocaml-3.12.1:= =dev-ml/ocaml-fileut RESTRICT=!test? ( test ) SLOT=0/0.3.7 SRC_URI=https://github.com/gildor478/ocaml-gettext/archive/0.3.7.tar.gz -> ocaml-gettext-0.3.7.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2b162d6e9783072fc4041212c49de77e diff --git a/metadata/md5-cache/dev-ml/ocaml-hashcons-1.3 b/metadata/md5-cache/dev-ml/ocaml-hashcons-1.3 index d5ced01b615a..dc7ff40be858 100644 --- a/metadata/md5-cache/dev-ml/ocaml-hashcons-1.3 +++ b/metadata/md5-cache/dev-ml/ocaml-hashcons-1.3 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=dev-lang/ocaml:=[ocamlopt?] SLOT=0/1.3 SRC_URI=https://github.com/backtracking/ocaml-hashcons/archive/1.3.tar.gz -> ocaml-hashcons-1.3.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib df74899b0837d14d75b7e6bb42422b14 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib 9674d5e3d151793fecab20e2bb73e6c6 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=ea0dcaeade9713d11f14cc5684c340cc diff --git a/metadata/md5-cache/dev-ml/ocaml-ipaddr-2.8.0 b/metadata/md5-cache/dev-ml/ocaml-ipaddr-2.8.0 index 496253c9a128..9545c71cedeb 100644 --- a/metadata/md5-cache/dev-ml/ocaml-ipaddr-2.8.0 +++ b/metadata/md5-cache/dev-ml/ocaml-ipaddr-2.8.0 @@ -10,5 +10,5 @@ RDEPEND=dev-ml/sexplib:= dev-ml/ppx_sexp_conv:= dev-ml/ppx_core:= dev-ml/ppx_typ RESTRICT=!test? ( test ) SLOT=0/2.8.0 SRC_URI=https://github.com/mirage/ocaml-ipaddr/archive/2.8.0.tar.gz -> ocaml-ipaddr-2.8.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=bd5949dbdf484129d9b3b6ad716fb3cb diff --git a/metadata/md5-cache/dev-ml/ocaml-magic-mime-1.0.0 b/metadata/md5-cache/dev-ml/ocaml-magic-mime-1.0.0 index 838429fc8959..98292efd2ef5 100644 --- a/metadata/md5-cache/dev-ml/ocaml-magic-mime-1.0.0 +++ b/metadata/md5-cache/dev-ml/ocaml-magic-mime-1.0.0 @@ -9,5 +9,5 @@ LICENSE=ISC RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] SLOT=0/1.0.0 SRC_URI=https://github.com/mirage/ocaml-magic-mime/archive/v1.0.0.tar.gz -> ocaml-magic-mime-1.0.0.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=0692fee9c679c335f7e5989f86824f37 diff --git a/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.5 b/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.5 index a7e94f1ae1bf..13d698779ab8 100644 --- a/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.5 +++ b/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.5 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-ml/result:= >=dev-lang/ocaml-4:= SLOT=0/1.0.5 SRC_URI=https://github.com/let-def/ocaml-migrate-parsetree/archive/v1.0.5.tar.gz -> ocaml-migrate-parsetree-1.0.5.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 opam b4de444efce371928602cbf4cd91307e _md5_=a7fc26cc5faf6788d179572ea4635368 diff --git a/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.6 b/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.6 index eff818b08c16..da999055fe73 100644 --- a/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.6 +++ b/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.6 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-ml/result:= >=dev-lang/ocaml-4:= SLOT=0/1.0.6 SRC_URI=https://github.com/let-def/ocaml-migrate-parsetree/archive/v1.0.6.tar.gz -> ocaml-migrate-parsetree-1.0.6.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 opam b4de444efce371928602cbf4cd91307e _md5_=a7fc26cc5faf6788d179572ea4635368 diff --git a/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.7 b/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.7 index 915a87955835..acaa6eed56f3 100644 --- a/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.7 +++ b/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-1.0.7 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-ml/result:= >=dev-lang/ocaml-4:= SLOT=0/1.0.7 SRC_URI=https://github.com/let-def/ocaml-migrate-parsetree/archive/v1.0.7.tar.gz -> ocaml-migrate-parsetree-1.0.7.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 opam b4de444efce371928602cbf4cd91307e _md5_=a7fc26cc5faf6788d179572ea4635368 diff --git a/metadata/md5-cache/dev-ml/ocaml-re-1.7.1 b/metadata/md5-cache/dev-ml/ocaml-re-1.7.1 index 1c5bc5259389..9c5380f64672 100644 --- a/metadata/md5-cache/dev-ml/ocaml-re-1.7.1 +++ b/metadata/md5-cache/dev-ml/ocaml-re-1.7.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4.02:= >=dev-lang/ocaml-3.12:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/1.7.1 SRC_URI=https://github.com/ocaml/ocaml-re/archive/1.7.1.tar.gz -> ocaml-re-1.7.1.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=93d768c93ecbd5a8b43f0d736aeb17c7 diff --git a/metadata/md5-cache/dev-ml/ocaml-sqlite3-4.3.0-r1 b/metadata/md5-cache/dev-ml/ocaml-sqlite3-4.3.0-r1 index c00d334c768c..4b39103ade18 100644 --- a/metadata/md5-cache/dev-ml/ocaml-sqlite3-4.3.0-r1 +++ b/metadata/md5-cache/dev-ml/ocaml-sqlite3-4.3.0-r1 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=>=dev-db/sqlite-3.3.3 >=dev-lang/ocaml-4:= SLOT=0/4.3.0 SRC_URI=https://github.com/mmottl/sqlite3-ocaml/releases/download/4.3.0/sqlite3-4.3.0.tbz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=e87c18b072d6dff3977d702d8896ba0a diff --git a/metadata/md5-cache/dev-ml/ocaml-ssl-0.5.3-r1 b/metadata/md5-cache/dev-ml/ocaml-ssl-0.5.3-r1 index 2073855be4c4..617e1c75d294 100644 --- a/metadata/md5-cache/dev-ml/ocaml-ssl-0.5.3-r1 +++ b/metadata/md5-cache/dev-ml/ocaml-ssl-0.5.3-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/openssl:0= ocaml-uri-1.9.4.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 opam b4de444efce371928602cbf4cd91307e _md5_=366defb3d072a037c03ab776d2b4fffe diff --git a/metadata/md5-cache/dev-ml/ocamlgraph-1.8.7-r1 b/metadata/md5-cache/dev-ml/ocamlgraph-1.8.7-r1 index ac1c6efbea28..059b16ff7e1b 100644 --- a/metadata/md5-cache/dev-ml/ocamlgraph-1.8.7-r1 +++ b/metadata/md5-cache/dev-ml/ocamlgraph-1.8.7-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/ocaml-3.10.2:=[ocamlopt?] gtk? ( dev-ml/lablgtk:2=[gnomecanvas,ocamlopt?] ) SLOT=0/1.8.7 SRC_URI=http://ocamlgraph.lri.fr/download/ocamlgraph-1.8.7.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d403980b316394bcfe87b12d6428c6df diff --git a/metadata/md5-cache/dev-ml/ocamlgraph-1.8.8-r1 b/metadata/md5-cache/dev-ml/ocamlgraph-1.8.8-r1 index 19b3f4e93aaa..b76dc4facc25 100644 --- a/metadata/md5-cache/dev-ml/ocamlgraph-1.8.8-r1 +++ b/metadata/md5-cache/dev-ml/ocamlgraph-1.8.8-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/ocaml-3.10.2:=[ocamlopt?] gtk? ( dev-ml/lablgtk:2=[gnomecanvas,ocamlopt?] ) SLOT=0/1.8.8 SRC_URI=http://ocamlgraph.lri.fr/download/ocamlgraph-1.8.8.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=89212dbc4175f069aef3d47ff820414a diff --git a/metadata/md5-cache/dev-ml/ocamlify-0.0.2 b/metadata/md5-cache/dev-ml/ocamlify-0.0.2 index 34fe07e129d2..454abaf82845 100644 --- a/metadata/md5-cache/dev-ml/ocamlify-0.0.2 +++ b/metadata/md5-cache/dev-ml/ocamlify-0.0.2 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] SLOT=0 SRC_URI=http://forge.ocamlcore.org/frs/download.php/1209/ocamlify-0.0.2.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1104e7686a98f98111717ffb264f98bc diff --git a/metadata/md5-cache/dev-ml/ocamlmod-0.0.9 b/metadata/md5-cache/dev-ml/ocamlmod-0.0.9 index a5eeed81c62a..6690ceaeae9a 100644 --- a/metadata/md5-cache/dev-ml/ocamlmod-0.0.9 +++ b/metadata/md5-cache/dev-ml/ocamlmod-0.0.9 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/0.0.9 SRC_URI=http://forge.ocamlcore.org/frs/download.php/1702/ocamlmod-0.0.9.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=0ddbe4ba2bb6cc578a9720d8eb2f2c40 diff --git a/metadata/md5-cache/dev-ml/ocamlnet-4.1.2 b/metadata/md5-cache/dev-ml/ocamlnet-4.1.2 index 91933181ead5..cd4b4605a2b2 100644 --- a/metadata/md5-cache/dev-ml/ocamlnet-4.1.2 +++ b/metadata/md5-cache/dev-ml/ocamlnet-4.1.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-ml/findlib-1.0 pcre? ( >=dev-ml/pcre-ocaml-5:= ) >=dev-lang/ocaml- RESTRICT=installsources strip SLOT=0/4.1.2 SRC_URI=http://download.camlcity.org/download/ocamlnet-4.1.2.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=3b9a0a019fbd225b6d2086baa1ce51ec diff --git a/metadata/md5-cache/dev-ml/ocamlnet-4.1.8 b/metadata/md5-cache/dev-ml/ocamlnet-4.1.8 index f1c05255d019..1f875f8aafc7 100644 --- a/metadata/md5-cache/dev-ml/ocamlnet-4.1.8 +++ b/metadata/md5-cache/dev-ml/ocamlnet-4.1.8 @@ -11,5 +11,5 @@ RDEPEND=>=dev-ml/findlib-1.0 >=dev-lang/ocaml-3.10.2:=[ocamlopt?] pcre? ( >=dev- RESTRICT=installsources strip SLOT=0/4.1.8 SRC_URI=http://download.camlcity.org/download/ocamlnet-4.1.8.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=13e7f5383b043ebb3171583ae93b02ad diff --git a/metadata/md5-cache/dev-ml/ocamlsdl-0.9.1 b/metadata/md5-cache/dev-ml/ocamlsdl-0.9.1 index c0022bd6091f..cbd2fd329f8f 100644 --- a/metadata/md5-cache/dev-ml/ocamlsdl-0.9.1 +++ b/metadata/md5-cache/dev-ml/ocamlsdl-0.9.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt=] >=media-libs/libsdl-1.2 opengl? ( >=dev-ml/lablgl-0.98:= ) >=media-libs/sdl-mixer-1.2 >=media-libs/sdl-image-1.2 truetype? ( >=media-libs/sdl-ttf-2.0 ) SLOT=0/0.9.1 SRC_URI=mirror://sourceforge/ocamlsdl/ocamlsdl-0.9.1.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=1a311da00e4c349e39769a3da3cd64ec diff --git a/metadata/md5-cache/dev-ml/ocplib-endian-1.0 b/metadata/md5-cache/dev-ml/ocplib-endian-1.0 index ffcdaa559fc2..7e35cb6531a6 100644 --- a/metadata/md5-cache/dev-ml/ocplib-endian-1.0 +++ b/metadata/md5-cache/dev-ml/ocplib-endian-1.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/1.0 SRC_URI=https://github.com/OCamlPro/ocplib-endian/archive/1.0.tar.gz -> ocplib-endian-1.0.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=29ab8897b09cc1fc485c69d218585462 diff --git a/metadata/md5-cache/dev-ml/ocplib-simplex-0.3 b/metadata/md5-cache/dev-ml/ocplib-simplex-0.3 index bd30712d6c39..0185e900b9f1 100644 --- a/metadata/md5-cache/dev-ml/ocplib-simplex-0.3 +++ b/metadata/md5-cache/dev-ml/ocplib-simplex-0.3 @@ -7,5 +7,5 @@ KEYWORDS=amd64 LICENSE=LGPL-2.1-with-linking-exception SLOT=0 SRC_URI=https://github.com/OCamlPro-Iguernlala/ocplib-simplex/archive/0.3.tar.gz -> ocplib-simplex-0.3.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib df74899b0837d14d75b7e6bb42422b14 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib 9674d5e3d151793fecab20e2bb73e6c6 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=c61a9499cbd22e136246509813b2b3f9 diff --git a/metadata/md5-cache/dev-ml/ocplib-simplex-0.4 b/metadata/md5-cache/dev-ml/ocplib-simplex-0.4 index 8983a27ce2fd..e4235c8b8100 100644 --- a/metadata/md5-cache/dev-ml/ocplib-simplex-0.4 +++ b/metadata/md5-cache/dev-ml/ocplib-simplex-0.4 @@ -8,5 +8,5 @@ KEYWORDS=amd64 LICENSE=LGPL-2.1-with-linking-exception SLOT=0 SRC_URI=https://github.com/OCamlPro-Iguernlala/ocplib-simplex/archive/v0.4.tar.gz -> ocplib-simplex-0.4.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib df74899b0837d14d75b7e6bb42422b14 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib 9674d5e3d151793fecab20e2bb73e6c6 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=db1b5c4c5fcd6a27dfd90cba1a30b8b3 diff --git a/metadata/md5-cache/dev-ml/octavius-1.1.0 b/metadata/md5-cache/dev-ml/octavius-1.1.0 index 2427bb30d2e1..f4fce3100573 100644 --- a/metadata/md5-cache/dev-ml/octavius-1.1.0 +++ b/metadata/md5-cache/dev-ml/octavius-1.1.0 @@ -8,5 +8,5 @@ LICENSE=ISC RDEPEND=>=dev-lang/ocaml-4:= SLOT=0/1.1.0 SRC_URI=https://github.com/ocaml-doc/octavius/archive/v1.1.0.tar.gz -> octavius-1.1.0.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 opam b4de444efce371928602cbf4cd91307e _md5_=cbcb5b3732af72b5c28797739eaf0f15 diff --git a/metadata/md5-cache/dev-ml/ocurl-0.7.10 b/metadata/md5-cache/dev-ml/ocurl-0.7.10 index 5e10e1909ef1..e0ee9bfeecf8 100644 --- a/metadata/md5-cache/dev-ml/ocurl-0.7.10 +++ b/metadata/md5-cache/dev-ml/ocurl-0.7.10 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=net-misc/curl-7.9.8 dev-ml/lwt:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt] SLOT=0/0.7.10 SRC_URI=https://github.com/ygrek/ocurl/archive/0.7.10.tar.gz -> ocurl-0.7.10.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=0f784370de25524671b548c589b3ec9f diff --git a/metadata/md5-cache/dev-ml/ocurl-0.9.1 b/metadata/md5-cache/dev-ml/ocurl-0.9.1 index 5595c110032e..37fc2ee0c30d 100644 --- a/metadata/md5-cache/dev-ml/ocurl-0.9.1 +++ b/metadata/md5-cache/dev-ml/ocurl-0.9.1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=>=net-misc/curl-7.9.8 dev-ml/lwt:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?] SLOT=0/0.9.1 SRC_URI=https://github.com/ygrek/ocurl/archive/0.9.1.tar.gz -> ocurl-0.9.1.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=29be3025da963400145596c113ff3cbf diff --git a/metadata/md5-cache/dev-ml/opam-core-2.0.7 b/metadata/md5-cache/dev-ml/opam-core-2.0.7 index 67772599fd7e..6e5e0433d7db 100644 --- a/metadata/md5-cache/dev-ml/opam-core-2.0.7 +++ b/metadata/md5-cache/dev-ml/opam-core-2.0.7 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-ml/ocamlgraph:= dev-ml/re:= dev-ml/opam-file-format:= dev-ml/cmdliner:= >=dev-lang/ocaml-4:= SLOT=0/2.0.7 SRC_URI=https://github.com/ocaml/opam/archive/2.0.7.tar.gz -> opam-2.0.7.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=217cc5a34c4b20215601e379fad0e399 diff --git a/metadata/md5-cache/dev-ml/opam-file-format-2.1.0 b/metadata/md5-cache/dev-ml/opam-file-format-2.1.0 index c73901309090..c29d4048971c 100644 --- a/metadata/md5-cache/dev-ml/opam-file-format-2.1.0 +++ b/metadata/md5-cache/dev-ml/opam-file-format-2.1.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/ocaml:=[ocamlopt?] SLOT=0/2.1.0 SRC_URI=https://github.com/ocaml/opam-file-format/archive/2.1.0.tar.gz -> opam-file-format-2.1.0.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=d8c79400d9751b4ee74beae286bdf23d diff --git a/metadata/md5-cache/dev-ml/opam-format-2.0.7 b/metadata/md5-cache/dev-ml/opam-format-2.0.7 index f8fb19cce864..8b435f5f09f4 100644 --- a/metadata/md5-cache/dev-ml/opam-format-2.0.7 +++ b/metadata/md5-cache/dev-ml/opam-format-2.0.7 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-ml/opam-core:= dev-ml/re:= dev-ml/opam-file-format:= >=dev-lang/ocaml-4:= SLOT=0/2.0.7 SRC_URI=https://github.com/ocaml/opam/archive/2.0.7.tar.gz -> opam-2.0.7.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=818e78971f498e1caf16d21910b03e79 diff --git a/metadata/md5-cache/dev-ml/opam-installer-2.0.7 b/metadata/md5-cache/dev-ml/opam-installer-2.0.7 index 189b6afb6878..2abcf61a0df6 100644 --- a/metadata/md5-cache/dev-ml/opam-installer-2.0.7 +++ b/metadata/md5-cache/dev-ml/opam-installer-2.0.7 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/ocaml-4.02.3 >=dev-lang/ocaml-4:= SLOT=0/2.0.7 SRC_URI=https://github.com/ocaml/opam/releases/download/2.0.7/opam-full-2.0.7.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=321313b03774204cecc9ca861a0a53c1 diff --git a/metadata/md5-cache/dev-ml/optcomp-1.6-r1 b/metadata/md5-cache/dev-ml/optcomp-1.6-r1 index b6bd417c38ac..b997a6234906 100644 --- a/metadata/md5-cache/dev-ml/optcomp-1.6-r1 +++ b/metadata/md5-cache/dev-ml/optcomp-1.6-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?] SLOT=0/1.6 SRC_URI=https://github.com/diml/optcomp/archive/1.6.tar.gz -> optcomp-1.6.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=74bcdf05f0ffc6eb0d36c47d1b22ffe3 diff --git a/metadata/md5-cache/dev-ml/ounit-2.0.6 b/metadata/md5-cache/dev-ml/ounit-2.0.6 index d87e3229f83d..cd71a715e0a1 100644 --- a/metadata/md5-cache/dev-ml/ounit-2.0.6 +++ b/metadata/md5-cache/dev-ml/ounit-2.0.6 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] SLOT=0/2.0.6 SRC_URI=https://forge.ocamlcore.org/frs/download.php/1722/ounit-2.0.6.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d27cf6bcf1393f965f504cc1f79eb01c diff --git a/metadata/md5-cache/dev-ml/patience_diff-0.9.0 b/metadata/md5-cache/dev-ml/patience_diff-0.9.0 index c3dfe085423d..3cbf14a1d1b2 100644 --- a/metadata/md5-cache/dev-ml/patience_diff-0.9.0 +++ b/metadata/md5-cache/dev-ml/patience_diff-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/core_kernel:= dev-ml/ppx_driver:= dev-ml/ppx_jane:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/patience_diff/archive/v0.9.0.tar.gz -> patience_diff-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=6db3632c82627bb161c0d80cda005c72 diff --git a/metadata/md5-cache/dev-ml/pcre-ocaml-7.2.3 b/metadata/md5-cache/dev-ml/pcre-ocaml-7.2.3 index 633ea0aeaecc..b8732ec4fd09 100644 --- a/metadata/md5-cache/dev-ml/pcre-ocaml-7.2.3 +++ b/metadata/md5-cache/dev-ml/pcre-ocaml-7.2.3 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-libs/libpcre-4.5 >=dev-lang/ocaml-4:= >=dev-lang/ocaml-3.12:=[ocamlopt?] SLOT=0/7.2.3 SRC_URI=https://github.com/mmottl/pcre-ocaml/releases/download/v7.2.3/pcre-ocaml-7.2.3.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e3b3e0776648a9883a9ad75f4a8e8e1d diff --git a/metadata/md5-cache/dev-ml/pgocaml-2.3 b/metadata/md5-cache/dev-ml/pgocaml-2.3 index 0d8ec42808e5..a8b6ba15d5f2 100644 --- a/metadata/md5-cache/dev-ml/pgocaml-2.3 +++ b/metadata/md5-cache/dev-ml/pgocaml-2.3 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=dev-ml/calendar:= dev-ml/csv:= dev-ml/ocaml-re:= camlp4? ( dev-ml/camlp4:= ) >=dev-lang/ocaml-3.12:=[ocamlopt?] SLOT=0/2.3 SRC_URI=http://forge.ocamlcore.org/frs/download.php/1597/pgocaml-2.3.tgz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=07c41cad72c9bbb555651e26923a4b1b diff --git a/metadata/md5-cache/dev-ml/ppx_assert-0.9.0 b/metadata/md5-cache/dev-ml/ppx_assert-0.9.0 index edc45befc923..a6c95978d53a 100644 --- a/metadata/md5-cache/dev-ml/ppx_assert-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_assert-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/ppx_compare:= dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_here:= dev-ml/ppx_metaquot:= dev-ml/ppx_sexp_conv:= dev-ml/ppx_type_conv dev-ml/sexplib:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_assert/archive/v0.9.0.tar.gz -> ppx_assert-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=0b7b46991c8396fb9131499d74e1d319 diff --git a/metadata/md5-cache/dev-ml/ppx_ast-0.9.1 b/metadata/md5-cache/dev-ml/ppx_ast-0.9.1 index 6467ffd4debc..74a04731d12d 100644 --- a/metadata/md5-cache/dev-ml/ppx_ast-0.9.1 +++ b/metadata/md5-cache/dev-ml/ppx_ast-0.9.1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ocaml-compiler-libs:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.1 SRC_URI=https://github.com/janestreet/ppx_ast/archive/v0.9.1.tar.gz -> ppx_ast-0.9.1.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=2f8970af9000908999d6184d066c41bb diff --git a/metadata/md5-cache/dev-ml/ppx_base-0.9.0 b/metadata/md5-cache/dev-ml/ppx_base-0.9.0 index 2a9a55f97005..98bb91a59195 100644 --- a/metadata/md5-cache/dev-ml/ppx_base-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_base-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_compare:= dev-ml/ppx_driver:= dev-ml/ppx_enumerate:= dev-ml/ppx_hash:= dev-ml/ppx_js_style:= dev-ml/ppx_sexp_conv:= dev-ml/ppx_type_conv:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_base/archive/v0.9.0.tar.gz -> ppx_base-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=d2eda158fb743ca8beea2f0c327bd1ef diff --git a/metadata/md5-cache/dev-ml/ppx_bench-0.9.1 b/metadata/md5-cache/dev-ml/ppx_bench-0.9.1 index 265dae9c93ee..f6dcbd70a025 100644 --- a/metadata/md5-cache/dev-ml/ppx_bench-0.9.1 +++ b/metadata/md5-cache/dev-ml/ppx_bench-0.9.1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_inline_test:= dev-ml/ppx_metaquot:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.1 SRC_URI=https://github.com/janestreet/ppx_bench/archive/v0.9.1.tar.gz -> ppx_bench-0.9.1.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=d32aca086ea3a8eb8da9ba91a7502155 diff --git a/metadata/md5-cache/dev-ml/ppx_bin_prot-0.9.0 b/metadata/md5-cache/dev-ml/ppx_bin_prot-0.9.0 index 72b3fdfbb420..adb8b0b55e77 100644 --- a/metadata/md5-cache/dev-ml/ppx_bin_prot-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_bin_prot-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/bin-prot:= dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_here:= dev-ml/ppx_metaquot:= dev-ml/ppx_type_conv:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_bin_prot/archive/v0.9.0.tar.gz -> ppx_bin_prot-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=ab5c3768ecdd8c3acd769013aa10380e diff --git a/metadata/md5-cache/dev-ml/ppx_compare-0.9.0-r1 b/metadata/md5-cache/dev-ml/ppx_compare-0.9.0-r1 index 15706aa0260c..06dcd3d38f89 100644 --- a/metadata/md5-cache/dev-ml/ppx_compare-0.9.0-r1 +++ b/metadata/md5-cache/dev-ml/ppx_compare-0.9.0-r1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_driver:= dev-ml/ppx_type_conv:= dev-ml/ppx_core:= dev-ml/base:= dev-ml/ocaml-migrate-parsetree:= dev-ml/ppx_metaquot:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_compare/archive/v0.9.0.tar.gz -> ppx_compare-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=2dca3048f5f3c64b14e7150d0c45c0ea diff --git a/metadata/md5-cache/dev-ml/ppx_core-0.9.0-r1 b/metadata/md5-cache/dev-ml/ppx_core-0.9.0-r1 index 5a439f6de23a..3b351337f484 100644 --- a/metadata/md5-cache/dev-ml/ppx_core-0.9.0-r1 +++ b/metadata/md5-cache/dev-ml/ppx_core-0.9.0-r1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/ocaml-compiler-libs:= dev-ml/ppx_ast:= dev-ml/ppx_traverse_builtins:= dev-ml/stdio:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_core/archive/v0.9.0.tar.gz -> ppx_core-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=39357472dfc94cf45b643e5eb2246f52 diff --git a/metadata/md5-cache/dev-ml/ppx_custom_printf-0.9.0-r1 b/metadata/md5-cache/dev-ml/ppx_custom_printf-0.9.0-r1 index 7acc8669521e..3936156cacfc 100644 --- a/metadata/md5-cache/dev-ml/ppx_custom_printf-0.9.0-r1 +++ b/metadata/md5-cache/dev-ml/ppx_custom_printf-0.9.0-r1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ppx_sexp_conv:= dev-ml/ppx_type_conv:= dev-ml/ppx_traverse dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_custom_printf/archive/v0.9.0.tar.gz -> ppx_custom_printf-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=1e7b4d1bba9283bd7d0922c3ff71f77f diff --git a/metadata/md5-cache/dev-ml/ppx_derivers-1.0 b/metadata/md5-cache/dev-ml/ppx_derivers-1.0 index 6dbd10d04e39..8cbe5f1781cf 100644 --- a/metadata/md5-cache/dev-ml/ppx_derivers-1.0 +++ b/metadata/md5-cache/dev-ml/ppx_derivers-1.0 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/ocaml-4:= SLOT=0/1.0 SRC_URI=https://github.com/diml/ppx_derivers/archive/1.0.tar.gz -> ppx_derivers-1.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=db65d659fb2c39bbe68597337ed82d5d diff --git a/metadata/md5-cache/dev-ml/ppx_driver-0.9.1-r1 b/metadata/md5-cache/dev-ml/ppx_driver-0.9.1-r1 index c93684830f0d..46e485408d3a 100644 --- a/metadata/md5-cache/dev-ml/ppx_driver-0.9.1-r1 +++ b/metadata/md5-cache/dev-ml/ppx_driver-0.9.1-r1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/stdio:= dev-ml/ppx_optcomp:= dev-ml/ocaml-migrate-parsetree:= dev-ml/ocamlbuild:= >=dev-lang/ocaml-4:= SLOT=0/0.9.1 SRC_URI=https://github.com/janestreet/ppx_driver/archive/v0.9.1.tar.gz -> ppx_driver-0.9.1.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=5eebc7208b78283faaf55e931f0c6ec1 diff --git a/metadata/md5-cache/dev-ml/ppx_enumerate-0.9.0 b/metadata/md5-cache/dev-ml/ppx_enumerate-0.9.0 index ad815a18ef70..5b5100b02da7 100644 --- a/metadata/md5-cache/dev-ml/ppx_enumerate-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_enumerate-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ppx_type_conv:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_enumerate/archive/v0.9.0.tar.gz -> ppx_enumerate-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=5d2b37c4d7c7350ca9bfee645c938f02 diff --git a/metadata/md5-cache/dev-ml/ppx_expect-0.9.0 b/metadata/md5-cache/dev-ml/ppx_expect-0.9.0 index 219b60be7002..8d14a4bfa817 100644 --- a/metadata/md5-cache/dev-ml/ppx_expect-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_expect-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/ppx_assert:= dev-ml/ppx_compare:= dev-ml/ppx_core:= dev-ml/ppx_custom_printf:= dev-ml/ppx_driver:= dev-ml/ppx_fields_conv:= dev-ml/ppx_here:= dev-ml/ppx_inline_test:= dev-ml/ppx_metaquot:= dev-ml/ppx_sexp_conv:= dev-ml/ppx_traverse:= dev-ml/ppx_variants_conv:= dev-ml/stdio:= dev-ml/ocaml-migrate-parsetree:= dev-ml/ocaml-re:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_expect/archive/v0.9.0.tar.gz -> ppx_expect-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=de04ea3737696aa4d6ce8eacba8c8d99 diff --git a/metadata/md5-cache/dev-ml/ppx_fail-0.9.0 b/metadata/md5-cache/dev-ml/ppx_fail-0.9.0 index aa9f6edebf9c..ecaa555ee19b 100644 --- a/metadata/md5-cache/dev-ml/ppx_fail-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_fail-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_here:= dev-ml/ppx_metaquot:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_fail/archive/v0.9.0.tar.gz -> ppx_fail-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=a68b871d171c9d63f11e06827910681e diff --git a/metadata/md5-cache/dev-ml/ppx_fields_conv-0.9.0-r1 b/metadata/md5-cache/dev-ml/ppx_fields_conv-0.9.0-r1 index 3e436d3ac407..d97225b52406 100644 --- a/metadata/md5-cache/dev-ml/ppx_fields_conv-0.9.0-r1 +++ b/metadata/md5-cache/dev-ml/ppx_fields_conv-0.9.0-r1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ppx_type_conv:= dev-ml/fieldslib:= dev-ml/ocaml-migrate-parsetree:= dev-ml/ppx_traverse_builtins:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_fields_conv/archive/v0.9.0.tar.gz -> ppx_fields_conv-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=553274bc3d71f529cb5de9b8bcd16d7b diff --git a/metadata/md5-cache/dev-ml/ppx_hash-0.9.0 b/metadata/md5-cache/dev-ml/ppx_hash-0.9.0 index 073889c036ce..92ea13d80932 100644 --- a/metadata/md5-cache/dev-ml/ppx_hash-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_hash-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/ppx_compare:= dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ppx_sexp_conv:= dev-ml/ppx_type_conv:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_hash/archive/v0.9.0.tar.gz -> ppx_hash-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=6f24bade222da199f0aac381d0540358 diff --git a/metadata/md5-cache/dev-ml/ppx_here-0.9.1 b/metadata/md5-cache/dev-ml/ppx_here-0.9.1 index e03492f90f95..204d9f7a351e 100644 --- a/metadata/md5-cache/dev-ml/ppx_here-0.9.1 +++ b/metadata/md5-cache/dev-ml/ppx_here-0.9.1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_optcomp:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.1 SRC_URI=https://github.com/janestreet/ppx_here/archive/v0.9.1.tar.gz -> ppx_here-0.9.1.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=ec049e275302db6b5e6652389ae76e96 diff --git a/metadata/md5-cache/dev-ml/ppx_inline_test-0.9.2 b/metadata/md5-cache/dev-ml/ppx_inline_test-0.9.2 index f65692d3e34f..a100a24f046a 100644 --- a/metadata/md5-cache/dev-ml/ppx_inline_test-0.9.2 +++ b/metadata/md5-cache/dev-ml/ppx_inline_test-0.9.2 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ppx_traverse_builtins:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.2 SRC_URI=https://github.com/janestreet/ppx_inline_test/archive/v0.9.2.tar.gz -> ppx_inline_test-0.9.2.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=23e500527a4d90eb7bd226d64561078a diff --git a/metadata/md5-cache/dev-ml/ppx_jane-0.9.0 b/metadata/md5-cache/dev-ml/ppx_jane-0.9.0 index e950de402b5d..a74d9275e48e 100644 --- a/metadata/md5-cache/dev-ml/ppx_jane-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_jane-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_assert:= dev-ml/ppx_base:= dev-ml/ppx_bench:= dev-ml/ppx_bin_prot:= dev-ml/ppx_custom_printf:= dev-ml/ppx_driver:= dev-ml/ppx_expect:= dev-ml/ppx_fail:= dev-ml/ppx_fields_conv:= dev-ml/ppx_here:= dev-ml/ppx_inline_test:= dev-ml/ppx_let:= dev-ml/ppx_optional:= dev-ml/ppx_pipebang:= dev-ml/ppx_sexp_message:= dev-ml/ppx_sexp_value:= dev-ml/ppx_typerep_conv:= dev-ml/ppx_type_conv:= dev-ml/ppx_variants_conv:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_jane/archive/v0.9.0.tar.gz -> ppx_jane-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=0d947eb68cb8c2fe3a9358b43cf40433 diff --git a/metadata/md5-cache/dev-ml/ppx_js_style-0.9.0 b/metadata/md5-cache/dev-ml/ppx_js_style-0.9.0 index 9f022aaa0235..4161f7d6cd61 100644 --- a/metadata/md5-cache/dev-ml/ppx_js_style-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_js_style-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ocaml-migrate-parsetree:= dev-ml/octavius:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_js_style/archive/v0.9.0.tar.gz -> ppx_js_style-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=2c76d118f31c13292ce2ccc5461e0f61 diff --git a/metadata/md5-cache/dev-ml/ppx_let-0.9.0 b/metadata/md5-cache/dev-ml/ppx_let-0.9.0 index 3dcb51965419..d5a33da832a9 100644 --- a/metadata/md5-cache/dev-ml/ppx_let-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_let-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_let/archive/v0.9.0.tar.gz -> ppx_let-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=bfa40a81a5c7944f7e5c9ec28e6b46cb diff --git a/metadata/md5-cache/dev-ml/ppx_metaquot-0.9.0 b/metadata/md5-cache/dev-ml/ppx_metaquot-0.9.0 index 2847c8843b7a..caaf75603baf 100644 --- a/metadata/md5-cache/dev-ml/ppx_metaquot-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_metaquot-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_traverse_builtins:= dev-ml/ocaml-migrate-parsetree:= =dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_metaquot/archive/v0.9.0.tar.gz -> ppx_metaquot-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=b48d9680cabd3835456dd060028f00fc diff --git a/metadata/md5-cache/dev-ml/ppx_optcomp-0.9.0-r3 b/metadata/md5-cache/dev-ml/ppx_optcomp-0.9.0-r3 index bbae38120da4..6feec35da826 100644 --- a/metadata/md5-cache/dev-ml/ppx_optcomp-0.9.0-r3 +++ b/metadata/md5-cache/dev-ml/ppx_optcomp-0.9.0-r3 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/stdio:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_optcomp/archive/v0.9.0.tar.gz -> ppx_optcomp-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=a9c5ecff4f30e97f0ce2a20248452e78 diff --git a/metadata/md5-cache/dev-ml/ppx_optional-0.9.0 b/metadata/md5-cache/dev-ml/ppx_optional-0.9.0 index 7c1157858356..068531969205 100644 --- a/metadata/md5-cache/dev-ml/ppx_optional-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_optional-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_optional/archive/v0.9.0.tar.gz -> ppx_optional-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=5dd1adaf06b098bdf0a2da2f1f53866a diff --git a/metadata/md5-cache/dev-ml/ppx_pipebang-0.9.0 b/metadata/md5-cache/dev-ml/ppx_pipebang-0.9.0 index 6e97cb7c2997..d08b644155d1 100644 --- a/metadata/md5-cache/dev-ml/ppx_pipebang-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_pipebang-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_pipebang/archive/v0.9.0.tar.gz -> ppx_pipebang-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=7da0c4090a518ede339e19e9aafb644f diff --git a/metadata/md5-cache/dev-ml/ppx_sexp_conv-0.9.0-r1 b/metadata/md5-cache/dev-ml/ppx_sexp_conv-0.9.0-r1 index dd65d4c0e3b3..3fb1ed911942 100644 --- a/metadata/md5-cache/dev-ml/ppx_sexp_conv-0.9.0-r1 +++ b/metadata/md5-cache/dev-ml/ppx_sexp_conv-0.9.0-r1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_type_conv:= dev-ml/ppx_metaquot:= dev-ml/ppx_optcomp:= dev-ml/sexplib:= dev-ml/ocaml-migrate-parsetree:= dev-ml/ppx_traverse_builtins:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_sexp_conv/archive/v0.9.0.tar.gz -> ppx_sexp_conv-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=e35c4add784e5c4d871a691fc4cd8ead diff --git a/metadata/md5-cache/dev-ml/ppx_sexp_message-0.9.0 b/metadata/md5-cache/dev-ml/ppx_sexp_message-0.9.0 index 239cae8ecc0d..1076c78a3d50 100644 --- a/metadata/md5-cache/dev-ml/ppx_sexp_message-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_sexp_message-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_here:= dev-ml/ppx_metaquot:= dev-ml/ppx_sexp_conv:= dev-ml/sexplib:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_sexp_message/archive/v0.9.0.tar.gz -> ppx_sexp_message-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=f381bdbc035f18f7fdab24cb4a9e13c8 diff --git a/metadata/md5-cache/dev-ml/ppx_sexp_value-0.9.0 b/metadata/md5-cache/dev-ml/ppx_sexp_value-0.9.0 index 9977513ff679..2f88656bb72a 100644 --- a/metadata/md5-cache/dev-ml/ppx_sexp_value-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_sexp_value-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_here:= dev-ml/ppx_metaquot:= dev-ml/ppx_sexp_conv:= dev-ml/sexplib:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_sexp_value/archive/v0.9.0.tar.gz -> ppx_sexp_value-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=31666963ef78f649771038191855c3f6 diff --git a/metadata/md5-cache/dev-ml/ppx_tools_versioned-5.0.1 b/metadata/md5-cache/dev-ml/ppx_tools_versioned-5.0.1 index ea4cb0723883..a15655d38def 100644 --- a/metadata/md5-cache/dev-ml/ppx_tools_versioned-5.0.1 +++ b/metadata/md5-cache/dev-ml/ppx_tools_versioned-5.0.1 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=dev-lang/ocaml:= dev-ml/ocaml-migrate-parsetree:= SLOT=0/5.0.1 SRC_URI=https://github.com/let-def/ppx_tools_versioned/archive/5.0.1.tar.gz -> ppx_tools_versioned-5.0.1.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=7218f7b16c3a7e057efef3f7066a165b diff --git a/metadata/md5-cache/dev-ml/ppx_traverse-0.9.0 b/metadata/md5-cache/dev-ml/ppx_traverse-0.9.0 index d11b5a0c1b6f..502abe690361 100644 --- a/metadata/md5-cache/dev-ml/ppx_traverse-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_traverse-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ppx_type_conv:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_traverse/archive/v0.9.0.tar.gz -> ppx_traverse-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=ea43b4900c7d52031ecc6dddcca7c011 diff --git a/metadata/md5-cache/dev-ml/ppx_traverse_builtins-0.9.0 b/metadata/md5-cache/dev-ml/ppx_traverse_builtins-0.9.0 index 9d86e89ffce1..c617fd52b8cf 100644 --- a/metadata/md5-cache/dev-ml/ppx_traverse_builtins-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_traverse_builtins-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_traverse_builtins/archive/v0.9.0.tar.gz -> ppx_traverse_builtins-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=53f213a132b85b86d9c2c24544a9f989 diff --git a/metadata/md5-cache/dev-ml/ppx_type_conv-0.9.0 b/metadata/md5-cache/dev-ml/ppx_type_conv-0.9.0 index 34328cffc219..f4a442f182da 100644 --- a/metadata/md5-cache/dev-ml/ppx_type_conv-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_type_conv-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ppx_core:= dev-ml/ocaml-migrate-parsetree:= dev-ml/ppx_deriving:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_type_conv/archive/v0.9.0.tar.gz -> ppx_type_conv-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=afeb46c8e96915695f5d12fe37b59a9f diff --git a/metadata/md5-cache/dev-ml/ppx_typerep_conv-0.9.0 b/metadata/md5-cache/dev-ml/ppx_typerep_conv-0.9.0 index 54a82d3b7a43..75876da40764 100644 --- a/metadata/md5-cache/dev-ml/ppx_typerep_conv-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_typerep_conv-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ppx_type_conv:= dev-ml/typerep:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_typerep_conv/archive/v0.9.0.tar.gz -> ppx_typerep_conv-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=3d7c796e73f530b4ffc6369de466ce94 diff --git a/metadata/md5-cache/dev-ml/ppx_variants_conv-0.9.0 b/metadata/md5-cache/dev-ml/ppx_variants_conv-0.9.0 index 67cd339ea401..de4dfd1e92e4 100644 --- a/metadata/md5-cache/dev-ml/ppx_variants_conv-0.9.0 +++ b/metadata/md5-cache/dev-ml/ppx_variants_conv-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/ppx_core:= dev-ml/ppx_driver:= dev-ml/ppx_metaquot:= dev-ml/ppx_type_conv:= dev-ml/variantslib:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/ppx_variants_conv/archive/v0.9.0.tar.gz -> ppx_variants_conv-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=85b8cf52cb554cc85eb56bd818a193ea diff --git a/metadata/md5-cache/dev-ml/qcheck-0.7 b/metadata/md5-cache/dev-ml/qcheck-0.7 index 028f5e0c4b07..047e80ee6af7 100644 --- a/metadata/md5-cache/dev-ml/qcheck-0.7 +++ b/metadata/md5-cache/dev-ml/qcheck-0.7 @@ -10,5 +10,5 @@ RDEPEND=dev-ml/ounit:= !=dev-lang/ocaml-3.12:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/0.7 SRC_URI=https://github.com/c-cube/qcheck/archive/0.7.tar.gz -> qcheck-0.7.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1fe4c96a2688c948d5e98588dc192cc4 diff --git a/metadata/md5-cache/dev-ml/re2-0.9.0 b/metadata/md5-cache/dev-ml/re2-0.9.0 index 16b537146be1..0be605df4b36 100644 --- a/metadata/md5-cache/dev-ml/re2-0.9.0 +++ b/metadata/md5-cache/dev-ml/re2-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/core_kernel:= dev-ml/ppx_driver:= dev-ml/ppx_jane:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/re2/archive/v0.9.0.tar.gz -> re2-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=335c4c39c1a9d5394e07bbee3c2d66de diff --git a/metadata/md5-cache/dev-ml/re2-0.9.1 b/metadata/md5-cache/dev-ml/re2-0.9.1 index b84e2bf34a52..b5f83454984e 100644 --- a/metadata/md5-cache/dev-ml/re2-0.9.1 +++ b/metadata/md5-cache/dev-ml/re2-0.9.1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/core_kernel:= dev-ml/ppx_driver:= dev-ml/ppx_jane:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.1 SRC_URI=https://github.com/janestreet/re2/archive/v0.9.1.tar.gz -> re2-0.9.1.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=335c4c39c1a9d5394e07bbee3c2d66de diff --git a/metadata/md5-cache/dev-ml/react-1.2.1 b/metadata/md5-cache/dev-ml/react-1.2.1 index 636f3e0cd7cc..bee8483712ff 100644 --- a/metadata/md5-cache/dev-ml/react-1.2.1 +++ b/metadata/md5-cache/dev-ml/react-1.2.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4:= RESTRICT=!test? ( test ) SLOT=0/1.2.1 SRC_URI=https://erratique.ch/software/react/releases/react-1.2.1.tbz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=5a249c84cb721faa3d4060208762d13e diff --git a/metadata/md5-cache/dev-ml/react-1.2.1-r1 b/metadata/md5-cache/dev-ml/react-1.2.1-r1 index 7679c6c927a6..0808f0710f4d 100644 --- a/metadata/md5-cache/dev-ml/react-1.2.1-r1 +++ b/metadata/md5-cache/dev-ml/react-1.2.1-r1 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/ocaml-4:= RESTRICT=!test? ( test ) SLOT=0/1.2.1 SRC_URI=http://erratique.ch/software/react/releases/react-1.2.1.tbz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=24d051e3e736a972929ee2f26d951eb5 diff --git a/metadata/md5-cache/dev-ml/reactiveData-0.2.1 b/metadata/md5-cache/dev-ml/reactiveData-0.2.1 index fb2aa81bcacb..5fe520517c74 100644 --- a/metadata/md5-cache/dev-ml/reactiveData-0.2.1 +++ b/metadata/md5-cache/dev-ml/reactiveData-0.2.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3-with-linking-exception RDEPEND=dev-ml/react:= >=dev-lang/ocaml-4:= SLOT=0/0.2.1 SRC_URI=https://github.com/ocsigen/reactiveData/archive/0.2.1.tar.gz -> reactiveData-0.2.1.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=98d9f05c2bc8dc841646d2e6d240b8e3 diff --git a/metadata/md5-cache/dev-ml/reactiveData-9999 b/metadata/md5-cache/dev-ml/reactiveData-9999 index 4e8acb51bfc8..0ee1ac668199 100644 --- a/metadata/md5-cache/dev-ml/reactiveData-9999 +++ b/metadata/md5-cache/dev-ml/reactiveData-9999 @@ -8,5 +8,5 @@ LICENSE=LGPL-3-with-linking-exception PROPERTIES=live RDEPEND=dev-ml/react:= >=dev-lang/ocaml-4:= SLOT=0/9999 -_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 opam b4de444efce371928602cbf4cd91307e _md5_=98d9f05c2bc8dc841646d2e6d240b8e3 diff --git a/metadata/md5-cache/dev-ml/result-1.2 b/metadata/md5-cache/dev-ml/result-1.2 index 8098e2a3674f..b066198257d1 100644 --- a/metadata/md5-cache/dev-ml/result-1.2 +++ b/metadata/md5-cache/dev-ml/result-1.2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-lang/ocaml:=[ocamlopt?] SLOT=0/1.2 SRC_URI=https://github.com/janestreet/result/archive/1.2.tar.gz -> result-1.2.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=54cf951097586345c5588ef190632c0c diff --git a/metadata/md5-cache/dev-ml/rresult-0.5.0 b/metadata/md5-cache/dev-ml/rresult-0.5.0 index aa57914ad2cd..78397d75675d 100644 --- a/metadata/md5-cache/dev-ml/rresult-0.5.0 +++ b/metadata/md5-cache/dev-ml/rresult-0.5.0 @@ -8,5 +8,5 @@ LICENSE=ISC RDEPEND=dev-ml/result:= >=dev-lang/ocaml-4:= SLOT=0/0.5.0 SRC_URI=https://erratique.ch/software/rresult/releases/rresult-0.5.0.tbz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=a9ddede575de757ac0c8b23dc94394cc diff --git a/metadata/md5-cache/dev-ml/seq-1 b/metadata/md5-cache/dev-ml/seq-1 index 49a0c58ac558..bdd9dff7a5f4 100644 --- a/metadata/md5-cache/dev-ml/seq-1 +++ b/metadata/md5-cache/dev-ml/seq-1 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 LICENSE=public-domain RDEPEND=>=dev-lang/ocaml-4:= SLOT=0/1 -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=5db1f7de277fea194de09ee2946f3178 diff --git a/metadata/md5-cache/dev-ml/sexplib-0.9.2 b/metadata/md5-cache/dev-ml/sexplib-0.9.2 index b5b0b000d1e8..1bfc667ff9df 100644 --- a/metadata/md5-cache/dev-ml/sexplib-0.9.2 +++ b/metadata/md5-cache/dev-ml/sexplib-0.9.2 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-lang/ocaml-4:= SLOT=0/0.9.2 SRC_URI=https://github.com/janestreet/sexplib/archive/v0.9.2.tar.gz -> sexplib-0.9.2.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=282a1dc214e669d93cbd747d5e9433bf diff --git a/metadata/md5-cache/dev-ml/sexplib-0.9.3 b/metadata/md5-cache/dev-ml/sexplib-0.9.3 index 49858664f2a2..f48c5d25ae17 100644 --- a/metadata/md5-cache/dev-ml/sexplib-0.9.3 +++ b/metadata/md5-cache/dev-ml/sexplib-0.9.3 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-lang/ocaml-4:= SLOT=0/0.9.3 SRC_URI=https://github.com/janestreet/sexplib/archive/v0.9.3.tar.gz -> sexplib-0.9.3.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=282a1dc214e669d93cbd747d5e9433bf diff --git a/metadata/md5-cache/dev-ml/spawn-0.9.0 b/metadata/md5-cache/dev-ml/spawn-0.9.0 index 562509c5ac95..08b6e97bc6ed 100644 --- a/metadata/md5-cache/dev-ml/spawn-0.9.0 +++ b/metadata/md5-cache/dev-ml/spawn-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/spawn/archive/v0.9.0.tar.gz -> spawn-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=efa61e05acee15c9104a3e2f5b0dae70 diff --git a/metadata/md5-cache/dev-ml/stdio-0.9.0-r1 b/metadata/md5-cache/dev-ml/stdio-0.9.0-r1 index 49bfd5dc2ff0..5a109d648082 100644 --- a/metadata/md5-cache/dev-ml/stdio-0.9.0-r1 +++ b/metadata/md5-cache/dev-ml/stdio-0.9.0-r1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/sexplib:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/stdio/archive/v0.9.0.tar.gz -> stdio-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=e2dfb45e87ff0a6207348a54312c9e2f diff --git a/metadata/md5-cache/dev-ml/stdio-0.9.1 b/metadata/md5-cache/dev-ml/stdio-0.9.1 index 5db5208816af..61817db53c0a 100644 --- a/metadata/md5-cache/dev-ml/stdio-0.9.1 +++ b/metadata/md5-cache/dev-ml/stdio-0.9.1 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/sexplib:= >=dev-lang/ocaml-4:= SLOT=0/0.9.1 SRC_URI=https://github.com/janestreet/stdio/archive/v0.9.1.tar.gz -> stdio-0.9.1.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=e2dfb45e87ff0a6207348a54312c9e2f diff --git a/metadata/md5-cache/dev-ml/stringext-1.4.3 b/metadata/md5-cache/dev-ml/stringext-1.4.3 index 86c3ce358fb3..be98a95c0901 100644 --- a/metadata/md5-cache/dev-ml/stringext-1.4.3 +++ b/metadata/md5-cache/dev-ml/stringext-1.4.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4:= >=dev-lang/ocaml-3.12:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/1.4.3 SRC_URI=https://github.com/rgrinberg/stringext/archive/v1.4.3.tar.gz -> stringext-1.4.3.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f434d6b54ae69e829a986614210af2f9 diff --git a/metadata/md5-cache/dev-ml/stringext-1.5.0 b/metadata/md5-cache/dev-ml/stringext-1.5.0 index 3d82371dc93d..010bbb551188 100644 --- a/metadata/md5-cache/dev-ml/stringext-1.5.0 +++ b/metadata/md5-cache/dev-ml/stringext-1.5.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4:= RESTRICT=!test? ( test ) SLOT=0/1.5.0 SRC_URI=https://github.com/rgrinberg/stringext/archive/1.5.0.tar.gz -> stringext-1.5.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=6c33702dec8e27042484c71df5e0e8c1 diff --git a/metadata/md5-cache/dev-ml/textutils-0.9.0 b/metadata/md5-cache/dev-ml/textutils-0.9.0 index 35c33b69ca96..c4fe3d61d65d 100644 --- a/metadata/md5-cache/dev-ml/textutils-0.9.0 +++ b/metadata/md5-cache/dev-ml/textutils-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/core:= dev-ml/ppx_driver:= dev-ml/ppx_jane:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/textutils/archive/v0.9.0.tar.gz -> textutils-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=704a092f6d2caecf664702c91fec2df6 diff --git a/metadata/md5-cache/dev-ml/topkg-0.9.0 b/metadata/md5-cache/dev-ml/topkg-0.9.0 index 36667f62ad08..86da88fa4946 100644 --- a/metadata/md5-cache/dev-ml/topkg-0.9.0 +++ b/metadata/md5-cache/dev-ml/topkg-0.9.0 @@ -8,5 +8,5 @@ LICENSE=ISC RDEPEND=dev-ml/result:= dev-ml/ocamlbuild:= dev-ml/findlib:= dev-lang/ocaml:= SLOT=0/0.9.0 SRC_URI=https://github.com/dbuenzli/topkg/archive/v0.9.0.tar.gz -> topkg-0.9.0.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=567e25133eaa6640eb94e02a8f350dd0 diff --git a/metadata/md5-cache/dev-ml/topkg-0.9.1 b/metadata/md5-cache/dev-ml/topkg-0.9.1 index bc786c3d6260..bd94ba0b6e8e 100644 --- a/metadata/md5-cache/dev-ml/topkg-0.9.1 +++ b/metadata/md5-cache/dev-ml/topkg-0.9.1 @@ -8,5 +8,5 @@ LICENSE=ISC RDEPEND=dev-ml/result:= dev-ml/ocamlbuild:= dev-ml/findlib:= dev-lang/ocaml:= SLOT=0/0.9.1 SRC_URI=https://github.com/dbuenzli/topkg/archive/v0.9.1.tar.gz -> topkg-0.9.1.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=567e25133eaa6640eb94e02a8f350dd0 diff --git a/metadata/md5-cache/dev-ml/topkg-1.0.3 b/metadata/md5-cache/dev-ml/topkg-1.0.3 index d0f87b8c5b4e..cf1587351800 100644 --- a/metadata/md5-cache/dev-ml/topkg-1.0.3 +++ b/metadata/md5-cache/dev-ml/topkg-1.0.3 @@ -8,5 +8,5 @@ LICENSE=ISC RDEPEND=dev-ml/result:= dev-ml/ocamlbuild:= dev-ml/findlib:= dev-lang/ocaml:= SLOT=0/1.0.3 SRC_URI=https://github.com/dbuenzli/topkg/archive/v1.0.3.tar.gz -> topkg-1.0.3.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=dd95e0e2e7418caa61aaeeed7304d8b2 diff --git a/metadata/md5-cache/dev-ml/type-conv-113.00.02 b/metadata/md5-cache/dev-ml/type-conv-113.00.02 index e6bfccc60553..93baf3d29f50 100644 --- a/metadata/md5-cache/dev-ml/type-conv-113.00.02 +++ b/metadata/md5-cache/dev-ml/type-conv-113.00.02 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.02[ocamlopt?] dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?] SLOT=0/113.00.02 SRC_URI=http://ocaml.janestreet.com/ocaml-core/113.00/files/type_conv-113.00.02.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=790ff2b2c3413f325b952c1f2733312b diff --git a/metadata/md5-cache/dev-ml/typerep-0.9.0 b/metadata/md5-cache/dev-ml/typerep-0.9.0 index 6c83fc7563b3..77f01e77d7f4 100644 --- a/metadata/md5-cache/dev-ml/typerep-0.9.0 +++ b/metadata/md5-cache/dev-ml/typerep-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/typerep/archive/v0.9.0.tar.gz -> typerep-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=9715ff2e47717286dc2a7c1dc71b7e5f diff --git a/metadata/md5-cache/dev-ml/tyxml-4.1.0 b/metadata/md5-cache/dev-ml/tyxml-4.1.0 index 3e68677f97f6..226f89f5b797 100644 --- a/metadata/md5-cache/dev-ml/tyxml-4.1.0 +++ b/metadata/md5-cache/dev-ml/tyxml-4.1.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-ml/uutf-1.0:= dev-ml/uchar:= dev-ml/ocaml-re:= ppx? ( >=dev-ml/ppx_tools-5:= dev-ml/markup:= ) camlp4? ( dev-ml/camlp4:= ) >=dev-lang/ocaml-3.12:=[ocamlopt?] SLOT=0/4.1.0 SRC_URI=https://github.com/ocsigen/tyxml/archive/4.1.0.tar.gz -> tyxml-4.1.0.tar.gz -_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=base a3f380d8a13f148f16d76fe39e90f451 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e oasis 54418322bbbf713ed1a0222b8c6593c0 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=021798829210256a5f2edc699b152ee7 diff --git a/metadata/md5-cache/dev-ml/uchar-0.0.2 b/metadata/md5-cache/dev-ml/uchar-0.0.2 index 3c8d12da701c..32226629a707 100644 --- a/metadata/md5-cache/dev-ml/uchar-0.0.2 +++ b/metadata/md5-cache/dev-ml/uchar-0.0.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4.03:= RESTRICT=test SLOT=0/0.0.2 SRC_URI=https://github.com/ocaml/uchar/archive/v0.0.2.tar.gz -> uchar-0.0.2.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=061a9464d94aa03f3a45b4f44d184eee diff --git a/metadata/md5-cache/dev-ml/uucp-13.0.0-r2 b/metadata/md5-cache/dev-ml/uucp-13.0.0-r2 index ce89d39063a0..88fec1b4de31 100644 --- a/metadata/md5-cache/dev-ml/uucp-13.0.0-r2 +++ b/metadata/md5-cache/dev-ml/uucp-13.0.0-r2 @@ -9,5 +9,5 @@ LICENSE=ISC RDEPEND=dev-ml/topkg dev-ml/findlib >=dev-lang/ocaml-4:= SLOT=0/13.0.0 SRC_URI=https://erratique.ch/software/uucp/releases/uucp-13.0.0.tbz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=4a27ceec805efbcff4b7cd52397326e9 diff --git a/metadata/md5-cache/dev-ml/uunf-13.0.0 b/metadata/md5-cache/dev-ml/uunf-13.0.0 index b9f539a23c20..cc38c69cea36 100644 --- a/metadata/md5-cache/dev-ml/uunf-13.0.0 +++ b/metadata/md5-cache/dev-ml/uunf-13.0.0 @@ -9,5 +9,5 @@ LICENSE=ISC RDEPEND=dev-ml/topkg dev-ml/uutf dev-ml/cmdliner >=dev-lang/ocaml-4:= SLOT=0/13.0.0 SRC_URI=https://erratique.ch/software/uunf/releases/uunf-13.0.0.tbz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=09cf9731d7519c29ec45e0f9e07ee340 diff --git a/metadata/md5-cache/dev-ml/uutf-1.0.1 b/metadata/md5-cache/dev-ml/uutf-1.0.1 index bc05e11c0e6c..e77739306f43 100644 --- a/metadata/md5-cache/dev-ml/uutf-1.0.1 +++ b/metadata/md5-cache/dev-ml/uutf-1.0.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] dev-ml/uchar:= utftrip? ( dev-ml/cmdl RESTRICT=!test? ( test ) SLOT=0/1.0.1 SRC_URI=https://erratique.ch/software/uutf/releases/uutf-1.0.1.tbz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 _md5_=77371d92e69c8aafea299bd9575176db diff --git a/metadata/md5-cache/dev-ml/variantslib-0.9.0 b/metadata/md5-cache/dev-ml/variantslib-0.9.0 index 54b9f83ebc6c..edb49efe9f8f 100644 --- a/metadata/md5-cache/dev-ml/variantslib-0.9.0 +++ b/metadata/md5-cache/dev-ml/variantslib-0.9.0 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/ppx_driver:= dev-ml/ocaml-migrate-parsetree:= >=dev-lang/ocaml-4:= SLOT=0/0.9.0 SRC_URI=https://github.com/janestreet/variantslib/archive/v0.9.0.tar.gz -> variantslib-0.9.0.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=d886530b2ff32238ab5fec6fc318d0e1 diff --git a/metadata/md5-cache/dev-ml/yojson-1.4.0 b/metadata/md5-cache/dev-ml/yojson-1.4.0 index 185bd208248b..defbe56dbe95 100644 --- a/metadata/md5-cache/dev-ml/yojson-1.4.0 +++ b/metadata/md5-cache/dev-ml/yojson-1.4.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/ocaml-3.11:=[ocamlopt] dev-ml/easy-format:=[ocamlopt] >=dev-ml/biniou-1.2:=[ocamlopt] >=dev-lang/ocaml-4:= SLOT=0/1.4.0 SRC_URI=https://github.com/mjambon/yojson/archive/v1.4.0.tar.gz -> yojson-1.4.0.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 opam b4de444efce371928602cbf4cd91307e _md5_=fb6b0c3afce29897340daa4af070bbf4 diff --git a/metadata/md5-cache/dev-ml/zarith-1.10 b/metadata/md5-cache/dev-ml/zarith-1.10 index 1609a5c0aa3e..ccf614958ecc 100644 --- a/metadata/md5-cache/dev-ml/zarith-1.10 +++ b/metadata/md5-cache/dev-ml/zarith-1.10 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.05:=[ocamlopt?] !mpir? ( dev-libs/gmp:0= ) mpir? ( sci-libs/mpir ) SLOT=0/1.10 SRC_URI=https://github.com/ocaml/Zarith/archive/release-1.10.tar.gz -> zarith-1.10.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=1a17282d2e2c40218bae253d9e765d45 diff --git a/metadata/md5-cache/dev-ml/zarith-1.11 b/metadata/md5-cache/dev-ml/zarith-1.11 index 5d6641da8d3a..83ee5cf2ee9a 100644 --- a/metadata/md5-cache/dev-ml/zarith-1.11 +++ b/metadata/md5-cache/dev-ml/zarith-1.11 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/ocaml-4.05:=[ocamlopt=] !mpir? ( dev-libs/gmp:0= ) mpir? ( sc RESTRICT=!ocamlopt? ( test ) SLOT=0/1.11 SRC_URI=https://github.com/ocaml/Zarith/archive/release-1.11.tar.gz -> zarith-1.11.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=f426ab859f2666a321344b86ffde36ad diff --git a/metadata/md5-cache/dev-ml/zarith-1.7 b/metadata/md5-cache/dev-ml/zarith-1.7 index 290b2836ca5d..dc6e6d3d82ba 100644 --- a/metadata/md5-cache/dev-ml/zarith-1.7 +++ b/metadata/md5-cache/dev-ml/zarith-1.7 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.05:=[ocamlopt?] !mpir? ( dev-libs/gmp:0= ) mpir? ( sci-libs/mpir ) SLOT=0/1.7 SRC_URI=https://github.com/ocaml/Zarith/archive/release-1.7.tar.gz -> zarith-1.7.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=87b9557436dcb93565c863d9f65b066c diff --git a/metadata/md5-cache/dev-ml/zarith-1.9.1 b/metadata/md5-cache/dev-ml/zarith-1.9.1 index 6523750a6940..67e9d5e7464d 100644 --- a/metadata/md5-cache/dev-ml/zarith-1.9.1 +++ b/metadata/md5-cache/dev-ml/zarith-1.9.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.05:=[ocamlopt?] !mpir? ( dev-libs/gmp:0= ) mpir? ( sci-libs/mpir ) SLOT=0/1.9.1 SRC_URI=https://github.com/ocaml/Zarith/archive/release-1.9.1.tar.gz -> zarith-1.9.1.tar.gz -_eclasses_=findlib df74899b0837d14d75b7e6bb42422b14 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=findlib 9674d5e3d151793fecab20e2bb73e6c6 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=fdec2d0f9007e17a04eb75f085b7259e diff --git a/metadata/md5-cache/dev-php/Manifest.gz b/metadata/md5-cache/dev-php/Manifest.gz index 7b2e78c6b3ef..db3d09e6a5b5 100644 Binary files a/metadata/md5-cache/dev-php/Manifest.gz and b/metadata/md5-cache/dev-php/Manifest.gz differ diff --git a/metadata/md5-cache/dev-php/pecl-apcu-5.1.18 b/metadata/md5-cache/dev-php/pecl-apcu-5.1.18 deleted file mode 100644 index 56fa140ec8ab..000000000000 --- a/metadata/md5-cache/dev-php/pecl-apcu-5.1.18 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 sys-devel/m4 sys-devel/libtool php_targets_php7-1? ( dev-lang/php:7.1 ) php_targets_php7-2? ( dev-lang/php:7.2 ) php_targets_php7-3? ( dev-lang/php:7.3 ) php_targets_php7-4? ( dev-lang/php:7.4 ) -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=php_targets_php7-1? ( dev-lang/php:7.1 ) php_targets_php7-2? ( dev-lang/php:7.2 ) php_targets_php7-3? ( dev-lang/php:7.3 ) php_targets_php7-4? ( dev-lang/php:7.4 ) -DESCRIPTION=Stripped down version of APC supporting only user cache -EAPI=7 -HOMEPAGE=https://pecl.php.net/apcu -IUSE=+mmap lock-pthreadmutex +lock-pthreadrw lock-spinlock lock-semaphore php_targets_php7-1 php_targets_php7-2 php_targets_php7-3 php_targets_php7-4 -KEYWORDS=amd64 arm64 x86 -LICENSE=PHP-3.01 -RDEPEND=php_targets_php7-1? ( dev-lang/php:7.1 ) php_targets_php7-2? ( dev-lang/php:7.2 ) php_targets_php7-3? ( dev-lang/php:7.3 ) php_targets_php7-4? ( dev-lang/php:7.4 ) -REQUIRED_USE=^^ ( lock-pthreadmutex lock-pthreadrw lock-spinlock lock-semaphore ) || ( php_targets_php7-1 php_targets_php7-2 php_targets_php7-3 php_targets_php7-4 ) -SLOT=7 -SRC_URI=https://pecl.php.net/get/apcu-5.1.18.tgz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e php-ext-pecl-r3 a59741d3df8ea9f17afcdcfb7edaee6d php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=f16f66cde181a4776ba26daffe7aec8e diff --git a/metadata/md5-cache/dev-php/pecl-apcu-5.1.19 b/metadata/md5-cache/dev-php/pecl-apcu-5.1.19 index 98add41d3847..f870ca7cfeff 100644 --- a/metadata/md5-cache/dev-php/pecl-apcu-5.1.19 +++ b/metadata/md5-cache/dev-php/pecl-apcu-5.1.19 @@ -5,11 +5,11 @@ DESCRIPTION=Stripped down version of APC supporting only user cache EAPI=7 HOMEPAGE=https://pecl.php.net/apcu IUSE=+mmap lock-pthreadmutex +lock-pthreadrw lock-spinlock lock-semaphore php_targets_php7-2 php_targets_php7-3 php_targets_php7-4 php_targets_php8-0 -KEYWORDS=amd64 ~arm64 x86 +KEYWORDS=amd64 arm64 x86 LICENSE=PHP-3.01 RDEPEND=php_targets_php7-2? ( dev-lang/php:7.2 ) php_targets_php7-3? ( dev-lang/php:7.3 ) php_targets_php7-4? ( dev-lang/php:7.4 ) php_targets_php8-0? ( dev-lang/php:8.0 ) REQUIRED_USE=^^ ( lock-pthreadmutex lock-pthreadrw lock-spinlock lock-semaphore ) || ( php_targets_php7-2 php_targets_php7-3 php_targets_php7-4 php_targets_php8-0 ) SLOT=7 SRC_URI=https://pecl.php.net/get/apcu-5.1.19.tgz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e php-ext-pecl-r3 a59741d3df8ea9f17afcdcfb7edaee6d php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=fbb26d50a5d56223519a419b0a5ab2d0 +_md5_=1dab81053d3c7cb02b1e91d383e9d746 diff --git a/metadata/md5-cache/dev-php/pecl-apcu_bc-1.0.4-r1 b/metadata/md5-cache/dev-php/pecl-apcu_bc-1.0.4-r1 deleted file mode 100644 index da93e3fec99d..000000000000 --- a/metadata/md5-cache/dev-php/pecl-apcu_bc-1.0.4-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-php/pecl-apcu:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?] >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 sys-devel/m4 sys-devel/libtool php_targets_php7-1? ( dev-lang/php:7.1 ) php_targets_php7-2? ( dev-lang/php:7.2 ) php_targets_php7-3? ( dev-lang/php:7.3 ) -DESCRIPTION=Provides APC backwards compatibility functions via APCu -EAPI=6 -HOMEPAGE=https://pecl.php.net/apcu_bc -IUSE=php_targets_php7-1 php_targets_php7-2 php_targets_php7-3 -KEYWORDS=amd64 x86 -LICENSE=PHP-3.01 -RDEPEND=dev-php/pecl-apcu:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?] php_targets_php7-1? ( dev-lang/php:7.1 ) php_targets_php7-2? ( dev-lang/php:7.2 ) php_targets_php7-3? ( dev-lang/php:7.3 ) -REQUIRED_USE=|| ( php_targets_php7-1 php_targets_php7-2 php_targets_php7-3 ) -SLOT=0 -SRC_URI=https://pecl.php.net/get/apcu_bc-1.0.4.tgz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 eapi7-ver f9ec87e93172b25ce65a85303dc06964 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e php-ext-pecl-r3 a59741d3df8ea9f17afcdcfb7edaee6d php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=059bcac68f622d840e2deefeb3bd0326 diff --git a/metadata/md5-cache/dev-php/pecl-mailparse-3.1.1 b/metadata/md5-cache/dev-php/pecl-mailparse-3.1.1 index aaf07c79e491..0f2b3eaedadc 100644 --- a/metadata/md5-cache/dev-php/pecl-mailparse-3.1.1 +++ b/metadata/md5-cache/dev-php/pecl-mailparse-3.1.1 @@ -5,11 +5,11 @@ DESCRIPTION=PHP extension for parsing and working with RFC822 and MIME compliant EAPI=7 HOMEPAGE=https://pecl.php.net/mailparse IUSE=php_targets_php7-2 php_targets_php7-3 php_targets_php7-4 php_targets_php8-0 -KEYWORDS=amd64 ~ppc ppc64 x86 +KEYWORDS=amd64 ppc ppc64 x86 LICENSE=PHP-3.01 RDEPEND=php_targets_php7-2? ( dev-lang/php:7.2[unicode] ) php_targets_php7-3? ( dev-lang/php:7.3[unicode] ) php_targets_php7-4? ( dev-lang/php:7.4[unicode] ) php_targets_php8-0? ( dev-lang/php:8.0[unicode] ) REQUIRED_USE=|| ( php_targets_php7-2 php_targets_php7-3 php_targets_php7-4 php_targets_php8-0 ) SLOT=7 SRC_URI=https://pecl.php.net/get/mailparse-3.1.1.tgz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e php-ext-pecl-r3 a59741d3df8ea9f17afcdcfb7edaee6d php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=2fccca47e2db8cad7bc3132e8cc1595d +_md5_=c07a163659221576594e81d29be4599b diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index 969e6acca274..e0464035d740 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/bpython-0.21 b/metadata/md5-cache/dev-python/bpython-0.21 new file mode 100644 index 000000000000..ae3979ac32bf --- /dev/null +++ b/metadata/md5-cache/dev-python/bpython-0.21 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/sphinx[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] doc? ( dev-python/sphinx ) test? ( >=dev-python/curtsies-0.3.5[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/cwcwidth[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/greenlet[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jedi[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pygments[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pyxdg[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/requests[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/urwid[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/watchdog[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Syntax highlighting and autocompletion for the Python interpreter +EAPI=7 +HOMEPAGE=https://www.bpython-interpreter.org/ https://github.com/bpython/bpython https://pypi.org/project/bpython/ +IUSE=doc test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/curtsies-0.3.5[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/cwcwidth[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/greenlet[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jedi[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pygments[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pyxdg[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/requests[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/urwid[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/watchdog[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/b/bpython/bpython-0.21.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=698277c54284cf9ad552476ef7623905 diff --git a/metadata/md5-cache/dev-python/cachetools-4.2.1 b/metadata/md5-cache/dev-python/cachetools-4.2.1 new file mode 100644 index 000000000000..04f5b8bdfa69 --- /dev/null +++ b/metadata/md5-cache/dev-python/cachetools-4.2.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Extensible memoizing collections and decorators +EAPI=7 +HOMEPAGE=https://pypi.org/project/cachetools/ +IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=MIT +RDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/c/cachetools/cachetools-4.2.1.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=6a7ab6a9d225d069aed3a7506b82feff diff --git a/metadata/md5-cache/dev-python/cfn-python-lint-0.44.5 b/metadata/md5-cache/dev-python/cfn-python-lint-0.44.5 new file mode 100644 index 000000000000..ef910dd10a4b --- /dev/null +++ b/metadata/md5-cache/dev-python/cfn-python-lint-0.44.5 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( >=dev-python/aws-sam-translator-1.25.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jsonpatch[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/jsonschema-3.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/junit-xml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/networkx[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pyyaml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-2.15.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/six-1.11[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=CloudFormation Linter +EAPI=7 +HOMEPAGE=https://pypi.org/project/cfn-lint/ https://github.com/aws-cloudformation/cfn-python-lint +IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/aws-sam-translator-1.25.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jsonpatch[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/jsonschema-3.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/junit-xml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/networkx[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pyyaml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-2.15.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/six-1.11[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/aws-cloudformation/cfn-python-lint/archive/v0.44.5.tar.gz -> cfn-python-lint-0.44.5.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=44fac6b2e5eff3c640180a129cf1d801 diff --git a/metadata/md5-cache/dev-python/coverage-5.3.1 b/metadata/md5-cache/dev-python/coverage-5.3.1 index b6b84f201821..9ed92c579435 100644 --- a/metadata/md5-cache/dev-python/coverage-5.3.1 +++ b/metadata/md5-cache/dev-python/coverage-5.3.1 @@ -4,7 +4,7 @@ DESCRIPTION=Code coverage measurement for Python EAPI=7 HOMEPAGE=https://coverage.readthedocs.io/en/latest/ https://pypi.org/project/coverage/ IUSE=python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~x64-macos LICENSE=BSD RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+),sqlite(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+),sqlite(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+),sqlite(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+),sqlite(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/c/coverage/coverage-5.3.1.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=0700b879b18cd475ffde0f053ad1a694 +_md5_=702dd0504c165fb21c54b186624822b8 diff --git a/metadata/md5-cache/dev-python/cx_Freeze-6.5.3 b/metadata/md5-cache/dev-python/cx_Freeze-6.5.3 new file mode 100644 index 000000000000..89b2291c67b0 --- /dev/null +++ b/metadata/md5-cache/dev-python/cx_Freeze-6.5.3 @@ -0,0 +1,15 @@ +BDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Create standalone executables from Python scripts +EAPI=7 +HOMEPAGE=https://cx-freeze.readthedocs.io/ +IUSE=python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=PYTHON +RDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/c/cx_Freeze/cx_Freeze-6.5.3.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=29719cfb52cffabb147acfd17f512b16 diff --git a/metadata/md5-cache/dev-python/gevent-20.12.0 b/metadata/md5-cache/dev-python/gevent-20.12.0 index 8580f415187c..266e0a7812ff 100644 --- a/metadata/md5-cache/dev-python/gevent-20.12.0 +++ b/metadata/md5-cache/dev-python/gevent-20.12.0 @@ -5,7 +5,7 @@ DESCRIPTION=Coroutine-based network library EAPI=7 HOMEPAGE=https://www.gevent.org/ https://pypi.org/project/gevent/ IUSE=doc examples test doc python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos +KEYWORDS=~alpha ~amd64 ~arm arm64 ~mips ~ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos LICENSE=MIT RDEPEND=>=dev-libs/libev-4.31:= dev-libs/libuv:= >=net-dns/c-ares-1.12:= >=dev-python/greenlet-0.4.17 dev-python/zope-event[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/zope-interface[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] virtual/python-greenlet[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_7? ( dev-lang/python:3.7[ssl(+),threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[ssl(+),threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[ssl(+),threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/g/gevent/gevent-20.12.0.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b5fa17f9f301034415507531cd1d317f +_md5_=d10ffd181ebce3719f8bfb21ca70db1c diff --git a/metadata/md5-cache/dev-python/google-api-core-1.25.1 b/metadata/md5-cache/dev-python/google-api-core-1.25.1 new file mode 100644 index 000000000000..5a714e2a763f --- /dev/null +++ b/metadata/md5-cache/dev-python/google-api-core-1.25.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/grpcio[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/rsa[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytest-asyncio[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( dev-python/namespace-google[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/protobuf-python[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/googleapis-common-protos[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/google-auth-1.21.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-2.18.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/pytest-4.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Core Library for Google Client Libraries +EAPI=7 +HOMEPAGE=https://github.com/googleapis/python-api-core https://googleapis.dev/python/google-api-core/latest +IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=dev-python/namespace-google[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/protobuf-python[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/googleapis-common-protos[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/google-auth-1.21.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-2.18.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/googleapis/python-api-core/archive/v1.25.1.tar.gz -> google-api-core-1.25.1.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=f500f5a1c527de45917049ca2416c0ea diff --git a/metadata/md5-cache/dev-python/iminuit-2.3.0 b/metadata/md5-cache/dev-python/iminuit-2.3.0 new file mode 100644 index 000000000000..62dfea777213 --- /dev/null +++ b/metadata/md5-cache/dev-python/iminuit-2.3.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/cython[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/ipython[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/matplotlib[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( dev-python/numpy[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pytest-4.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Minuit numerical function minimization in Python +EAPI=7 +HOMEPAGE=https://github.com/scikit-hep/iminuit/ +IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 test +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT LGPL-2 +RDEPEND=dev-python/numpy[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/i/iminuit/iminuit-2.3.0.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 7e60d3b10c791ab996f717bc1f30072f +_md5_=8176a83a781dca9212ebe2c15ab61c64 diff --git a/metadata/md5-cache/dev-python/iniconfig-1.1.1 b/metadata/md5-cache/dev-python/iniconfig-1.1.1 index 359b93571a9e..a9e07e0a01e0 100644 --- a/metadata/md5-cache/dev-python/iniconfig-1.1.1 +++ b/metadata/md5-cache/dev-python/iniconfig-1.1.1 @@ -4,7 +4,7 @@ DESCRIPTION=Brain-dead simple config-ini parsing EAPI=7 HOMEPAGE=https://github.com/RonnyPfannschmidt/iniconfig IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~x64-macos LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/i/iniconfig/iniconfig-1.1.1.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=2dbab7dcdb6da97d4f4622926ce6f71a +_md5_=57f353599effec945830b23cfaf5b523 diff --git a/metadata/md5-cache/dev-python/jaraco-classes-3.2.0 b/metadata/md5-cache/dev-python/jaraco-classes-3.2.0 new file mode 100644 index 000000000000..3508645d28ef --- /dev/null +++ b/metadata/md5-cache/dev-python/jaraco-classes-3.2.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),-python_single_target_python3_9(-)] >=dev-python/jaraco-packaging-3.2[python_targets_python3_9(-),-python_single_target_python3_9(-)] >=dev-python/rst-linker-1.9[python_targets_python3_9(-),-python_single_target_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),-python_single_target_python3_8(-)] >=dev-python/jaraco-packaging-3.2[python_targets_python3_8(-),-python_single_target_python3_8(-)] >=dev-python/rst-linker-1.9[python_targets_python3_8(-),-python_single_target_python3_8(-)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),-python_single_target_python3_7(-)] >=dev-python/jaraco-packaging-3.2[python_targets_python3_7(-),-python_single_target_python3_7(-)] >=dev-python/rst-linker-1.9[python_targets_python3_7(-),-python_single_target_python3_7(-)] ) ( >=dev-python/pypy3-7.3.0:0 dev-python/sphinx[python_targets_pypy3(-),-python_single_target_pypy3(-)] >=dev-python/jaraco-packaging-3.2[python_targets_pypy3(-),-python_single_target_pypy3(-)] >=dev-python/rst-linker-1.9[python_targets_pypy3(-),-python_single_target_pypy3(-)] ) ) ) test? ( >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Classes used by other projects by developer jaraco +EAPI=7 +HOMEPAGE=https://github.com/jaraco/jaraco.classes +IUSE=doc test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos +LICENSE=MIT +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/j/jaraco.classes/jaraco.classes-3.2.0.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=207d84f40b2609bf65a57c1d7c67ffe0 diff --git a/metadata/md5-cache/dev-python/keyring-21.7.0 b/metadata/md5-cache/dev-python/keyring-21.7.0 index 1f22dcbcc473..c66d9fcd7c8b 100644 --- a/metadata/md5-cache/dev-python/keyring-21.7.0 +++ b/metadata/md5-cache/dev-python/keyring-21.7.0 @@ -4,7 +4,7 @@ DESCRIPTION=Provides access to the system keyring service EAPI=7 HOMEPAGE=https://github.com/jaraco/keyring IUSE=doc test doc python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos LICENSE=PSF-2 RDEPEND=dev-python/secretstorage[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/entrypoints[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jeepney[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jaraco/keyring/archive/v21.7.0.tar.gz -> keyring-21.7.0.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=9d89afa39a5d3bd6893dcbaefd7fba94 +_md5_=c3ddb9b9299bf18e97c9ae1f5f2029a8 diff --git a/metadata/md5-cache/dev-python/keyring-21.5.0 b/metadata/md5-cache/dev-python/keyring-22.0.0 similarity index 95% rename from metadata/md5-cache/dev-python/keyring-21.5.0 rename to metadata/md5-cache/dev-python/keyring-22.0.0 index a391636d5b40..5f0e4c816cf4 100644 --- a/metadata/md5-cache/dev-python/keyring-21.5.0 +++ b/metadata/md5-cache/dev-python/keyring-22.0.0 @@ -3,13 +3,13 @@ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Provides access to the system keyring service EAPI=7 HOMEPAGE=https://github.com/jaraco/keyring -IUSE=doc test doc python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos +IUSE=test doc python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos LICENSE=PSF-2 RDEPEND=dev-python/secretstorage[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/entrypoints[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jeepney[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/jaraco/keyring/archive/v21.5.0.tar.gz -> keyring-21.5.0.tar.gz +SRC_URI=https://github.com/jaraco/keyring/archive/v22.0.0.tar.gz -> keyring-22.0.0.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=97b34beb98466553b808c89d64249302 +_md5_=17865c8904b19ff63f986e63b735ea5a diff --git a/metadata/md5-cache/dev-python/llfuse-1.3.6 b/metadata/md5-cache/dev-python/llfuse-1.3.6 index c66bee11e526..815f35dc4bd7 100644 --- a/metadata/md5-cache/dev-python/llfuse-1.3.6 +++ b/metadata/md5-cache/dev-python/llfuse-1.3.6 @@ -5,7 +5,7 @@ DESCRIPTION=Python bindings for the low-level FUSE API EAPI=7 HOMEPAGE=https://github.com/python-llfuse/python-llfuse/ https://pypi.org/project/llfuse/ IUSE=doc examples test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=amd64 ~ppc64 x86 +KEYWORDS=amd64 ~arm ~ppc64 x86 LICENSE=LGPL-2 RDEPEND=>=sys-fs/fuse-2.8.0:0 python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/l/llfuse/llfuse-1.3.6.tar.bz2 _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=9e7eb3c4d154b719f929921a7f59bb13 +_md5_=b0b905cd21100279563e1a4b973cb26d diff --git a/metadata/md5-cache/dev-python/llfuse-1.4.0 b/metadata/md5-cache/dev-python/llfuse-1.4.0 new file mode 100644 index 000000000000..f063fe929570 --- /dev/null +++ b/metadata/md5-cache/dev-python/llfuse-1.4.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=sys-fs/fuse-2.8.0:0 >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=sys-apps/attr virtual/pkgconfig +DESCRIPTION=Python bindings for the low-level FUSE API +EAPI=7 +HOMEPAGE=https://github.com/python-llfuse/python-llfuse/ https://pypi.org/project/llfuse/ +IUSE=doc examples test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~ppc64 ~x86 +LICENSE=LGPL-2 +RDEPEND=>=sys-fs/fuse-2.8.0:0 python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/l/llfuse/llfuse-1.4.0.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=0a46bd9fdacddb5ad811c1d461835f85 diff --git a/metadata/md5-cache/dev-python/natsort-7.1.1 b/metadata/md5-cache/dev-python/natsort-7.1.1 new file mode 100644 index 000000000000..0dd567cc4077 --- /dev/null +++ b/metadata/md5-cache/dev-python/natsort-7.1.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=test? ( dev-python/hypothesis[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytest-mock[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) +DESCRIPTION=Natural sorting for Python +EAPI=7 +HOMEPAGE=https://pypi.org/project/natsort/ +IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm64 ~ia64 ~x86 +LICENSE=MIT +RDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/n/natsort/natsort-7.1.1.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=7d1832ff76935b81f31a783ad0896388 diff --git a/metadata/md5-cache/dev-python/pychroot-0.10.3 b/metadata/md5-cache/dev-python/pychroot-0.10.3 deleted file mode 100644 index 0c1dfe02ecc5..000000000000 --- a/metadata/md5-cache/dev-python/pychroot-0.10.3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/pytest[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/snakeoil-0.8.9[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DESCRIPTION=a python library and cli tool that simplify chroot handling -EAPI=7 -HOMEPAGE=https://github.com/pkgcore/pychroot -IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~x86 -LICENSE=BSD -RDEPEND=>=dev-python/snakeoil-0.8.9[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/p/pychroot/pychroot-0.10.3.tar.gz -_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=4c33d829ee39c9d52f4c9d49c488e8e8 diff --git a/metadata/md5-cache/dev-python/pychroot-0.10.4 b/metadata/md5-cache/dev-python/pychroot-0.10.4 new file mode 100644 index 000000000000..ea4453d11113 --- /dev/null +++ b/metadata/md5-cache/dev-python/pychroot-0.10.4 @@ -0,0 +1,16 @@ +BDEPEND=dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/snakeoil-0.8.9[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DESCRIPTION=a python library and cli tool that simplify chroot handling +EAPI=7 +HOMEPAGE=https://github.com/pkgcore/pychroot +IUSE=test python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/snakeoil-0.8.9[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/p/pychroot/pychroot-0.10.4.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=cc0f82424fb8a47b3ae1a8e70a0a75e3 diff --git a/metadata/md5-cache/dev-python/pychroot-9999 b/metadata/md5-cache/dev-python/pychroot-9999 index cc84130a51aa..ee50bbe797c0 100644 --- a/metadata/md5-cache/dev-python/pychroot-9999 +++ b/metadata/md5-cache/dev-python/pychroot-9999 @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da git-r3 3e7ec3d6619213460c85e2aa48398441 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=fdcbd5021fe580d176cd3aec89cd6a51 +_md5_=cc0f82424fb8a47b3ae1a8e70a0a75e3 diff --git a/metadata/md5-cache/dev-python/pycryptodome-3.9.9-r1 b/metadata/md5-cache/dev-python/pycryptodome-3.9.9-r1 index 3ca46198e8a3..d15ebdf638f4 100644 --- a/metadata/md5-cache/dev-python/pycryptodome-3.9.9-r1 +++ b/metadata/md5-cache/dev-python/pycryptodome-3.9.9-r1 @@ -5,7 +5,7 @@ DESCRIPTION=A self-contained cryptographic library for Python EAPI=7 HOMEPAGE=https://www.pycryptodome.org/ https://github.com/Legrandin/pycryptodome/ https://pypi.org/project/pycryptodome/ IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86 LICENSE=BSD-2 Unlicense RDEPEND=dev-libs/gmp:0= >=dev-libs/libtomcrypt-1.18.2-r1:= virtual/python-cffi[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] !dev-python/pycrypto python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Legrandin/pycryptodome/archive/v3.9.9.tar.gz -> pycryptodome-3.9.9.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=422152e8dbfe160425a2b47e0b88e0af +_md5_=2691f5d55ecbd2d10c0ed4a9fd37e023 diff --git a/metadata/md5-cache/dev-python/pyfakefs-4.3.2 b/metadata/md5-cache/dev-python/pyfakefs-4.3.2 deleted file mode 100644 index c42219c244df..000000000000 --- a/metadata/md5-cache/dev-python/pyfakefs-4.3.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=a fake file system that mocks the Python file system modules -EAPI=7 -HOMEPAGE=https://github.com/jmcgeheeiv/pyfakefs/ https://pypi.org/project/pyfakefs/ -IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos -LICENSE=Apache-2.0 -RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/jmcgeheeiv/pyfakefs/archive/v4.3.2.tar.gz -> pyfakefs-4.3.2.tar.gz -_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=f7b0899125fd7d1783a4b5fbb58fbfb2 diff --git a/metadata/md5-cache/dev-python/pyfakefs-4.3.3 b/metadata/md5-cache/dev-python/pyfakefs-4.3.3 index 2c2616762e74..4b790e31e8cc 100644 --- a/metadata/md5-cache/dev-python/pyfakefs-4.3.3 +++ b/metadata/md5-cache/dev-python/pyfakefs-4.3.3 @@ -4,7 +4,7 @@ DESCRIPTION=a fake file system that mocks the Python file system modules EAPI=7 HOMEPAGE=https://github.com/jmcgeheeiv/pyfakefs/ https://pypi.org/project/pyfakefs/ IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos LICENSE=Apache-2.0 RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jmcgeheeiv/pyfakefs/archive/v4.3.3.tar.gz -> pyfakefs-4.3.3.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=2b07be9d0c14443b370af32437363c0a +_md5_=c8f861893bf2bcf8f0bbc0f268e0a6b8 diff --git a/metadata/md5-cache/dev-python/pygame-2.0.1 b/metadata/md5-cache/dev-python/pygame-2.0.1 index 8ae1e775ae54..2cb49b20c176 100644 --- a/metadata/md5-cache/dev-python/pygame-2.0.1 +++ b/metadata/md5-cache/dev-python/pygame-2.0.1 @@ -5,7 +5,7 @@ DESCRIPTION=Python bindings for SDL multimedia library EAPI=7 HOMEPAGE=https://www.pygame.org/ IUSE=doc examples midi opengl test X python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=LGPL-2.1 RDEPEND=dev-python/numpy[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] media-libs/freetype >=media-libs/sdl2-image-1.2.2 >=media-libs/sdl2-mixer-1.2.4 >=media-libs/sdl2-ttf-2.0.6 >=media-libs/smpeg2-0.4.4-r1 midi? ( media-libs/portmidi ) X? ( >=media-libs/libsdl2-1.2.5[opengl?,threads,video,X] ) !X? ( >=media-libs/libsdl2-1.2.5[threads] ) media-libs/fontconfig python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pygame/pygame/releases/download/2.0.1/pygame-2.0.1.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=7b079615b5d69cad10f428615721efa5 +_md5_=f79bcb380100eaf88ee3c96b6739a857 diff --git a/metadata/md5-cache/dev-python/pyjwt-2.0.0 b/metadata/md5-cache/dev-python/pyjwt-2.0.0 index cc26526bfda1..1b946b4afe44 100644 --- a/metadata/md5-cache/dev-python/pyjwt-2.0.0 +++ b/metadata/md5-cache/dev-python/pyjwt-2.0.0 @@ -5,7 +5,7 @@ DESCRIPTION=JSON Web Token implementation in Python EAPI=7 HOMEPAGE=https://github.com/jpadilla/pyjwt/ https://pypi.org/project/PyJWT/ IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm arm64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/P/PyJWT/PyJWT-2.0.0.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6a2add34e06e5a05d88471a33ccdd73e python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=588a0dfcc60225848d7ea64fe8e9da9e +_md5_=f7326e1f88400391c9575fc986087562 diff --git a/metadata/md5-cache/dev-python/pylibacl-0.5.3 b/metadata/md5-cache/dev-python/pylibacl-0.5.3 deleted file mode 100644 index 832e1817d52f..000000000000 --- a/metadata/md5-cache/dev-python/pylibacl-0.5.3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=sys-apps/acl dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -DESCRIPTION=POSIX ACLs (Access Control Lists) for Python -EAPI=7 -HOMEPAGE=https://pylibacl.k1024.org/ https://pypi.org/project/pylibacl/ -IUSE=python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86 -LICENSE=LGPL-2.1 -RDEPEND=sys-apps/acl python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) -SLOT=0 -SRC_URI=https://github.com/iustin/pylibacl/archive/pylibacl-v0.5.3.tar.gz -_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=ff24b171f5bdbc0a99c901dfa0aae823 diff --git a/metadata/md5-cache/dev-python/pylibacl-0.5.4_p20191217 b/metadata/md5-cache/dev-python/pylibacl-0.5.4_p20191217 deleted file mode 100644 index 5d3100bd5402..000000000000 --- a/metadata/md5-cache/dev-python/pylibacl-0.5.4_p20191217 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( sys-apps/acl >=dev-python/pytest-4.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=sys-apps/acl -DESCRIPTION=POSIX ACLs (Access Control Lists) for Python -EAPI=7 -HOMEPAGE=https://pylibacl.k1024.org/ https://pypi.org/project/pylibacl/ https://github.com/iustin/pylibacl/ -IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm ~ia64 ~mips ppc ~ppc64 sparc x86 -LICENSE=LGPL-2.1 -RDEPEND=sys-apps/acl python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/iustin/pylibacl/archive/2ae494bd2e3303141a703f32e44263e083c1ffb0.tar.gz -> pylibacl-0.5.4_p20191217.tar.gz -_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=cd770223367d88f0151e5a5225805d93 diff --git a/metadata/md5-cache/dev-python/pylibacl-0.6.0 b/metadata/md5-cache/dev-python/pylibacl-0.6.0 index 3aef9c330089..f1ae5ca895bb 100644 --- a/metadata/md5-cache/dev-python/pylibacl-0.6.0 +++ b/metadata/md5-cache/dev-python/pylibacl-0.6.0 @@ -5,7 +5,7 @@ DESCRIPTION=POSIX ACLs (Access Control Lists) for Python EAPI=7 HOMEPAGE=https://pylibacl.k1024.org/ https://pypi.org/project/pylibacl/ https://github.com/iustin/pylibacl/ IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm ~ia64 ~mips ppc ~ppc64 sparc x86 +KEYWORDS=~alpha amd64 arm ~ia64 ~mips ppc ppc64 sparc x86 LICENSE=LGPL-2.1 RDEPEND=sys-apps/acl python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/iustin/pylibacl/archive/v0.6.0.tar.gz -> pylibacl-0.6.0.gh.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=6d69d3044079cca360bf891bd7dda782 +_md5_=89470852665064a8cd4e31bcb0404984 diff --git a/metadata/md5-cache/dev-python/pytest-6.2.1 b/metadata/md5-cache/dev-python/pytest-6.2.1 index e7442ba3025a..77cce55fdad9 100644 --- a/metadata/md5-cache/dev-python/pytest-6.2.1 +++ b/metadata/md5-cache/dev-python/pytest-6.2.1 @@ -5,7 +5,7 @@ DESCRIPTION=Simple powerful testing with Python EAPI=7 HOMEPAGE=https://pytest.org/ IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos LICENSE=MIT RDEPEND=>=dev-python/attrs-19.2.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) dev-python/iniconfig[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/more-itertools-4.0.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/packaging[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pluggy-0.12[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/py-1.8.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pytest/pytest-6.2.1.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=5e3cb6b76b139f959c54b773011acee9 +_md5_=06a9e1722370ba7aa80312e3f8373e47 diff --git a/metadata/md5-cache/dev-python/pytest-6.2.0 b/metadata/md5-cache/dev-python/pytest-6.2.2 similarity index 97% rename from metadata/md5-cache/dev-python/pytest-6.2.0 rename to metadata/md5-cache/dev-python/pytest-6.2.2 index e10d3dab7dd2..b8fd04fc3db2 100644 --- a/metadata/md5-cache/dev-python/pytest-6.2.0 +++ b/metadata/md5-cache/dev-python/pytest-6.2.2 @@ -5,12 +5,12 @@ DESCRIPTION=Simple powerful testing with Python EAPI=7 HOMEPAGE=https://pytest.org/ IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos LICENSE=MIT RDEPEND=>=dev-python/attrs-19.2.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) dev-python/iniconfig[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/more-itertools-4.0.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/packaging[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pluggy-0.12[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/py-1.8.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://pypi/p/pytest/pytest-6.2.0.tar.gz +SRC_URI=mirror://pypi/p/pytest/pytest-6.2.2.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=c2bdf0a188043f5a5aceab9d77496498 +_md5_=e4887350b8e1e98364e2519ec4e972f6 diff --git a/metadata/md5-cache/dev-python/python-sshpubkeys-3.3.0 b/metadata/md5-cache/dev-python/python-sshpubkeys-3.3.0 new file mode 100644 index 000000000000..e5f0b387b929 --- /dev/null +++ b/metadata/md5-cache/dev-python/python-sshpubkeys-3.3.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/cryptography[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/ecdsa[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=OpenSSH public key parser for Python +EAPI=7 +HOMEPAGE=https://pypi.org/project/sshpubkeys/ https://github.com/ojarva/python-sshpubkeys +IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=BSD +RDEPEND=dev-python/cryptography[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/ecdsa[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/ojarva/python-sshpubkeys/archive/3.3.0.tar.gz -> python-sshpubkeys-3.3.0.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=35db24b50f241036bc585cacf99c13b9 diff --git a/metadata/md5-cache/dev-python/python-utils-2.5.3 b/metadata/md5-cache/dev-python/python-utils-2.5.3 new file mode 100644 index 000000000000..65746f516f8f --- /dev/null +++ b/metadata/md5-cache/dev-python/python-utils-2.5.3 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/six[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Collection of small Python functions & classes +EAPI=7 +HOMEPAGE=https://pypi.org/project/python-utils/ +IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 +LICENSE=BSD +RDEPEND=dev-python/six[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/p/python-utils/python-utils-2.5.3.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=9bc4af0c238e75e1a1f646c52d8397d8 diff --git a/metadata/md5-cache/dev-python/tqdm-4.54.0 b/metadata/md5-cache/dev-python/tqdm-4.54.0 deleted file mode 100644 index d12e725903ab..000000000000 --- a/metadata/md5-cache/dev-python/tqdm-4.54.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Add a progress meter to your loops in a second -EAPI=7 -HOMEPAGE=https://github.com/tqdm/tqdm -IUSE=examples test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos -LICENSE=MIT -RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/t/tqdm/tqdm-4.54.0.tar.gz -_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=650640ef16d23fc14c829ff0750f6e4d diff --git a/metadata/md5-cache/dev-python/tqdm-4.55.0 b/metadata/md5-cache/dev-python/tqdm-4.55.0 index 06557b3a82ab..01be0c7a1fe3 100644 --- a/metadata/md5-cache/dev-python/tqdm-4.55.0 +++ b/metadata/md5-cache/dev-python/tqdm-4.55.0 @@ -4,7 +4,7 @@ DESCRIPTION=Add a progress meter to your loops in a second EAPI=7 HOMEPAGE=https://github.com/tqdm/tqdm IUSE=examples test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/t/tqdm/tqdm-4.55.0.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=8226a7e560259c2b06c291a4e6e3013d +_md5_=244aa334f077f19014c104ee0a050867 diff --git a/metadata/md5-cache/dev-python/tqdm-4.56.0 b/metadata/md5-cache/dev-python/tqdm-4.56.0 index a299cf8ff3b3..b50409771380 100644 --- a/metadata/md5-cache/dev-python/tqdm-4.56.0 +++ b/metadata/md5-cache/dev-python/tqdm-4.56.0 @@ -1,4 +1,4 @@ -BDEPEND=dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/pytest-asyncio[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +BDEPEND=dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/pytest-asyncio[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytest-timeout[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Add a progress meter to your loops in a second EAPI=7 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/t/tqdm/tqdm-4.56.0.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=1ab2ae8ca10c3598eb662084885692f1 +_md5_=e84d4c565177d128170af4607defd444 diff --git a/metadata/md5-cache/dev-python/twine-3.2.0 b/metadata/md5-cache/dev-python/twine-3.2.0 deleted file mode 100644 index 07bdb9ebba59..000000000000 --- a/metadata/md5-cache/dev-python/twine-3.2.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/jaraco-envs[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jaraco-functools[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/munch[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/portend[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pretend[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pypiserver[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Collection of utilities for publishing packages on PyPI -EAPI=7 -HOMEPAGE=https://twine.readthedocs.io/ https://github.com/pypa/twine https://pypi.org/project/twine/ -IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/tqdm-4.14[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pkginfo-1.4.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/readme_renderer-21.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-2.20.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-toolbelt-0.8.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/keyring-15.1[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/rfc3986-1.4.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/colorama-0.4.3[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/pypa/twine/archive/3.2.0.tar.gz -> twine-3.2.0.tar.gz -_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=7b6c79906b9988d4bdfd3437a3a837f2 diff --git a/metadata/md5-cache/dev-python/twine-3.3.0 b/metadata/md5-cache/dev-python/twine-3.3.0 index 5d3b751da27b..8d3bfc8085f7 100644 --- a/metadata/md5-cache/dev-python/twine-3.3.0 +++ b/metadata/md5-cache/dev-python/twine-3.3.0 @@ -4,7 +4,7 @@ DESCRIPTION=Collection of utilities for publishing packages on PyPI EAPI=7 HOMEPAGE=https://twine.readthedocs.io/ https://github.com/pypa/twine https://pypi.org/project/twine/ IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos LICENSE=Apache-2.0 RDEPEND=>=dev-python/tqdm-4.14[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pkginfo-1.4.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/readme_renderer-21.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-2.20.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/requests-toolbelt-0.8.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/keyring-15.1[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/rfc3986-1.4.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/colorama-0.4.3[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pypa/twine/archive/3.3.0.tar.gz -> twine-3.3.0.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=50c233ae0067ab9f48001565b2d7ec40 +_md5_=043bb77660ae46f27775bcbe6ceec2ab diff --git a/metadata/md5-cache/dev-python/unidecode-1.1.1 b/metadata/md5-cache/dev-python/unidecode-1.1.1 deleted file mode 100644 index cb178536da8c..000000000000 --- a/metadata/md5-cache/dev-python/unidecode-1.1.1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[wide-unicode(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[wide-unicode(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[wide-unicode(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[wide-unicode(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Module providing ASCII transliterations of Unicode text -EAPI=7 -HOMEPAGE=https://pypi.org/project/Unidecode/ -IUSE=python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 sparc x86 -LICENSE=GPL-2+ -RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[wide-unicode(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[wide-unicode(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[wide-unicode(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[wide-unicode(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -SLOT=0 -SRC_URI=mirror://pypi/U/Unidecode/Unidecode-1.1.1.tar.gz -_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=81934d0936624d8378293b6e6f5116c0 diff --git a/metadata/md5-cache/dev-python/unidecode-1.1.2 b/metadata/md5-cache/dev-python/unidecode-1.1.2 index 04d642e7e8bf..993be423381c 100644 --- a/metadata/md5-cache/dev-python/unidecode-1.1.2 +++ b/metadata/md5-cache/dev-python/unidecode-1.1.2 @@ -4,11 +4,11 @@ DESCRIPTION=Module providing ASCII transliterations of Unicode text EAPI=7 HOMEPAGE=https://pypi.org/project/Unidecode/ IUSE=python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 sparc x86 LICENSE=GPL-2+ RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[wide-unicode(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[wide-unicode(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[wide-unicode(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[wide-unicode(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=mirror://pypi/U/Unidecode/Unidecode-1.1.2.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=a0b992c274f187c509d2c44d0fb3c884 +_md5_=562dd2dc7216bd9e38a90c8248d3a0f7 diff --git a/metadata/md5-cache/dev-python/virtualenv-clone-0.5.3 b/metadata/md5-cache/dev-python/virtualenv-clone-0.5.3 index 3c3765251c8f..fe2c93d1b9bc 100644 --- a/metadata/md5-cache/dev-python/virtualenv-clone-0.5.3 +++ b/metadata/md5-cache/dev-python/virtualenv-clone-0.5.3 @@ -1,14 +1,14 @@ -BDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] +BDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A script for cloning a non-relocatable virtualenv EAPI=7 HOMEPAGE=https://github.com/edwardgeorge/virtualenv-clone -IUSE=python_targets_python3_7 python_targets_python3_8 +IUSE=python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=amd64 x86 LICENSE=MIT -RDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) +RDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=mirror://pypi/v/virtualenv-clone/virtualenv-clone-0.5.3.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=3466a98343ecec5829944bdd44dcf5d3 +_md5_=5cc20bf0163f2f0b4679a45f3329cdea diff --git a/metadata/md5-cache/dev-python/virtualenvwrapper-4.8.4-r1 b/metadata/md5-cache/dev-python/virtualenvwrapper-4.8.4-r1 index 467d3786ae5f..b262bbac7d5f 100644 --- a/metadata/md5-cache/dev-python/virtualenvwrapper-4.8.4-r1 +++ b/metadata/md5-cache/dev-python/virtualenvwrapper-4.8.4-r1 @@ -1,16 +1,16 @@ -BDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] +BDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pbr[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] +DEPEND=dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pbr[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DESCRIPTION=Set of extensions to Ian Bicking's virtualenv tool EAPI=7 HOMEPAGE=https://bitbucket.org/dhellmann/virtualenvwrapper https://pypi.org/project/virtualenvwrapper/ -IUSE=python_targets_python3_7 python_targets_python3_8 +IUSE=python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=amd64 x86 LICENSE=BSD -RDEPEND=dev-python/virtualenv[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/stevedore[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/virtualenv-clone[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) +RDEPEND=dev-python/virtualenv[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/stevedore[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/virtualenv-clone[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/v/virtualenvwrapper/virtualenvwrapper-4.8.4.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=773e4eec2b018cc58d38172c5f5aa92a +_md5_=e46ab2e4c26dd10b50c713d1a612a46c diff --git a/metadata/md5-cache/dev-python/xmlschema-1.4.1 b/metadata/md5-cache/dev-python/xmlschema-1.4.1 index 48dc4290718c..b949082da6fa 100644 --- a/metadata/md5-cache/dev-python/xmlschema-1.4.1 +++ b/metadata/md5-cache/dev-python/xmlschema-1.4.1 @@ -4,7 +4,7 @@ DESCRIPTION=An XML Schema validator and decoder EAPI=7 HOMEPAGE=https://github.com/sissaschool/xmlschema https://pypi.org/project/xmlschema/ IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos LICENSE=MIT RDEPEND=>=dev-python/elementpath-2.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/x/xmlschema/xmlschema-1.4.1.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=56c947fd52ef75d8ed58738458bf8738 +_md5_=d0dad799dce0f7c15fa2d28faa38f0e1 diff --git a/metadata/md5-cache/dev-python/xmlschema-1.3.1 b/metadata/md5-cache/dev-python/xmlschema-1.4.2 similarity index 90% rename from metadata/md5-cache/dev-python/xmlschema-1.3.1 rename to metadata/md5-cache/dev-python/xmlschema-1.4.2 index f5b0d7661a8e..b74e5fcee280 100644 --- a/metadata/md5-cache/dev-python/xmlschema-1.3.1 +++ b/metadata/md5-cache/dev-python/xmlschema-1.4.2 @@ -1,15 +1,15 @@ -BDEPEND=>=dev-python/elementpath-2.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/lxml[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +BDEPEND=>=dev-python/elementpath-2.1.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/lxml[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=An XML Schema validator and decoder EAPI=7 HOMEPAGE=https://github.com/sissaschool/xmlschema https://pypi.org/project/xmlschema/ IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos LICENSE=MIT -RDEPEND=>=dev-python/elementpath-2.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +RDEPEND=>=dev-python/elementpath-2.1.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://pypi/x/xmlschema/xmlschema-1.3.1.tar.gz +SRC_URI=mirror://pypi/x/xmlschema/xmlschema-1.4.2.tar.gz _eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=7948cd19645b0f4bba613d3523102e0a +_md5_=83cc7f760f8579daeeb8a37f151437f9 diff --git a/metadata/md5-cache/dev-python/zope-schema-6.0.1 b/metadata/md5-cache/dev-python/zope-schema-6.0.1 new file mode 100644 index 000000000000..e8f9c8cd890f --- /dev/null +++ b/metadata/md5-cache/dev-python/zope-schema-6.0.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/zope-i18nmessageid[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/zope-testing[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/zope-testrunner[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( dev-python/zope-event[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/zope-interface-5.0.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Zope schema Architecture +EAPI=7 +HOMEPAGE=https://github.com/zopefoundation/zope.schema http://docs.zope.org/zope.schema/ +IUSE=test python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=ZPL +RDEPEND=dev-python/zope-event[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/zope-interface-5.0.0[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/z/zope.schema/zope.schema-6.0.1.tar.gz +_eclasses_=distutils-r1 f847d402a7ecea58af1958f5b4ec23da multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=2ea00fc9daeffbc25986cc5f78425f2a diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz index 9acd931b0810..f62b1bd89069 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/rack-attack-6.4.0 b/metadata/md5-cache/dev-ruby/rack-attack-6.4.0 new file mode 100644 index 000000000000..ed327a636259 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/rack-attack-6.4.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby25? ( dev-ruby/rack:*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/rack:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/rack:*[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/actionpack[ruby_targets_ruby25(-)] dev-ruby/activesupport[ruby_targets_ruby25(-)] dev-ruby/railties[ruby_targets_ruby25(-)] dev-ruby/rack-test[ruby_targets_ruby25(-)] dev-ruby/minitest[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/actionpack[ruby_targets_ruby26(-)] dev-ruby/activesupport[ruby_targets_ruby26(-)] dev-ruby/railties[ruby_targets_ruby26(-)] dev-ruby/rack-test[ruby_targets_ruby26(-)] dev-ruby/minitest[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/actionpack[ruby_targets_ruby27(-)] dev-ruby/activesupport[ruby_targets_ruby27(-)] dev-ruby/railties[ruby_targets_ruby27(-)] dev-ruby/rack-test[ruby_targets_ruby27(-)] dev-ruby/minitest[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DESCRIPTION=A DSL for blocking & throttling abusive clients +EAPI=7 +HOMEPAGE=https://github.com/kickstarter/rack-attack +IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test +KEYWORDS=~amd64 +LICENSE=MIT +RDEPEND=ruby_targets_ruby25? ( dev-ruby/rack:*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/rack:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/rack:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=6 +SRC_URI=https://rubygems.org/gems/rack-attack-6.4.0.gem +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d410501a125f99ffb560b0c523cd3d1e ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 03dfa7f54d59d740c2964dc7256d2820 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=f3288639980cca4aa562899451b9c404 diff --git a/metadata/md5-cache/dev-tcltk/Manifest.gz b/metadata/md5-cache/dev-tcltk/Manifest.gz index 0b713fc1fabf..3ebb35451bcd 100644 Binary files a/metadata/md5-cache/dev-tcltk/Manifest.gz and b/metadata/md5-cache/dev-tcltk/Manifest.gz differ diff --git a/metadata/md5-cache/dev-tcltk/tls-1.7.22 b/metadata/md5-cache/dev-tcltk/tls-1.7.22 index 2b6f8502b84c..cdfe0d4be57a 100644 --- a/metadata/md5-cache/dev-tcltk/tls-1.7.22 +++ b/metadata/md5-cache/dev-tcltk/tls-1.7.22 @@ -4,11 +4,11 @@ DESCRIPTION=TLS OpenSSL extension to Tcl EAPI=6 HOMEPAGE=http://tls.sourceforge.net/ IUSE=tk -KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=BSD RDEPEND=dev-lang/tcl:0= dev-libs/openssl:0= tk? ( dev-lang/tk:0= ) RESTRICT=test SLOT=0 SRC_URI=https://core.tcl.tk/tcltls/uv/tcltls-1.7.22.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=a5abb4ddbb25c4bc3929e14d3f9a47a6 +_md5_=7eaf7981a7bcc668dfb6e46ff264ebcc diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz index a8fa05fc15d9..8e6865d76f3a 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/crash-7.2.8-r1 b/metadata/md5-cache/dev-util/crash-7.2.8-r1 deleted file mode 100644 index 141560ba2244..000000000000 --- a/metadata/md5-cache/dev-util/crash-7.2.8-r1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile prepare -DESCRIPTION=Red Hat crash utility; used for analyzing kernel core dumps -EAPI=7 -HOMEPAGE=https://people.redhat.com/anderson/ -KEYWORDS=-* ~alpha ~amd64 ~arm ~ia64 ~ppc64 ~s390 ~x86 -LICENSE=GPL-3 -RESTRICT=test -SLOT=0 -SRC_URI=https://people.redhat.com/anderson/crash-7.2.8.tar.gz -_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=ccfd2d46c30f4d68fb213cb179874f99 diff --git a/metadata/md5-cache/dev-util/crash-7.2.9 b/metadata/md5-cache/dev-util/crash-7.2.9 index 999e75b910c9..e1a7c37f2821 100644 --- a/metadata/md5-cache/dev-util/crash-7.2.9 +++ b/metadata/md5-cache/dev-util/crash-7.2.9 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile prepare DESCRIPTION=Red Hat crash utility; used for analyzing kernel core dumps EAPI=7 -HOMEPAGE=https://github.com/crash-utility/crash +HOMEPAGE=https://crash-utility.github.io/ KEYWORDS=-* ~alpha ~amd64 ~arm ~ia64 ~ppc64 ~s390 ~x86 LICENSE=GPL-3 RESTRICT=test SLOT=0 SRC_URI=https://github.com/crash-utility/crash/archive/7.2.9.tar.gz -> crash-7.2.9.tar.gz mirror://gnu/gdb/gdb-7.6.tar.gz _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=73c0dbff92be8bf9a9eca10b06e9ac22 +_md5_=ddad3f5245d495907b4a197a610d4903 diff --git a/metadata/md5-cache/dev-util/crash-9999 b/metadata/md5-cache/dev-util/crash-9999 index a289d10655b5..e987418f7216 100644 --- a/metadata/md5-cache/dev-util/crash-9999 +++ b/metadata/md5-cache/dev-util/crash-9999 @@ -2,11 +2,11 @@ BDEPEND=>=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile prepare unpack DESCRIPTION=Red Hat crash utility; used for analyzing kernel core dumps EAPI=7 -HOMEPAGE=https://github.com/crash-utility/crash +HOMEPAGE=https://crash-utility.github.io/ LICENSE=GPL-3 PROPERTIES=live RESTRICT=test SLOT=0 SRC_URI=http://ftp.gnu.org/gnu/gdb/gdb-7.6.tar.gz _eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=73c0dbff92be8bf9a9eca10b06e9ac22 +_md5_=ddad3f5245d495907b4a197a610d4903 diff --git a/metadata/md5-cache/dev-util/glslang-10.11.0.0_pre20201216 b/metadata/md5-cache/dev-util/glslang-10.11.0.0_pre20201216 index 3058702a9101..5e2e3dc8ca66 100644 --- a/metadata/md5-cache/dev-util/glslang-10.11.0.0_pre20201216 +++ b/metadata/md5-cache/dev-util/glslang-10.11.0.0_pre20201216 @@ -4,11 +4,11 @@ DESCRIPTION=Khronos reference front-end for GLSL and ESSL, and sample SPIR-V gen EAPI=7 HOMEPAGE=https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/ https://github.com/KhronosGroup/glslang 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=amd64 arm arm64 ~ppc ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ppc ppc64 ~riscv ~x86 LICENSE=BSD RDEPEND=! glslang-10.11.0.0_pre20201216.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 cmake-multilib b396704c8c04bb210b7b45dff5c67fea edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ab752897645cb471b7d1fd1aeee0f7d3 +_md5_=630ce1c0af48935768b7c03bb9fb60cc diff --git a/metadata/md5-cache/dev-util/herdtools7-7.47 b/metadata/md5-cache/dev-util/herdtools7-7.47 index eb62e4ad2e87..2b5671788575 100644 --- a/metadata/md5-cache/dev-util/herdtools7-7.47 +++ b/metadata/md5-cache/dev-util/herdtools7-7.47 @@ -8,5 +8,5 @@ LICENSE=CeCILL-B RDEPEND=>=dev-lang/ocaml-4.02.0 >=dev-lang/ocaml-4:= SLOT=0 SRC_URI=https://github.com/herd/herdtools7/archive/7.47.tar.gz -> herdtools7-7.47.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=676ce5a4ed692d83908c517610d6cf8a diff --git a/metadata/md5-cache/dev-util/herdtools7-7.51 b/metadata/md5-cache/dev-util/herdtools7-7.51 index 953ea2893d7e..78ad21641455 100644 --- a/metadata/md5-cache/dev-util/herdtools7-7.51 +++ b/metadata/md5-cache/dev-util/herdtools7-7.51 @@ -9,5 +9,5 @@ LICENSE=CeCILL-B RDEPEND=>=dev-lang/ocaml-4.02.0 >=dev-lang/ocaml-4:= SLOT=0 SRC_URI=https://github.com/herd/herdtools7/archive/7.51.tar.gz -> herdtools7-7.51.tar.gz -_eclasses_=opam 4f1cff0457cf4790a5510753a67d1cc1 +_eclasses_=opam b4de444efce371928602cbf4cd91307e _md5_=974f9fc0521c1807ea539d583457c728 diff --git a/metadata/md5-cache/dev-util/spirv-headers-1.5.4.1 b/metadata/md5-cache/dev-util/spirv-headers-1.5.4.1 index ff3090d43b3b..09809b22416d 100644 --- a/metadata/md5-cache/dev-util/spirv-headers-1.5.4.1 +++ b/metadata/md5-cache/dev-util/spirv-headers-1.5.4.1 @@ -3,9 +3,9 @@ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Machine-readable files for the SPIR-V Registry EAPI=7 HOMEPAGE=https://www.khronos.org/registry/spir-v/ -KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ppc ppc64 ~riscv ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/KhronosGroup/SPIRV-Headers/archive/f027d53ded7e230e008d37c8b47ede7cd308e19d.tar.gz -> spirv-headers-1.5.4.1.tar.gz _eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=7198c64843f544370911472972e935bf +_md5_=6551b0322a371c4dd27a73d6df445c67 diff --git a/metadata/md5-cache/dev-util/spirv-tools-2020.6 b/metadata/md5-cache/dev-util/spirv-tools-2020.6 index 129540876687..5ce5c3df58f4 100644 --- a/metadata/md5-cache/dev-util/spirv-tools-2020.6 +++ b/metadata/md5-cache/dev-util/spirv-tools-2020.6 @@ -5,10 +5,10 @@ DESCRIPTION=Provides an API and commands for processing SPIR-V modules EAPI=7 HOMEPAGE=https://github.com/KhronosGroup/SPIRV-Tools 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=amd64 arm arm64 ~ppc ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ppc ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RESTRICT=test SLOT=0 SRC_URI=https://github.com/KhronosGroup/SPIRV-Tools/archive/v2020.6.tar.gz -> spirv-tools-2020.6.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 cmake-multilib b396704c8c04bb210b7b45dff5c67fea edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=24ffad6937e3d46bc1527579e2899fda +_md5_=b32003e78424a2213522029077f0110e diff --git a/metadata/md5-cache/dev-util/vulkan-headers-1.2.162 b/metadata/md5-cache/dev-util/vulkan-headers-1.2.162 index 61a4973885be..8567143c1da2 100644 --- a/metadata/md5-cache/dev-util/vulkan-headers-1.2.162 +++ b/metadata/md5-cache/dev-util/vulkan-headers-1.2.162 @@ -3,9 +3,9 @@ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Vulkan Header files and API registry EAPI=7 HOMEPAGE=https://github.com/KhronosGroup/Vulkan-Headers -KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ppc ppc64 ~riscv ~x86 LICENSE=Apache-2.0 SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-Headers/archive/v1.2.162.tar.gz -> vulkan-headers-1.2.162.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=293e4c8201ed495be87882160c4d2102 +_md5_=d2960900b944a6f70db1ef3ae7826820 diff --git a/metadata/md5-cache/dev-util/vulkan-tools-1.2.162 b/metadata/md5-cache/dev-util/vulkan-tools-1.2.162 index 536b0a9af196..976d159d4274 100644 --- a/metadata/md5-cache/dev-util/vulkan-tools-1.2.162 +++ b/metadata/md5-cache/dev-util/vulkan-tools-1.2.162 @@ -5,11 +5,11 @@ DESCRIPTION=Official Vulkan Tools and Utilities for Windows, Linux, Android, and EAPI=7 HOMEPAGE=https://github.com/KhronosGroup/Vulkan-Tools IUSE=cube wayland +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=amd64 arm arm64 ~ppc ppc64 +KEYWORDS=amd64 arm arm64 ppc ppc64 LICENSE=Apache-2.0 RDEPEND=>=media-libs/vulkan-loader-1.2.162:=[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 ) ) cube? ( ^^ ( X wayland ) ) SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-Tools/archive/v1.2.162.tar.gz -> vulkan-tools-1.2.162.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 cmake-multilib b396704c8c04bb210b7b45dff5c67fea edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d9f76bafff919b2b14c3038404f1b507 +_md5_=42c52e87cc2cce975869a3e41a44488a diff --git a/metadata/md5-cache/games-engines/Manifest.gz b/metadata/md5-cache/games-engines/Manifest.gz index d72f91f5ad34..a989059dffe5 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/love-0.7.2-r2 b/metadata/md5-cache/games-engines/love-0.7.2-r2 deleted file mode 100644 index cd4b31606f46..000000000000 --- a/metadata/md5-cache/games-engines/love-0.7.2-r2 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install -DEPEND=dev-games/physfs dev-lang/lua:0[deprecated] media-libs/devil[mng,png,tiff] media-libs/freetype:2 media-libs/libmodplug media-libs/libsdl[joystick,opengl] media-libs/libvorbis media-libs/openal media-sound/mpg123 virtual/opengl media-libs/libmng:0 media-libs/tiff:0 -DESCRIPTION=A framework for 2D games in Lua -EAPI=6 -HOMEPAGE=https://love2d.org/ -KEYWORDS=~amd64 ~x86 -LICENSE=ZLIB -RDEPEND=dev-games/physfs dev-lang/lua:0[deprecated] media-libs/devil[mng,png,tiff] media-libs/freetype:2 media-libs/libmodplug media-libs/libsdl[joystick,opengl] media-libs/libvorbis media-libs/openal media-sound/mpg123 virtual/opengl -SLOT=0.7 -SRC_URI=https://github.com/love2d/love/releases/download/0.7.2/love-0.7.2-linux-src.tar.gz -_md5_=7597b152e385246c60dcc3c61eaaab5b diff --git a/metadata/md5-cache/games-engines/love-0.8.0-r2 b/metadata/md5-cache/games-engines/love-0.8.0-r2 deleted file mode 100644 index 1b0e3ce38c0c..000000000000 --- a/metadata/md5-cache/games-engines/love-0.8.0-r2 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install -DEPEND=dev-games/physfs dev-lang/lua:0[deprecated] media-libs/devil[mng,png,tiff] media-libs/freetype:2 media-libs/libmodplug media-libs/libsdl[joystick,opengl,video] media-libs/libvorbis media-libs/openal media-sound/mpg123 virtual/opengl media-libs/libmng:0 media-libs/tiff:0 -DESCRIPTION=A framework for 2D games in Lua -EAPI=6 -HOMEPAGE=https://love2d.org/ -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=ZLIB -RDEPEND=dev-games/physfs dev-lang/lua:0[deprecated] media-libs/devil[mng,png,tiff] media-libs/freetype:2 media-libs/libmodplug media-libs/libsdl[joystick,opengl,video] media-libs/libvorbis media-libs/openal media-sound/mpg123 virtual/opengl -SLOT=0.8 -SRC_URI=https://github.com/love2d/love/releases/download/0.8.0/love-0.8.0-linux-src.tar.gz -_md5_=6333adaf51aedc343e64bdeec435183c diff --git a/metadata/md5-cache/games-engines/love-11.3 b/metadata/md5-cache/games-engines/love-11.3 deleted file mode 100644 index dcad5380bba6..000000000000 --- a/metadata/md5-cache/games-engines/love-11.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst postrm prepare -DEPEND=sys-libs/zlib !luajit? ( dev-lang/lua:0 ) luajit? ( dev-lang/luajit:2 ) media-libs/freetype media-libs/libmodplug media-libs/libsdl2[joystick,opengl] media-libs/libogg media-libs/libtheora media-libs/libvorbis media-libs/openal media-sound/mpg123 virtual/opengl -DESCRIPTION=A framework for 2D games in Lua -EAPI=7 -HOMEPAGE=https://love2d.org/ -IUSE=+luajit -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=ZLIB -RDEPEND=sys-libs/zlib !luajit? ( dev-lang/lua:0 ) luajit? ( dev-lang/luajit:2 ) media-libs/freetype media-libs/libmodplug media-libs/libsdl2[joystick,opengl] media-libs/libogg media-libs/libtheora media-libs/libvorbis media-libs/openal media-sound/mpg123 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/love2d/love/releases/download/11.3/love-11.3-linux-src.tar.gz -_eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ebb8e158f52645b3f4e18ae435024e7a diff --git a/metadata/md5-cache/games-engines/love-9999 b/metadata/md5-cache/games-engines/love-9999 index 2a2f276aa442..60acf1b83564 100644 --- a/metadata/md5-cache/games-engines/love-9999 +++ b/metadata/md5-cache/games-engines/love-9999 @@ -1,13 +1,14 @@ BDEPEND=>=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=configure install postinst postrm prepare unpack -DEPEND=sys-libs/zlib !luajit? ( dev-lang/lua:0 ) luajit? ( dev-lang/luajit:2 ) media-libs/freetype media-libs/libmodplug media-libs/libsdl2[joystick,opengl] media-libs/libogg media-libs/libtheora media-libs/libvorbis media-libs/openal media-sound/mpg123 virtual/opengl +DEFINED_PHASES=configure install postinst postrm prepare setup unpack +DEPEND=sys-libs/zlib lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-2? ( dev-lang/lua:5.2 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) media-libs/freetype media-libs/libmodplug media-libs/libsdl2[joystick,opengl] media-libs/libogg media-libs/libtheora media-libs/libvorbis media-libs/openal media-sound/mpg123 virtual/opengl DESCRIPTION=A framework for 2D games in Lua EAPI=7 -HOMEPAGE=http://love2d.org/ -IUSE=+luajit +HOMEPAGE=https://love2d.org/ +IUSE=lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-2 lua_single_target_lua5-3 LICENSE=ZLIB PROPERTIES=live -RDEPEND=sys-libs/zlib !luajit? ( dev-lang/lua:0 ) luajit? ( dev-lang/luajit:2 ) media-libs/freetype media-libs/libmodplug media-libs/libsdl2[joystick,opengl] media-libs/libogg media-libs/libtheora media-libs/libvorbis media-libs/openal media-sound/mpg123 virtual/opengl +RDEPEND=sys-libs/zlib lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-2? ( dev-lang/lua:5.2 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) media-libs/freetype media-libs/libmodplug media-libs/libsdl2[joystick,opengl] media-libs/libogg media-libs/libtheora media-libs/libvorbis media-libs/openal media-sound/mpg123 virtual/opengl +REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-2 lua_single_target_lua5-3 ) SLOT=0 -_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3cbcc554b4415ccab122d3e98f621746 +_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 lua-single f91b5656f00869c220a6e35ae0521c54 lua-utils 736947973cfbc9de01fdb8548f942f82 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=771fbb30f04cf5c19ff95f0f7e98e9c5 diff --git a/metadata/md5-cache/games-kids/Manifest.gz b/metadata/md5-cache/games-kids/Manifest.gz index 73e41270e441..ee1dfc3c9b3c 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-0.97-r1 b/metadata/md5-cache/games-kids/gcompris-0.97-r1 deleted file mode 100644 index 9509fd1fe451..000000000000 --- a/metadata/md5-cache/games-kids/gcompris-0.97-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-qt/linguist-tools-5.12.3:5 test? ( dev-util/cppcheck sys-devel/clang ) dev-util/ninja dev-util/cmake handbook? ( >=kde-frameworks/kdoctools-5.64.0:5 ) >=kde-frameworks/extra-cmake-modules-5.64.0:5 -DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-qt/qtdeclarative-5.12.3:5 >=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtnetwork-5.12.3:5 >=dev-qt/qtsensors-5.12.3:5 >=dev-qt/qtsvg-5.12.3:5 >=dev-qt/qtmultimedia-5.12.3:5 >=dev-qt/qtxml-5.12.3:5 >=dev-qt/qtxmlpatterns-5.12.3:5 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 -DESCRIPTION=Full featured educational application for children from 2 to 10 -EAPI=7 -HOMEPAGE=https://gcompris.net/ -IUSE=kiosk debug +handbook test -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3+ -RDEPEND=>=dev-qt/qtdeclarative-5.12.3:5 >=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtnetwork-5.12.3:5 >=dev-qt/qtsensors-5.12.3:5 >=dev-qt/qtsvg-5.12.3:5 >=dev-qt/qtgraphicaleffects-5.12.3:5 >=dev-qt/qtmultimedia-5.12.3:5[qml] >=dev-qt/qtquickcontrols-5.12.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://gcompris.net/download/qt/src/gcompris-qt-0.97.tar.xz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm 23462b13731a265a5d99e493ec4a7720 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 8a81008797ecdb979e3100d782ab5513 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ee770a82f0698d64922ae53b16f79706 diff --git a/metadata/md5-cache/games-simulation/Manifest.gz b/metadata/md5-cache/games-simulation/Manifest.gz index b71089d939de..6280db324a48 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/flightgear-2020.1.2 b/metadata/md5-cache/games-simulation/flightgear-2020.3.6 similarity index 87% rename from metadata/md5-cache/games-simulation/flightgear-2020.1.2 rename to metadata/md5-cache/games-simulation/flightgear-2020.3.6 index bfaea8299b66..1243240eb54b 100644 --- a/metadata/md5-cache/games-simulation/flightgear-2020.1.2 +++ b/metadata/md5-cache/games-simulation/flightgear-2020.3.6 @@ -1,15 +1,15 @@ BDEPEND=dev-util/ninja dev-util/cmake DEFINED_PHASES=compile configure install postinst prepare pretend test -DEPEND=dev-db/sqlite:3 dev-games/openscenegraph[jpeg,png] ~dev-games/simgear-2020.1.2[gdal=] media-libs/openal >=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: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 ) ) >=dev-libs/boost-1.44 >=media-libs/plib-1.8.5 qt5? ( >=dev-qt/linguist-tools-5.7.1:5 ) utils? ( x11-libs/libXi x11-libs/libXmu ) +DEPEND=dev-db/sqlite:3 dev-games/openscenegraph[jpeg,png] ~dev-games/simgear-2020.3.6[gdal=] media-libs/openal >=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: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 ) ) >=dev-libs/boost-1.44 >=media-libs/plib-1.8.5 qt5? ( >=dev-qt/linguist-tools-5.7.1:5 ) utils? ( x11-libs/libXi x11-libs/libXmu ) DESCRIPTION=Open Source Flight Simulator EAPI=7 HOMEPAGE=https://www.flightgear.org/ IUSE=cpu_flags_x86_sse2 dbus debug examples gdal openmp qt5 +udev +utils vim-syntax KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=dev-db/sqlite:3 dev-games/openscenegraph[jpeg,png] ~dev-games/simgear-2020.1.2[gdal=] media-libs/openal >=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: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-2020.1.2 +RDEPEND=dev-db/sqlite:3 dev-games/openscenegraph[jpeg,png] ~dev-games/simgear-2020.3.6[gdal=] media-libs/openal >=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: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-2020.3.6 RESTRICT=test SLOT=0 -SRC_URI=mirror://sourceforge/flightgear/flightgear-2020.1.2.tar.bz2 +SRC_URI=mirror://sourceforge/flightgear/flightgear-2020.3.6.tar.bz2 _eclasses_=bash-completion-r1 be99724bde4274de21e581204e9d164a cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=22dbdf6cf9f6934be49ae9a4410a2e8f +_md5_=52fd428c00cc98cdeddfc708367ee032 diff --git a/metadata/md5-cache/games-simulation/flightgear-9999 b/metadata/md5-cache/games-simulation/flightgear-9999 index 7c4bfe0c2314..18f21b42a001 100644 --- a/metadata/md5-cache/games-simulation/flightgear-9999 +++ b/metadata/md5-cache/games-simulation/flightgear-9999 @@ -11,4 +11,4 @@ RDEPEND=dev-db/sqlite:3 dev-games/openscenegraph[jpeg,png] ~dev-games/simgear-99 RESTRICT=test SLOT=0 _eclasses_=bash-completion-r1 be99724bde4274de21e581204e9d164a cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b3ea91ab5d58bec4802262d90cdc0b20 +_md5_=7223a7351d14733ddf3ee196c75937f7 diff --git a/metadata/md5-cache/games-simulation/flightgear-data-2020.1.2 b/metadata/md5-cache/games-simulation/flightgear-data-2020.3.6 similarity index 74% rename from metadata/md5-cache/games-simulation/flightgear-data-2020.1.2 rename to metadata/md5-cache/games-simulation/flightgear-data-2020.3.6 index 7e2d50a83f7a..c687876dedca 100644 --- a/metadata/md5-cache/games-simulation/flightgear-data-2020.1.2 +++ b/metadata/md5-cache/games-simulation/flightgear-data-2020.3.6 @@ -5,5 +5,5 @@ HOMEPAGE=https://www.flightgear.org/ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 SLOT=0 -SRC_URI=mirror://sourceforge/flightgear/FlightGear-2020.1.2-data.tar.bz2 +SRC_URI=mirror://sourceforge/flightgear/FlightGear-2020.3.6-data.tar.bz2 _md5_=232f977aab8050b906e3f172c9956562 diff --git a/metadata/md5-cache/gui-apps/Manifest.gz b/metadata/md5-cache/gui-apps/Manifest.gz index 7c490948340f..d3dfbc11492d 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/waypipe-0.7.2 b/metadata/md5-cache/gui-apps/waypipe-0.7.2 new file mode 100644 index 000000000000..3742d5833204 --- /dev/null +++ b/metadata/md5-cache/gui-apps/waypipe-0.7.2 @@ -0,0 +1,16 @@ +BDEPEND=|| ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) virtual/pkgconfig man? ( app-text/scdoc ) test? ( dev-libs/weston[wayland-compositor,screen-sharing] ) >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install setup test +DEPEND=dmabuf? ( media-libs/mesa[gbm,vaapi?,wayland] x11-libs/libdrm ) lz4? ( app-arch/lz4 ) systemtap? ( dev-util/systemtap ) vaapi? ( x11-libs/libva[drm,wayland] ) ffmpeg? ( media-video/ffmpeg[x264,vaapi?] ) zstd? ( app-arch/zstd ) +DESCRIPTION=network transparency with Wayland +EAPI=7 +HOMEPAGE=https://gitlab.freedesktop.org/mstoeckl/waypipe +IUSE=dmabuf ffmpeg lz4 man neon systemtap test vaapi zstd cpu_flags_x86_avx2 cpu_flags_x86_avx512f cpu_flags_x86_sse3 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dmabuf? ( media-libs/mesa[gbm,vaapi?,wayland] x11-libs/libdrm ) lz4? ( app-arch/lz4 ) systemtap? ( dev-util/systemtap ) vaapi? ( x11-libs/libva[drm,wayland] ) ffmpeg? ( media-video/ffmpeg[x264,vaapi?] ) zstd? ( app-arch/zstd ) +REQUIRED_USE=vaapi? ( ffmpeg ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://gitlab.freedesktop.org/mstoeckl/waypipe/-/archive/v0.7.2/waypipe-v0.7.2.tar.gz -> waypipe-0.7.2.tar.gz +_eclasses_=meson fdaf2a7b9376934c1c7ddbd32114defb multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=19e77b9aec9d0de8711431a8d90e49b6 diff --git a/metadata/md5-cache/gui-apps/waypipe-9999 b/metadata/md5-cache/gui-apps/waypipe-9999 new file mode 100644 index 000000000000..7b99007d04ff --- /dev/null +++ b/metadata/md5-cache/gui-apps/waypipe-9999 @@ -0,0 +1,15 @@ +BDEPEND=|| ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) virtual/pkgconfig man? ( app-text/scdoc ) test? ( dev-libs/weston[wayland-compositor,screen-sharing] ) >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile configure install setup test unpack +DEPEND=dmabuf? ( media-libs/mesa[gbm,vaapi?,wayland] x11-libs/libdrm ) lz4? ( app-arch/lz4 ) systemtap? ( dev-util/systemtap ) vaapi? ( x11-libs/libva[drm,wayland] ) ffmpeg? ( media-video/ffmpeg[x264,vaapi?] ) zstd? ( app-arch/zstd ) +DESCRIPTION=transparent network proxy for Wayland compositors +EAPI=7 +HOMEPAGE=https://gitlab.freedesktop.org/mstoeckl/waypipe +IUSE=dmabuf ffmpeg lz4 man neon systemtap test vaapi zstd cpu_flags_x86_avx2 cpu_flags_x86_avx512f cpu_flags_x86_sse3 +LICENSE=MIT +PROPERTIES=live +RDEPEND=dmabuf? ( media-libs/mesa[gbm,vaapi?,wayland] x11-libs/libdrm ) lz4? ( app-arch/lz4 ) systemtap? ( dev-util/systemtap ) vaapi? ( x11-libs/libva[drm,wayland] ) ffmpeg? ( media-video/ffmpeg[x264,vaapi?] ) zstd? ( app-arch/zstd ) +REQUIRED_USE=vaapi? ( ffmpeg ) +RESTRICT=!test? ( test ) +SLOT=0 +_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 meson fdaf2a7b9376934c1c7ddbd32114defb multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=dcf9c88ed1775f1b4e10f5af4859f5f6 diff --git a/metadata/md5-cache/gui-apps/wayvnc-0.4.0 b/metadata/md5-cache/gui-apps/wayvnc-0.4.0 new file mode 100644 index 000000000000..063976963620 --- /dev/null +++ b/metadata/md5-cache/gui-apps/wayvnc-0.4.0 @@ -0,0 +1,14 @@ +BDEPEND=virtual/pkgconfig dev-libs/wayland-protocols >=dev-util/meson-0.54.0 >=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 ) +DESCRIPTION=VNC server for wlroots based Wayland compositors +EAPI=7 +HOMEPAGE=https://github.com/any1/wayvnc +IUSE=gbm tracing +KEYWORDS=~amd64 ~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 ) +SLOT=0 +SRC_URI=https://github.com/any1/wayvnc/archive/v0.4.0.tar.gz -> wayvnc-0.4.0.tar.gz +_eclasses_=meson fdaf2a7b9376934c1c7ddbd32114defb multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=0a46fa6d7da228cee07159555f370348 diff --git a/metadata/md5-cache/gui-apps/wayvnc-9999 b/metadata/md5-cache/gui-apps/wayvnc-9999 new file mode 100644 index 000000000000..7c9d57a310cd --- /dev/null +++ b/metadata/md5-cache/gui-apps/wayvnc-9999 @@ -0,0 +1,13 @@ +BDEPEND=virtual/pkgconfig dev-libs/wayland-protocols >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile configure install test unpack +DEPEND=dev-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 ) +DESCRIPTION=VNC server for wlroots based Wayland compositors +EAPI=7 +HOMEPAGE=https://github.com/any1/wayvnc +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 ) +SLOT=0 +_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 meson fdaf2a7b9376934c1c7ddbd32114defb multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=0a46fa6d7da228cee07159555f370348 diff --git a/metadata/md5-cache/gui-libs/Manifest.gz b/metadata/md5-cache/gui-libs/Manifest.gz index 08da6ea7c871..9c6eef043bac 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.4.0 b/metadata/md5-cache/gui-libs/neatvnc-0.4.0 new file mode 100644 index 000000000000..54e929da7283 --- /dev/null +++ b/metadata/md5-cache/gui-libs/neatvnc-0.4.0 @@ -0,0 +1,14 @@ +BDEPEND=virtual/pkgconfig >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install test +DEPEND=x11-libs/pixman x11-libs/libdrm dev-libs/aml sys-libs/zlib ssl? ( net-libs/gnutls:= ) jpeg? ( media-libs/libjpeg-turbo:= ) tracing? ( dev-util/systemtap ) +DESCRIPTION=liberally licensed VNC server library with a clean interface +EAPI=7 +HOMEPAGE=https://github.com/any1/neatvnc/ +IUSE=examples ssl jpeg tracing +KEYWORDS=~amd64 ~x86 +LICENSE=ISC +RDEPEND=x11-libs/pixman x11-libs/libdrm dev-libs/aml sys-libs/zlib ssl? ( net-libs/gnutls:= ) jpeg? ( media-libs/libjpeg-turbo:= ) tracing? ( dev-util/systemtap ) +SLOT=0 +SRC_URI=https://github.com/any1/neatvnc/archive/v0.4.0.tar.gz -> neatvnc-0.4.0.tar.gz +_eclasses_=meson fdaf2a7b9376934c1c7ddbd32114defb multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=46196b0e46608153786a0e83fe05ef97 diff --git a/metadata/md5-cache/gui-libs/neatvnc-9999 b/metadata/md5-cache/gui-libs/neatvnc-9999 new file mode 100644 index 000000000000..8e41298e0957 --- /dev/null +++ b/metadata/md5-cache/gui-libs/neatvnc-9999 @@ -0,0 +1,13 @@ +BDEPEND=virtual/pkgconfig >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile configure install test unpack +DEPEND=x11-libs/pixman x11-libs/libdrm dev-libs/aml sys-libs/zlib ssl? ( net-libs/gnutls:= ) jpeg? ( media-libs/libjpeg-turbo:= ) tracing? ( dev-util/systemtap ) +DESCRIPTION=liberally licensed VNC server library with a clean interface +EAPI=7 +HOMEPAGE=https://github.com/any1/neatvnc/ +IUSE=examples ssl jpeg tracing +LICENSE=ISC +PROPERTIES=live +RDEPEND=x11-libs/pixman x11-libs/libdrm dev-libs/aml sys-libs/zlib ssl? ( net-libs/gnutls:= ) jpeg? ( media-libs/libjpeg-turbo:= ) tracing? ( dev-util/systemtap ) +SLOT=0 +_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 meson fdaf2a7b9376934c1c7ddbd32114defb multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=46196b0e46608153786a0e83fe05ef97 diff --git a/metadata/md5-cache/kde-frameworks/Manifest.gz b/metadata/md5-cache/kde-frameworks/Manifest.gz index 88c108cdaed0..99703ea143be 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/kcompletion-5.78.0 b/metadata/md5-cache/kde-frameworks/kcompletion-5.78.0-r1 similarity index 97% rename from metadata/md5-cache/kde-frameworks/kcompletion-5.78.0 rename to metadata/md5-cache/kde-frameworks/kcompletion-5.78.0-r1 index 8775c48b48d1..9c38ad1fef4e 100644 --- a/metadata/md5-cache/kde-frameworks/kcompletion-5.78.0 +++ b/metadata/md5-cache/kde-frameworks/kcompletion-5.78.0-r1 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.78 SRC_URI=mirror://kde/stable/frameworks/5.78/kcompletion-5.78.0.tar.xz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm 23462b13731a265a5d99e493ec4a7720 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 8a81008797ecdb979e3100d782ab5513 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c45d9a761eab0acaa838ce63ed3f07ad +_md5_=044bd1927d2811ffdcd91f7531a6b36e diff --git a/metadata/md5-cache/kde-plasma/Manifest.gz b/metadata/md5-cache/kde-plasma/Manifest.gz index bf8cb3106700..e8b27f423d53 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/plasma-systemmonitor-5.20.0-r1 b/metadata/md5-cache/kde-plasma/plasma-systemmonitor-5.20.0-r1 index 842592640d06..14cc71888945 100644 --- a/metadata/md5-cache/kde-plasma/plasma-systemmonitor-5.20.0-r1 +++ b/metadata/md5-cache/kde-plasma/plasma-systemmonitor-5.20.0-r1 @@ -5,10 +5,10 @@ DESCRIPTION=New version of KSysGuard built on top of the new KStats daemon and u EAPI=7 HOMEPAGE=https://invent.kde.org/plasma/plasma-systemmonitor IUSE=debug -KEYWORDS=~amd64 ~ppc64 +KEYWORDS=~amd64 ~arm ~ppc64 LICENSE=|| ( GPL-3 GPL-2 ) RDEPEND=>=dev-qt/qtdbus-5.15.1:5 >=dev-qt/qtdeclarative-5.15.1:5 >=dev-qt/qtgui-5.15.1:5 >=dev-qt/qtwidgets-5.15.1:5 >=kde-frameworks/kconfig-5.74.0:5 >=kde-frameworks/kcoreaddons-5.74.0:5 >=kde-frameworks/kdbusaddons-5.74.0:5 >=kde-frameworks/kdeclarative-5.74.0:5 >=kde-frameworks/kglobalaccel-5.74.0:5 >=kde-frameworks/ki18n-5.74.0:5 >=kde-frameworks/kio-5.74.0:5 >=kde-frameworks/knewstuff-5.74.0:5 >=kde-frameworks/kservice-5.74.0:5 >=kde-plasma/libksysguard-5.20.0:5 >=dev-qt/qtquickcontrols2-5.15.1:5 >=kde-frameworks/kirigami-5.74.0:5 >=kde-frameworks/kitemmodels-5.74.0:5[qml] >=kde-frameworks/kquickcharts-5.74.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-systemmonitor/plasma-systemmonitor-5.20.0.tar.xz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm 23462b13731a265a5d99e493ec4a7720 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 8a81008797ecdb979e3100d782ab5513 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=002c62f4c050deaa1e9c8c24dcbb8004 +_md5_=d3a3b97f9f4fa93d309b707176dfc2af diff --git a/metadata/md5-cache/mail-client/Manifest.gz b/metadata/md5-cache/mail-client/Manifest.gz index b09e28927d6a..ed0aee250573 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/mutt-2.0.2 b/metadata/md5-cache/mail-client/mutt-2.0.2 deleted file mode 100644 index fdf85e29e0f3..000000000000 --- a/metadata/md5-cache/mail-client/mutt-2.0.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=app-misc/mime-types virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gdbm? ( sys-libs/gdbm ) lmdb? ( dev-db/lmdb:= ) qdbm? ( dev-db/qdbm ) tokyocabinet? ( dev-db/tokyocabinet ) ssl? ( gnutls? ( >=net-libs/gnutls-1.0.17:= ) !gnutls? ( libressl? ( dev-libs/libressl:= ) !libressl? ( >=dev-libs/openssl-0.9.6:0= ) ) ) nls? ( virtual/libintl ) sasl? ( >=dev-libs/cyrus-sasl-2 ) kerberos? ( virtual/krb5 ) idn? ( net-dns/libidn2 ) gpgme? ( >=app-crypt/gpgme-0.9.0:= ) autocrypt? ( >=dev-db/sqlite-3 ) slang? ( sys-libs/slang ) !slang? ( >=sys-libs/ncurses-5.2:0= ) net-mail/mailbase doc? ( dev-libs/libxml2 dev-libs/libxslt app-text/docbook-xsl-stylesheets || ( www-client/lynx www-client/w3m www-client/elinks ) ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=A small but very powerful text-based mail client -EAPI=6 -HOMEPAGE=http://www.mutt.org/ -IUSE=autocrypt berkdb debug doc gdbm gnutls gpgme +hcache idn +imap kerberos libressl +lmdb mbox nls pgp-classic pop qdbm +sasl selinux slang smime-classic +smtp +ssl tokyocabinet vanilla prefix -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=GPL-2 -RDEPEND=app-misc/mime-types virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gdbm? ( sys-libs/gdbm ) lmdb? ( dev-db/lmdb:= ) qdbm? ( dev-db/qdbm ) tokyocabinet? ( dev-db/tokyocabinet ) ssl? ( gnutls? ( >=net-libs/gnutls-1.0.17:= ) !gnutls? ( libressl? ( dev-libs/libressl:= ) !libressl? ( >=dev-libs/openssl-0.9.6:0= ) ) ) nls? ( virtual/libintl ) sasl? ( >=dev-libs/cyrus-sasl-2 ) kerberos? ( virtual/krb5 ) idn? ( net-dns/libidn2 ) gpgme? ( >=app-crypt/gpgme-0.9.0:= ) autocrypt? ( >=dev-db/sqlite-3 ) slang? ( sys-libs/slang ) !slang? ( >=sys-libs/ncurses-5.2:0= ) selinux? ( sec-policy/selinux-mutt ) smime-classic? ( || ( dev-libs/libressl >=dev-libs/openssl-0.9.6:0 ) ) pgp-classic? ( app-crypt/gnupg ) -REQUIRED_USE=hcache? ( || ( berkdb gdbm lmdb qdbm tokyocabinet ) ) imap? ( ssl ) pop? ( ssl ) smime-classic? ( ssl !gnutls ) smtp? ( ssl sasl ) sasl? ( || ( imap pop smtp ) ) kerberos? ( || ( imap pop smtp ) ) autocrypt? ( gpgme ) -SLOT=0 -SRC_URI=ftp://ftp.mutt.org/pub/mutt/mutt-2.0.2.tar.gz https://bitbucket.org/mutt/mutt/downloads/mutt-2.0.2.tar.gz https://dev.gentoo.org/~grobian/distfiles/mutt-gentoo-2.0.2-patches-r0.tar.xz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b0ea6121a908e9bfaf44a03611a22ee4 diff --git a/metadata/md5-cache/mail-filter/Manifest.gz b/metadata/md5-cache/mail-filter/Manifest.gz index 0b94066b5074..b82cb2e9bbe8 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/imapfilter-2.6.16 b/metadata/md5-cache/mail-filter/imapfilter-2.6.16 deleted file mode 100644 index 04b7bb811705..000000000000 --- a/metadata/md5-cache/mail-filter/imapfilter-2.6.16 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install prepare -DEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) dev-libs/libpcre dev-lang/lua:0= -DESCRIPTION=An IMAP mail filtering utility -EAPI=7 -HOMEPAGE=https://github.com/lefcha/imapfilter -IUSE=libressl -KEYWORDS=amd64 ppc x86 -LICENSE=MIT -RDEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) dev-libs/libpcre dev-lang/lua:0= -SLOT=0 -SRC_URI=https://github.com/lefcha/imapfilter/archive/v2.6.16.tar.gz -> imapfilter-2.6.16.tar.gz -_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=65444b2beb9a57d03b5a7368d49ae02a diff --git a/metadata/md5-cache/mail-mta/Manifest.gz b/metadata/md5-cache/mail-mta/Manifest.gz index 283d7b313a67..d3f60bb1718a 100644 Binary files a/metadata/md5-cache/mail-mta/Manifest.gz and b/metadata/md5-cache/mail-mta/Manifest.gz differ diff --git a/metadata/md5-cache/mail-mta/protonmail-bridge-1.5.6 b/metadata/md5-cache/mail-mta/protonmail-bridge-1.5.7 similarity index 99% rename from metadata/md5-cache/mail-mta/protonmail-bridge-1.5.6 rename to metadata/md5-cache/mail-mta/protonmail-bridge-1.5.7 index cfeded885ca1..ada1c82be0d0 100644 --- a/metadata/md5-cache/mail-mta/protonmail-bridge-1.5.6 +++ b/metadata/md5-cache/mail-mta/protonmail-bridge-1.5.7 @@ -10,6 +10,6 @@ LICENSE=Apache-2.0 BSD BSD-2 GPL-3+ ISC LGPL-3+ MIT MPL-2.0 Unlicense RDEPEND=app-crypt/libsecret gui? ( !mail-mta/protonmail-bridge-bin ) RESTRICT=test SLOT=0 -SRC_URI=https://github.com/ProtonMail/proton-bridge/archive/br-1.5.6.tar.gz -> protonmail-bridge-1.5.6.tar.gz mirror://goproxy//github.com/0x!a!x/notificator/@v/v0.0.0-20191016112426-3962a5ea8da1.zip -> github.com%2F0x!a!x%2Fnotificator%2F@v%2Fv0.0.0-20191016112426-3962a5ea8da1.zip mirror://goproxy//github.com/0x!a!x/notificator/@v/v0.0.0-20191016112426-3962a5ea8da1.mod -> github.com%2F0x!a!x%2Fnotificator%2F@v%2Fv0.0.0-20191016112426-3962a5ea8da1.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190306092124-e2d15f34fcf9.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34fcf9.mod mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/!cloudy!kit/fastprinter/@v/v0.0.0-20200109182630-33d98a066a53.mod -> github.com%2F!cloudy!kit%2Ffastprinter%2F@v%2Fv0.0.0-20200109182630-33d98a066a53.mod mirror://goproxy//github.com/!cloudy!kit/jet/v3/@v/v3.0.0.mod -> github.com%2F!cloudy!kit%2Fjet%2Fv3%2F@v%2Fv3.0.0.mod mirror://goproxy//github.com/!joker/hpp/@v/v1.0.0.mod -> github.com%2F!joker%2Fhpp%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/!masterminds/semver/v3/@v/v3.1.0.zip -> github.com%2F!masterminds%2Fsemver%2Fv3%2F@v%2Fv3.1.0.zip mirror://goproxy//github.com/!masterminds/semver/v3/@v/v3.1.0.mod -> github.com%2F!masterminds%2Fsemver%2Fv3%2F@v%2Fv3.1.0.mod mirror://goproxy//github.com/!proton!mail/bcrypt/@v/v0.0.0-20170924085257-7509ea014998.zip -> github.com%2F!proton!mail%2Fbcrypt%2F@v%2Fv0.0.0-20170924085257-7509ea014998.zip mirror://goproxy//github.com/!proton!mail/bcrypt/@v/v0.0.0-20170924085257-7509ea014998.mod -> github.com%2F!proton!mail%2Fbcrypt%2F@v%2Fv0.0.0-20170924085257-7509ea014998.mod mirror://goproxy//github.com/!proton!mail/crypto/@v/v0.0.0-20200818122824-ed5d25e28db8.zip -> github.com%2F!proton!mail%2Fcrypto%2F@v%2Fv0.0.0-20200818122824-ed5d25e28db8.zip mirror://goproxy//github.com/!proton!mail/crypto/@v/v0.0.0-20200818122824-ed5d25e28db8.mod -> github.com%2F!proton!mail%2Fcrypto%2F@v%2Fv0.0.0-20200818122824-ed5d25e28db8.mod mirror://goproxy//github.com/!proton!mail/docker-credential-helpers/@v/v1.1.0.zip -> github.com%2F!proton!mail%2Fdocker-credential-helpers%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/!proton!mail/docker-credential-helpers/@v/v1.1.0.mod -> github.com%2F!proton!mail%2Fdocker-credential-helpers%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/!proton!mail/go-appdir/@v/v1.1.0.zip -> github.com%2F!proton!mail%2Fgo-appdir%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/!proton!mail/go-appdir/@v/v1.1.0.mod -> github.com%2F!proton!mail%2Fgo-appdir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/!proton!mail/go-apple-mobileconfig/@v/v0.0.0-20160701194735-7ea9927a11f6.zip -> github.com%2F!proton!mail%2Fgo-apple-mobileconfig%2F@v%2Fv0.0.0-20160701194735-7ea9927a11f6.zip mirror://goproxy//github.com/!proton!mail/go-apple-mobileconfig/@v/v0.0.0-20160701194735-7ea9927a11f6.mod -> github.com%2F!proton!mail%2Fgo-apple-mobileconfig%2F@v%2Fv0.0.0-20160701194735-7ea9927a11f6.mod mirror://goproxy//github.com/!proton!mail/go-autostart/@v/v0.0.0-20181114175602-c5272053443a.zip -> github.com%2F!proton!mail%2Fgo-autostart%2F@v%2Fv0.0.0-20181114175602-c5272053443a.zip mirror://goproxy//github.com/!proton!mail/go-autostart/@v/v0.0.0-20181114175602-c5272053443a.mod -> github.com%2F!proton!mail%2Fgo-autostart%2F@v%2Fv0.0.0-20181114175602-c5272053443a.mod mirror://goproxy//github.com/!proton!mail/go-imap/@v/v0.0.0-20201228133358-4db68cea0cac.zip -> github.com%2F!proton!mail%2Fgo-imap%2F@v%2Fv0.0.0-20201228133358-4db68cea0cac.zip mirror://goproxy//github.com/!proton!mail/go-imap/@v/v0.0.0-20201228133358-4db68cea0cac.mod -> github.com%2F!proton!mail%2Fgo-imap%2F@v%2Fv0.0.0-20201228133358-4db68cea0cac.mod mirror://goproxy//github.com/!proton!mail/go-imap-id/@v/v0.0.0-20190926060100-f94a56b9ecde.zip -> github.com%2F!proton!mail%2Fgo-imap-id%2F@v%2Fv0.0.0-20190926060100-f94a56b9ecde.zip mirror://goproxy//github.com/!proton!mail/go-imap-id/@v/v0.0.0-20190926060100-f94a56b9ecde.mod -> github.com%2F!proton!mail%2Fgo-imap-id%2F@v%2Fv0.0.0-20190926060100-f94a56b9ecde.mod mirror://goproxy//github.com/!proton!mail/go-mime/@v/v0.0.0-20190923161245-9b5a4261663a.zip -> github.com%2F!proton!mail%2Fgo-mime%2F@v%2Fv0.0.0-20190923161245-9b5a4261663a.zip mirror://goproxy//github.com/!proton!mail/go-mime/@v/v0.0.0-20190923161245-9b5a4261663a.mod -> github.com%2F!proton!mail%2Fgo-mime%2F@v%2Fv0.0.0-20190923161245-9b5a4261663a.mod mirror://goproxy//github.com/!proton!mail/go-rfc5322/@v/v0.4.0.zip -> github.com%2F!proton!mail%2Fgo-rfc5322%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/!proton!mail/go-rfc5322/@v/v0.4.0.mod -> github.com%2F!proton!mail%2Fgo-rfc5322%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/!proton!mail/go-rfc5322/@v/v0.5.0.zip -> github.com%2F!proton!mail%2Fgo-rfc5322%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/!proton!mail/go-rfc5322/@v/v0.5.0.mod -> github.com%2F!proton!mail%2Fgo-rfc5322%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/!proton!mail/go-vcard/@v/v0.0.0-20180326232728-33aaa0a0c8a5.zip -> github.com%2F!proton!mail%2Fgo-vcard%2F@v%2Fv0.0.0-20180326232728-33aaa0a0c8a5.zip mirror://goproxy//github.com/!proton!mail/go-vcard/@v/v0.0.0-20180326232728-33aaa0a0c8a5.mod -> github.com%2F!proton!mail%2Fgo-vcard%2F@v%2Fv0.0.0-20180326232728-33aaa0a0c8a5.mod mirror://goproxy//github.com/!proton!mail/gopenpgp/v2/@v/v2.0.1.zip -> github.com%2F!proton!mail%2Fgopenpgp%2Fv2%2F@v%2Fv2.0.1.zip mirror://goproxy//github.com/!proton!mail/gopenpgp/v2/@v/v2.0.1.mod -> github.com%2F!proton!mail%2Fgopenpgp%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/!puerkito!bio/goquery/@v/v1.5.1.zip -> github.com%2F!puerkito!bio%2Fgoquery%2F@v%2Fv1.5.1.zip mirror://goproxy//github.com/!puerkito!bio/goquery/@v/v1.5.1.mod -> github.com%2F!puerkito!bio%2Fgoquery%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/!shopify/goreferrer/@v/v0.0.0-20181106222321-ec9c9a553398.mod -> github.com%2F!shopify%2Fgoreferrer%2F@v%2Fv0.0.0-20181106222321-ec9c9a553398.mod mirror://goproxy//github.com/abiosoft/ishell/@v/v2.0.0+incompatible.zip -> github.com%2Fabiosoft%2Fishell%2F@v%2Fv2.0.0+incompatible.zip mirror://goproxy//github.com/abiosoft/ishell/@v/v2.0.0+incompatible.mod -> github.com%2Fabiosoft%2Fishell%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/abiosoft/readline/@v/v0.0.0-20180607040430-155bce2042db.zip -> github.com%2Fabiosoft%2Freadline%2F@v%2Fv0.0.0-20180607040430-155bce2042db.zip mirror://goproxy//github.com/abiosoft/readline/@v/v0.0.0-20180607040430-155bce2042db.mod -> github.com%2Fabiosoft%2Freadline%2F@v%2Fv0.0.0-20180607040430-155bce2042db.mod mirror://goproxy//github.com/ajg/form/@v/v1.5.1.mod -> github.com%2Fajg%2Fform%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/allan-simon/go-singleinstance/@v/v0.0.0-20160830203053-79edcfdc2dfc.zip -> github.com%2Fallan-simon%2Fgo-singleinstance%2F@v%2Fv0.0.0-20160830203053-79edcfdc2dfc.zip mirror://goproxy//github.com/allan-simon/go-singleinstance/@v/v0.0.0-20160830203053-79edcfdc2dfc.mod -> github.com%2Fallan-simon%2Fgo-singleinstance%2F@v%2Fv0.0.0-20160830203053-79edcfdc2dfc.mod mirror://goproxy//github.com/andybalholm/cascadia/@v/v1.1.0.zip -> github.com%2Fandybalholm%2Fcascadia%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/andybalholm/cascadia/@v/v1.1.0.mod -> github.com%2Fandybalholm%2Fcascadia%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/antlr/antlr4/@v/v0.0.0-20201029161626-9a95f0cc3d7c.zip -> github.com%2Fantlr%2Fantlr4%2F@v%2Fv0.0.0-20201029161626-9a95f0cc3d7c.zip mirror://goproxy//github.com/antlr/antlr4/@v/v0.0.0-20201029161626-9a95f0cc3d7c.mod -> github.com%2Fantlr%2Fantlr4%2F@v%2Fv0.0.0-20201029161626-9a95f0cc3d7c.mod mirror://goproxy//github.com/armon/consul-api/@v/v0.0.0-20180202201655-eb2c6b5be1b6.mod -> github.com%2Farmon%2Fconsul-api%2F@v%2Fv0.0.0-20180202201655-eb2c6b5be1b6.mod mirror://goproxy//github.com/aymerick/raymond/@v/v2.0.3-0.20180322193309-b565731e1464+incompatible.mod -> github.com%2Faymerick%2Fraymond%2F@v%2Fv2.0.3-0.20180322193309-b565731e1464+incompatible.mod mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.zip -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.zip mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.mod -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.zip -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.zip mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.mod -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.mod mirror://goproxy//github.com/codegangsta/inject/@v/v0.0.0-20150114235600-33e0aa1cb7c0.mod -> github.com%2Fcodegangsta%2Finject%2F@v%2Fv0.0.0-20150114235600-33e0aa1cb7c0.mod mirror://goproxy//github.com/coreos/etcd/@v/v3.3.10+incompatible.mod -> github.com%2Fcoreos%2Fetcd%2F@v%2Fv3.3.10+incompatible.mod mirror://goproxy//github.com/coreos/go-etcd/@v/v2.0.0+incompatible.mod -> github.com%2Fcoreos%2Fgo-etcd%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/cpuguy83/go-md2man/@v/v1.0.10.zip -> github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.zip mirror://goproxy//github.com/cpuguy83/go-md2man/@v/v1.0.10.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.mod mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0-20190314233015-f79a8a8ca69d.zip -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0-20190314233015-f79a8a8ca69d.zip mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0-20190314233015-f79a8a8ca69d.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0-20190314233015-f79a8a8ca69d.mod mirror://goproxy//github.com/creack/pty/@v/v1.1.9.mod -> github.com%2Fcreack%2Fpty%2F@v%2Fv1.1.9.mod mirror://goproxy//github.com/cucumber/godog/@v/v0.8.1.zip -> github.com%2Fcucumber%2Fgodog%2F@v%2Fv0.8.1.zip mirror://goproxy//github.com/cucumber/godog/@v/v0.8.1.mod -> github.com%2Fcucumber%2Fgodog%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/danieljoos/wincred/@v/v1.1.0.zip -> github.com%2Fdanieljoos%2Fwincred%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/danieljoos/wincred/@v/v1.1.0.mod -> github.com%2Fdanieljoos%2Fwincred%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/dgrijalva/jwt-go/@v/v3.2.0+incompatible.mod -> github.com%2Fdgrijalva%2Fjwt-go%2F@v%2Fv3.2.0+incompatible.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/eknkc/amber/@v/v0.0.0-20171010120322-cdade1c07385.mod -> github.com%2Feknkc%2Famber%2F@v%2Fv0.0.0-20171010120322-cdade1c07385.mod mirror://goproxy//github.com/emersion/go-imap-appendlimit/@v/v0.0.0-20190308131241-25671c986a6a.zip -> github.com%2Femersion%2Fgo-imap-appendlimit%2F@v%2Fv0.0.0-20190308131241-25671c986a6a.zip mirror://goproxy//github.com/emersion/go-imap-appendlimit/@v/v0.0.0-20190308131241-25671c986a6a.mod -> github.com%2Femersion%2Fgo-imap-appendlimit%2F@v%2Fv0.0.0-20190308131241-25671c986a6a.mod mirror://goproxy//github.com/emersion/go-imap-idle/@v/v0.0.0-20200601154248-f05f54664cc4.zip -> github.com%2Femersion%2Fgo-imap-idle%2F@v%2Fv0.0.0-20200601154248-f05f54664cc4.zip mirror://goproxy//github.com/emersion/go-imap-idle/@v/v0.0.0-20200601154248-f05f54664cc4.mod -> github.com%2Femersion%2Fgo-imap-idle%2F@v%2Fv0.0.0-20200601154248-f05f54664cc4.mod mirror://goproxy//github.com/emersion/go-imap-move/@v/v0.0.0-20190710073258-6e5a51a5b342.zip -> github.com%2Femersion%2Fgo-imap-move%2F@v%2Fv0.0.0-20190710073258-6e5a51a5b342.zip mirror://goproxy//github.com/emersion/go-imap-move/@v/v0.0.0-20190710073258-6e5a51a5b342.mod -> github.com%2Femersion%2Fgo-imap-move%2F@v%2Fv0.0.0-20190710073258-6e5a51a5b342.mod mirror://goproxy//github.com/emersion/go-imap-quota/@v/v0.0.0-20200423100218-dcfd1b7d2b41.zip -> github.com%2Femersion%2Fgo-imap-quota%2F@v%2Fv0.0.0-20200423100218-dcfd1b7d2b41.zip mirror://goproxy//github.com/emersion/go-imap-quota/@v/v0.0.0-20200423100218-dcfd1b7d2b41.mod -> github.com%2Femersion%2Fgo-imap-quota%2F@v%2Fv0.0.0-20200423100218-dcfd1b7d2b41.mod mirror://goproxy//github.com/emersion/go-imap-unselect/@v/v0.0.0-20171113212723-b985794e5f26.zip -> github.com%2Femersion%2Fgo-imap-unselect%2F@v%2Fv0.0.0-20171113212723-b985794e5f26.zip mirror://goproxy//github.com/emersion/go-imap-unselect/@v/v0.0.0-20171113212723-b985794e5f26.mod -> github.com%2Femersion%2Fgo-imap-unselect%2F@v%2Fv0.0.0-20171113212723-b985794e5f26.mod mirror://goproxy//github.com/emersion/go-mbox/@v/v1.0.2.zip -> github.com%2Femersion%2Fgo-mbox%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/emersion/go-mbox/@v/v1.0.2.mod -> github.com%2Femersion%2Fgo-mbox%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/emersion/go-message/@v/v0.11.1.mod -> github.com%2Femersion%2Fgo-message%2F@v%2Fv0.11.1.mod mirror://goproxy//github.com/emersion/go-message/@v/v0.12.1-0.20200903165315-e1abe21f389a.zip -> github.com%2Femersion%2Fgo-message%2F@v%2Fv0.12.1-0.20200903165315-e1abe21f389a.zip mirror://goproxy//github.com/emersion/go-message/@v/v0.12.1-0.20200903165315-e1abe21f389a.mod -> github.com%2Femersion%2Fgo-message%2F@v%2Fv0.12.1-0.20200903165315-e1abe21f389a.mod mirror://goproxy//github.com/emersion/go-message/@v/v0.12.1-0.20201221184100-40c3f864532b.zip -> github.com%2Femersion%2Fgo-message%2F@v%2Fv0.12.1-0.20201221184100-40c3f864532b.zip mirror://goproxy//github.com/emersion/go-message/@v/v0.12.1-0.20201221184100-40c3f864532b.mod -> github.com%2Femersion%2Fgo-message%2F@v%2Fv0.12.1-0.20201221184100-40c3f864532b.mod mirror://goproxy//github.com/emersion/go-sasl/@v/v0.0.0-20191210011802-430746ea8b9b.mod -> github.com%2Femersion%2Fgo-sasl%2F@v%2Fv0.0.0-20191210011802-430746ea8b9b.mod mirror://goproxy//github.com/emersion/go-sasl/@v/v0.0.0-20200509203442-7bfe0ed36a21.zip -> github.com%2Femersion%2Fgo-sasl%2F@v%2Fv0.0.0-20200509203442-7bfe0ed36a21.zip mirror://goproxy//github.com/emersion/go-sasl/@v/v0.0.0-20200509203442-7bfe0ed36a21.mod -> github.com%2Femersion%2Fgo-sasl%2F@v%2Fv0.0.0-20200509203442-7bfe0ed36a21.mod mirror://goproxy//github.com/emersion/go-smtp/@v/v0.14.0.zip -> github.com%2Femersion%2Fgo-smtp%2F@v%2Fv0.14.0.zip mirror://goproxy//github.com/emersion/go-smtp/@v/v0.14.0.mod -> github.com%2Femersion%2Fgo-smtp%2F@v%2Fv0.14.0.mod mirror://goproxy//github.com/emersion/go-textwrapper/@v/v0.0.0-20160606182133-d0e65e56babe.zip -> github.com%2Femersion%2Fgo-textwrapper%2F@v%2Fv0.0.0-20160606182133-d0e65e56babe.zip mirror://goproxy//github.com/emersion/go-textwrapper/@v/v0.0.0-20160606182133-d0e65e56babe.mod -> github.com%2Femersion%2Fgo-textwrapper%2F@v%2Fv0.0.0-20160606182133-d0e65e56babe.mod mirror://goproxy//github.com/emersion/go-textwrapper/@v/v0.0.0-20200911093747-65d896831594.zip -> github.com%2Femersion%2Fgo-textwrapper%2F@v%2Fv0.0.0-20200911093747-65d896831594.zip mirror://goproxy//github.com/emersion/go-textwrapper/@v/v0.0.0-20200911093747-65d896831594.mod -> github.com%2Femersion%2Fgo-textwrapper%2F@v%2Fv0.0.0-20200911093747-65d896831594.mod mirror://goproxy//github.com/emersion/go-vcard/@v/v0.0.0-20190105225839-8856043f13c5.zip -> github.com%2Femersion%2Fgo-vcard%2F@v%2Fv0.0.0-20190105225839-8856043f13c5.zip mirror://goproxy//github.com/emersion/go-vcard/@v/v0.0.0-20190105225839-8856043f13c5.mod -> github.com%2Femersion%2Fgo-vcard%2F@v%2Fv0.0.0-20190105225839-8856043f13c5.mod mirror://goproxy//github.com/etcd-io/bbolt/@v/v1.3.3.mod -> github.com%2Fetcd-io%2Fbbolt%2F@v%2Fv1.3.3.mod mirror://goproxy//github.com/fasthttp-contrib/websocket/@v/v0.0.0-20160511215533-1f3b11f56072.mod -> github.com%2Ffasthttp-contrib%2Fwebsocket%2F@v%2Fv0.0.0-20160511215533-1f3b11f56072.mod mirror://goproxy//github.com/fatih/color/@v/v1.9.0.zip -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.zip mirror://goproxy//github.com/fatih/color/@v/v1.9.0.mod -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/fatih/structs/@v/v1.1.0.mod -> github.com%2Ffatih%2Fstructs%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/flynn-archive/go-shlex/@v/v0.0.0-20150515145356-3f9db97f8568.zip -> github.com%2Fflynn-archive%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.zip mirror://goproxy//github.com/flynn-archive/go-shlex/@v/v0.0.0-20150515145356-3f9db97f8568.mod -> github.com%2Fflynn-archive%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.mod mirror://goproxy//github.com/gavv/httpexpect/@v/v2.0.0+incompatible.mod -> github.com%2Fgavv%2Fhttpexpect%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/getsentry/sentry-go/@v/v0.8.0.zip -> github.com%2Fgetsentry%2Fsentry-go%2F@v%2Fv0.8.0.zip mirror://goproxy//github.com/getsentry/sentry-go/@v/v0.8.0.mod -> github.com%2Fgetsentry%2Fsentry-go%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/gin-contrib/sse/@v/v0.0.0-20190301062529-5545eab6dad3.mod -> github.com%2Fgin-contrib%2Fsse%2F@v%2Fv0.0.0-20190301062529-5545eab6dad3.mod mirror://goproxy//github.com/gin-gonic/gin/@v/v1.4.0.mod -> github.com%2Fgin-gonic%2Fgin%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/go-check/check/@v/v0.0.0-20180628173108-788fd7840127.mod -> github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.mod mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.zip -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.mod -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/go-martini/martini/@v/v0.0.0-20170121215854-22fa46961aab.mod -> github.com%2Fgo-martini%2Fmartini%2F@v%2Fv0.0.0-20170121215854-22fa46961aab.mod mirror://goproxy//github.com/go-resty/resty/v2/@v/v2.3.0.zip -> github.com%2Fgo-resty%2Fresty%2Fv2%2F@v%2Fv2.3.0.zip mirror://goproxy//github.com/go-resty/resty/v2/@v/v2.3.0.mod -> github.com%2Fgo-resty%2Fresty%2Fv2%2F@v%2Fv2.3.0.mod mirror://goproxy//github.com/gobwas/httphead/@v/v0.0.0-20180130184737-2c6c146eadee.mod -> github.com%2Fgobwas%2Fhttphead%2F@v%2Fv0.0.0-20180130184737-2c6c146eadee.mod mirror://goproxy//github.com/gobwas/pool/@v/v0.2.0.mod -> github.com%2Fgobwas%2Fpool%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/gobwas/ws/@v/v1.0.2.mod -> github.com%2Fgobwas%2Fws%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.4.zip -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.zip mirror://goproxy//github.com/golang/mock/@v/v1.4.4.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.2.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/gomodule/redigo/@v/v1.7.1-0.20190724094224-574c33c3df38.mod -> github.com%2Fgomodule%2Fredigo%2F@v%2Fv1.7.1-0.20190724094224-574c33c3df38.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.4.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.1.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.5.1.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/google/go-querystring/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gofuzz/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgofuzz%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/uuid/@v/v1.1.1.zip -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/google/uuid/@v/v1.1.1.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20181017120253-0766667cb4d1.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190411002643-bd77b112433e.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190411002643-bd77b112433e.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.zip -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.zip mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.1.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.zip -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.zip -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/hashicorp/go-version/@v/v1.2.0.mod -> github.com%2Fhashicorp%2Fgo-version%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/hashicorp/hcl/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.mod -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/imkira/go-interpol/@v/v1.1.0.mod -> github.com%2Fimkira%2Fgo-interpol%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.mod -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/iris-contrib/blackfriday/@v/v2.0.0+incompatible.mod -> github.com%2Firis-contrib%2Fblackfriday%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/iris-contrib/go.uuid/@v/v2.0.0+incompatible.mod -> github.com%2Firis-contrib%2Fgo.uuid%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/iris-contrib/jade/@v/v1.1.3.mod -> github.com%2Firis-contrib%2Fjade%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/iris-contrib/pongo2/@v/v0.0.1.mod -> github.com%2Firis-contrib%2Fpongo2%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/iris-contrib/schema/@v/v0.0.1.mod -> github.com%2Firis-contrib%2Fschema%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/jaytaylor/html2text/@v/v0.0.0-20200412013138-3577fbdbcff7.zip -> github.com%2Fjaytaylor%2Fhtml2text%2F@v%2Fv0.0.0-20200412013138-3577fbdbcff7.zip mirror://goproxy//github.com/jaytaylor/html2text/@v/v0.0.0-20200412013138-3577fbdbcff7.mod -> github.com%2Fjaytaylor%2Fhtml2text%2F@v%2Fv0.0.0-20200412013138-3577fbdbcff7.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.6.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.6.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.9.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.9.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.mod mirror://goproxy//github.com/k0kubun/colorstring/@v/v0.0.0-20150214042306-9440f1994b88.mod -> github.com%2Fk0kubun%2Fcolorstring%2F@v%2Fv0.0.0-20150214042306-9440f1994b88.mod mirror://goproxy//github.com/kardianos/osext/@v/v0.0.0-20190222173326-2bc1f35cddc0.zip -> github.com%2Fkardianos%2Fosext%2F@v%2Fv0.0.0-20190222173326-2bc1f35cddc0.zip mirror://goproxy//github.com/kardianos/osext/@v/v0.0.0-20190222173326-2bc1f35cddc0.mod -> github.com%2Fkardianos%2Fosext%2F@v%2Fv0.0.0-20190222173326-2bc1f35cddc0.mod mirror://goproxy//github.com/kataras/golog/@v/v0.0.10.mod -> github.com%2Fkataras%2Fgolog%2F@v%2Fv0.0.10.mod mirror://goproxy//github.com/kataras/iris/v12/@v/v12.1.8.mod -> github.com%2Fkataras%2Firis%2Fv12%2F@v%2Fv12.1.8.mod mirror://goproxy//github.com/kataras/neffos/@v/v0.0.14.mod -> github.com%2Fkataras%2Fneffos%2F@v%2Fv0.0.14.mod mirror://goproxy//github.com/kataras/pio/@v/v0.0.2.mod -> github.com%2Fkataras%2Fpio%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/kataras/sitemap/@v/v0.0.5.mod -> github.com%2Fkataras%2Fsitemap%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/keybase/go-keychain/@v/v0.0.0-20200502122510-cda31fe0c86d.zip -> github.com%2Fkeybase%2Fgo-keychain%2F@v%2Fv0.0.0-20200502122510-cda31fe0c86d.zip mirror://goproxy//github.com/keybase/go-keychain/@v/v0.0.0-20200502122510-cda31fe0c86d.mod -> github.com%2Fkeybase%2Fgo-keychain%2F@v%2Fv0.0.0-20200502122510-cda31fe0c86d.mod mirror://goproxy//github.com/keybase/go.dbus/@v/v0.0.0-20200324223359-a94be52c0b03.mod -> github.com%2Fkeybase%2Fgo.dbus%2F@v%2Fv0.0.0-20200324223359-a94be52c0b03.mod mirror://goproxy//github.com/klauspost/compress/@v/v1.8.2.mod -> github.com%2Fklauspost%2Fcompress%2F@v%2Fv1.8.2.mod mirror://goproxy//github.com/klauspost/compress/@v/v1.9.7.mod -> github.com%2Fklauspost%2Fcompress%2F@v%2Fv1.9.7.mod mirror://goproxy//github.com/klauspost/cpuid/@v/v1.2.1.mod -> github.com%2Fklauspost%2Fcpuid%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.2.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/text/@v/v0.2.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/kr/text/@v/v0.2.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/labstack/echo/v4/@v/v4.1.11.mod -> github.com%2Flabstack%2Fecho%2Fv4%2F@v%2Fv4.1.11.mod mirror://goproxy//github.com/labstack/gommon/@v/v0.3.0.mod -> github.com%2Flabstack%2Fgommon%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/logrusorgru/aurora/@v/v2.0.3+incompatible.zip -> github.com%2Flogrusorgru%2Faurora%2F@v%2Fv2.0.3+incompatible.zip mirror://goproxy//github.com/logrusorgru/aurora/@v/v2.0.3+incompatible.mod -> github.com%2Flogrusorgru%2Faurora%2F@v%2Fv2.0.3+incompatible.mod mirror://goproxy//github.com/magiconair/properties/@v/v1.8.0.mod -> github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/martinlindhe/base36/@v/v1.0.0.zip -> github.com%2Fmartinlindhe%2Fbase36%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/martinlindhe/base36/@v/v1.0.0.mod -> github.com%2Fmartinlindhe%2Fbase36%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/martinlindhe/base36/@v/v1.1.0.mod -> github.com%2Fmartinlindhe%2Fbase36%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.2.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.7.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.8.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.7.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mattn/goveralls/@v/v0.0.2.mod -> github.com%2Fmattn%2Fgoveralls%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/mediocregopher/radix/v3/@v/v3.4.2.mod -> github.com%2Fmediocregopher%2Fradix%2Fv3%2F@v%2Fv3.4.2.mod mirror://goproxy//github.com/microcosm-cc/bluemonday/@v/v1.0.2.mod -> github.com%2Fmicrocosm-cc%2Fbluemonday%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.30.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.30.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.30.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.30.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mitchellh/mapstructure/@v/v1.1.2.mod -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180228061459-e0a39a4cb421.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180228061459-e0a39a4cb421.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180306012644-bacd9c7ef1dd.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180306012644-bacd9c7ef1dd.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v0.0.0-20180701023420-4b7aa43c6742.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv0.0.0-20180701023420-4b7aa43c6742.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v1.0.1.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/moul/http2curl/@v/v1.0.0.mod -> github.com%2Fmoul%2Fhttp2curl%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/myesui/uuid/@v/v1.0.0.zip -> github.com%2Fmyesui%2Fuuid%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/myesui/uuid/@v/v1.0.0.mod -> github.com%2Fmyesui%2Fuuid%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/nats-io/jwt/@v/v0.3.0.mod -> github.com%2Fnats-io%2Fjwt%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/nats-io/nats.go/@v/v1.9.1.mod -> github.com%2Fnats-io%2Fnats.go%2F@v%2Fv1.9.1.mod mirror://goproxy//github.com/nats-io/nkeys/@v/v0.1.0.mod -> github.com%2Fnats-io%2Fnkeys%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/nats-io/nuid/@v/v1.0.1.mod -> github.com%2Fnats-io%2Fnuid%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/niemeyer/pretty/@v/v0.0.0-20200227124842-a10e7caefd8e.zip -> github.com%2Fniemeyer%2Fpretty%2F@v%2Fv0.0.0-20200227124842-a10e7caefd8e.zip mirror://goproxy//github.com/niemeyer/pretty/@v/v0.0.0-20200227124842-a10e7caefd8e.mod -> github.com%2Fniemeyer%2Fpretty%2F@v%2Fv0.0.0-20200227124842-a10e7caefd8e.mod mirror://goproxy//github.com/nsf/jsondiff/@v/v0.0.0-20200515183724-f29ed568f4ce.zip -> github.com%2Fnsf%2Fjsondiff%2F@v%2Fv0.0.0-20200515183724-f29ed568f4ce.zip mirror://goproxy//github.com/nsf/jsondiff/@v/v0.0.0-20200515183724-f29ed568f4ce.mod -> github.com%2Fnsf%2Fjsondiff%2F@v%2Fv0.0.0-20200515183724-f29ed568f4ce.mod mirror://goproxy//github.com/olekukonko/tablewriter/@v/v0.0.4.zip -> github.com%2Folekukonko%2Ftablewriter%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/olekukonko/tablewriter/@v/v0.0.4.mod -> github.com%2Folekukonko%2Ftablewriter%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.6.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.10.3.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.10.3.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.7.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.7.1.mod mirror://goproxy//github.com/pelletier/go-toml/@v/v1.2.0.mod -> github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/pingcap/errors/@v/v0.11.4.zip -> github.com%2Fpingcap%2Ferrors%2F@v%2Fv0.11.4.zip mirror://goproxy//github.com/pingcap/errors/@v/v0.11.4.mod -> github.com%2Fpingcap%2Ferrors%2F@v%2Fv0.11.4.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.zip mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/russross/blackfriday/@v/v1.5.2.zip -> github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.zip mirror://goproxy//github.com/russross/blackfriday/@v/v1.5.2.mod -> github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.mod mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.zip -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.zip mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.mod -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/ryanuber/columnize/@v/v2.1.0+incompatible.mod -> github.com%2Fryanuber%2Fcolumnize%2F@v%2Fv2.1.0+incompatible.mod mirror://goproxy//github.com/schollz/closestmatch/@v/v2.1.0+incompatible.mod -> github.com%2Fschollz%2Fclosestmatch%2F@v%2Fv2.1.0+incompatible.mod mirror://goproxy//github.com/sergi/go-diff/@v/v1.0.0.mod -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.zip -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.1.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.2.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.7.0.zip -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/sirupsen/logrus/@v/v1.7.0.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/skratchdot/open-golang/@v/v0.0.0-20200116055534-eef842397966.zip -> github.com%2Fskratchdot%2Fopen-golang%2F@v%2Fv0.0.0-20200116055534-eef842397966.zip mirror://goproxy//github.com/skratchdot/open-golang/@v/v0.0.0-20200116055534-eef842397966.mod -> github.com%2Fskratchdot%2Fopen-golang%2F@v%2Fv0.0.0-20200116055534-eef842397966.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v0.0.0-20180927180507-b2de0cb4f26d.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v1.6.4.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv1.6.4.mod mirror://goproxy//github.com/spf13/afero/@v/v1.1.2.mod -> github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/spf13/cast/@v/v1.3.0.mod -> github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.5.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/spf13/jwalterweatherman/@v/v1.0.0.mod -> github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.3.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/spf13/viper/@v/v1.3.2.mod -> github.com%2Fspf13%2Fviper%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/ssor/bom/@v/v0.0.0-20170718123548-6386211fdfcf.zip -> github.com%2Fssor%2Fbom%2F@v%2Fv0.0.0-20170718123548-6386211fdfcf.zip mirror://goproxy//github.com/ssor/bom/@v/v0.0.0-20170718123548-6386211fdfcf.mod -> github.com%2Fssor%2Fbom%2F@v%2Fv0.0.0-20170718123548-6386211fdfcf.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.1.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.2.0.zip -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/stretchr/objx/@v/v0.2.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.2.2.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.5.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.6.1.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.6.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/therecipe/qt/@v/v0.0.0-20200701200531-7f61353ee73e.zip -> github.com%2Ftherecipe%2Fqt%2F@v%2Fv0.0.0-20200701200531-7f61353ee73e.zip mirror://goproxy//github.com/therecipe/qt/@v/v0.0.0-20200701200531-7f61353ee73e.mod -> github.com%2Ftherecipe%2Fqt%2F@v%2Fv0.0.0-20200701200531-7f61353ee73e.mod mirror://goproxy//github.com/twinj/uuid/@v/v1.0.0.zip -> github.com%2Ftwinj%2Fuuid%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/twinj/uuid/@v/v1.0.0.mod -> github.com%2Ftwinj%2Fuuid%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/ugorji/go/@v/v1.1.4.mod -> github.com%2Fugorji%2Fgo%2F@v%2Fv1.1.4.mod mirror://goproxy//github.com/ugorji/go/@v/v1.1.7.mod -> github.com%2Fugorji%2Fgo%2F@v%2Fv1.1.7.mod mirror://goproxy//github.com/ugorji/go/codec/@v/v0.0.0-20181204163529-d75b2dcb6bc8.mod -> github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv0.0.0-20181204163529-d75b2dcb6bc8.mod mirror://goproxy//github.com/ugorji/go/codec/@v/v1.1.7.mod -> github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv1.1.7.mod mirror://goproxy//github.com/urfave/cli/@v/v1.22.4.zip -> github.com%2Furfave%2Fcli%2F@v%2Fv1.22.4.zip mirror://goproxy//github.com/urfave/cli/@v/v1.22.4.mod -> github.com%2Furfave%2Fcli%2F@v%2Fv1.22.4.mod mirror://goproxy//github.com/urfave/negroni/@v/v1.0.0.mod -> github.com%2Furfave%2Fnegroni%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/valyala/bytebufferpool/@v/v1.0.0.mod -> github.com%2Fvalyala%2Fbytebufferpool%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/valyala/fasthttp/@v/v1.6.0.mod -> github.com%2Fvalyala%2Ffasthttp%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/valyala/fasttemplate/@v/v1.0.1.mod -> github.com%2Fvalyala%2Ffasttemplate%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/valyala/tcplisten/@v/v0.0.0-20161114210144-ceec8f93295a.mod -> github.com%2Fvalyala%2Ftcplisten%2F@v%2Fv0.0.0-20161114210144-ceec8f93295a.mod mirror://goproxy//github.com/xeipuuv/gojsonpointer/@v/v0.0.0-20180127040702-4e3ac2762d5f.mod -> github.com%2Fxeipuuv%2Fgojsonpointer%2F@v%2Fv0.0.0-20180127040702-4e3ac2762d5f.mod mirror://goproxy//github.com/xeipuuv/gojsonreference/@v/v0.0.0-20180127040603-bd5ef7bd5415.mod -> github.com%2Fxeipuuv%2Fgojsonreference%2F@v%2Fv0.0.0-20180127040603-bd5ef7bd5415.mod mirror://goproxy//github.com/xeipuuv/gojsonschema/@v/v1.2.0.mod -> github.com%2Fxeipuuv%2Fgojsonschema%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/xordataexchange/crypt/@v/v0.0.3-0.20170626215501-b2862e3d0a77.mod -> github.com%2Fxordataexchange%2Fcrypt%2F@v%2Fv0.0.3-0.20170626215501-b2862e3d0a77.mod mirror://goproxy//github.com/yalp/jsonpath/@v/v0.0.0-20180802001716-5cc68e5049a0.mod -> github.com%2Fyalp%2Fjsonpath%2F@v%2Fv0.0.0-20180802001716-5cc68e5049a0.mod mirror://goproxy//github.com/yudai/gojsondiff/@v/v1.0.0.mod -> github.com%2Fyudai%2Fgojsondiff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/yudai/golcs/@v/v0.0.0-20170316035057-ecda9a501e82.mod -> github.com%2Fyudai%2Fgolcs%2F@v%2Fv0.0.0-20170316035057-ecda9a501e82.mod mirror://goproxy//github.com/yudai/pp/@v/v2.0.1+incompatible.mod -> github.com%2Fyudai%2Fpp%2F@v%2Fv2.0.1+incompatible.mod mirror://goproxy//go.etcd.io/bbolt/@v/v1.3.5.zip -> go.etcd.io%2Fbbolt%2F@v%2Fv1.3.5.zip mirror://goproxy//go.etcd.io/bbolt/@v/v1.3.5.mod -> go.etcd.io%2Fbbolt%2F@v%2Fv1.3.5.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.1-0.20191105210325-c90efee705ee.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191105210325-c90efee705ee.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180218175443-cbe0f9307d01.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180218175443-cbe0f9307d01.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180906233101-161cd47e91fd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180906233101-161cd47e91fd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181220203305-927f97764cc3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181220203305-927f97764cc3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190311183353-d8887717615a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190327091125-710a502c58a2.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190327091125-710a502c58a2.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190420063019-afa5a82059c6.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190420063019-afa5a82059c6.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190503192946-f4e77d36d62c.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190503192946-f4e77d36d62c.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190827160401-ba9fcec4b297.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190827160401-ba9fcec4b297.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20191209160850-c0dbc17a3553.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20191209160850-c0dbc17a3553.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200202094626-16171245cfb2.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200202094626-16171245cfb2.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200513185701-a91f0712d120.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200513185701-a91f0712d120.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200707034311-ab3426394381.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200707034311-ab3426394381.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20180314180146-1d60e4601c6f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20180314180146-1d60e4601c6f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190911185100-cd5d95a43a6e.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190911185100-cd5d95a43a6e.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180905080454-ebe1bf3edb33.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180905080454-ebe1bf3edb33.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180909124046-d0be0721c37e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180909124046-d0be0721c37e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181205085412-a5c9d58dba9a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181205085412-a5c9d58dba9a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190222072716-a9d3bda3a223.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190222072716-a9d3bda3a223.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190419153524-e8e3143a4f4a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190419153524-e8e3143a4f4a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190422165155-953cdadca894.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190422165155-953cdadca894.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626221950-04f50cda93cb.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190813064441-fde4db37ae7a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190813064441-fde4db37ae7a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190924154521-2837fb4f24fe.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190924154521-2837fb4f24fe.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200202164722-d101bd2416d5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200202164722-d101bd2416d5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod mirror://goproxy//golang.org/x/text/@v/v0.3.3.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.zip mirror://goproxy//golang.org/x/text/@v/v0.3.3.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.mod mirror://goproxy//golang.org/x/text/@v/v0.3.5-0.20201125200606-c27b9fd57aec.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.5-0.20201125200606-c27b9fd57aec.zip mirror://goproxy//golang.org/x/text/@v/v0.3.5-0.20201125200606-c27b9fd57aec.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.5-0.20201125200606-c27b9fd57aec.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181221001348-537d06c36207.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181221001348-537d06c36207.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190327201419-c70d86f8b7cf.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190327201419-c70d86f8b7cf.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190328211700-ab21143f2384.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190328211700-ab21143f2384.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190420181800-aa740d480789.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190420181800-aa740d480789.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190425150028-36563e24a262.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190425150028-36563e24a262.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191011141410-1b5146add898.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20200227125254-8fa46927fb4f.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20200227125254-8fa46927fb4f.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20200227125254-8fa46927fb4f.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20200227125254-8fa46927fb4f.mod mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.mod -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.mod mirror://goproxy//gopkg.in/go-playground/assert.v1/@v/v1.2.1.mod -> gopkg.in%2Fgo-playground%2Fassert.v1%2F@v%2Fv1.2.1.mod mirror://goproxy//gopkg.in/go-playground/validator.v8/@v/v8.18.2.mod -> gopkg.in%2Fgo-playground%2Fvalidator.v8%2F@v%2Fv8.18.2.mod mirror://goproxy//gopkg.in/ini.v1/@v/v1.51.1.mod -> gopkg.in%2Fini.v1%2F@v%2Fv1.51.1.mod mirror://goproxy//gopkg.in/mgo.v2/@v/v2.0.0-20180705113604-9856a29383ce.mod -> gopkg.in%2Fmgo.v2%2F@v%2Fv2.0.0-20180705113604-9856a29383ce.mod mirror://goproxy//gopkg.in/stretchr/testify.v1/@v/v1.2.2.zip -> gopkg.in%2Fstretchr%2Ftestify.v1%2F@v%2Fv1.2.2.zip mirror://goproxy//gopkg.in/stretchr/testify.v1/@v/v1.2.2.mod -> gopkg.in%2Fstretchr%2Ftestify.v1%2F@v%2Fv1.2.2.mod mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.mod -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.4.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.8.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.8.mod mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20191120175047-4206685974f2.mod -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20191120175047-4206685974f2.mod mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.zip -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.zip mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.mod -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod +SRC_URI=https://github.com/ProtonMail/proton-bridge/archive/br-1.5.7.tar.gz -> protonmail-bridge-1.5.7.tar.gz mirror://goproxy//github.com/0x!a!x/notificator/@v/v0.0.0-20191016112426-3962a5ea8da1.zip -> github.com%2F0x!a!x%2Fnotificator%2F@v%2Fv0.0.0-20191016112426-3962a5ea8da1.zip mirror://goproxy//github.com/0x!a!x/notificator/@v/v0.0.0-20191016112426-3962a5ea8da1.mod -> github.com%2F0x!a!x%2Fnotificator%2F@v%2Fv0.0.0-20191016112426-3962a5ea8da1.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190306092124-e2d15f34fcf9.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34fcf9.mod mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/!cloudy!kit/fastprinter/@v/v0.0.0-20200109182630-33d98a066a53.mod -> github.com%2F!cloudy!kit%2Ffastprinter%2F@v%2Fv0.0.0-20200109182630-33d98a066a53.mod mirror://goproxy//github.com/!cloudy!kit/jet/v3/@v/v3.0.0.mod -> github.com%2F!cloudy!kit%2Fjet%2Fv3%2F@v%2Fv3.0.0.mod mirror://goproxy//github.com/!joker/hpp/@v/v1.0.0.mod -> github.com%2F!joker%2Fhpp%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/!masterminds/semver/v3/@v/v3.1.0.zip -> github.com%2F!masterminds%2Fsemver%2Fv3%2F@v%2Fv3.1.0.zip mirror://goproxy//github.com/!masterminds/semver/v3/@v/v3.1.0.mod -> github.com%2F!masterminds%2Fsemver%2Fv3%2F@v%2Fv3.1.0.mod mirror://goproxy//github.com/!proton!mail/bcrypt/@v/v0.0.0-20170924085257-7509ea014998.zip -> github.com%2F!proton!mail%2Fbcrypt%2F@v%2Fv0.0.0-20170924085257-7509ea014998.zip mirror://goproxy//github.com/!proton!mail/bcrypt/@v/v0.0.0-20170924085257-7509ea014998.mod -> github.com%2F!proton!mail%2Fbcrypt%2F@v%2Fv0.0.0-20170924085257-7509ea014998.mod mirror://goproxy//github.com/!proton!mail/crypto/@v/v0.0.0-20200818122824-ed5d25e28db8.zip -> github.com%2F!proton!mail%2Fcrypto%2F@v%2Fv0.0.0-20200818122824-ed5d25e28db8.zip mirror://goproxy//github.com/!proton!mail/crypto/@v/v0.0.0-20200818122824-ed5d25e28db8.mod -> github.com%2F!proton!mail%2Fcrypto%2F@v%2Fv0.0.0-20200818122824-ed5d25e28db8.mod mirror://goproxy//github.com/!proton!mail/docker-credential-helpers/@v/v1.1.0.zip -> github.com%2F!proton!mail%2Fdocker-credential-helpers%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/!proton!mail/docker-credential-helpers/@v/v1.1.0.mod -> github.com%2F!proton!mail%2Fdocker-credential-helpers%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/!proton!mail/go-appdir/@v/v1.1.0.zip -> github.com%2F!proton!mail%2Fgo-appdir%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/!proton!mail/go-appdir/@v/v1.1.0.mod -> github.com%2F!proton!mail%2Fgo-appdir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/!proton!mail/go-apple-mobileconfig/@v/v0.0.0-20160701194735-7ea9927a11f6.zip -> github.com%2F!proton!mail%2Fgo-apple-mobileconfig%2F@v%2Fv0.0.0-20160701194735-7ea9927a11f6.zip mirror://goproxy//github.com/!proton!mail/go-apple-mobileconfig/@v/v0.0.0-20160701194735-7ea9927a11f6.mod -> github.com%2F!proton!mail%2Fgo-apple-mobileconfig%2F@v%2Fv0.0.0-20160701194735-7ea9927a11f6.mod mirror://goproxy//github.com/!proton!mail/go-autostart/@v/v0.0.0-20181114175602-c5272053443a.zip -> github.com%2F!proton!mail%2Fgo-autostart%2F@v%2Fv0.0.0-20181114175602-c5272053443a.zip mirror://goproxy//github.com/!proton!mail/go-autostart/@v/v0.0.0-20181114175602-c5272053443a.mod -> github.com%2F!proton!mail%2Fgo-autostart%2F@v%2Fv0.0.0-20181114175602-c5272053443a.mod mirror://goproxy//github.com/!proton!mail/go-imap/@v/v0.0.0-20201228133358-4db68cea0cac.zip -> github.com%2F!proton!mail%2Fgo-imap%2F@v%2Fv0.0.0-20201228133358-4db68cea0cac.zip mirror://goproxy//github.com/!proton!mail/go-imap/@v/v0.0.0-20201228133358-4db68cea0cac.mod -> github.com%2F!proton!mail%2Fgo-imap%2F@v%2Fv0.0.0-20201228133358-4db68cea0cac.mod mirror://goproxy//github.com/!proton!mail/go-imap-id/@v/v0.0.0-20190926060100-f94a56b9ecde.zip -> github.com%2F!proton!mail%2Fgo-imap-id%2F@v%2Fv0.0.0-20190926060100-f94a56b9ecde.zip mirror://goproxy//github.com/!proton!mail/go-imap-id/@v/v0.0.0-20190926060100-f94a56b9ecde.mod -> github.com%2F!proton!mail%2Fgo-imap-id%2F@v%2Fv0.0.0-20190926060100-f94a56b9ecde.mod mirror://goproxy//github.com/!proton!mail/go-mime/@v/v0.0.0-20190923161245-9b5a4261663a.zip -> github.com%2F!proton!mail%2Fgo-mime%2F@v%2Fv0.0.0-20190923161245-9b5a4261663a.zip mirror://goproxy//github.com/!proton!mail/go-mime/@v/v0.0.0-20190923161245-9b5a4261663a.mod -> github.com%2F!proton!mail%2Fgo-mime%2F@v%2Fv0.0.0-20190923161245-9b5a4261663a.mod mirror://goproxy//github.com/!proton!mail/go-rfc5322/@v/v0.4.0.zip -> github.com%2F!proton!mail%2Fgo-rfc5322%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/!proton!mail/go-rfc5322/@v/v0.4.0.mod -> github.com%2F!proton!mail%2Fgo-rfc5322%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/!proton!mail/go-rfc5322/@v/v0.5.0.zip -> github.com%2F!proton!mail%2Fgo-rfc5322%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/!proton!mail/go-rfc5322/@v/v0.5.0.mod -> github.com%2F!proton!mail%2Fgo-rfc5322%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/!proton!mail/go-vcard/@v/v0.0.0-20180326232728-33aaa0a0c8a5.zip -> github.com%2F!proton!mail%2Fgo-vcard%2F@v%2Fv0.0.0-20180326232728-33aaa0a0c8a5.zip mirror://goproxy//github.com/!proton!mail/go-vcard/@v/v0.0.0-20180326232728-33aaa0a0c8a5.mod -> github.com%2F!proton!mail%2Fgo-vcard%2F@v%2Fv0.0.0-20180326232728-33aaa0a0c8a5.mod mirror://goproxy//github.com/!proton!mail/gopenpgp/v2/@v/v2.0.1.zip -> github.com%2F!proton!mail%2Fgopenpgp%2Fv2%2F@v%2Fv2.0.1.zip mirror://goproxy//github.com/!proton!mail/gopenpgp/v2/@v/v2.0.1.mod -> github.com%2F!proton!mail%2Fgopenpgp%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/!puerkito!bio/goquery/@v/v1.5.1.zip -> github.com%2F!puerkito!bio%2Fgoquery%2F@v%2Fv1.5.1.zip mirror://goproxy//github.com/!puerkito!bio/goquery/@v/v1.5.1.mod -> github.com%2F!puerkito!bio%2Fgoquery%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/!shopify/goreferrer/@v/v0.0.0-20181106222321-ec9c9a553398.mod -> github.com%2F!shopify%2Fgoreferrer%2F@v%2Fv0.0.0-20181106222321-ec9c9a553398.mod mirror://goproxy//github.com/abiosoft/ishell/@v/v2.0.0+incompatible.zip -> github.com%2Fabiosoft%2Fishell%2F@v%2Fv2.0.0+incompatible.zip mirror://goproxy//github.com/abiosoft/ishell/@v/v2.0.0+incompatible.mod -> github.com%2Fabiosoft%2Fishell%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/abiosoft/readline/@v/v0.0.0-20180607040430-155bce2042db.zip -> github.com%2Fabiosoft%2Freadline%2F@v%2Fv0.0.0-20180607040430-155bce2042db.zip mirror://goproxy//github.com/abiosoft/readline/@v/v0.0.0-20180607040430-155bce2042db.mod -> github.com%2Fabiosoft%2Freadline%2F@v%2Fv0.0.0-20180607040430-155bce2042db.mod mirror://goproxy//github.com/ajg/form/@v/v1.5.1.mod -> github.com%2Fajg%2Fform%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/allan-simon/go-singleinstance/@v/v0.0.0-20160830203053-79edcfdc2dfc.zip -> github.com%2Fallan-simon%2Fgo-singleinstance%2F@v%2Fv0.0.0-20160830203053-79edcfdc2dfc.zip mirror://goproxy//github.com/allan-simon/go-singleinstance/@v/v0.0.0-20160830203053-79edcfdc2dfc.mod -> github.com%2Fallan-simon%2Fgo-singleinstance%2F@v%2Fv0.0.0-20160830203053-79edcfdc2dfc.mod mirror://goproxy//github.com/andybalholm/cascadia/@v/v1.1.0.zip -> github.com%2Fandybalholm%2Fcascadia%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/andybalholm/cascadia/@v/v1.1.0.mod -> github.com%2Fandybalholm%2Fcascadia%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/antlr/antlr4/@v/v0.0.0-20201029161626-9a95f0cc3d7c.zip -> github.com%2Fantlr%2Fantlr4%2F@v%2Fv0.0.0-20201029161626-9a95f0cc3d7c.zip mirror://goproxy//github.com/antlr/antlr4/@v/v0.0.0-20201029161626-9a95f0cc3d7c.mod -> github.com%2Fantlr%2Fantlr4%2F@v%2Fv0.0.0-20201029161626-9a95f0cc3d7c.mod mirror://goproxy//github.com/armon/consul-api/@v/v0.0.0-20180202201655-eb2c6b5be1b6.mod -> github.com%2Farmon%2Fconsul-api%2F@v%2Fv0.0.0-20180202201655-eb2c6b5be1b6.mod mirror://goproxy//github.com/aymerick/raymond/@v/v2.0.3-0.20180322193309-b565731e1464+incompatible.mod -> github.com%2Faymerick%2Fraymond%2F@v%2Fv2.0.3-0.20180322193309-b565731e1464+incompatible.mod mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.zip -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.zip mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.mod -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.zip -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.zip mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.mod -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.mod mirror://goproxy//github.com/codegangsta/inject/@v/v0.0.0-20150114235600-33e0aa1cb7c0.mod -> github.com%2Fcodegangsta%2Finject%2F@v%2Fv0.0.0-20150114235600-33e0aa1cb7c0.mod mirror://goproxy//github.com/coreos/etcd/@v/v3.3.10+incompatible.mod -> github.com%2Fcoreos%2Fetcd%2F@v%2Fv3.3.10+incompatible.mod mirror://goproxy//github.com/coreos/go-etcd/@v/v2.0.0+incompatible.mod -> github.com%2Fcoreos%2Fgo-etcd%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/cpuguy83/go-md2man/@v/v1.0.10.zip -> github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.zip mirror://goproxy//github.com/cpuguy83/go-md2man/@v/v1.0.10.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.mod mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0-20190314233015-f79a8a8ca69d.zip -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0-20190314233015-f79a8a8ca69d.zip mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0-20190314233015-f79a8a8ca69d.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0-20190314233015-f79a8a8ca69d.mod mirror://goproxy//github.com/creack/pty/@v/v1.1.9.mod -> github.com%2Fcreack%2Fpty%2F@v%2Fv1.1.9.mod mirror://goproxy//github.com/cucumber/godog/@v/v0.8.1.zip -> github.com%2Fcucumber%2Fgodog%2F@v%2Fv0.8.1.zip mirror://goproxy//github.com/cucumber/godog/@v/v0.8.1.mod -> github.com%2Fcucumber%2Fgodog%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/danieljoos/wincred/@v/v1.1.0.zip -> github.com%2Fdanieljoos%2Fwincred%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/danieljoos/wincred/@v/v1.1.0.mod -> github.com%2Fdanieljoos%2Fwincred%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/dgrijalva/jwt-go/@v/v3.2.0+incompatible.mod -> github.com%2Fdgrijalva%2Fjwt-go%2F@v%2Fv3.2.0+incompatible.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/eknkc/amber/@v/v0.0.0-20171010120322-cdade1c07385.mod -> github.com%2Feknkc%2Famber%2F@v%2Fv0.0.0-20171010120322-cdade1c07385.mod mirror://goproxy//github.com/emersion/go-imap-appendlimit/@v/v0.0.0-20190308131241-25671c986a6a.zip -> github.com%2Femersion%2Fgo-imap-appendlimit%2F@v%2Fv0.0.0-20190308131241-25671c986a6a.zip mirror://goproxy//github.com/emersion/go-imap-appendlimit/@v/v0.0.0-20190308131241-25671c986a6a.mod -> github.com%2Femersion%2Fgo-imap-appendlimit%2F@v%2Fv0.0.0-20190308131241-25671c986a6a.mod mirror://goproxy//github.com/emersion/go-imap-idle/@v/v0.0.0-20200601154248-f05f54664cc4.zip -> github.com%2Femersion%2Fgo-imap-idle%2F@v%2Fv0.0.0-20200601154248-f05f54664cc4.zip mirror://goproxy//github.com/emersion/go-imap-idle/@v/v0.0.0-20200601154248-f05f54664cc4.mod -> github.com%2Femersion%2Fgo-imap-idle%2F@v%2Fv0.0.0-20200601154248-f05f54664cc4.mod mirror://goproxy//github.com/emersion/go-imap-move/@v/v0.0.0-20190710073258-6e5a51a5b342.zip -> github.com%2Femersion%2Fgo-imap-move%2F@v%2Fv0.0.0-20190710073258-6e5a51a5b342.zip mirror://goproxy//github.com/emersion/go-imap-move/@v/v0.0.0-20190710073258-6e5a51a5b342.mod -> github.com%2Femersion%2Fgo-imap-move%2F@v%2Fv0.0.0-20190710073258-6e5a51a5b342.mod mirror://goproxy//github.com/emersion/go-imap-quota/@v/v0.0.0-20200423100218-dcfd1b7d2b41.zip -> github.com%2Femersion%2Fgo-imap-quota%2F@v%2Fv0.0.0-20200423100218-dcfd1b7d2b41.zip mirror://goproxy//github.com/emersion/go-imap-quota/@v/v0.0.0-20200423100218-dcfd1b7d2b41.mod -> github.com%2Femersion%2Fgo-imap-quota%2F@v%2Fv0.0.0-20200423100218-dcfd1b7d2b41.mod mirror://goproxy//github.com/emersion/go-imap-unselect/@v/v0.0.0-20171113212723-b985794e5f26.zip -> github.com%2Femersion%2Fgo-imap-unselect%2F@v%2Fv0.0.0-20171113212723-b985794e5f26.zip mirror://goproxy//github.com/emersion/go-imap-unselect/@v/v0.0.0-20171113212723-b985794e5f26.mod -> github.com%2Femersion%2Fgo-imap-unselect%2F@v%2Fv0.0.0-20171113212723-b985794e5f26.mod mirror://goproxy//github.com/emersion/go-mbox/@v/v1.0.2.zip -> github.com%2Femersion%2Fgo-mbox%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/emersion/go-mbox/@v/v1.0.2.mod -> github.com%2Femersion%2Fgo-mbox%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/emersion/go-message/@v/v0.11.1.mod -> github.com%2Femersion%2Fgo-message%2F@v%2Fv0.11.1.mod mirror://goproxy//github.com/emersion/go-message/@v/v0.12.1-0.20200903165315-e1abe21f389a.zip -> github.com%2Femersion%2Fgo-message%2F@v%2Fv0.12.1-0.20200903165315-e1abe21f389a.zip mirror://goproxy//github.com/emersion/go-message/@v/v0.12.1-0.20200903165315-e1abe21f389a.mod -> github.com%2Femersion%2Fgo-message%2F@v%2Fv0.12.1-0.20200903165315-e1abe21f389a.mod mirror://goproxy//github.com/emersion/go-message/@v/v0.12.1-0.20201221184100-40c3f864532b.zip -> github.com%2Femersion%2Fgo-message%2F@v%2Fv0.12.1-0.20201221184100-40c3f864532b.zip mirror://goproxy//github.com/emersion/go-message/@v/v0.12.1-0.20201221184100-40c3f864532b.mod -> github.com%2Femersion%2Fgo-message%2F@v%2Fv0.12.1-0.20201221184100-40c3f864532b.mod mirror://goproxy//github.com/emersion/go-sasl/@v/v0.0.0-20191210011802-430746ea8b9b.mod -> github.com%2Femersion%2Fgo-sasl%2F@v%2Fv0.0.0-20191210011802-430746ea8b9b.mod mirror://goproxy//github.com/emersion/go-sasl/@v/v0.0.0-20200509203442-7bfe0ed36a21.zip -> github.com%2Femersion%2Fgo-sasl%2F@v%2Fv0.0.0-20200509203442-7bfe0ed36a21.zip mirror://goproxy//github.com/emersion/go-sasl/@v/v0.0.0-20200509203442-7bfe0ed36a21.mod -> github.com%2Femersion%2Fgo-sasl%2F@v%2Fv0.0.0-20200509203442-7bfe0ed36a21.mod mirror://goproxy//github.com/emersion/go-smtp/@v/v0.14.0.zip -> github.com%2Femersion%2Fgo-smtp%2F@v%2Fv0.14.0.zip mirror://goproxy//github.com/emersion/go-smtp/@v/v0.14.0.mod -> github.com%2Femersion%2Fgo-smtp%2F@v%2Fv0.14.0.mod mirror://goproxy//github.com/emersion/go-textwrapper/@v/v0.0.0-20160606182133-d0e65e56babe.zip -> github.com%2Femersion%2Fgo-textwrapper%2F@v%2Fv0.0.0-20160606182133-d0e65e56babe.zip mirror://goproxy//github.com/emersion/go-textwrapper/@v/v0.0.0-20160606182133-d0e65e56babe.mod -> github.com%2Femersion%2Fgo-textwrapper%2F@v%2Fv0.0.0-20160606182133-d0e65e56babe.mod mirror://goproxy//github.com/emersion/go-textwrapper/@v/v0.0.0-20200911093747-65d896831594.zip -> github.com%2Femersion%2Fgo-textwrapper%2F@v%2Fv0.0.0-20200911093747-65d896831594.zip mirror://goproxy//github.com/emersion/go-textwrapper/@v/v0.0.0-20200911093747-65d896831594.mod -> github.com%2Femersion%2Fgo-textwrapper%2F@v%2Fv0.0.0-20200911093747-65d896831594.mod mirror://goproxy//github.com/emersion/go-vcard/@v/v0.0.0-20190105225839-8856043f13c5.zip -> github.com%2Femersion%2Fgo-vcard%2F@v%2Fv0.0.0-20190105225839-8856043f13c5.zip mirror://goproxy//github.com/emersion/go-vcard/@v/v0.0.0-20190105225839-8856043f13c5.mod -> github.com%2Femersion%2Fgo-vcard%2F@v%2Fv0.0.0-20190105225839-8856043f13c5.mod mirror://goproxy//github.com/etcd-io/bbolt/@v/v1.3.3.mod -> github.com%2Fetcd-io%2Fbbolt%2F@v%2Fv1.3.3.mod mirror://goproxy//github.com/fasthttp-contrib/websocket/@v/v0.0.0-20160511215533-1f3b11f56072.mod -> github.com%2Ffasthttp-contrib%2Fwebsocket%2F@v%2Fv0.0.0-20160511215533-1f3b11f56072.mod mirror://goproxy//github.com/fatih/color/@v/v1.9.0.zip -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.zip mirror://goproxy//github.com/fatih/color/@v/v1.9.0.mod -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/fatih/structs/@v/v1.1.0.mod -> github.com%2Ffatih%2Fstructs%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/flynn-archive/go-shlex/@v/v0.0.0-20150515145356-3f9db97f8568.zip -> github.com%2Fflynn-archive%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.zip mirror://goproxy//github.com/flynn-archive/go-shlex/@v/v0.0.0-20150515145356-3f9db97f8568.mod -> github.com%2Fflynn-archive%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.mod mirror://goproxy//github.com/gavv/httpexpect/@v/v2.0.0+incompatible.mod -> github.com%2Fgavv%2Fhttpexpect%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/getsentry/sentry-go/@v/v0.8.0.zip -> github.com%2Fgetsentry%2Fsentry-go%2F@v%2Fv0.8.0.zip mirror://goproxy//github.com/getsentry/sentry-go/@v/v0.8.0.mod -> github.com%2Fgetsentry%2Fsentry-go%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/gin-contrib/sse/@v/v0.0.0-20190301062529-5545eab6dad3.mod -> github.com%2Fgin-contrib%2Fsse%2F@v%2Fv0.0.0-20190301062529-5545eab6dad3.mod mirror://goproxy//github.com/gin-gonic/gin/@v/v1.4.0.mod -> github.com%2Fgin-gonic%2Fgin%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/go-check/check/@v/v0.0.0-20180628173108-788fd7840127.mod -> github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.mod mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.zip -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.mod -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/go-martini/martini/@v/v0.0.0-20170121215854-22fa46961aab.mod -> github.com%2Fgo-martini%2Fmartini%2F@v%2Fv0.0.0-20170121215854-22fa46961aab.mod mirror://goproxy//github.com/go-resty/resty/v2/@v/v2.3.0.zip -> github.com%2Fgo-resty%2Fresty%2Fv2%2F@v%2Fv2.3.0.zip mirror://goproxy//github.com/go-resty/resty/v2/@v/v2.3.0.mod -> github.com%2Fgo-resty%2Fresty%2Fv2%2F@v%2Fv2.3.0.mod mirror://goproxy//github.com/gobwas/httphead/@v/v0.0.0-20180130184737-2c6c146eadee.mod -> github.com%2Fgobwas%2Fhttphead%2F@v%2Fv0.0.0-20180130184737-2c6c146eadee.mod mirror://goproxy//github.com/gobwas/pool/@v/v0.2.0.mod -> github.com%2Fgobwas%2Fpool%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/gobwas/ws/@v/v1.0.2.mod -> github.com%2Fgobwas%2Fws%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.4.zip -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.zip mirror://goproxy//github.com/golang/mock/@v/v1.4.4.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.2.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/gomodule/redigo/@v/v1.7.1-0.20190724094224-574c33c3df38.mod -> github.com%2Fgomodule%2Fredigo%2F@v%2Fv1.7.1-0.20190724094224-574c33c3df38.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.4.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.1.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.5.1.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/google/go-querystring/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gofuzz/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgofuzz%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/uuid/@v/v1.1.1.zip -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/google/uuid/@v/v1.1.1.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20181017120253-0766667cb4d1.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190411002643-bd77b112433e.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190411002643-bd77b112433e.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.zip -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.zip mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.1.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.zip -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.zip -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/hashicorp/go-version/@v/v1.2.0.mod -> github.com%2Fhashicorp%2Fgo-version%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/hashicorp/hcl/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.mod -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/imkira/go-interpol/@v/v1.1.0.mod -> github.com%2Fimkira%2Fgo-interpol%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.mod -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/iris-contrib/blackfriday/@v/v2.0.0+incompatible.mod -> github.com%2Firis-contrib%2Fblackfriday%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/iris-contrib/go.uuid/@v/v2.0.0+incompatible.mod -> github.com%2Firis-contrib%2Fgo.uuid%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/iris-contrib/jade/@v/v1.1.3.mod -> github.com%2Firis-contrib%2Fjade%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/iris-contrib/pongo2/@v/v0.0.1.mod -> github.com%2Firis-contrib%2Fpongo2%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/iris-contrib/schema/@v/v0.0.1.mod -> github.com%2Firis-contrib%2Fschema%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/jaytaylor/html2text/@v/v0.0.0-20200412013138-3577fbdbcff7.zip -> github.com%2Fjaytaylor%2Fhtml2text%2F@v%2Fv0.0.0-20200412013138-3577fbdbcff7.zip mirror://goproxy//github.com/jaytaylor/html2text/@v/v0.0.0-20200412013138-3577fbdbcff7.mod -> github.com%2Fjaytaylor%2Fhtml2text%2F@v%2Fv0.0.0-20200412013138-3577fbdbcff7.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.6.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.6.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.9.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.9.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.mod mirror://goproxy//github.com/k0kubun/colorstring/@v/v0.0.0-20150214042306-9440f1994b88.mod -> github.com%2Fk0kubun%2Fcolorstring%2F@v%2Fv0.0.0-20150214042306-9440f1994b88.mod mirror://goproxy//github.com/kardianos/osext/@v/v0.0.0-20190222173326-2bc1f35cddc0.zip -> github.com%2Fkardianos%2Fosext%2F@v%2Fv0.0.0-20190222173326-2bc1f35cddc0.zip mirror://goproxy//github.com/kardianos/osext/@v/v0.0.0-20190222173326-2bc1f35cddc0.mod -> github.com%2Fkardianos%2Fosext%2F@v%2Fv0.0.0-20190222173326-2bc1f35cddc0.mod mirror://goproxy//github.com/kataras/golog/@v/v0.0.10.mod -> github.com%2Fkataras%2Fgolog%2F@v%2Fv0.0.10.mod mirror://goproxy//github.com/kataras/iris/v12/@v/v12.1.8.mod -> github.com%2Fkataras%2Firis%2Fv12%2F@v%2Fv12.1.8.mod mirror://goproxy//github.com/kataras/neffos/@v/v0.0.14.mod -> github.com%2Fkataras%2Fneffos%2F@v%2Fv0.0.14.mod mirror://goproxy//github.com/kataras/pio/@v/v0.0.2.mod -> github.com%2Fkataras%2Fpio%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/kataras/sitemap/@v/v0.0.5.mod -> github.com%2Fkataras%2Fsitemap%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/keybase/go-keychain/@v/v0.0.0-20200502122510-cda31fe0c86d.zip -> github.com%2Fkeybase%2Fgo-keychain%2F@v%2Fv0.0.0-20200502122510-cda31fe0c86d.zip mirror://goproxy//github.com/keybase/go-keychain/@v/v0.0.0-20200502122510-cda31fe0c86d.mod -> github.com%2Fkeybase%2Fgo-keychain%2F@v%2Fv0.0.0-20200502122510-cda31fe0c86d.mod mirror://goproxy//github.com/keybase/go.dbus/@v/v0.0.0-20200324223359-a94be52c0b03.mod -> github.com%2Fkeybase%2Fgo.dbus%2F@v%2Fv0.0.0-20200324223359-a94be52c0b03.mod mirror://goproxy//github.com/klauspost/compress/@v/v1.8.2.mod -> github.com%2Fklauspost%2Fcompress%2F@v%2Fv1.8.2.mod mirror://goproxy//github.com/klauspost/compress/@v/v1.9.7.mod -> github.com%2Fklauspost%2Fcompress%2F@v%2Fv1.9.7.mod mirror://goproxy//github.com/klauspost/cpuid/@v/v1.2.1.mod -> github.com%2Fklauspost%2Fcpuid%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.2.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/text/@v/v0.2.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/kr/text/@v/v0.2.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/labstack/echo/v4/@v/v4.1.11.mod -> github.com%2Flabstack%2Fecho%2Fv4%2F@v%2Fv4.1.11.mod mirror://goproxy//github.com/labstack/gommon/@v/v0.3.0.mod -> github.com%2Flabstack%2Fgommon%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/logrusorgru/aurora/@v/v2.0.3+incompatible.zip -> github.com%2Flogrusorgru%2Faurora%2F@v%2Fv2.0.3+incompatible.zip mirror://goproxy//github.com/logrusorgru/aurora/@v/v2.0.3+incompatible.mod -> github.com%2Flogrusorgru%2Faurora%2F@v%2Fv2.0.3+incompatible.mod mirror://goproxy//github.com/magiconair/properties/@v/v1.8.0.mod -> github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/martinlindhe/base36/@v/v1.0.0.zip -> github.com%2Fmartinlindhe%2Fbase36%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/martinlindhe/base36/@v/v1.0.0.mod -> github.com%2Fmartinlindhe%2Fbase36%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/martinlindhe/base36/@v/v1.1.0.mod -> github.com%2Fmartinlindhe%2Fbase36%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.2.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.7.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.8.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.7.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mattn/goveralls/@v/v0.0.2.mod -> github.com%2Fmattn%2Fgoveralls%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/mediocregopher/radix/v3/@v/v3.4.2.mod -> github.com%2Fmediocregopher%2Fradix%2Fv3%2F@v%2Fv3.4.2.mod mirror://goproxy//github.com/microcosm-cc/bluemonday/@v/v1.0.2.mod -> github.com%2Fmicrocosm-cc%2Fbluemonday%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.30.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.30.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.30.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.30.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mitchellh/mapstructure/@v/v1.1.2.mod -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180228061459-e0a39a4cb421.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180228061459-e0a39a4cb421.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180306012644-bacd9c7ef1dd.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180306012644-bacd9c7ef1dd.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v0.0.0-20180701023420-4b7aa43c6742.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv0.0.0-20180701023420-4b7aa43c6742.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v1.0.1.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/moul/http2curl/@v/v1.0.0.mod -> github.com%2Fmoul%2Fhttp2curl%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/myesui/uuid/@v/v1.0.0.zip -> github.com%2Fmyesui%2Fuuid%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/myesui/uuid/@v/v1.0.0.mod -> github.com%2Fmyesui%2Fuuid%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/nats-io/jwt/@v/v0.3.0.mod -> github.com%2Fnats-io%2Fjwt%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/nats-io/nats.go/@v/v1.9.1.mod -> github.com%2Fnats-io%2Fnats.go%2F@v%2Fv1.9.1.mod mirror://goproxy//github.com/nats-io/nkeys/@v/v0.1.0.mod -> github.com%2Fnats-io%2Fnkeys%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/nats-io/nuid/@v/v1.0.1.mod -> github.com%2Fnats-io%2Fnuid%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/niemeyer/pretty/@v/v0.0.0-20200227124842-a10e7caefd8e.zip -> github.com%2Fniemeyer%2Fpretty%2F@v%2Fv0.0.0-20200227124842-a10e7caefd8e.zip mirror://goproxy//github.com/niemeyer/pretty/@v/v0.0.0-20200227124842-a10e7caefd8e.mod -> github.com%2Fniemeyer%2Fpretty%2F@v%2Fv0.0.0-20200227124842-a10e7caefd8e.mod mirror://goproxy//github.com/nsf/jsondiff/@v/v0.0.0-20200515183724-f29ed568f4ce.zip -> github.com%2Fnsf%2Fjsondiff%2F@v%2Fv0.0.0-20200515183724-f29ed568f4ce.zip mirror://goproxy//github.com/nsf/jsondiff/@v/v0.0.0-20200515183724-f29ed568f4ce.mod -> github.com%2Fnsf%2Fjsondiff%2F@v%2Fv0.0.0-20200515183724-f29ed568f4ce.mod mirror://goproxy//github.com/olekukonko/tablewriter/@v/v0.0.4.zip -> github.com%2Folekukonko%2Ftablewriter%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/olekukonko/tablewriter/@v/v0.0.4.mod -> github.com%2Folekukonko%2Ftablewriter%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.6.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.10.3.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.10.3.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.7.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.7.1.mod mirror://goproxy//github.com/pelletier/go-toml/@v/v1.2.0.mod -> github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/pingcap/errors/@v/v0.11.4.zip -> github.com%2Fpingcap%2Ferrors%2F@v%2Fv0.11.4.zip mirror://goproxy//github.com/pingcap/errors/@v/v0.11.4.mod -> github.com%2Fpingcap%2Ferrors%2F@v%2Fv0.11.4.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.zip mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/russross/blackfriday/@v/v1.5.2.zip -> github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.zip mirror://goproxy//github.com/russross/blackfriday/@v/v1.5.2.mod -> github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.mod mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.zip -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.zip mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.mod -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/ryanuber/columnize/@v/v2.1.0+incompatible.mod -> github.com%2Fryanuber%2Fcolumnize%2F@v%2Fv2.1.0+incompatible.mod mirror://goproxy//github.com/schollz/closestmatch/@v/v2.1.0+incompatible.mod -> github.com%2Fschollz%2Fclosestmatch%2F@v%2Fv2.1.0+incompatible.mod mirror://goproxy//github.com/sergi/go-diff/@v/v1.0.0.mod -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.zip -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.1.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.2.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.7.0.zip -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/sirupsen/logrus/@v/v1.7.0.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/skratchdot/open-golang/@v/v0.0.0-20200116055534-eef842397966.zip -> github.com%2Fskratchdot%2Fopen-golang%2F@v%2Fv0.0.0-20200116055534-eef842397966.zip mirror://goproxy//github.com/skratchdot/open-golang/@v/v0.0.0-20200116055534-eef842397966.mod -> github.com%2Fskratchdot%2Fopen-golang%2F@v%2Fv0.0.0-20200116055534-eef842397966.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v0.0.0-20180927180507-b2de0cb4f26d.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v1.6.4.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv1.6.4.mod mirror://goproxy//github.com/spf13/afero/@v/v1.1.2.mod -> github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/spf13/cast/@v/v1.3.0.mod -> github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.5.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/spf13/jwalterweatherman/@v/v1.0.0.mod -> github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.3.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/spf13/viper/@v/v1.3.2.mod -> github.com%2Fspf13%2Fviper%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/ssor/bom/@v/v0.0.0-20170718123548-6386211fdfcf.zip -> github.com%2Fssor%2Fbom%2F@v%2Fv0.0.0-20170718123548-6386211fdfcf.zip mirror://goproxy//github.com/ssor/bom/@v/v0.0.0-20170718123548-6386211fdfcf.mod -> github.com%2Fssor%2Fbom%2F@v%2Fv0.0.0-20170718123548-6386211fdfcf.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.1.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.2.0.zip -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/stretchr/objx/@v/v0.2.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.2.2.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.5.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.6.1.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.6.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/therecipe/qt/@v/v0.0.0-20200701200531-7f61353ee73e.zip -> github.com%2Ftherecipe%2Fqt%2F@v%2Fv0.0.0-20200701200531-7f61353ee73e.zip mirror://goproxy//github.com/therecipe/qt/@v/v0.0.0-20200701200531-7f61353ee73e.mod -> github.com%2Ftherecipe%2Fqt%2F@v%2Fv0.0.0-20200701200531-7f61353ee73e.mod mirror://goproxy//github.com/twinj/uuid/@v/v1.0.0.zip -> github.com%2Ftwinj%2Fuuid%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/twinj/uuid/@v/v1.0.0.mod -> github.com%2Ftwinj%2Fuuid%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/ugorji/go/@v/v1.1.4.mod -> github.com%2Fugorji%2Fgo%2F@v%2Fv1.1.4.mod mirror://goproxy//github.com/ugorji/go/@v/v1.1.7.mod -> github.com%2Fugorji%2Fgo%2F@v%2Fv1.1.7.mod mirror://goproxy//github.com/ugorji/go/codec/@v/v0.0.0-20181204163529-d75b2dcb6bc8.mod -> github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv0.0.0-20181204163529-d75b2dcb6bc8.mod mirror://goproxy//github.com/ugorji/go/codec/@v/v1.1.7.mod -> github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv1.1.7.mod mirror://goproxy//github.com/urfave/cli/@v/v1.22.4.zip -> github.com%2Furfave%2Fcli%2F@v%2Fv1.22.4.zip mirror://goproxy//github.com/urfave/cli/@v/v1.22.4.mod -> github.com%2Furfave%2Fcli%2F@v%2Fv1.22.4.mod mirror://goproxy//github.com/urfave/negroni/@v/v1.0.0.mod -> github.com%2Furfave%2Fnegroni%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/valyala/bytebufferpool/@v/v1.0.0.mod -> github.com%2Fvalyala%2Fbytebufferpool%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/valyala/fasthttp/@v/v1.6.0.mod -> github.com%2Fvalyala%2Ffasthttp%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/valyala/fasttemplate/@v/v1.0.1.mod -> github.com%2Fvalyala%2Ffasttemplate%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/valyala/tcplisten/@v/v0.0.0-20161114210144-ceec8f93295a.mod -> github.com%2Fvalyala%2Ftcplisten%2F@v%2Fv0.0.0-20161114210144-ceec8f93295a.mod mirror://goproxy//github.com/xeipuuv/gojsonpointer/@v/v0.0.0-20180127040702-4e3ac2762d5f.mod -> github.com%2Fxeipuuv%2Fgojsonpointer%2F@v%2Fv0.0.0-20180127040702-4e3ac2762d5f.mod mirror://goproxy//github.com/xeipuuv/gojsonreference/@v/v0.0.0-20180127040603-bd5ef7bd5415.mod -> github.com%2Fxeipuuv%2Fgojsonreference%2F@v%2Fv0.0.0-20180127040603-bd5ef7bd5415.mod mirror://goproxy//github.com/xeipuuv/gojsonschema/@v/v1.2.0.mod -> github.com%2Fxeipuuv%2Fgojsonschema%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/xordataexchange/crypt/@v/v0.0.3-0.20170626215501-b2862e3d0a77.mod -> github.com%2Fxordataexchange%2Fcrypt%2F@v%2Fv0.0.3-0.20170626215501-b2862e3d0a77.mod mirror://goproxy//github.com/yalp/jsonpath/@v/v0.0.0-20180802001716-5cc68e5049a0.mod -> github.com%2Fyalp%2Fjsonpath%2F@v%2Fv0.0.0-20180802001716-5cc68e5049a0.mod mirror://goproxy//github.com/yudai/gojsondiff/@v/v1.0.0.mod -> github.com%2Fyudai%2Fgojsondiff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/yudai/golcs/@v/v0.0.0-20170316035057-ecda9a501e82.mod -> github.com%2Fyudai%2Fgolcs%2F@v%2Fv0.0.0-20170316035057-ecda9a501e82.mod mirror://goproxy//github.com/yudai/pp/@v/v2.0.1+incompatible.mod -> github.com%2Fyudai%2Fpp%2F@v%2Fv2.0.1+incompatible.mod mirror://goproxy//go.etcd.io/bbolt/@v/v1.3.5.zip -> go.etcd.io%2Fbbolt%2F@v%2Fv1.3.5.zip mirror://goproxy//go.etcd.io/bbolt/@v/v1.3.5.mod -> go.etcd.io%2Fbbolt%2F@v%2Fv1.3.5.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.1-0.20191105210325-c90efee705ee.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191105210325-c90efee705ee.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180218175443-cbe0f9307d01.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180218175443-cbe0f9307d01.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180906233101-161cd47e91fd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180906233101-161cd47e91fd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181220203305-927f97764cc3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181220203305-927f97764cc3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190311183353-d8887717615a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190327091125-710a502c58a2.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190327091125-710a502c58a2.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190420063019-afa5a82059c6.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190420063019-afa5a82059c6.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190503192946-f4e77d36d62c.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190503192946-f4e77d36d62c.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190827160401-ba9fcec4b297.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190827160401-ba9fcec4b297.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20191209160850-c0dbc17a3553.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20191209160850-c0dbc17a3553.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200202094626-16171245cfb2.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200202094626-16171245cfb2.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200513185701-a91f0712d120.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200513185701-a91f0712d120.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200707034311-ab3426394381.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200707034311-ab3426394381.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20180314180146-1d60e4601c6f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20180314180146-1d60e4601c6f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190911185100-cd5d95a43a6e.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190911185100-cd5d95a43a6e.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180905080454-ebe1bf3edb33.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180905080454-ebe1bf3edb33.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180909124046-d0be0721c37e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180909124046-d0be0721c37e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181205085412-a5c9d58dba9a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181205085412-a5c9d58dba9a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190222072716-a9d3bda3a223.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190222072716-a9d3bda3a223.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190419153524-e8e3143a4f4a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190419153524-e8e3143a4f4a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190422165155-953cdadca894.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190422165155-953cdadca894.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626221950-04f50cda93cb.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190813064441-fde4db37ae7a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190813064441-fde4db37ae7a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190924154521-2837fb4f24fe.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190924154521-2837fb4f24fe.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200202164722-d101bd2416d5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200202164722-d101bd2416d5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod mirror://goproxy//golang.org/x/text/@v/v0.3.3.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.zip mirror://goproxy//golang.org/x/text/@v/v0.3.3.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.mod mirror://goproxy//golang.org/x/text/@v/v0.3.5-0.20201125200606-c27b9fd57aec.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.5-0.20201125200606-c27b9fd57aec.zip mirror://goproxy//golang.org/x/text/@v/v0.3.5-0.20201125200606-c27b9fd57aec.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.5-0.20201125200606-c27b9fd57aec.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181221001348-537d06c36207.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181221001348-537d06c36207.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190327201419-c70d86f8b7cf.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190327201419-c70d86f8b7cf.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190328211700-ab21143f2384.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190328211700-ab21143f2384.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190420181800-aa740d480789.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190420181800-aa740d480789.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190425150028-36563e24a262.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190425150028-36563e24a262.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191011141410-1b5146add898.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20200227125254-8fa46927fb4f.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20200227125254-8fa46927fb4f.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20200227125254-8fa46927fb4f.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20200227125254-8fa46927fb4f.mod mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.mod -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.mod mirror://goproxy//gopkg.in/go-playground/assert.v1/@v/v1.2.1.mod -> gopkg.in%2Fgo-playground%2Fassert.v1%2F@v%2Fv1.2.1.mod mirror://goproxy//gopkg.in/go-playground/validator.v8/@v/v8.18.2.mod -> gopkg.in%2Fgo-playground%2Fvalidator.v8%2F@v%2Fv8.18.2.mod mirror://goproxy//gopkg.in/ini.v1/@v/v1.51.1.mod -> gopkg.in%2Fini.v1%2F@v%2Fv1.51.1.mod mirror://goproxy//gopkg.in/mgo.v2/@v/v2.0.0-20180705113604-9856a29383ce.mod -> gopkg.in%2Fmgo.v2%2F@v%2Fv2.0.0-20180705113604-9856a29383ce.mod mirror://goproxy//gopkg.in/stretchr/testify.v1/@v/v1.2.2.zip -> gopkg.in%2Fstretchr%2Ftestify.v1%2F@v%2Fv1.2.2.zip mirror://goproxy//gopkg.in/stretchr/testify.v1/@v/v1.2.2.mod -> gopkg.in%2Fstretchr%2Ftestify.v1%2F@v%2Fv1.2.2.mod mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.mod -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.4.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.8.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.8.mod mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20191120175047-4206685974f2.mod -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20191120175047-4206685974f2.mod mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.zip -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.zip mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.mod -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod _eclasses_=go-module 92660621959e7fab813173772987588b multilib d410501a125f99ffb560b0c523cd3d1e systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=c63795da29d312223e51896bacc5f5d9 diff --git a/metadata/md5-cache/media-fonts/Manifest.gz b/metadata/md5-cache/media-fonts/Manifest.gz index a4e06df4af7e..db2d36fefc7f 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/fira-mono-4.202 b/metadata/md5-cache/media-fonts/fira-mono-4.202 new file mode 100644 index 000000000000..923ef97ea312 --- /dev/null +++ b/metadata/md5-cache/media-fonts/fira-mono-4.202 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install postinst postrm prepare setup +DEPEND=X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings ) +DESCRIPTION=Default monospaced typeface for FirefoxOS, designed for legibility +EAPI=7 +HOMEPAGE=https://mozilla.github.io/Fira +IUSE=+otf ttf X +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=OFL-1.1 +REQUIRED_USE=|| ( otf ttf ) +SLOT=0 +SRC_URI=https://github.com/mozilla/Fira/archive/4.202.tar.gz -> Fira-4.202.tar.gz +_eclasses_=font dd073b36fe3fd8b868c23bc23209db45 +_md5_=bec4a5e826594a0a96ab5326b4251844 diff --git a/metadata/md5-cache/media-fonts/fira-sans-4.202 b/metadata/md5-cache/media-fonts/fira-sans-4.202 new file mode 100644 index 000000000000..f373156554a1 --- /dev/null +++ b/metadata/md5-cache/media-fonts/fira-sans-4.202 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install postinst postrm prepare setup +DEPEND=X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings ) +DESCRIPTION=Default monospaced typeface for FirefoxOS, designed for legibility +EAPI=7 +HOMEPAGE=https://mozilla.github.io/Fira +IUSE=otf +ttf X +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=OFL-1.1 +REQUIRED_USE=|| ( otf ttf ) +SLOT=0 +SRC_URI=https://github.com/mozilla/Fira/archive/4.202.tar.gz -> Fira-4.202.tar.gz +_eclasses_=font dd073b36fe3fd8b868c23bc23209db45 +_md5_=1c88a5f7bbb7ac7e813acf9b76c0e94b diff --git a/metadata/md5-cache/media-gfx/Manifest.gz b/metadata/md5-cache/media-gfx/Manifest.gz index f71d959895af..204f57aa36eb 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/openvdb-7.1.0-r1 b/metadata/md5-cache/media-gfx/openvdb-7.1.0-r1 index b858e13b77f7..8f83c5d35e7b 100644 --- a/metadata/md5-cache/media-gfx/openvdb-7.1.0-r1 +++ b/metadata/md5-cache/media-gfx/openvdb-7.1.0-r1 @@ -5,7 +5,7 @@ DESCRIPTION=Library for the efficient manipulation of volumetric data EAPI=7 HOMEPAGE=https://www.openvdb.org IUSE=cpu_flags_x86_avx cpu_flags_x86_sse4_2 doc numpy python static-libs test utils abi6-compat +abi7-compat python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=MPL-2.0 RDEPEND=dev-cpp/tbb dev-libs/boost:= dev-libs/c-blosc:= dev-libs/jemalloc:= dev-libs/log4cplus:= media-libs/glfw media-libs/glu media-libs/ilmbase:= media-libs/openexr:= sys-libs/zlib:= x11-libs/libXcursor x11-libs/libXi x11-libs/libXinerama x11-libs/libXrandr python? ( python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_7? ( dev-libs/boost:=[numpy?,python?,python_targets_python3_7(-)] numpy? ( dev-python/numpy[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-libs/boost:=[numpy?,python?,python_targets_python3_8(-)] numpy? ( dev-python/numpy[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-libs/boost:=[numpy?,python?,python_targets_python3_9(-)] numpy? ( dev-python/numpy[python_targets_python3_9(-)] ) ) ) REQUIRED_USE=numpy? ( python ) ^^ ( abi6-compat abi7-compat ) python? ( ^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/AcademySoftwareFoundation/openvdb/archive/v7.1.0.tar.gz -> openvdb-7.1.0.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=513f6b043aaca096e85a45d46ccbb0c8 +_md5_=393ac58a167df89167cbaa68da0f5a54 diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index 228493dc5c3a..25aab9b17f49 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/glfw-3.3.2 b/metadata/md5-cache/media-libs/glfw-3.3.2 index 809ec1899586..015d7d166883 100644 --- a/metadata/md5-cache/media-libs/glfw-3.3.2 +++ b/metadata/md5-cache/media-libs/glfw-3.3.2 @@ -5,10 +5,10 @@ DESCRIPTION=The Portable OpenGL FrameWork EAPI=7 HOMEPAGE=https://www.glfw.org/ IUSE=wayland -KEYWORDS=amd64 ~arm64 ~hppa ~ppc64 x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc64 x86 LICENSE=ZLIB RDEPEND=x11-libs/libxkbcommon !wayland? ( virtual/opengl x11-libs/libX11 x11-libs/libXcursor x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXxf86vm ) wayland? ( dev-libs/wayland media-libs/mesa[egl,wayland] ) SLOT=0 SRC_URI=https://github.com/glfw/glfw/archive/3.3.2.tar.gz -> glfw-3.3.2.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=af03748a5af80e342d1c60512fc40b27 +_md5_=5e56744a2cbc96096fbb6a3ab50a76da diff --git a/metadata/md5-cache/media-libs/libwmf-0.2.8.4-r8 b/metadata/md5-cache/media-libs/libwmf-0.2.8.4-r8 index 93707980078b..3eb0344ba674 100644 --- a/metadata/md5-cache/media-libs/libwmf-0.2.8.4-r8 +++ b/metadata/md5-cache/media-libs/libwmf-0.2.8.4-r8 @@ -2,7 +2,7 @@ DEFINED_PHASES=configure install postinst postrm preinst prepare DEPEND=app-text/ghostscript-gpl media-fonts/urw-fonts media-libs/freetype:2= media-libs/libpng:0= sys-libs/zlib:= x11-libs/gdk-pixbuf:2 virtual/jpeg:0= expat? ( dev-libs/expat ) !expat? ( dev-libs/libxml2:2= ) X? ( x11-libs/libX11 x11-libs/libXt x11-libs/libXpm ) virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=A library for reading vector images in Microsoft's Windows Metafile Format (WMF) EAPI=6 -HOMEPAGE=https://wvware.sourceforge.net/ +HOMEPAGE=http://wvware.sourceforge.net/ IUSE=debug doc expat X KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris LICENSE=LGPL-2 @@ -10,4 +10,4 @@ RDEPEND=app-text/ghostscript-gpl media-fonts/urw-fonts media-libs/freetype:2= me SLOT=0 SRC_URI=mirror://sourceforge/wvware/libwmf-0.2.8.4.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=595533aec01be38a68bee59a347e3ea4 +_md5_=eb6b200659da4f3fc1bb0544d4e68fd6 diff --git a/metadata/md5-cache/media-libs/plib-1.8.5-r3 b/metadata/md5-cache/media-libs/plib-1.8.5-r3 new file mode 100644 index 000000000000..6964d17ef20a --- /dev/null +++ b/metadata/md5-cache/media-libs/plib-1.8.5-r3 @@ -0,0 +1,14 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install prepare test +DEPEND=virtual/opengl +DESCRIPTION=multimedia library used by many games +EAPI=7 +HOMEPAGE=http://plib.sourceforge.net/ +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 ~hppa ~ppc ~sparc ~x86 +LICENSE=LGPL-2 +RDEPEND=virtual/opengl +SLOT=0 +SRC_URI=http://plib.sourceforge.net/dist/plib-1.8.5.tar.gz +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=fd51f5e4f3162317d8d01bd7b790877d diff --git a/metadata/md5-cache/media-libs/sbc-1.5 b/metadata/md5-cache/media-libs/sbc-1.5 index edc6c66deb33..dd8745461cba 100644 --- a/metadata/md5-cache/media-libs/sbc-1.5 +++ b/metadata/md5-cache/media-libs/sbc-1.5 @@ -4,10 +4,10 @@ DESCRIPTION=Audio codec to connect bluetooth HQ audio devices as headphones or l EAPI=7 HOMEPAGE=https://git.kernel.org/?p=bluetooth/sbc.git 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 ~ppc ~ppc64 sparc ~x86 +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86 LICENSE=GPL-2 LGPL-2.1 RESTRICT=test SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/bluetooth/sbc-1.5.tar.xz _eclasses_=multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=c60d6b1e7ecdbc182522eea604719f6c +_md5_=67ac94cd49ef7e88b25d988a2d787b3a diff --git a/metadata/md5-cache/media-libs/vulkan-layers-1.2.162 b/metadata/md5-cache/media-libs/vulkan-layers-1.2.162 index d23734b175a1..863c4b872ca9 100644 --- a/metadata/md5-cache/media-libs/vulkan-layers-1.2.162 +++ b/metadata/md5-cache/media-libs/vulkan-layers-1.2.162 @@ -5,9 +5,9 @@ DESCRIPTION=Vulkan Validation Layers EAPI=7 HOMEPAGE=https://github.com/KhronosGroup/Vulkan-ValidationLayers IUSE=wayland 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=amd64 arm arm64 ~ppc ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ppc ppc64 ~riscv ~x86 LICENSE=Apache-2.0 SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/v1.2.162.tar.gz -> vulkan-layers-1.2.162.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 cmake-multilib b396704c8c04bb210b7b45dff5c67fea edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=057de085887843858eb212c1cea6a6eb +_md5_=a3042164b4b16cd2258dfc8078eb3c2f diff --git a/metadata/md5-cache/media-libs/vulkan-loader-1.2.162-r1 b/metadata/md5-cache/media-libs/vulkan-loader-1.2.162-r1 index af5433fcd375..493344e0a4a2 100644 --- a/metadata/md5-cache/media-libs/vulkan-loader-1.2.162-r1 +++ b/metadata/md5-cache/media-libs/vulkan-loader-1.2.162-r1 @@ -5,10 +5,10 @@ DESCRIPTION=Vulkan Installable Client Driver (ICD) Loader EAPI=7 HOMEPAGE=https://github.com/KhronosGroup/Vulkan-Loader IUSE=layers wayland 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=amd64 arm arm64 ~ppc ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ppc ppc64 ~riscv ~x86 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/v1.2.162.tar.gz -> vulkan-loader-1.2.162.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 cmake-multilib b396704c8c04bb210b7b45dff5c67fea edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=da56cc516f74f67a440b332122990e8e +_md5_=d300bfd6e082c3d907a460ace3a14c4a diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index 5c665cfaaff1..7fef4122ec08 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/ncmpcpp-0.9.2 b/metadata/md5-cache/media-sound/ncmpcpp-0.9.2 new file mode 100644 index 000000000000..0fb92fbdf85a --- /dev/null +++ b/metadata/md5-cache/media-sound/ncmpcpp-0.9.2 @@ -0,0 +1,13 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=configure install postinst prepare +DEPEND=!dev-libs/boost:0/1.57.0 >=media-libs/libmpdclient-2.1 dev-libs/boost:=[icu,nls,threads] dev-libs/icu:= net-misc/curl sys-libs/ncurses:=[unicode] sys-libs/readline:* taglib? ( media-libs/taglib ) visualizer? ( sci-libs/fftw:3.0= ) +DESCRIPTION=featureful ncurses based MPD client inspired by ncmpc +EAPI=7 +HOMEPAGE=https://ncmpcpp.rybczak.net/ https://github.com/ncmpcpp/ncmpcpp +IUSE=clock outputs taglib visualizer +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!dev-libs/boost:0/1.57.0 >=media-libs/libmpdclient-2.1 dev-libs/boost:=[icu,nls,threads] dev-libs/icu:= net-misc/curl sys-libs/ncurses:=[unicode] sys-libs/readline:* taglib? ( media-libs/taglib ) visualizer? ( sci-libs/fftw:3.0= ) +SLOT=0 +SRC_URI=https://rybczak.net/ncmpcpp/stable/ncmpcpp-0.9.2.tar.bz2 +_md5_=c3c0ec00dd7fe9aa86a60ed231f95334 diff --git a/metadata/md5-cache/media-sound/qsynth-9999 b/metadata/md5-cache/media-sound/qsynth-9999 index d0b5b7b3971d..8f9440d383cd 100644 --- a/metadata/md5-cache/media-sound/qsynth-9999 +++ b/metadata/md5-cache/media-sound/qsynth-9999 @@ -11,4 +11,4 @@ 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 _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f qmake-utils dc74fe3891abc25e80dad5cd3d7c6e47 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=08369768a543935ca171222b48c2c8cd +_md5_=c87a37d53fc779ff2768da3c4f5e167c diff --git a/metadata/md5-cache/net-analyzer/Manifest.gz b/metadata/md5-cache/net-analyzer/Manifest.gz index ca552f0f74f4..373b614e1993 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/arping-2.21 b/metadata/md5-cache/net-analyzer/arping-2.21 index 2a66cdff4dda..7d6245d61d89 100644 --- a/metadata/md5-cache/net-analyzer/arping-2.21 +++ b/metadata/md5-cache/net-analyzer/arping-2.21 @@ -1,7 +1,7 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 filecaps? ( sys-libs/libcap ) DEFINED_PHASES=postinst prepare -DEPEND=net-libs/libpcap net-libs/libnet:1.1 test? ( dev-libs/check ) -DESCRIPTION=A utility to see if a specific IP address is taken and what MAC address owns it +DEPEND=net-libs/libpcap net-libs/libnet:1.1 test? ( dev-libs/check dev-python/subunit ) +DESCRIPTION=A utility to see if a specific IP is taken and what MAC owns it EAPI=7 HOMEPAGE=http://www.habets.pp.se/synscan/programs.php?prog=arping IUSE=test +filecaps @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=2 SRC_URI=https://github.com/ThomasHabets/arping/archive/arping-2.21.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 fcaps da689a8e04bbbb3518888ff668fee45b libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=918a5d1cee8c21e28abea048d535ae26 +_md5_=f41918d9bf8448f6c4caefe8ed2037ea diff --git a/metadata/md5-cache/net-analyzer/masscan-1.3.1 b/metadata/md5-cache/net-analyzer/masscan-1.3.1 new file mode 100644 index 000000000000..54185b484f8a --- /dev/null +++ b/metadata/md5-cache/net-analyzer/masscan-1.3.1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install prepare +DESCRIPTION=Mass IP port scanner +EAPI=7 +HOMEPAGE=https://github.com/robertdavidgraham/masscan +KEYWORDS=~amd64 ~x86 +LICENSE=AGPL-3 +RDEPEND=net-libs/libpcap +SLOT=0 +SRC_URI=https://github.com/robertdavidgraham/masscan/archive/1.3.1.tar.gz -> masscan-1.3.1.tar.gz +_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=bf813a9e0f653873b32e4451dba6dff4 diff --git a/metadata/md5-cache/net-analyzer/suricata-5.0.4 b/metadata/md5-cache/net-analyzer/suricata-5.0.4 deleted file mode 100644 index a2e01f33df0d..000000000000 --- a/metadata/md5-cache/net-analyzer/suricata-5.0.4 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DEFINED_PHASES=config configure install postinst prepare pretend setup -DEPEND=python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) acct-group/suricata acct-user/suricata dev-libs/jansson dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_7? ( dev-python/pyyaml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) >=net-libs/libhtp-0.5.35 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( >=dev-libs/libbpf-0.1.0 ) cuda? ( dev-util/nvidia-cuda-toolkit ) geoip? ( dev-libs/libmaxminddb ) logrotate? ( app-admin/logrotate ) lua? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:* ) lz4? ( app-arch/lz4 ) nflog? ( net-libs/libnetfilter_log ) nfqueue? ( net-libs/libnetfilter_queue ) redis? ( dev-libs/hiredis ) >=sys-devel/autoconf-2.69-r5 virtual/rust -DESCRIPTION=High performance Network IDS, IPS and Network Security Monitoring engine -EAPI=7 -HOMEPAGE=https://suricata-ids.org/ -IUSE=+af-packet bpf control-socket cuda debug +detection geoip hardened logrotate lua luajit lz4 nflog +nfqueue redis systemd test kernel_linux python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) acct-group/suricata acct-user/suricata dev-libs/jansson dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_7? ( dev-python/pyyaml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) >=net-libs/libhtp-0.5.35 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( >=dev-libs/libbpf-0.1.0 ) cuda? ( dev-util/nvidia-cuda-toolkit ) geoip? ( dev-libs/libmaxminddb ) logrotate? ( app-admin/logrotate ) lua? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:* ) lz4? ( app-arch/lz4 ) nflog? ( net-libs/libnetfilter_log ) nfqueue? ( net-libs/libnetfilter_queue ) redis? ( dev-libs/hiredis ) -REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ?? ( lua luajit ) bpf? ( af-packet ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://www.openinfosecfoundation.org/download/suricata-5.0.4.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=c9deca4a02e2d673dc51eabdfa0a59ee diff --git a/metadata/md5-cache/net-analyzer/suricata-5.0.5 b/metadata/md5-cache/net-analyzer/suricata-5.0.5-r1 similarity index 68% rename from metadata/md5-cache/net-analyzer/suricata-5.0.5 rename to metadata/md5-cache/net-analyzer/suricata-5.0.5-r1 index daee2cd7b95c..498aa8caf88b 100644 --- a/metadata/md5-cache/net-analyzer/suricata-5.0.5 +++ b/metadata/md5-cache/net-analyzer/suricata-5.0.5-r1 @@ -1,16 +1,16 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig DEFINED_PHASES=config configure install postinst prepare pretend setup -DEPEND=python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) acct-group/suricata acct-user/suricata dev-libs/jansson dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_7? ( dev-python/pyyaml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) >=net-libs/libhtp-0.5.36 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( >=dev-libs/libbpf-0.1.0 ) cuda? ( dev-util/nvidia-cuda-toolkit ) geoip? ( dev-libs/libmaxminddb ) logrotate? ( app-admin/logrotate ) lua? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:* ) lz4? ( app-arch/lz4 ) nflog? ( net-libs/libnetfilter_log ) nfqueue? ( net-libs/libnetfilter_queue ) redis? ( dev-libs/hiredis ) >=sys-devel/autoconf-2.69-r5 virtual/rust +DEPEND=python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) acct-group/suricata acct-user/suricata dev-libs/jansson dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_7? ( dev-python/pyyaml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) >=net-libs/libhtp-0.5.36 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( >=dev-libs/libbpf-0.1.0 ) cuda? ( dev-util/nvidia-cuda-toolkit ) geoip? ( dev-libs/libmaxminddb ) logrotate? ( app-admin/logrotate ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4 ) nflog? ( net-libs/libnetfilter_log ) nfqueue? ( net-libs/libnetfilter_queue ) redis? ( dev-libs/hiredis ) >=sys-devel/autoconf-2.69-r5 virtual/rust DESCRIPTION=High performance Network IDS, IPS and Network Security Monitoring engine EAPI=7 HOMEPAGE=https://suricata-ids.org/ -IUSE=+af-packet bpf control-socket cuda debug +detection geoip hardened logrotate lua luajit lz4 nflog +nfqueue redis systemd test kernel_linux python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +IUSE=+af-packet bpf control-socket cuda debug +detection geoip hardened logrotate lua lz4 nflog +nfqueue redis systemd test kernel_linux lua_single_target_luajit lua_single_target_lua5-1 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) acct-group/suricata acct-user/suricata dev-libs/jansson dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_7? ( dev-python/pyyaml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) >=net-libs/libhtp-0.5.36 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( >=dev-libs/libbpf-0.1.0 ) cuda? ( dev-util/nvidia-cuda-toolkit ) geoip? ( dev-libs/libmaxminddb ) logrotate? ( app-admin/logrotate ) lua? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:* ) lz4? ( app-arch/lz4 ) nflog? ( net-libs/libnetfilter_log ) nfqueue? ( net-libs/libnetfilter_queue ) redis? ( dev-libs/hiredis ) -REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ?? ( lua luajit ) bpf? ( af-packet ) +RDEPEND=python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) acct-group/suricata acct-user/suricata dev-libs/jansson dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_7? ( dev-python/pyyaml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) >=net-libs/libhtp-0.5.36 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( >=dev-libs/libbpf-0.1.0 ) cuda? ( dev-util/nvidia-cuda-toolkit ) geoip? ( dev-libs/libmaxminddb ) logrotate? ( app-admin/logrotate ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4 ) nflog? ( net-libs/libnetfilter_log ) nfqueue? ( net-libs/libnetfilter_queue ) redis? ( dev-libs/hiredis ) +REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) bpf? ( af-packet ) lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.openinfosecfoundation.org/download/suricata-5.0.5.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=fc14c135649351a384f73298cd337a7a +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 lua-single f91b5656f00869c220a6e35ae0521c54 lua-utils 736947973cfbc9de01fdb8548f942f82 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=a630f3a9c2cffe66065ac2d883d7f1ba diff --git a/metadata/md5-cache/net-analyzer/suricata-6.0.0 b/metadata/md5-cache/net-analyzer/suricata-6.0.0 deleted file mode 100644 index 30386b626229..000000000000 --- a/metadata/md5-cache/net-analyzer/suricata-6.0.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DEFINED_PHASES=config configure install postinst prepare pretend setup -DEPEND=python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) acct-group/suricata acct-user/suricata dev-libs/jansson dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_7? ( dev-python/pyyaml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) >=net-libs/libhtp-0.5.35 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( >=dev-libs/libbpf-0.1.0 ) cuda? ( dev-util/nvidia-cuda-toolkit ) geoip? ( dev-libs/libmaxminddb ) logrotate? ( app-admin/logrotate ) lua? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:* ) lz4? ( app-arch/lz4 ) nflog? ( net-libs/libnetfilter_log ) nfqueue? ( net-libs/libnetfilter_queue ) redis? ( dev-libs/hiredis ) >=sys-devel/autoconf-2.69-r5 virtual/rust -DESCRIPTION=High performance Network IDS, IPS and Network Security Monitoring engine -EAPI=7 -HOMEPAGE=https://suricata-ids.org/ -IUSE=+af-packet bpf control-socket cuda debug +detection geoip hardened logrotate lua luajit lz4 nflog +nfqueue redis systemd test kernel_linux python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) acct-group/suricata acct-user/suricata dev-libs/jansson dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_7? ( dev-python/pyyaml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) >=net-libs/libhtp-0.5.35 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( >=dev-libs/libbpf-0.1.0 ) cuda? ( dev-util/nvidia-cuda-toolkit ) geoip? ( dev-libs/libmaxminddb ) logrotate? ( app-admin/logrotate ) lua? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:* ) lz4? ( app-arch/lz4 ) nflog? ( net-libs/libnetfilter_log ) nfqueue? ( net-libs/libnetfilter_queue ) redis? ( dev-libs/hiredis ) -REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ?? ( lua luajit ) bpf? ( af-packet ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://www.openinfosecfoundation.org/download/suricata-6.0.0.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e06aca64fb8b8ed3871f4f00a735f4e2 diff --git a/metadata/md5-cache/net-analyzer/suricata-6.0.1 b/metadata/md5-cache/net-analyzer/suricata-6.0.1 deleted file mode 100644 index e5953fd7caa7..000000000000 --- a/metadata/md5-cache/net-analyzer/suricata-6.0.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DEFINED_PHASES=config configure install postinst prepare pretend setup -DEPEND=python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) acct-group/suricata acct-user/suricata dev-libs/jansson dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_7? ( dev-python/pyyaml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) >=net-libs/libhtp-0.5.36 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( >=dev-libs/libbpf-0.1.0 ) cuda? ( dev-util/nvidia-cuda-toolkit ) geoip? ( dev-libs/libmaxminddb ) logrotate? ( app-admin/logrotate ) lua? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:* ) lz4? ( app-arch/lz4 ) nflog? ( net-libs/libnetfilter_log ) nfqueue? ( net-libs/libnetfilter_queue ) redis? ( dev-libs/hiredis ) >=sys-devel/autoconf-2.69-r5 virtual/rust -DESCRIPTION=High performance Network IDS, IPS and Network Security Monitoring engine -EAPI=7 -HOMEPAGE=https://suricata-ids.org/ -IUSE=+af-packet bpf control-socket cuda debug +detection geoip hardened logrotate lua luajit lz4 nflog +nfqueue redis systemd test kernel_linux python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) acct-group/suricata acct-user/suricata dev-libs/jansson dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_7? ( dev-python/pyyaml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) >=net-libs/libhtp-0.5.36 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( >=dev-libs/libbpf-0.1.0 ) cuda? ( dev-util/nvidia-cuda-toolkit ) geoip? ( dev-libs/libmaxminddb ) logrotate? ( app-admin/logrotate ) lua? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:* ) lz4? ( app-arch/lz4 ) nflog? ( net-libs/libnetfilter_log ) nfqueue? ( net-libs/libnetfilter_queue ) redis? ( dev-libs/hiredis ) -REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ?? ( lua luajit ) bpf? ( af-packet ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://www.openinfosecfoundation.org/download/suricata-6.0.1.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=1f42b77bcfb0245ef51c408872fb253b diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index e095ccd3caaa..a62ecb79b77d 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/dnsmasq-2.84 b/metadata/md5-cache/net-dns/dnsmasq-2.84 new file mode 100644 index 000000000000..1b0a235746bd --- /dev/null +++ b/metadata/md5-cache/net-dns/dnsmasq-2.84 @@ -0,0 +1,15 @@ +BDEPEND=app-arch/xz-utils virtual/pkgconfig nls? ( sys-devel/gettext ) virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst preinst prepare pretend +DEPEND=acct-group/dnsmasq acct-user/dnsmasq dbus? ( sys-apps/dbus:= ) idn? ( !libidn2? ( net-dns/libidn:0= ) libidn2? ( >=net-dns/libidn2-2.0:= ) ) lua? ( dev-lang/lua:0= ) conntrack? ( net-libs/libnetfilter_conntrack:= ) nls? ( sys-devel/gettext ) dnssec? ( dev-libs/nettle:=[gmp] static? ( >=dev-libs/nettle-3.4[static-libs(+)] ) ) +DESCRIPTION=Small forwarding DNS server +EAPI=7 +HOMEPAGE=http://www.thekelleys.org.uk/dnsmasq/doc.html +IUSE=auth-dns conntrack dbus +dhcp dhcp-tools dnssec +dumpfile id idn libidn2 +inotify ipv6 lua nettlehash nls script selinux static tftp +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=|| ( GPL-2 GPL-3 ) +RDEPEND=acct-group/dnsmasq acct-user/dnsmasq dbus? ( sys-apps/dbus:= ) idn? ( !libidn2? ( net-dns/libidn:0= ) libidn2? ( >=net-dns/libidn2-2.0:= ) ) lua? ( dev-lang/lua:0= ) conntrack? ( net-libs/libnetfilter_conntrack:= ) nls? ( sys-devel/gettext ) dnssec? ( !static? ( >=dev-libs/nettle-3.4:=[gmp] ) ) selinux? ( sec-policy/selinux-dnsmasq ) +REQUIRED_USE=dhcp-tools? ( dhcp ) dnssec? ( !nettlehash ) lua? ( script ) libidn2? ( idn ) +SLOT=0 +SRC_URI=http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.84.tar.xz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=b5a177b49df63c46d9455566b7b02819 diff --git a/metadata/md5-cache/net-dns/dnsmasq-2.84-r100 b/metadata/md5-cache/net-dns/dnsmasq-2.84-r100 new file mode 100644 index 000000000000..8f1e8fdd11b6 --- /dev/null +++ b/metadata/md5-cache/net-dns/dnsmasq-2.84-r100 @@ -0,0 +1,15 @@ +BDEPEND=app-arch/xz-utils virtual/pkgconfig nls? ( sys-devel/gettext ) virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst preinst prepare pretend setup +DEPEND=acct-group/dnsmasq acct-user/dnsmasq dbus? ( sys-apps/dbus:= ) idn? ( !libidn2? ( net-dns/libidn:0= ) libidn2? ( >=net-dns/libidn2-2.0:= ) ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-2? ( dev-lang/lua:5.2 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) ) conntrack? ( net-libs/libnetfilter_conntrack:= ) nls? ( sys-devel/gettext ) dnssec? ( dev-libs/nettle:=[gmp] static? ( >=dev-libs/nettle-3.4[static-libs(+)] ) ) +DESCRIPTION=Small forwarding DNS server +EAPI=7 +HOMEPAGE=http://www.thekelleys.org.uk/dnsmasq/doc.html +IUSE=auth-dns conntrack dbus +dhcp dhcp-tools dnssec +dumpfile id idn libidn2 +inotify ipv6 lua nettlehash nls script selinux static tftp lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-2 lua_single_target_lua5-3 lua_single_target_lua5-4 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=|| ( GPL-2 GPL-3 ) +RDEPEND=acct-group/dnsmasq acct-user/dnsmasq dbus? ( sys-apps/dbus:= ) idn? ( !libidn2? ( net-dns/libidn:0= ) libidn2? ( >=net-dns/libidn2-2.0:= ) ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-2? ( dev-lang/lua:5.2 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) ) conntrack? ( net-libs/libnetfilter_conntrack:= ) nls? ( sys-devel/gettext ) dnssec? ( !static? ( >=dev-libs/nettle-3.4:=[gmp] ) ) selinux? ( sec-policy/selinux-dnsmasq ) +REQUIRED_USE=dhcp-tools? ( dhcp ) dnssec? ( !nettlehash ) lua? ( script ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-2 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) libidn2? ( idn ) +SLOT=0 +SRC_URI=http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.84.tar.xz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e lua-single f91b5656f00869c220a6e35ae0521c54 lua-utils 736947973cfbc9de01fdb8548f942f82 multilib d410501a125f99ffb560b0c523cd3d1e systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=c5166d47a3aff9635430423f1fffc922 diff --git a/metadata/md5-cache/net-fs/Manifest.gz b/metadata/md5-cache/net-fs/Manifest.gz index bbf4fb308319..788d9aeccb86 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/samba-4.13.3 b/metadata/md5-cache/net-fs/samba-4.13.3 deleted file mode 100644 index ae0b196dd3f2..000000000000 --- a/metadata/md5-cache/net-fs/samba-4.13.3 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=>=app-arch/libarchive-3.1.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-lang/perl:= dev-libs/icu:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dev-libs/libbsd[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/libtasn1[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/popt[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-perl/Parse-Yapp >=net-libs/gnutls-3.4.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] net-libs/libnsl:=[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/e2fsprogs-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(-)?] >=sys-libs/ldb-2.2.0[ldap(+)?,python?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =sys-libs/talloc-2.3.1[python?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/tdb-1.4.3[python?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/tevent-0.10.2[python?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] 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 pam? ( sys-libs/pam ) acl? ( virtual/acl ) python_single_target_python3_7? ( dev-python/subunit[python_targets_python3_7(-),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] addns? ( net-dns/bind-tools[gssapi] dev-python/dnspython:=[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-python/subunit[python_targets_python3_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(-)?] addns? ( net-dns/bind-tools[gssapi] dev-python/dnspython:=[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/subunit[python_targets_python3_9(-),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] addns? ( net-dns/bind-tools[gssapi] dev-python/dnspython:=[python_targets_python3_9(-)] ) ) ceph? ( sys-cluster/ceph ) cluster? ( net-libs/rpcsvc-proto !dev-db/ctdb ) cups? ( net-print/cups ) debug? ( dev-util/lttng-ust ) dmapi? ( sys-apps/dmapi ) fam? ( virtual/fam ) gpg? ( app-crypt/gpgme ) json? ( dev-libs/jansson ) ldap? ( 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(-)?] ) snapper? ( sys-apps/dbus ) system-heimdal? ( >=app-crypt/heimdal-1.5[-ssl,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) system-mitkrb5? ( >=app-crypt/mit-krb5-1.15.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(-)?] ) systemd? ( sys-apps/systemd:0= ) zeroconf? ( net-dns/avahi[dbus] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-text/docbook-xsl-stylesheets dev-libs/libxslt >=dev-util/cmocka-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(-)?] net-libs/libtirpc[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/pkgconfig || ( net-libs/rpcsvc-proto =sys-libs/nss_wrapper-1.1.3 >=net-dns/resolv_wrapper-1.1.4 >=net-libs/socket_wrapper-1.1.9 >=sys-libs/uid_wrapper-1.2.1 ) ) virtual/pkgconfig -DESCRIPTION=Samba Suite Version 4 -EAPI=6 -HOMEPAGE=https://www.samba.org/ -IUSE=acl addc addns ads ceph client cluster cups debug dmapi fam gpg iprint json ldap pam profiling-data python quota selinux snapper syslog system-heimdal +system-mitkrb5 systemd test winbind zeroconf python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 kernel_linux -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-3 -RDEPEND=>=app-arch/libarchive-3.1.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-lang/perl:= dev-libs/icu:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dev-libs/libbsd[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/libtasn1[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/popt[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-perl/Parse-Yapp >=net-libs/gnutls-3.4.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] net-libs/libnsl:=[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/e2fsprogs-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(-)?] >=sys-libs/ldb-2.2.0[ldap(+)?,python?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =sys-libs/talloc-2.3.1[python?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/tdb-1.4.3[python?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/tevent-0.10.2[python?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] 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 pam? ( sys-libs/pam ) acl? ( virtual/acl ) python_single_target_python3_7? ( dev-python/subunit[python_targets_python3_7(-),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] addns? ( net-dns/bind-tools[gssapi] dev-python/dnspython:=[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-python/subunit[python_targets_python3_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(-)?] addns? ( net-dns/bind-tools[gssapi] dev-python/dnspython:=[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/subunit[python_targets_python3_9(-),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] addns? ( net-dns/bind-tools[gssapi] dev-python/dnspython:=[python_targets_python3_9(-)] ) ) ceph? ( sys-cluster/ceph ) cluster? ( net-libs/rpcsvc-proto !dev-db/ctdb ) cups? ( net-print/cups ) debug? ( dev-util/lttng-ust ) dmapi? ( sys-apps/dmapi ) fam? ( virtual/fam ) gpg? ( app-crypt/gpgme ) json? ( dev-libs/jansson ) ldap? ( 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(-)?] ) snapper? ( sys-apps/dbus ) system-heimdal? ( >=app-crypt/heimdal-1.5[-ssl,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) system-mitkrb5? ( >=app-crypt/mit-krb5-1.15.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(-)?] ) systemd? ( sys-apps/systemd:0= ) zeroconf? ( net-dns/avahi[dbus] ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) client? ( net-fs/cifs-utils[ads?] ) selinux? ( sec-policy/selinux-samba ) -REQUIRED_USE=addc? ( python json winbind ) addns? ( python ) ads? ( acl ldap winbind ) cluster? ( ads ) gpg? ( addc ) test? ( python ) !ads? ( !addc ) ?? ( system-heimdal system-mitkrb5 ) ^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://samba/stable/samba-4.13.3.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 pam b097695df28f3974e3af860d6704d4f2 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf waf-utils 0a6e492cdcbd52b1304cfcd9eba5abc6 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=62d828439cca78129681c9de23c13c37 diff --git a/metadata/md5-cache/net-fs/samba-4.13.3-r1 b/metadata/md5-cache/net-fs/samba-4.13.3-r1 new file mode 100644 index 000000000000..f8809e6b818d --- /dev/null +++ b/metadata/md5-cache/net-fs/samba-4.13.3-r1 @@ -0,0 +1,16 @@ +BDEPEND=python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-text/docbook-xsl-stylesheets dev-libs/libxslt virtual/pkgconfig virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=>=app-arch/libarchive-3.1.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-lang/perl:= dev-libs/icu:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dev-libs/libbsd[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/libtasn1[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/popt[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-perl/Parse-Yapp >=net-libs/gnutls-3.4.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] net-libs/libnsl:=[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/e2fsprogs-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(-)?] >=sys-libs/ldb-2.2.0[ldap(+)?,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/talloc-2.3.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(-)?] >=sys-libs/tdb-1.4.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(-)?] >=sys-libs/tevent-0.10.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-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 acl? ( virtual/acl ) python_single_target_python3_7? ( dev-python/subunit[python_targets_python3_7(-),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] addns? ( dev-python/dnspython:=[python_targets_python3_7(-)] net-dns/bind-tools[gssapi] ) ) python_single_target_python3_8? ( dev-python/subunit[python_targets_python3_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(-)?] addns? ( dev-python/dnspython:=[python_targets_python3_8(-)] net-dns/bind-tools[gssapi] ) ) python_single_target_python3_9? ( dev-python/subunit[python_targets_python3_9(-),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] addns? ( dev-python/dnspython:=[python_targets_python3_9(-)] net-dns/bind-tools[gssapi] ) ) ceph? ( sys-cluster/ceph ) cluster? ( net-libs/rpcsvc-proto ) cups? ( net-print/cups ) debug? ( dev-util/lttng-ust ) dmapi? ( sys-apps/dmapi ) fam? ( virtual/fam ) gpg? ( app-crypt/gpgme ) json? ( dev-libs/jansson ) ldap? ( 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(-)?] ) pam? ( sys-libs/pam ) python? ( sys-libs/ldb[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] sys-libs/talloc[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] sys-libs/tdb[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] sys-libs/tevent[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] ) snapper? ( sys-apps/dbus ) system-heimdal? ( >=app-crypt/heimdal-1.5[-ssl,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) system-mitkrb5? ( >=app-crypt/mit-krb5-1.15.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(-)?] ) systemd? ( sys-apps/systemd:0= ) zeroconf? ( net-dns/avahi[dbus] ) >=dev-util/cmocka-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(-)?] net-libs/libtirpc[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/rpcsvc-proto =net-dns/resolv_wrapper-1.1.4 >=net-libs/socket_wrapper-1.1.9 >=sys-libs/nss_wrapper-1.1.3 >=sys-libs/uid_wrapper-1.2.1 ) ) +DESCRIPTION=Samba Suite Version 4 +EAPI=7 +HOMEPAGE=https://samba.org/ +IUSE=acl addc addns ads ceph client cluster cups debug dmapi fam gpg iprint json ldap pam profiling-data python quota selinux snapper syslog system-heimdal +system-mitkrb5 systemd test winbind zeroconf python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 kernel_linux +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-3 +RDEPEND=>=app-arch/libarchive-3.1.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-lang/perl:= dev-libs/icu:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dev-libs/libbsd[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/libtasn1[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/popt[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-perl/Parse-Yapp >=net-libs/gnutls-3.4.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] net-libs/libnsl:=[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/e2fsprogs-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(-)?] >=sys-libs/ldb-2.2.0[ldap(+)?,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/talloc-2.3.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(-)?] >=sys-libs/tdb-1.4.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(-)?] >=sys-libs/tevent-0.10.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-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 acl? ( virtual/acl ) python_single_target_python3_7? ( dev-python/subunit[python_targets_python3_7(-),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] addns? ( dev-python/dnspython:=[python_targets_python3_7(-)] net-dns/bind-tools[gssapi] ) ) python_single_target_python3_8? ( dev-python/subunit[python_targets_python3_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(-)?] addns? ( dev-python/dnspython:=[python_targets_python3_8(-)] net-dns/bind-tools[gssapi] ) ) python_single_target_python3_9? ( dev-python/subunit[python_targets_python3_9(-),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] addns? ( dev-python/dnspython:=[python_targets_python3_9(-)] net-dns/bind-tools[gssapi] ) ) ceph? ( sys-cluster/ceph ) cluster? ( net-libs/rpcsvc-proto ) cups? ( net-print/cups ) debug? ( dev-util/lttng-ust ) dmapi? ( sys-apps/dmapi ) fam? ( virtual/fam ) gpg? ( app-crypt/gpgme ) json? ( dev-libs/jansson ) ldap? ( 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(-)?] ) pam? ( sys-libs/pam ) python? ( sys-libs/ldb[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] sys-libs/talloc[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] sys-libs/tdb[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] sys-libs/tevent[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] ) snapper? ( sys-apps/dbus ) system-heimdal? ( >=app-crypt/heimdal-1.5[-ssl,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) system-mitkrb5? ( >=app-crypt/mit-krb5-1.15.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(-)?] ) systemd? ( sys-apps/systemd:0= ) zeroconf? ( net-dns/avahi[dbus] ) client? ( net-fs/cifs-utils[ads?] ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) selinux? ( sec-policy/selinux-samba ) +REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) addc? ( python json winbind ) addns? ( python ) ads? ( acl ldap winbind ) cluster? ( ads ) gpg? ( addc ) test? ( python ) !ads? ( !addc ) ?? ( system-heimdal system-mitkrb5 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://samba/stable/samba-4.13.3.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 pam b097695df28f3974e3af860d6704d4f2 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 waf-utils 0a6e492cdcbd52b1304cfcd9eba5abc6 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=b4de29b4bcd0e7e0a270b0bf9bb54cc4 diff --git a/metadata/md5-cache/net-ftp/Manifest.gz b/metadata/md5-cache/net-ftp/Manifest.gz index adba72aa03fb..baf7d02533b9 100644 Binary files a/metadata/md5-cache/net-ftp/Manifest.gz and b/metadata/md5-cache/net-ftp/Manifest.gz differ diff --git a/metadata/md5-cache/net-ftp/atftp-0.7.2-r2 b/metadata/md5-cache/net-ftp/atftp-0.7.2-r2 index b1f2ab29895b..573199aff27d 100644 --- a/metadata/md5-cache/net-ftp/atftp-0.7.2-r2 +++ b/metadata/md5-cache/net-ftp/atftp-0.7.2-r2 @@ -5,10 +5,10 @@ DESCRIPTION=Advanced TFTP implementation client/server EAPI=7 HOMEPAGE=https://sourceforge.net/projects/atftp/ IUSE=selinux tcpd readline pcre -KEYWORDS=amd64 arm ppc ppc64 ~s390 ~sparc ~x86 +KEYWORDS=amd64 arm ppc ppc64 ~s390 ~sparc x86 LICENSE=GPL-2+ RDEPEND=tcpd? ( sys-apps/tcp-wrappers ) readline? ( sys-libs/readline:0= ) pcre? ( dev-libs/libpcre ) !net-ftp/tftp-hpa !net-ftp/uftpd selinux? ( sec-policy/selinux-tftp ) SLOT=0 SRC_URI=mirror://sourceforge/atftp/atftp-0.7.2.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=d098cccedbea04905734f9c4c5d6bdbe +_md5_=ce4722862900cfdba67e6f59bdba551a diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index 389d399ef093..987e0e7a0263 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/dhcpcd-8.1.9 b/metadata/md5-cache/net-misc/dhcpcd-8.1.9 deleted file mode 100644 index 67cddcd825ab..000000000000 --- a/metadata/md5-cache/net-misc/dhcpcd-8.1.9 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=configure install postinst -DEPEND=udev? ( virtual/udev ) -DESCRIPTION=A fully featured, yet light weight RFC2131 compliant DHCP client -EAPI=7 -HOMEPAGE=https://roy.marples.name/projects/dhcpcd -IUSE=elibc_glibc +embedded ipv6 kernel_linux +udev -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux -LICENSE=BSD-2 -RDEPEND=udev? ( virtual/udev ) -SLOT=0 -SRC_URI=https://roy.marples.name/downloads/dhcpcd/dhcpcd-8.1.9.tar.xz -_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=84e746529612a04f6a24bed663cce6ca diff --git a/metadata/md5-cache/net-misc/iputils-20200821-r1 b/metadata/md5-cache/net-misc/iputils-20200821-r2 similarity index 97% rename from metadata/md5-cache/net-misc/iputils-20200821-r1 rename to metadata/md5-cache/net-misc/iputils-20200821-r2 index a16891f873f1..8f8af435263c 100644 --- a/metadata/md5-cache/net-misc/iputils-20200821-r1 +++ b/metadata/md5-cache/net-misc/iputils-20200821-r2 @@ -11,4 +11,4 @@ RDEPEND=traceroute6? ( !net-analyzer/traceroute ) !static? ( caps? ( sys-libs/li SLOT=0 SRC_URI=https://github.com/iputils/iputils/archive/s20200821.tar.gz -> iputils-20200821.tar.gz https://dev.gentoo.org/~whissi/dist/iputils/iputils-manpages-20200821.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e fcaps da689a8e04bbbb3518888ff668fee45b flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e meson fdaf2a7b9376934c1c7ddbd32114defb multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=55f1000a3475c52e52142d0fc3be00e7 +_md5_=cbf64e2e957ceecb8ecd163aebd80ca3 diff --git a/metadata/md5-cache/net-misc/ntpsec-1.2.0 b/metadata/md5-cache/net-misc/ntpsec-1.2.0 new file mode 100644 index 000000000000..328031d7afb0 --- /dev/null +++ b/metadata/md5-cache/net-misc/ntpsec-1.2.0 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst prepare +DEPEND=python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] sys-libs/libcap dev-python/psutil[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] libbsd? ( dev-libs/libbsd:0= ) dev-libs/openssl:0= seccomp? ( sys-libs/libseccomp ) >=app-text/asciidoc-8.6.8 dev-libs/libxslt app-text/docbook-xsl-stylesheets sys-devel/bison rclock_oncore? ( net-misc/pps-tools ) rclock_pps? ( net-misc/pps-tools ) virtual/pkgconfig +DESCRIPTION=The NTP reference implementation, refactored +EAPI=6 +HOMEPAGE=https://www.ntpsec.org/ +IUSE=rclock_oncore rclock_trimble rclock_truetime rclock_gpsd rclock_jjy rclock_generic rclock_spectracom rclock_shm rclock_pps rclock_hpgps rclock_zyfer rclock_arbiter rclock_nmea rclock_neoclock rclock_modem rclock_local debug doc early gdb heat libbsd nist ntpviz samba seccomp smear tests python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=HPND MIT BSD-2 BSD CC-BY-SA-4.0 +RDEPEND=python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] sys-libs/libcap dev-python/psutil[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] libbsd? ( dev-libs/libbsd:0= ) dev-libs/openssl:0= seccomp? ( sys-libs/libseccomp ) ntpviz? ( sci-visualization/gnuplot media-fonts/liberation-fonts ) !net-misc/ntp !net-misc/openntpd acct-group/ntp acct-user/ntp +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) nist? ( rclock_local ) +RESTRICT=mirror +SLOT=0 +SRC_URI=ftp://ftp.ntpsec.org/pub/releases/ntpsec-1.2.0.tar.gz +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf waf-utils 0a6e492cdcbd52b1304cfcd9eba5abc6 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=4cb1df1b710393dc2526a1715c1a7765 diff --git a/metadata/md5-cache/net-misc/openssh-8.4_p1-r3 b/metadata/md5-cache/net-misc/openssh-8.4_p1-r3 index f264ad8e6767..416ac3496975 100644 --- a/metadata/md5-cache/net-misc/openssh-8.4_p1-r3 +++ b/metadata/md5-cache/net-misc/openssh-8.4_p1-r3 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://openbsd/OpenSSH/portable/openssh-8.4p1.tar.gz sctp? ( https://dev.gentoo.org/~chutzpah/dist/openssh/openssh-8.4p1-sctp-1.2.patch.xz ) hpn? ( mirror://sourceforge/project/hpnssh/Patches/HPN-SSH%2014v22%208.3p1/openssh-8_3_P1-hpn-DynWinNoneSwitch-14.22.diff mirror://sourceforge/project/hpnssh/Patches/HPN-SSH%2014v22%208.3p1/openssh-8_3_P1-hpn-AES-CTR-14.22.diff mirror://sourceforge/project/hpnssh/Patches/HPN-SSH%2014v22%208.3p1/openssh-8_3_P1-hpn-PeakTput-14.22.diff ) X509? ( https://roumenpetrov.info/openssh/x509-12.6/openssh-8.4p1+x509-12.6.diff.gz ) _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e pam b097695df28f3974e3af860d6704d4f2 systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 user-info a2abd4e2f4c3b9b06d64bf1329359a02 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=836690c90359bf89b59dbc436c9ef445 +_md5_=b5d14756eec004f850be9b69e3adc822 diff --git a/metadata/md5-cache/net-misc/remmina-1.4.10-r1 b/metadata/md5-cache/net-misc/remmina-1.4.10-r1 new file mode 100644 index 000000000000..1d3a00bc3c7d --- /dev/null +++ b/metadata/md5-cache/net-misc/remmina-1.4.10-r1 @@ -0,0 +1,14 @@ +BDEPEND=dev-util/intltool virtual/pkgconfig nls? ( sys-devel/gettext ) dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=app-emulation/spice-protocol dev-libs/glib:2 dev-libs/json-glib dev-libs/libsodium:= net-libs/libsoup x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libxkbfile appindicator? ( dev-libs/libappindicator:3 ) crypt? ( dev-libs/libgcrypt:0= ) rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129[X] =net-dns/avahi-0.8-r2[dbus,gtk] ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=A GTK+ RDP, SPICE, VNC, XDMCP and SSH client +EAPI=7 +HOMEPAGE=https://remmina.org/ +IUSE=appindicator crypt cups examples gnome-keyring kwallet libressl nls spice ssh rdp telemetry telepathy vnc webkit zeroconf +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=GPL-2+-with-openssl-exception +RDEPEND=app-emulation/spice-protocol dev-libs/glib:2 dev-libs/json-glib dev-libs/libsodium:= net-libs/libsoup x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libxkbfile appindicator? ( dev-libs/libappindicator:3 ) crypt? ( dev-libs/libgcrypt:0= ) rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129[X] =net-dns/avahi-0.8-r2[dbus,gtk] ) virtual/freedesktop-icon-theme +SLOT=0 +SRC_URI=https://gitlab.com/Remmina/Remmina/-/archive/v1.4.10/Remmina-v1.4.10.tar.gz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f optfeature 6a2add34e06e5a05d88471a33ccdd73e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=a5dc77b6b23115ccfaed8b7a6a490d08 diff --git a/metadata/md5-cache/net-misc/zerotier-1.2.12 b/metadata/md5-cache/net-misc/zerotier-1.2.12 deleted file mode 100644 index c75762833b19..000000000000 --- a/metadata/md5-cache/net-misc/zerotier-1.2.12 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install test -DEPEND=dev-libs/json-glib:= net-libs/http-parser:= net-libs/libnatpmp:= net-libs/miniupnpc:= virtual/pkgconfig -DESCRIPTION=A software-based managed Ethernet switch for planet Earth -EAPI=6 -HOMEPAGE=https://www.zerotier.com/ -KEYWORDS=~amd64 ~arm ~arm64 ~x86 -LICENSE=GPL-3 -RDEPEND=dev-libs/json-glib:= net-libs/http-parser:= net-libs/libnatpmp:= net-libs/miniupnpc:= -SLOT=0 -SRC_URI=https://github.com/zerotier/ZeroTierOne/archive/1.2.12.tar.gz -> zerotier-1.2.12.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=3ba293309fbe8da51b03d096c6edb58a diff --git a/metadata/md5-cache/net-misc/zerotier-1.6.2 b/metadata/md5-cache/net-misc/zerotier-1.6.2 new file mode 100644 index 000000000000..e1ee4b4a25ba --- /dev/null +++ b/metadata/md5-cache/net-misc/zerotier-1.6.2 @@ -0,0 +1,14 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=compile install setup test +DEPEND=dev-libs/json-glib net-libs/libnatpmp net-libs/miniupnpc:= clang? ( >=sys-devel/clang-6:* ) !!sys-devel/llvm:0 +DESCRIPTION=A software-based managed Ethernet switch for planet Earth +EAPI=7 +HOMEPAGE=https://www.zerotier.com/ +IUSE=clang neon +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=BSL-1.1 +RDEPEND=dev-libs/json-glib net-libs/libnatpmp net-libs/miniupnpc:= clang? ( >=sys-devel/clang-6:* ) +SLOT=0 +SRC_URI=https://github.com/zerotier/ZeroTierOne/archive/1.6.2.tar.gz -> zerotier-1.6.2.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib d410501a125f99ffb560b0c523cd3d1e systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=40b01ba557fe4a9f8f01b73b1d9310d0 diff --git a/metadata/md5-cache/net-p2p/Manifest.gz b/metadata/md5-cache/net-p2p/Manifest.gz index b5d2ab8e2ca4..38d6f746d6ae 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/eiskaltdcpp-2.2.10 b/metadata/md5-cache/net-p2p/eiskaltdcpp-2.2.10 deleted file mode 100644 index c0b6909752f2..000000000000 --- a/metadata/md5-cache/net-p2p/eiskaltdcpp-2.2.10 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=app-arch/bzip2 dev-libs/boost:= 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 json? ( dev-perl/JSON-RPC ) xmlrpc? ( dev-perl/RPC-XML ) ) daemon? ( xmlrpc? ( dev-libs/xmlrpc-c[abyss,cxx] ) ) idn? ( net-dns/libidn ) lua? ( dev-lang/lua:0= ) 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 ) sys-devel/gettext virtual/pkgconfig qt5? ( dev-qt/linguist-tools:5 ) sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Qt/DC++ based client for DirectConnect and ADC protocols -EAPI=6 -HOMEPAGE=https://github.com/eiskaltdcpp/eiskaltdcpp -IUSE=cli daemon dbus +dht examples idn -javascript json lua +minimal pcre +qt5 spell sqlite upnp -xmlrpc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 GPL-3 -RDEPEND=app-arch/bzip2 dev-libs/boost:= 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 json? ( dev-perl/JSON-RPC ) xmlrpc? ( dev-perl/RPC-XML ) ) daemon? ( xmlrpc? ( dev-libs/xmlrpc-c[abyss,cxx] ) ) idn? ( net-dns/libidn ) lua? ( dev-lang/lua:0= ) 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=?? ( json xmlrpc ) cli? ( ^^ ( json xmlrpc ) ) dbus? ( qt5 ) javascript? ( qt5 ) spell? ( qt5 ) sqlite? ( qt5 ) -SLOT=0 -SRC_URI=https://github.com/eiskaltdcpp/eiskaltdcpp/archive/v2.2.10.tar.gz -> eiskaltdcpp-2.2.10.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=228a8e46d627bcb7ebaf73c74f26c6ee diff --git a/metadata/md5-cache/net-print/Manifest.gz b/metadata/md5-cache/net-print/Manifest.gz index 829872d4afa8..f03de5545cd0 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/epson-inkjet-printer-escpr-1.7.7 b/metadata/md5-cache/net-print/epson-inkjet-printer-escpr-1.7.7 deleted file mode 100644 index cca9fc26ea90..000000000000 --- a/metadata/md5-cache/net-print/epson-inkjet-printer-escpr-1.7.7 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=configure install -DEPEND=net-print/cups -DESCRIPTION=Epson Inkjet Printer Driver (ESC/P-R) -EAPI=7 -HOMEPAGE=https://download.ebz.epson.net/dsc/search/01/search/?OSC=LX -KEYWORDS=amd64 ~ppc64 -LICENSE=GPL-2 -RDEPEND=net-print/cups -SLOT=0 -SRC_URI=https://download3.ebz.epson.net/dsc/f/03/00/10/49/18/f3016be6120a7271a6d9cb64872f817bce1920b8/epson-inkjet-printer-escpr-1.7.7-1lsb3.2.tar.gz -_md5_=ed4c52d7504ee814ae8a389540ca3117 diff --git a/metadata/md5-cache/net-print/hplip-3.20.11-r1 b/metadata/md5-cache/net-print/hplip-3.20.11-r1 new file mode 100644 index 000000000000..9b4986e2c3fd --- /dev/null +++ b/metadata/md5-cache/net-print/hplip-3.20.11-r1 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 =sys-devel/automake-1.13* >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DEFINED_PHASES=configure install postinst prepare setup +DEPEND=net-print/cups sys-apps/dbus virtual/jpeg:0 hpijs? ( net-print/cups-filters[foomatic] ) !libusb0? ( virtual/libusb:1 ) libusb0? ( virtual/libusb:0 ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) !minimal? ( scanner? ( media-gfx/sane-backends ) snmp? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) net-analyzer/net-snmp:= python_single_target_python3_7? ( net-dns/avahi[dbus,python_targets_python3_7(-)] ) python_single_target_python3_8? ( net-dns/avahi[dbus,python_targets_python3_8(-)] ) ) ) +DESCRIPTION=HP Linux Imaging and Printing - Print, scan, fax drivers and service tools +EAPI=7 +HOMEPAGE=https://developers.hp.com/hp-linux-imaging-and-printing +IUSE=doc fax +hpcups hpijs kde libnotify libressl -libusb0 minimal parport policykit qt5 scanner +snmp static-ppds X kernel_linux python_single_target_python3_7 python_single_target_python3_8 +KEYWORDS=amd64 arm arm64 ppc ppc64 x86 +LICENSE=GPL-2 +RDEPEND=net-print/cups sys-apps/dbus virtual/jpeg:0 hpijs? ( net-print/cups-filters[foomatic] ) !libusb0? ( virtual/libusb:1 ) libusb0? ( virtual/libusb:0 ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) !minimal? ( scanner? ( media-gfx/sane-backends ) snmp? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) net-analyzer/net-snmp:= python_single_target_python3_7? ( net-dns/avahi[dbus,python_targets_python3_7(-)] ) python_single_target_python3_8? ( net-dns/avahi[dbus,python_targets_python3_8(-)] ) ) ) app-text/ghostscript-gpl !minimal? ( python_single_target_python3_7? ( dev-python/pygobject:3[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pygobject:3[python_targets_python3_8(-)] ) kernel_linux? ( virtual/udev ) python_single_target_python3_7? ( >=dev-python/dbus-python-1.2.0-r1[python_targets_python3_7(-)] dev-python/distro[python_targets_python3_7(-)] fax? ( dev-python/reportlab[python_targets_python3_7(-)] ) qt5? ( >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,python_targets_python3_7(-)] libnotify? ( dev-python/notify2[python_targets_python3_7(-)] ) ) scanner? ( >=dev-python/reportlab-3.2[python_targets_python3_7(-)] >=dev-python/pillow-3.1.1[python_targets_python3_7(-)] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) ) python_single_target_python3_8? ( >=dev-python/dbus-python-1.2.0-r1[python_targets_python3_8(-)] dev-python/distro[python_targets_python3_8(-)] fax? ( dev-python/reportlab[python_targets_python3_8(-)] ) qt5? ( >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,python_targets_python3_8(-)] libnotify? ( dev-python/notify2[python_targets_python3_8(-)] ) ) scanner? ( >=dev-python/reportlab-3.2[python_targets_python3_8(-)] >=dev-python/pillow-3.1.1[python_targets_python3_8(-)] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) ) ) policykit? ( sys-auth/polkit ) +REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 ) +SLOT=0 +SRC_URI=mirror://sourceforge/hplip/hplip-3.20.11.tar.gz https://dev.gentoo.org/~billie/distfiles/hplip-3.20.11-patches-2.tar.xz +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 udev 452708c3f55cf6e918b045adb949a9e6 +_md5_=68a5d4c4ad90be05f5effd83fcc68b69 diff --git a/metadata/md5-cache/net-wireless/Manifest.gz b/metadata/md5-cache/net-wireless/Manifest.gz index 4ffefa057062..e56cac42c75c 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/unifi-6.0.45 b/metadata/md5-cache/net-wireless/unifi-6.0.45 new file mode 100644 index 000000000000..e4d6b7d37aae --- /dev/null +++ b/metadata/md5-cache/net-wireless/unifi-6.0.45 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=install prepare +DEPEND=app-arch/unzip +DESCRIPTION=A Management Controller for Ubiquiti Networks UniFi APs +EAPI=7 +HOMEPAGE=https://www.ubnt.com +IUSE=systemd +KEYWORDS=~amd64 +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 +RESTRICT=bindist mirror +SLOT=0/6.0 +SRC_URI=https://dl.ui.com/unifi/6.0.45-564eef1dda/UniFi.unix.zip -> unifi-6.0.45.zip +_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=a3b1caa2dba891075cb6d29a894b160c diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz index 759ec815bb77..2bf5610638ce 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/cfitsio-3.360 b/metadata/md5-cache/sci-libs/cfitsio-3.360 deleted file mode 100644 index 822256c79f35..000000000000 --- a/metadata/md5-cache/sci-libs/cfitsio-3.360 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=sys-libs/zlib fortran? ( dev-lang/cfortran ) >=app-portage/elt-patches-20170815 fortran? ( virtual/fortran ) -DESCRIPTION=C and Fortran library for manipulating FITS files -EAPI=5 -HOMEPAGE=https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html -IUSE=doc examples fortran static-libs +tools threads -KEYWORDS=~alpha amd64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris -LICENSE=MIT -RDEPEND=sys-libs/zlib fortran? ( virtual/fortran ) -SLOT=0/1 -SRC_URI=https://dev.gentoo.org/~bicatali/distfiles/cfitsio-3.360.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 autotools-utils 961893b8004e6cf64fbef1cea6ed8bd2 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e fortran-2 b4796813ccda91c9c0d3463fc90aa969 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=f8969071b0cffe6c1b6e7eff9502248f diff --git a/metadata/md5-cache/sci-libs/cfitsio-3.410 b/metadata/md5-cache/sci-libs/cfitsio-3.410 deleted file mode 100644 index e0a258240886..000000000000 --- a/metadata/md5-cache/sci-libs/cfitsio-3.410 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=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(-)?] bzip2? ( app-arch/bzip2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fortran? ( dev-lang/cfortran ) fortran? ( virtual/fortran ) -DESCRIPTION=C and Fortran library for manipulating FITS files -EAPI=6 -HOMEPAGE=https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html -IUSE=bzip2 doc examples fortran static-libs +tools 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 ~hppa ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris -LICENSE=MIT -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(-)?] bzip2? ( app-arch/bzip2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fortran? ( virtual/fortran ) -SLOT=0/5 -SRC_URI=https://dev.gentoo.org/~bicatali/distfiles/cfitsio-3.410.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e fortran-2 b4796813ccda91c9c0d3463fc90aa969 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=5f2598a5f770ea99e928eb94b58a2f1b diff --git a/metadata/md5-cache/sci-libs/libgeotiff-1.6.0 b/metadata/md5-cache/sci-libs/libgeotiff-1.6.0 new file mode 100644 index 000000000000..6b6224028810 --- /dev/null +++ b/metadata/md5-cache/sci-libs/libgeotiff-1.6.0 @@ -0,0 +1,14 @@ +BDEPEND=doc? ( app-doc/doxygen ) virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install prepare +DEPEND=>=media-libs/tiff-3.9.1:0 >=sci-libs/proj-6.0.0:= sys-libs/zlib virtual/jpeg:= +DESCRIPTION=Library for reading TIFF files with embedded tags for geographic information +EAPI=7 +HOMEPAGE=https://trac.osgeo.org/geotiff/ https://github.com/OSGeo/libgeotiff +IUSE=debug doc static-libs +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +LICENSE=GPL-2 +RDEPEND=>=media-libs/tiff-3.9.1:0 >=sci-libs/proj-6.0.0:= sys-libs/zlib virtual/jpeg:= +SLOT=0/5 +SRC_URI=https://download.osgeo.org/geotiff/libgeotiff/libgeotiff-1.6.0.tar.gz +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=be5d7bff9d24c776deff36ae73341251 diff --git a/metadata/md5-cache/sci-mathematics/Manifest.gz b/metadata/md5-cache/sci-mathematics/Manifest.gz index 4c2bf53a9316..12ca3158cc4d 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/flint-2.6.3 b/metadata/md5-cache/sci-mathematics/flint-2.6.3 index d854673de581..57b53b83e19b 100644 --- a/metadata/md5-cache/sci-mathematics/flint-2.6.3 +++ b/metadata/md5-cache/sci-mathematics/flint-2.6.3 @@ -5,11 +5,11 @@ DESCRIPTION=Fast Library for Number Theory EAPI=7 HOMEPAGE=http://www.flintlib.org/ IUSE=doc ntl test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ppc ~x86 LICENSE=LGPL-2.1+ RDEPEND=dev-libs/gmp:= dev-libs/mpfr:= ntl? ( dev-libs/ntl:= ) RESTRICT=!test? ( test ) SLOT=0/14 SRC_URI=http://www.flintlib.org/flint-2.6.3.tar.gz _eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b3a7ab610ad9b8a149c8a753de0368fb +_md5_=75b3090b653e61e9487bd1493a6f0a03 diff --git a/metadata/md5-cache/sci-mathematics/psmt2-frontend-0.2 b/metadata/md5-cache/sci-mathematics/psmt2-frontend-0.2 index fa0fdbd4c55b..c33a357bcc96 100644 --- a/metadata/md5-cache/sci-mathematics/psmt2-frontend-0.2 +++ b/metadata/md5-cache/sci-mathematics/psmt2-frontend-0.2 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-ml/menhir-20181006 SLOT=0 SRC_URI=https://github.com/OCamlPro-Coquera/psmt2-frontend/archive/0.2.tar.gz -> psmt2-frontend-0.2.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib df74899b0837d14d75b7e6bb42422b14 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 findlib 9674d5e3d151793fecab20e2bb73e6c6 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=8babbf81ec962f9ae8c2edc628d37b26 diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index 476fa74e7bb0..c3097ae6dbf6 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/flashrom-1.2-r3 b/metadata/md5-cache/sys-apps/flashrom-1.2-r3 index 7bfb083a7dc9..ce1cb23cdd60 100644 --- a/metadata/md5-cache/sys-apps/flashrom-1.2-r3 +++ b/metadata/md5-cache/sys-apps/flashrom-1.2-r3 @@ -5,10 +5,10 @@ DESCRIPTION=Utility for reading, writing, erasing and verifying flash ROM chips EAPI=7 HOMEPAGE=https://flashrom.org/ IUSE=atahpt atapromise +atavia +buspirate-spi +ch341a-spi +dediprog +developerbox-spi +digilent-spi +drkaiser +dummy +ft2232-spi +gfxnvidia +internal +it8212 jlink-spi +linux-mtd +linux-spi mstarddc-spi +nic3com +nicintel +nicintel-eeprom +nicintel-spi nicnatsemi +nicrealtek +ogp-spi +pickit2-spi +pony-spi +rayer-spi +satamv +satasii +serprog +stlinkv3-spi +usbblaster-spi +internal-dmi tools -KEYWORDS=amd64 arm arm64 ppc ppc64 sparc ~x86 +KEYWORDS=amd64 arm arm64 ppc ppc64 sparc x86 LICENSE=GPL-2 RDEPEND=atahpt? ( sys-apps/pciutils ) atapromise? ( sys-apps/pciutils ) atavia? ( sys-apps/pciutils ) ch341a-spi? ( virtual/libusb:1 ) dediprog? ( virtual/libusb:1 ) developerbox-spi? ( virtual/libusb:1 ) digilent-spi? ( virtual/libusb:1 ) drkaiser? ( sys-apps/pciutils ) ft2232-spi? ( dev-embedded/libftdi:= ) gfxnvidia? ( sys-apps/pciutils ) internal? ( sys-apps/pciutils ) it8212? ( sys-apps/pciutils ) jlink-spi? ( dev-embedded/libjaylink ) nic3com? ( sys-apps/pciutils ) nicintel-eeprom? ( sys-apps/pciutils ) nicintel-spi? ( sys-apps/pciutils ) nicintel? ( sys-apps/pciutils ) nicnatsemi? ( sys-apps/pciutils ) nicrealtek? ( sys-apps/pciutils ) ogp-spi? ( sys-apps/pciutils ) pickit2-spi? ( virtual/libusb:0 ) rayer-spi? ( sys-apps/pciutils ) satamv? ( sys-apps/pciutils ) satasii? ( sys-apps/pciutils ) stlinkv3-spi? ( virtual/libusb:1 ) usbblaster-spi? ( dev-embedded/libftdi:= ) !internal-dmi? ( sys-apps/dmidecode ) SLOT=0 SRC_URI=https://download.flashrom.org/releases/flashrom-v1.2.tar.bz2 _eclasses_=meson fdaf2a7b9376934c1c7ddbd32114defb multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=1067ff86283855ec635020bdda1c4b02 +_md5_=c52b87ec2e79fa71aabe164a71de1807 diff --git a/metadata/md5-cache/sys-apps/smartmontools-7.1-r1 b/metadata/md5-cache/sys-apps/smartmontools-7.1-r1 index 6b7257d4fce1..5bf29e29e1f1 100644 --- a/metadata/md5-cache/sys-apps/smartmontools-7.1-r1 +++ b/metadata/md5-cache/sys-apps/smartmontools-7.1-r1 @@ -11,4 +11,4 @@ REQUIRED_USE=( caps? ( daemon ) ) SLOT=0 SRC_URI=mirror://sourceforge/smartmontools/smartmontools-7.1.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=7dc08cc61ccdf7df752fb75c89240087 +_md5_=a8996c4a5556d4500b2c9720f4936dbc diff --git a/metadata/md5-cache/sys-apps/smartmontools-7.2 b/metadata/md5-cache/sys-apps/smartmontools-7.2 index c2cb996f9cf1..0a606b0679f7 100644 --- a/metadata/md5-cache/sys-apps/smartmontools-7.2 +++ b/metadata/md5-cache/sys-apps/smartmontools-7.2 @@ -11,4 +11,4 @@ REQUIRED_USE=( caps? ( daemon ) static? ( !systemd ) ) SLOT=0 SRC_URI=mirror://sourceforge/smartmontools/smartmontools-7.2.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=a3e5ed7365485cced303b7229c2aedc3 +_md5_=f5cb186d0997ae123e659f1fe949b40a diff --git a/metadata/md5-cache/sys-apps/smartmontools-9999 b/metadata/md5-cache/sys-apps/smartmontools-9999 index 0cb50da6bfca..f7d1d3bbb963 100644 --- a/metadata/md5-cache/sys-apps/smartmontools-9999 +++ b/metadata/md5-cache/sys-apps/smartmontools-9999 @@ -10,4 +10,4 @@ RDEPEND=caps? ( static? ( sys-libs/libcap-ng[static-libs] ) !static? ( sys-libs/ REQUIRED_USE=( caps? ( daemon ) static? ( !systemd ) ) SLOT=0 _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 subversion ed3498da4fb92dcfb0d6089c85d1465f systemd 74b223e42834adf09a2d21fe5fe13741 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=a3e5ed7365485cced303b7229c2aedc3 +_md5_=f5cb186d0997ae123e659f1fe949b40a diff --git a/metadata/md5-cache/sys-block/Manifest.gz b/metadata/md5-cache/sys-block/Manifest.gz index f0a186d729ee..7ce3466b49fb 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/fio-3.20-r2 b/metadata/md5-cache/sys-block/fio-3.20-r2 index 5ca2b93bfec2..458578bc506b 100644 --- a/metadata/md5-cache/sys-block/fio-3.20-r2 +++ b/metadata/md5-cache/sys-block/fio-3.20-r2 @@ -5,7 +5,7 @@ DESCRIPTION=Jens Axboe's Flexible IO tester EAPI=7 HOMEPAGE=https://brick.kernel.dk/snaps/ IUSE=aio curl glusterfs gnuplot gtk libressl io-uring numa python rbd rdma static tcmalloc test zbc zlib python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 LICENSE=GPL-2 RDEPEND=!static? ( aio? ( dev-libs/libaio ) curl? ( net-misc/curl:= !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) glusterfs? ( sys-cluster/glusterfs ) gtk? ( dev-libs/glib:2 ) io-uring? ( sys-libs/liburing:= ) numa? ( sys-process/numactl ) rbd? ( sys-cluster/ceph ) rdma? ( sys-fabric/libibverbs sys-fabric/librdmacm ) tcmalloc? ( dev-util/google-perftools:= ) zbc? ( >=sys-block/libzbc-5 ) zlib? ( sys-libs/zlib ) ) gtk? ( x11-libs/gtk+:2 ) python? ( python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] || ( ( dev-lang/python:3.8 dev-python/pandas[python_targets_python3_8(-),-python_single_target_python3_8(-)] ) ( dev-lang/python:3.7 dev-python/pandas[python_targets_python3_7(-),-python_single_target_python3_7(-)] ) ) ) gnuplot? ( sci-visualization/gnuplot ) REQUIRED_USE=python? ( || ( python_targets_python3_7 python_targets_python3_8 ) ) libressl? ( curl ) gnuplot? ( python ) io-uring? ( aio ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://brick.kernel.dk/snaps/fio-3.20.tar.bz2 _eclasses_=multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e python-r1 f1d4277b3ad100890cbd62e137f0a769 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=3460cff6528a8b3f70cb068e93c0b0f7 +_md5_=4b3780175f6e89d896e8f49c650323bd diff --git a/metadata/md5-cache/sys-boot/Manifest.gz b/metadata/md5-cache/sys-boot/Manifest.gz index b2d405ee55a6..46ca207281f8 100644 Binary files a/metadata/md5-cache/sys-boot/Manifest.gz and b/metadata/md5-cache/sys-boot/Manifest.gz differ diff --git a/metadata/md5-cache/sys-boot/raspberrypi-firmware-1.20201201 b/metadata/md5-cache/sys-boot/raspberrypi-firmware-1.20201201 index 93e98e84c7fb..dba627480aa4 100644 --- a/metadata/md5-cache/sys-boot/raspberrypi-firmware-1.20201201 +++ b/metadata/md5-cache/sys-boot/raspberrypi-firmware-1.20201201 @@ -2,10 +2,10 @@ DEFINED_PHASES=install postinst postrm preinst prepare prerm pretend DESCRIPTION=Raspberry Pi (all versions) bootloader and GPU firmware EAPI=7 HOMEPAGE=https://github.com/raspberrypi/firmware -KEYWORDS=-* ~arm ~arm64 +KEYWORDS=-* arm arm64 LICENSE=GPL-2 raspberrypi-videocore-bin RESTRICT=binchecks strip SLOT=0 SRC_URI=https://github.com/raspberrypi/firmware/archive/1.20201201.tar.gz -> raspberrypi-firmware-1.20201201.tar.gz _eclasses_=mount-boot 060ced4c5e0fd737db17cbb609bbf557 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 -_md5_=574356d0f82d2e515d76de78a3078bd9 +_md5_=4f169520342dcba9eef634cadfee58ed diff --git a/metadata/md5-cache/sys-fabric/Manifest.gz b/metadata/md5-cache/sys-fabric/Manifest.gz index 21e87d0f49db..cd374ac55477 100644 Binary files a/metadata/md5-cache/sys-fabric/Manifest.gz and b/metadata/md5-cache/sys-fabric/Manifest.gz differ diff --git a/metadata/md5-cache/sys-fabric/libibverbs-1.1.7-r1 b/metadata/md5-cache/sys-fabric/libibverbs-1.1.7-r1 index 013e017484c2..664d35f9a242 100644 --- a/metadata/md5-cache/sys-fabric/libibverbs-1.1.7-r1 +++ b/metadata/md5-cache/sys-fabric/libibverbs-1.1.7-r1 @@ -4,10 +4,10 @@ DESCRIPTION=A library to use InfiniBand 'verbs' for direct access to IB hardware EAPI=5 HOMEPAGE=https://www.openfabrics.org/ 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 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux LICENSE=|| ( GPL-2 BSD-2 ) RDEPEND=!sys-fabric/openib-userspace !sys-fabric/libibverbs:0 !sys-fabric/libibverbs:3.5 SLOT=3.12 SRC_URI=https://www.openfabrics.org/downloads/OFED/ofed-3.12/OFED-3.12-rc1.tgz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 openib 909f509bb9eccc5285f4e3d690395350 preserve-libs ef207dc62baddfddfd39a164d9797648 rpm 760ff223c2c4299b68ea901e24c4cabd toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=47c5a13a972b146621fe5bea89a45a33 +_md5_=aa2dc19efa2e283c664c847c51959802 diff --git a/metadata/md5-cache/sys-fabric/librdmacm-1.0.18-r1 b/metadata/md5-cache/sys-fabric/librdmacm-1.0.18-r1 index 5e2c31fcc46d..98e7a7973c96 100644 --- a/metadata/md5-cache/sys-fabric/librdmacm-1.0.18-r1 +++ b/metadata/md5-cache/sys-fabric/librdmacm-1.0.18-r1 @@ -4,10 +4,10 @@ DESCRIPTION=OpenIB userspace RDMA CM library EAPI=5 HOMEPAGE=https://www.openfabrics.org/ 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 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux LICENSE=|| ( GPL-2 BSD-2 ) RDEPEND=sys-fabric/libibverbs:3.12[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(-)?] !sys-fabric/openib-userspace !sys-fabric/librdmacm:0 !sys-fabric/librdmacm:3.5 SLOT=3.12 SRC_URI=https://www.openfabrics.org/downloads/OFED/ofed-3.12/OFED-3.12-rc1.tgz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 openib 909f509bb9eccc5285f4e3d690395350 preserve-libs ef207dc62baddfddfd39a164d9797648 rpm 760ff223c2c4299b68ea901e24c4cabd toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=125f1934e6e2cf915cd6ee91a726955c +_md5_=0c4fa2441afd2b967fbe228a90def0d6 diff --git a/metadata/md5-cache/sys-firmware/Manifest.gz b/metadata/md5-cache/sys-firmware/Manifest.gz index 247db9eb4c5d..eae25991caa5 100644 Binary files a/metadata/md5-cache/sys-firmware/Manifest.gz and b/metadata/md5-cache/sys-firmware/Manifest.gz differ diff --git a/metadata/md5-cache/sys-firmware/raspberrypi-wifi-ucode-20190114.1_p10 b/metadata/md5-cache/sys-firmware/raspberrypi-wifi-ucode-20190114.1_p10 index 096699ca7f9f..795203ce32de 100644 --- a/metadata/md5-cache/sys-firmware/raspberrypi-wifi-ucode-20190114.1_p10 +++ b/metadata/md5-cache/sys-firmware/raspberrypi-wifi-ucode-20190114.1_p10 @@ -2,9 +2,9 @@ DEFINED_PHASES=install prepare pretend DESCRIPTION=Most up-to-date uCode for the Broadcom wifi chips on Raspberry Pi SBCs EAPI=7 HOMEPAGE=https://github.com/RPi-Distro/firmware-nonfree https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree -KEYWORDS=~arm ~arm64 +KEYWORDS=arm arm64 LICENSE=Broadcom RDEPEND=!sys-kernel/linux-firmware[-savedconfig] SLOT=0 SRC_URI=https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree/firmware-nonfree_20190114-1+rpt10.debian.tar.xz -_md5_=d1a1690efa3fe5263e538c39590fe932 +_md5_=59215fed204c3e7eccf0f0298a8a7c95 diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index 0a016d4d96c1..7f2c5fef5945 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-5.11_rc5 b/metadata/md5-cache/sys-kernel/git-sources-5.11_rc5 new file mode 100644 index 000000000000..fd140bdc0c82 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/git-sources-5.11_rc5 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=>=sys-devel/patch-2.7.5 !build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=The very latest -git version of the Linux kernel +EAPI=6 +HOMEPAGE=https://www.kernel.org +IUSE=symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( 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.11_rc5 +SRC_URI=https://git.kernel.org/torvalds/p/v5.11-rc5/v5.10 -> patch-5.11-rc5.patch https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 29b0ddf528a34e7e8c7c179cfbdb5c26 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=cc0c380790c46c4ebbbd8329b2938991 diff --git a/metadata/md5-cache/sys-libs/Manifest.gz b/metadata/md5-cache/sys-libs/Manifest.gz index 2dab6d1b5e8b..2ecf63d2c8b5 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/db-4.3.29_p1-r3 b/metadata/md5-cache/sys-libs/db-4.3.29_p1-r3 index 84d9a5406ef5..14d427eab159 100644 --- a/metadata/md5-cache/sys-libs/db-4.3.29_p1-r3 +++ b/metadata/md5-cache/sys-libs/db-4.3.29_p1-r3 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst postrm preinst prepare setup test unpack -DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=4.3 SRC_URI=http://download.oracle.com/berkeley-db/db-4.3.29.tar.gz http://www.oracle.com/technology/products/berkeley-db/db/update/4.3.29/patch.4.3.29.1 _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=1f6a34cde042eede3a0f1320fb42a6d5 +_md5_=863e90b5acad572eddb9ea4a8285f56c diff --git a/metadata/md5-cache/sys-libs/db-4.4.20_p4-r3 b/metadata/md5-cache/sys-libs/db-4.4.20_p4-r3 index 2eabf10c3732..58dece8c9bf7 100644 --- a/metadata/md5-cache/sys-libs/db-4.4.20_p4-r3 +++ b/metadata/md5-cache/sys-libs/db-4.4.20_p4-r3 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst postrm preinst prepare setup test unpack -DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=4.4 SRC_URI=http://download.oracle.com/berkeley-db/db-4.4.20.tar.gz mirror://gentoo/db-4.4.20-20060110-rpc_server-java.tar.gz http://www.oracle.com/technology/products/berkeley-db/db/update/4.4.20/patch.4.4.20.1 http://www.oracle.com/technology/products/berkeley-db/db/update/4.4.20/patch.4.4.20.2 http://www.oracle.com/technology/products/berkeley-db/db/update/4.4.20/patch.4.4.20.3 http://www.oracle.com/technology/products/berkeley-db/db/update/4.4.20/patch.4.4.20.4 _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=5677c020984fcbac1d28e58de868af78 +_md5_=b69f42b61531726edf33cf62985d0677 diff --git a/metadata/md5-cache/sys-libs/db-4.5.20_p2-r3 b/metadata/md5-cache/sys-libs/db-4.5.20_p2-r3 index ae13d5f31a5e..f60b84a7bd83 100644 --- a/metadata/md5-cache/sys-libs/db-4.5.20_p2-r3 +++ b/metadata/md5-cache/sys-libs/db-4.5.20_p2-r3 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst postrm preinst prepare setup test unpack -DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=4.5 SRC_URI=http://download.oracle.com/berkeley-db/db-4.5.20.tar.gz http://www.oracle.com/technology/products/berkeley-db/db/update/4.5.20/patch.4.5.20.1 http://www.oracle.com/technology/products/berkeley-db/db/update/4.5.20/patch.4.5.20.2 _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=894406fe24ae88b6e7010d8a47c4391f +_md5_=5bfc03a0745e82b5f2123e5ac64ad190 diff --git a/metadata/md5-cache/sys-libs/db-4.5.20_p2-r4 b/metadata/md5-cache/sys-libs/db-4.5.20_p2-r4 index 56b772d3455d..6ac35281f96f 100644 --- a/metadata/md5-cache/sys-libs/db-4.5.20_p2-r4 +++ b/metadata/md5-cache/sys-libs/db-4.5.20_p2-r4 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst postrm preinst prepare setup test unpack -DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=4.5 SRC_URI=http://download.oracle.com/berkeley-db/db-4.5.20.tar.gz http://www.oracle.com/technology/products/berkeley-db/db/update/4.5.20/patch.4.5.20.1 http://www.oracle.com/technology/products/berkeley-db/db/update/4.5.20/patch.4.5.20.2 _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=231cbc11d70fe9116f6dd9e1b7909290 +_md5_=d5ef73dcd8b10703fcd57a2dfb21e246 diff --git a/metadata/md5-cache/sys-libs/db-4.6.21_p4-r2 b/metadata/md5-cache/sys-libs/db-4.6.21_p4-r2 index 602b4c8f1908..0aa97d22301b 100644 --- a/metadata/md5-cache/sys-libs/db-4.6.21_p4-r2 +++ b/metadata/md5-cache/sys-libs/db-4.6.21_p4-r2 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst postrm preinst prepare setup test unpack -DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=4.6 SRC_URI=http://download.oracle.com/berkeley-db/db-4.6.21.tar.gz http://www.oracle.com/technology/products/berkeley-db/db/update/4.6.21/patch.4.6.21.1 http://www.oracle.com/technology/products/berkeley-db/db/update/4.6.21/patch.4.6.21.2 http://www.oracle.com/technology/products/berkeley-db/db/update/4.6.21/patch.4.6.21.3 http://www.oracle.com/technology/products/berkeley-db/db/update/4.6.21/patch.4.6.21.4 _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=bb230d30c1b60095568939ac13995839 +_md5_=eadd9aa86a0534b7f63c777c3ade797e diff --git a/metadata/md5-cache/sys-libs/db-4.6.21_p4-r3 b/metadata/md5-cache/sys-libs/db-4.6.21_p4-r3 index 3df7dc77435c..2f0cc0b870d5 100644 --- a/metadata/md5-cache/sys-libs/db-4.6.21_p4-r3 +++ b/metadata/md5-cache/sys-libs/db-4.6.21_p4-r3 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst postrm preinst prepare setup test unpack -DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=4.6 SRC_URI=http://download.oracle.com/berkeley-db/db-4.6.21.tar.gz http://www.oracle.com/technology/products/berkeley-db/db/update/4.6.21/patch.4.6.21.1 http://www.oracle.com/technology/products/berkeley-db/db/update/4.6.21/patch.4.6.21.2 http://www.oracle.com/technology/products/berkeley-db/db/update/4.6.21/patch.4.6.21.3 http://www.oracle.com/technology/products/berkeley-db/db/update/4.6.21/patch.4.6.21.4 _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=61696d564a14759866c1d5d46bbd4bff +_md5_=74d753550aa316d83e38ba6e48873aad diff --git a/metadata/md5-cache/sys-libs/db-4.7.25_p4-r2 b/metadata/md5-cache/sys-libs/db-4.7.25_p4-r2 index cdb0389247fb..d10c76943552 100644 --- a/metadata/md5-cache/sys-libs/db-4.7.25_p4-r2 +++ b/metadata/md5-cache/sys-libs/db-4.7.25_p4-r2 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst postrm preinst prepare setup test unpack -DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.5 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.5 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=4.7 SRC_URI=http://download.oracle.com/berkeley-db/db-4.7.25.tar.gz http://www.oracle.com/technology/products/berkeley-db/db/update/4.7.25/patch.4.7.25.1 http://www.oracle.com/technology/products/berkeley-db/db/update/4.7.25/patch.4.7.25.2 http://www.oracle.com/technology/products/berkeley-db/db/update/4.7.25/patch.4.7.25.3 http://www.oracle.com/technology/products/berkeley-db/db/update/4.7.25/patch.4.7.25.4 _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=ef1aa740f966631e057bb9b850e431a3 +_md5_=badbe01ecadf100c57ae399393d8f3b6 diff --git a/metadata/md5-cache/sys-libs/db-4.7.25_p4-r3 b/metadata/md5-cache/sys-libs/db-4.7.25_p4-r3 index 7c50aeb37161..9bad4e120b4f 100644 --- a/metadata/md5-cache/sys-libs/db-4.7.25_p4-r3 +++ b/metadata/md5-cache/sys-libs/db-4.7.25_p4-r3 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst postrm preinst prepare setup test unpack -DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.5 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.4 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.5 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=4.7 SRC_URI=http://download.oracle.com/berkeley-db/db-4.7.25.tar.gz http://www.oracle.com/technology/products/berkeley-db/db/update/4.7.25/patch.4.7.25.1 http://www.oracle.com/technology/products/berkeley-db/db/update/4.7.25/patch.4.7.25.2 http://www.oracle.com/technology/products/berkeley-db/db/update/4.7.25/patch.4.7.25.3 http://www.oracle.com/technology/products/berkeley-db/db/update/4.7.25/patch.4.7.25.4 _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=3f0e8aea4adcc69b4d96ed0754dede6c +_md5_=ce52a188c5ac16a9c0ce3f6c47275da8 diff --git a/metadata/md5-cache/sys-libs/db-4.8.30-r3 b/metadata/md5-cache/sys-libs/db-4.8.30-r3 index 236c078ef8e4..670808d86a2c 100644 --- a/metadata/md5-cache/sys-libs/db-4.8.30-r3 +++ b/metadata/md5-cache/sys-libs/db-4.8.30-r3 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=4.8 SRC_URI=http://download.oracle.com/berkeley-db/db-4.8.30.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=7a3588029821166f042dfb8857256514 +_md5_=d9f0e7b68f471ca3ed83fe7d1939bf16 diff --git a/metadata/md5-cache/sys-libs/db-4.8.30-r4 b/metadata/md5-cache/sys-libs/db-4.8.30-r4 index e6248c013d01..278dbaa35105 100644 --- a/metadata/md5-cache/sys-libs/db-4.8.30-r4 +++ b/metadata/md5-cache/sys-libs/db-4.8.30-r4 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=4.8 SRC_URI=http://download.oracle.com/berkeley-db/db-4.8.30.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=bb2f8094b0a6499efb80b7776bb10d12 +_md5_=bc3c961501d8ac4ca758ccf69247e627 diff --git a/metadata/md5-cache/sys-libs/db-5.1.29-r2 b/metadata/md5-cache/sys-libs/db-5.1.29-r2 index 7b91cda027ad..5e9c57e3ea30 100644 --- a/metadata/md5-cache/sys-libs/db-5.1.29-r2 +++ b/metadata/md5-cache/sys-libs/db-5.1.29-r2 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst postrm preinst prepare setup test -DEPEND=tcl? ( >=dev-lang/tcl-8.4:0 ) test? ( >=dev-lang/tcl-8.4:0 ) java? ( >=virtual/jdk-1.5 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.4:0 ) test? ( >=dev-lang/tcl-8.4:0 ) java? ( >=virtual/jdk-1.5 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=5.1 SRC_URI=http://download.oracle.com/berkeley-db/db-5.1.29.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b4ef0052d4e0051fa34c6b68648f43f9 +_md5_=ea99e94268f6173e400bda571fada607 diff --git a/metadata/md5-cache/sys-libs/db-5.3.28-r4 b/metadata/md5-cache/sys-libs/db-5.3.28-r4 index 26b6230b2e16..034a059da821 100644 --- a/metadata/md5-cache/sys-libs/db-5.3.28-r4 +++ b/metadata/md5-cache/sys-libs/db-5.3.28-r4 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=5.3 SRC_URI=http://download.oracle.com/berkeley-db/db-5.3.28.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=7d4c25cf97b0fc9311eb6475e04de6df +_md5_=1a47038a6d7d950f23f9b79d0ccf4476 diff --git a/metadata/md5-cache/sys-libs/db-5.3.28-r5 b/metadata/md5-cache/sys-libs/db-5.3.28-r5 index dc27200b889f..e72f4c9f0d84 100644 --- a/metadata/md5-cache/sys-libs/db-5.3.28-r5 +++ b/metadata/md5-cache/sys-libs/db-5.3.28-r5 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=5.3 SRC_URI=http://download.oracle.com/berkeley-db/db-5.3.28.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=f9723cedf6a14b83a630cf9584345aa0 +_md5_=58aa072fab6fa4e3a8ca42465e2e932c diff --git a/metadata/md5-cache/sys-libs/db-6.0.35-r2 b/metadata/md5-cache/sys-libs/db-6.0.35-r2 index bb80354d5ccd..f49e328af739 100644 --- a/metadata/md5-cache/sys-libs/db-6.0.35-r2 +++ b/metadata/md5-cache/sys-libs/db-6.0.35-r2 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=6.0 SRC_URI=http://download.oracle.com/berkeley-db/db-6.0.35.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=8acdb3968f0021c481d6d8916bb0b129 +_md5_=f2c51c369b05b914f5cd5ca807d2ffb7 diff --git a/metadata/md5-cache/sys-libs/db-6.0.35-r3 b/metadata/md5-cache/sys-libs/db-6.0.35-r3 index 328b63a7ddb3..671467159e88 100644 --- a/metadata/md5-cache/sys-libs/db-6.0.35-r3 +++ b/metadata/md5-cache/sys-libs/db-6.0.35-r3 @@ -1,6 +1,6 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) >=sys-devel/binutils-2.16.1 test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=tcl? ( >=dev-lang/tcl-8.5.15-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(-)?] ) test? ( >=dev-lang/tcl-8.5.15-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(-)?] ) java? ( >=virtual/jdk-1.5 ) test? ( >=dev-lang/tcl-8.4 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Oracle Berkeley DB EAPI=7 HOMEPAGE=http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=6.0 SRC_URI=http://download.oracle.com/berkeley-db/db-6.0.35.tar.gz _eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 db c42a9015ada022c979cd2ca4bc247821 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 378e4cda228ea0231a0ac283cb2ad25c l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b7f25804dccda9d18e03d37f0f1c0d6d +_md5_=54d57e5569287c673d7c154f504b7e57 diff --git a/metadata/md5-cache/sys-libs/ldb-2.2.0-r1 b/metadata/md5-cache/sys-libs/ldb-2.2.0-r1 deleted file mode 100644 index ef6630c94fb8..000000000000 --- a/metadata/md5-cache/sys-libs/ldb-2.2.0-r1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=dev-libs/libxslt doc? ( app-doc/doxygen ) virtual/pkgconfig python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) !elibc_FreeBSD? ( dev-libs/libbsd[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/popt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-util/cmocka-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(-)?] >=sys-libs/talloc-2.3.1[python?,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/tdb-1.4.3[python?,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/tevent-0.10.2[python(+)?,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? ( net-nds/openldap ) lmdb? ( >=dev-db/lmdb-0.9.16[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) -DESCRIPTION=An LDAP-like embedded database -EAPI=6 -HOMEPAGE=https://ldb.samba.org -IUSE=doc +ldap +lmdb python test python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 -LICENSE=LGPL-3 -RDEPEND=!elibc_FreeBSD? ( dev-libs/libbsd[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/popt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-util/cmocka-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(-)?] >=sys-libs/talloc-2.3.1[python?,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/tdb-1.4.3[python?,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/tevent-0.10.2[python(+)?,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? ( net-nds/openldap ) lmdb? ( >=dev-db/lmdb-0.9.16[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) -REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) test? ( python ) -RESTRICT=!test? ( test ) -SLOT=0/2.2.0 -SRC_URI=https://www.samba.org/ftp/pub/ldb/ldb-2.2.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf waf-utils 0a6e492cdcbd52b1304cfcd9eba5abc6 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=c1e192dfd1c3839b587ee90ddf005c48 diff --git a/metadata/md5-cache/sys-libs/ldb-2.2.0-r2 b/metadata/md5-cache/sys-libs/ldb-2.2.0-r2 new file mode 100644 index 000000000000..22837bbf1279 --- /dev/null +++ b/metadata/md5-cache/sys-libs/ldb-2.2.0-r2 @@ -0,0 +1,16 @@ +BDEPEND=python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) dev-libs/libxslt virtual/pkgconfig doc? ( app-doc/doxygen ) +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=!elibc_FreeBSD? ( dev-libs/libbsd[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/popt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-util/cmocka-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(-)?] >=sys-libs/talloc-2.3.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(-)?] >=sys-libs/tdb-1.4.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(-)?] >=sys-libs/tevent-0.10.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(-)?] ldap? ( net-nds/openldap ) lmdb? ( >=dev-db/lmdb-0.9.16[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) sys-libs/talloc[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] sys-libs/tdb[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] sys-libs/tevent[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] ) +DESCRIPTION=LDAP-like embedded database +EAPI=7 +HOMEPAGE=https://ldb.samba.org +IUSE=doc +ldap +lmdb python test python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=LGPL-3 +RDEPEND=!elibc_FreeBSD? ( dev-libs/libbsd[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/popt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-util/cmocka-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(-)?] >=sys-libs/talloc-2.3.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(-)?] >=sys-libs/tdb-1.4.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(-)?] >=sys-libs/tevent-0.10.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(-)?] ldap? ( net-nds/openldap ) lmdb? ( >=dev-db/lmdb-0.9.16[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) sys-libs/talloc[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] sys-libs/tdb[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] sys-libs/tevent[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] ) +REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) test? ( python ) +RESTRICT=!test? ( test ) +SLOT=0/2.2.0 +SRC_URI=https://samba.org/ftp/pub/ldb/ldb-2.2.0.tar.gz +_eclasses_=multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 waf-utils 0a6e492cdcbd52b1304cfcd9eba5abc6 +_md5_=765d235a2b224a6bb12a20cd40139d16 diff --git a/metadata/md5-cache/sys-libs/libcap-2.45 b/metadata/md5-cache/sys-libs/libcap-2.47 similarity index 96% rename from metadata/md5-cache/sys-libs/libcap-2.45 rename to metadata/md5-cache/sys-libs/libcap-2.47 index a91923ced116..fbdbc45478c0 100644 --- a/metadata/md5-cache/sys-libs/libcap-2.45 +++ b/metadata/md5-cache/sys-libs/libcap-2.47 @@ -10,6 +10,6 @@ PDEPEND=pam? ( sys-libs/pam[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mi RDEPEND=>=sys-apps/attr-2.4.47-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 SLOT=0 -SRC_URI=https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-2.45.tar.xz +SRC_URI=https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-2.47.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 pam b097695df28f3974e3af860d6704d4f2 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 usr-ldscript 7c918d239d0f9098867d0c8e33348fc9 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=34e7f78550009c3b049abd38e2401bea +_md5_=26d3b9c683ce2ab22d33d12446524803 diff --git a/metadata/md5-cache/sys-libs/talloc-2.3.1 b/metadata/md5-cache/sys-libs/talloc-2.3.1 index d002645c63c2..1075ceff1321 100644 --- a/metadata/md5-cache/sys-libs/talloc-2.3.1 +++ b/metadata/md5-cache/sys-libs/talloc-2.3.1 @@ -1,7 +1,8 @@ +BDEPEND=python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) dev-libs/libxslt sys-devel/gettext DEFINED_PHASES=compile configure install prepare setup test -DEPEND=!elibc_FreeBSD? ( !elibc_SunOS? ( !elibc_Darwin? ( dev-libs/libbsd[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? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) !!=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) +DEPEND=!elibc_FreeBSD? ( !elibc_SunOS? ( !elibc_Darwin? ( dev-libs/libbsd[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? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) !!=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-text/docbook-xml-dtd:4.2 DEFINED_PHASES=compile configure install prepare setup test -DEPEND=!elibc_FreeBSD? ( dev-libs/libbsd[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? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-text/docbook-xml-dtd:4.2 -DESCRIPTION=A simple database API -EAPI=6 +DEPEND=!elibc_FreeBSD? ( dev-libs/libbsd[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? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) +DESCRIPTION=Simple database API +EAPI=7 HOMEPAGE=https://tdb.samba.org/ IUSE=python 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_7 python_single_target_python3_8 python_single_target_python3_9 KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux @@ -12,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://samba.org/ftp/tdb/tdb-1.4.3.tar.gz _eclasses_=multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 waf-utils 0a6e492cdcbd52b1304cfcd9eba5abc6 -_md5_=ace5447ea175d7e318dce35bc3961132 +_md5_=c2dc6f8f9e4e1d7f945291265159d269 diff --git a/metadata/md5-cache/sys-libs/tevent-0.10.2 b/metadata/md5-cache/sys-libs/tevent-0.10.2 index 31c46fc35572..3ce357cb2dae 100644 --- a/metadata/md5-cache/sys-libs/tevent-0.10.2 +++ b/metadata/md5-cache/sys-libs/tevent-0.10.2 @@ -1,15 +1,16 @@ +BDEPEND=python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) virtual/pkgconfig DEFINED_PHASES=compile configure install prepare setup test -DEPEND=!elibc_FreeBSD? ( dev-libs/libbsd[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/talloc-2.3.1[python?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] python? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) virtual/pkgconfig elibc_glibc? ( net-libs/libtirpc[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/rpcsvc-proto =dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) +DEPEND=!elibc_FreeBSD? ( dev-libs/libbsd[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/talloc-2.3.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(-)?] python? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) sys-libs/talloc[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] ) elibc_glibc? ( net-libs/libtirpc[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/rpcsvc-proto =sys-libs/talloc-2.3.1[python?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] python? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) +RDEPEND=!elibc_FreeBSD? ( dev-libs/libbsd[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/talloc-2.3.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(-)?] python? ( python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) sys-libs/talloc[python,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?] ) REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) RESTRICT=test SLOT=0 -SRC_URI=https://www.samba.org/ftp/tevent/tevent-0.10.2.tar.gz +SRC_URI=https://samba.org/ftp/tevent/tevent-0.10.2.tar.gz _eclasses_=multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 waf-utils 0a6e492cdcbd52b1304cfcd9eba5abc6 -_md5_=c23f6adaa647b1568e3aeff1e2357671 +_md5_=dc95e1baa8e69db58dd3ebd4ff67de77 diff --git a/metadata/md5-cache/sys-process/Manifest.gz b/metadata/md5-cache/sys-process/Manifest.gz index 7ae70fe08d77..d919a8b5e2f3 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/procps-3.3.15-r1 b/metadata/md5-cache/sys-process/procps-3.3.15-r1 deleted file mode 100644 index df44a2b0eab9..000000000000 --- a/metadata/md5-cache/sys-process/procps-3.3.15-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install test -DEPEND=elogind? ( sys-auth/elogind ) ncurses? ( >=sys-libs/ncurses-5.7-r7:=[unicode?] ) selinux? ( sys-libs/libselinux ) systemd? ( sys-apps/systemd ) elogind? ( virtual/pkgconfig ) ncurses? ( virtual/pkgconfig ) systemd? ( virtual/pkgconfig ) test? ( dev-util/dejagnu ) -DESCRIPTION=standard informational utilities and process-handling tools -EAPI=6 -HOMEPAGE=http://procps-ng.sourceforge.net/ https://gitlab.com/procps-ng/procps -IUSE=elogind +kill modern-top +ncurses nls selinux static-libs systemd test unicode split-usr -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux -LICENSE=GPL-2 -RDEPEND=elogind? ( sys-auth/elogind ) ncurses? ( >=sys-libs/ncurses-5.7-r7:=[unicode?] ) selinux? ( sys-libs/libselinux ) systemd? ( sys-apps/systemd ) kill? ( !sys-apps/coreutils[kill] !sys-apps/util-linux[kill] ) !=sys-libs/ncurses-5.7-r7:=[unicode?] ) selinux? ( sys-libs/libselinux[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[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) elogind? ( virtual/pkgconfig ) ncurses? ( virtual/pkgconfig ) systemd? ( virtual/pkgconfig ) test? ( dev-util/dejagnu ) +DESCRIPTION=standard informational utilities and process-handling tools +EAPI=7 +HOMEPAGE=http://procps-ng.sourceforge.net/ https://gitlab.com/procps-ng/procps +IUSE=elogind +kill modern-top +ncurses nls selinux static-libs systemd test unicode abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 split-usr +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=elogind? ( sys-auth/elogind ) ncurses? ( >=sys-libs/ncurses-5.7-r7:=[unicode?] ) selinux? ( sys-libs/libselinux[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[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kill? ( !sys-apps/coreutils[kill] !sys-apps/util-linux[kill] ) !perl-core/Data-Dumper-2.174.0-r999 +RDEPEND=|| ( =dev-lang/perl-5.32.0* =dev-lang/perl-5.30* ~perl-core/Data-Dumper-2.174.0 ) dev-lang/perl:= !perl-core/Data-Dumper-2.174.0-r999 SLOT=0 -_md5_=5472d87650fa5e44cc2138174d31610c +_md5_=d4662af1dd8cee638d2a6a33cf946852 diff --git a/metadata/md5-cache/virtual/perl-Data-Dumper-2.174.10_rc b/metadata/md5-cache/virtual/perl-Data-Dumper-2.174.10_rc new file mode 100644 index 000000000000..38378fc52678 --- /dev/null +++ b/metadata/md5-cache/virtual/perl-Data-Dumper-2.174.10_rc @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual for Data-Dumper +EAPI=7 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +RDEPEND=|| ( =dev-lang/perl-5.32.1* ~perl-core/Data-Dumper-2.174.10_rc ) dev-lang/perl:= !perl-core/Data-Dumper-2.174.10_rc-r999 +SLOT=0 +_md5_=ab89ebdc7db98c88473fc61f742ac926 diff --git a/metadata/md5-cache/virtual/perl-Module-CoreList-5.202.101.230 b/metadata/md5-cache/virtual/perl-Module-CoreList-5.202.101.230 new file mode 100644 index 000000000000..057e1a66ca58 --- /dev/null +++ b/metadata/md5-cache/virtual/perl-Module-CoreList-5.202.101.230 @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual for Module-CoreList +EAPI=6 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +RDEPEND=|| ( =dev-lang/perl-5.32.1* ~perl-core/Module-CoreList-5.202.101.230 ) dev-lang/perl:= !perl-core/Module-CoreList-5.202.101.230-r999 +SLOT=0 +_md5_=6f8f991da9347364ddfb205ff1efaa40 diff --git a/metadata/md5-cache/virtual/perl-Safe-2.410.0 b/metadata/md5-cache/virtual/perl-Safe-2.410.0-r1 similarity index 60% rename from metadata/md5-cache/virtual/perl-Safe-2.410.0 rename to metadata/md5-cache/virtual/perl-Safe-2.410.0-r1 index ec1df6f8137e..7a4a7d9564af 100644 --- a/metadata/md5-cache/virtual/perl-Safe-2.410.0 +++ b/metadata/md5-cache/virtual/perl-Safe-2.410.0-r1 @@ -2,6 +2,6 @@ DEFINED_PHASES=- DESCRIPTION=Virtual for Safe EAPI=7 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -RDEPEND=|| ( =dev-lang/perl-5.32* ~perl-core/Safe-2.410.0 ) dev-lang/perl:= !perl-core/Safe-2.410.0-r999 +RDEPEND=|| ( =dev-lang/perl-5.32.0* ~perl-core/Safe-2.410.0 ) dev-lang/perl:= !perl-core/Safe-2.410.0-r999 SLOT=0 -_md5_=5fa9a35a853825cfec66a4c851f73821 +_md5_=2643b581e5b6740f8b835d1c6b484ba1 diff --git a/metadata/md5-cache/virtual/perl-Safe-2.410.100_rc b/metadata/md5-cache/virtual/perl-Safe-2.410.100_rc new file mode 100644 index 000000000000..e238ee1e8ac8 --- /dev/null +++ b/metadata/md5-cache/virtual/perl-Safe-2.410.100_rc @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual for Safe +EAPI=7 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +RDEPEND=|| ( =dev-lang/perl-5.32.1* ~perl-core/Safe-2.410.100_rc ) dev-lang/perl:= !perl-core/Safe-2.410.100_rc-r999 +SLOT=0 +_md5_=a350f7ee42dae717457d31ac8b474ecc diff --git a/metadata/md5-cache/www-apache/Manifest.gz b/metadata/md5-cache/www-apache/Manifest.gz index 1984de9d309e..eb7e7ae901d5 100644 Binary files a/metadata/md5-cache/www-apache/Manifest.gz and b/metadata/md5-cache/www-apache/Manifest.gz differ diff --git a/metadata/md5-cache/www-apache/mod_security-2.9.3 b/metadata/md5-cache/www-apache/mod_security-2.9.3 deleted file mode 100644 index 9d98c3290379..000000000000 --- a/metadata/md5-cache/www-apache/mod_security-2.9.3 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst setup -DEPEND=dev-libs/apr dev-libs/apr-util[openssl] dev-libs/libxml2 dev-libs/libpcre[jit?] fuzzyhash? ( app-crypt/ssdeep ) json? ( dev-libs/yajl ) lua? ( dev-lang/lua:0 ) mlogc? ( net-misc/curl ) www-servers/apache[apache2_modules_unique_id] doc? ( app-doc/doxygen ) =www-servers/apache-2* -DESCRIPTION=Application firewall and intrusion detection for Apache -EAPI=6 -HOMEPAGE=https://www.modsecurity.org/ -IUSE=doc fuzzyhash geoip jit json lua mlogc -KEYWORDS=amd64 x86 -LICENSE=Apache-2.0 -PDEPEND=>=www-apache/modsecurity-crs-2.2.6-r1 -RDEPEND=dev-libs/apr dev-libs/apr-util[openssl] dev-libs/libxml2 dev-libs/libpcre[jit?] fuzzyhash? ( app-crypt/ssdeep ) json? ( dev-libs/yajl ) lua? ( dev-lang/lua:0 ) mlogc? ( net-misc/curl ) www-servers/apache[apache2_modules_unique_id] geoip? ( dev-libs/geoip ) mlogc? ( dev-lang/perl ) =www-servers/apache-2* -RESTRICT=test -SLOT=0 -SRC_URI=https://www.modsecurity.org/tarball/2.9.3/modsecurity-2.9.3.tar.gz -_eclasses_=apache-module b40f49b22e6e55c4a17f7ecded4f0425 depend.apache 94458fe4e9466f4803360408e60e11fd -_md5_=885307d01eb42e0030e2a0ada13d5cbe diff --git a/metadata/md5-cache/www-apps/Manifest.gz b/metadata/md5-cache/www-apps/Manifest.gz index 8b4ef5a02e31..134293360a86 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/cgit-1.2.1 b/metadata/md5-cache/www-apps/cgit-1.2.1 deleted file mode 100644 index 192aed30fc63..000000000000 --- a/metadata/md5-cache/www-apps/cgit-1.2.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare prerm setup -DEPEND=dev-vcs/git sys-libs/zlib virtual/httpd-cgi highlight? ( || ( dev-python/pygments app-text/highlight ) ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) lua? ( jit? ( dev-lang/luajit ) !jit? ( dev-lang/lua:0 ) ) !=app-text/asciidoc-8.5.1 ) >=app-admin/webapp-config-1.50.15 -DESCRIPTION=a fast web-interface for git repositories -EAPI=5 -HOMEPAGE=https://git.zx2c4.com/cgit/about -IUSE=doc +highlight libressl +lua +jit vhosts -KEYWORDS=amd64 arm x86 -LICENSE=GPL-2 -RDEPEND=dev-vcs/git sys-libs/zlib virtual/httpd-cgi highlight? ( || ( dev-python/pygments app-text/highlight ) ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) lua? ( jit? ( dev-lang/luajit ) !jit? ( dev-lang/lua:0 ) ) >=app-admin/webapp-config-1.50.15 -SLOT=0 -SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.18.0.tar.xz https://git.zx2c4.com/cgit/snapshot/cgit-1.2.1.tar.xz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf webapp 1d03df021d958f89f4cc78e289d0b116 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=00028759b9ab7df87cc6a2598599bdd9 diff --git a/metadata/md5-cache/www-apps/cgit-1.2.3 b/metadata/md5-cache/www-apps/cgit-1.2.3 deleted file mode 100644 index 16d1ae309dea..000000000000 --- a/metadata/md5-cache/www-apps/cgit-1.2.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare prerm setup -DEPEND=dev-vcs/git sys-libs/zlib virtual/httpd-cgi highlight? ( || ( dev-python/pygments app-text/highlight ) ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) lua? ( luajit? ( dev-lang/luajit ) !luajit? ( dev-lang/lua:0 ) ) doc? ( app-text/docbook-xsl-stylesheets >=app-text/asciidoc-8.5.1 ) >=app-admin/webapp-config-1.50.15 -DESCRIPTION=a fast web-interface for git repositories -EAPI=5 -HOMEPAGE=https://git.zx2c4.com/cgit/about -IUSE=doc +highlight libressl +lua +luajit vhosts -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=GPL-2 -RDEPEND=dev-vcs/git sys-libs/zlib virtual/httpd-cgi highlight? ( || ( dev-python/pygments app-text/highlight ) ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) lua? ( luajit? ( dev-lang/luajit ) !luajit? ( dev-lang/lua:0 ) ) >=app-admin/webapp-config-1.50.15 -SLOT=0 -SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.25.1.tar.xz https://git.zx2c4.com/cgit/snapshot/cgit-1.2.3.tar.xz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf webapp 1d03df021d958f89f4cc78e289d0b116 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e449ef9d89b457ccd2c68536a528fefc diff --git a/metadata/md5-cache/www-apps/cgit-1.2.3-r1 b/metadata/md5-cache/www-apps/cgit-1.2.3-r1 deleted file mode 100644 index 55fe16c21d60..000000000000 --- a/metadata/md5-cache/www-apps/cgit-1.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare prerm setup test -DEPEND=acct-group/cgit acct-user/cgit dev-vcs/git highlight? ( || ( dev-python/pygments app-text/highlight ) ) lua? ( luajit? ( dev-lang/luajit ) !luajit? ( dev-lang/lua:0 ) ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sys-libs/zlib virtual/httpd-cgi doc? ( app-text/docbook-xsl-stylesheets >=app-text/asciidoc-8.5.1 ) >=app-admin/webapp-config-1.50.15 -DESCRIPTION=a fast web-interface for git repositories -EAPI=7 -HOMEPAGE=https://git.zx2c4.com/cgit/about -IUSE=doc +highlight libressl +lua +luajit test vhosts -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=GPL-2 -RDEPEND=acct-group/cgit acct-user/cgit dev-vcs/git highlight? ( || ( dev-python/pygments app-text/highlight ) ) lua? ( luajit? ( dev-lang/luajit ) !luajit? ( dev-lang/lua:0 ) ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sys-libs/zlib virtual/httpd-cgi >=app-admin/webapp-config-1.50.15 -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.25.1.tar.xz https://git.zx2c4.com/cgit/snapshot/cgit-1.2.3.tar.xz -_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=130ff611369063bde4ff830930dd9a8e diff --git a/metadata/md5-cache/www-apps/jekyll-4.2.0 b/metadata/md5-cache/www-apps/jekyll-4.2.0 new file mode 100644 index 000000000000..edff4bb76bef --- /dev/null +++ b/metadata/md5-cache/www-apps/jekyll-4.2.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby25? ( >=dev-ruby/addressable-2.4[ruby_targets_ruby25(-)] >=dev-ruby/colorator-1.0[ruby_targets_ruby25(-)] >=dev-ruby/em-websocket-0.5[ruby_targets_ruby25(-)] dev-ruby/i18n:1[ruby_targets_ruby25(-)] >=dev-ruby/kramdown-2.1:2[ruby_targets_ruby25(-)] dev-ruby/kramdown-parser-gfm:1[ruby_targets_ruby25(-)] dev-ruby/liquid:4[ruby_targets_ruby25(-)] >=dev-ruby/mercenary-0.4.0[ruby_targets_ruby25(-)] >=dev-ruby/pathutil-0.9[ruby_targets_ruby25(-)] =dev-ruby/rouge-3*[ruby_targets_ruby25(-)] >=dev-ruby/safe_yaml-1.0[ruby_targets_ruby25(-)] >=dev-ruby/terminal-table-1.8:0[ruby_targets_ruby25(-)] >=www-apps/jekyll-sass-converter-2.0[ruby_targets_ruby25(-)] >=www-apps/jekyll-watch-2.0[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/addressable-2.4[ruby_targets_ruby26(-)] >=dev-ruby/colorator-1.0[ruby_targets_ruby26(-)] >=dev-ruby/em-websocket-0.5[ruby_targets_ruby26(-)] dev-ruby/i18n:1[ruby_targets_ruby26(-)] >=dev-ruby/kramdown-2.1:2[ruby_targets_ruby26(-)] dev-ruby/kramdown-parser-gfm:1[ruby_targets_ruby26(-)] dev-ruby/liquid:4[ruby_targets_ruby26(-)] >=dev-ruby/mercenary-0.4.0[ruby_targets_ruby26(-)] >=dev-ruby/pathutil-0.9[ruby_targets_ruby26(-)] =dev-ruby/rouge-3*[ruby_targets_ruby26(-)] >=dev-ruby/safe_yaml-1.0[ruby_targets_ruby26(-)] >=dev-ruby/terminal-table-1.8:0[ruby_targets_ruby26(-)] >=www-apps/jekyll-sass-converter-2.0[ruby_targets_ruby26(-)] >=www-apps/jekyll-watch-2.0[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( test? ( >=dev-ruby/classifier-reborn-2.1.0[ruby_targets_ruby25(-)] dev-ruby/httpclient[ruby_targets_ruby25(-)] dev-ruby/kramdown-syntax-coderay[ruby_targets_ruby25(-)] dev-ruby/launchy[ruby_targets_ruby25(-)] dev-ruby/nokogiri[ruby_targets_ruby25(-)] >=dev-ruby/rdiscount-2.0[ruby_targets_ruby25(-)] >=dev-ruby/redcarpet-3.2.3[ruby_targets_ruby25(-)] dev-ruby/rspec-mocks[ruby_targets_ruby25(-)] >=dev-ruby/shoulda-3[ruby_targets_ruby25(-)] dev-ruby/test-unit:2[ruby_targets_ruby25(-)] www-apps/jekyll-coffeescript[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( >=dev-ruby/classifier-reborn-2.1.0[ruby_targets_ruby26(-)] dev-ruby/httpclient[ruby_targets_ruby26(-)] dev-ruby/kramdown-syntax-coderay[ruby_targets_ruby26(-)] dev-ruby/launchy[ruby_targets_ruby26(-)] dev-ruby/nokogiri[ruby_targets_ruby26(-)] >=dev-ruby/rdiscount-2.0[ruby_targets_ruby26(-)] >=dev-ruby/redcarpet-3.2.3[ruby_targets_ruby26(-)] dev-ruby/rspec-mocks[ruby_targets_ruby26(-)] >=dev-ruby/shoulda-3[ruby_targets_ruby26(-)] dev-ruby/test-unit:2[ruby_targets_ruby26(-)] www-apps/jekyll-coffeescript[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) +DESCRIPTION=A simple, blog aware, static site generator +EAPI=7 +HOMEPAGE=https://jekyllrb.com https://github.com/jekyll/jekyll +IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 doc test test +KEYWORDS=~amd64 ~arm64 +LICENSE=MIT +RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/addressable-2.4[ruby_targets_ruby25(-)] >=dev-ruby/colorator-1.0[ruby_targets_ruby25(-)] >=dev-ruby/em-websocket-0.5[ruby_targets_ruby25(-)] dev-ruby/i18n:1[ruby_targets_ruby25(-)] >=dev-ruby/kramdown-2.1:2[ruby_targets_ruby25(-)] dev-ruby/kramdown-parser-gfm:1[ruby_targets_ruby25(-)] dev-ruby/liquid:4[ruby_targets_ruby25(-)] >=dev-ruby/mercenary-0.4.0[ruby_targets_ruby25(-)] >=dev-ruby/pathutil-0.9[ruby_targets_ruby25(-)] =dev-ruby/rouge-3*[ruby_targets_ruby25(-)] >=dev-ruby/safe_yaml-1.0[ruby_targets_ruby25(-)] >=dev-ruby/terminal-table-1.8:0[ruby_targets_ruby25(-)] >=www-apps/jekyll-sass-converter-2.0[ruby_targets_ruby25(-)] >=www-apps/jekyll-watch-2.0[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/addressable-2.4[ruby_targets_ruby26(-)] >=dev-ruby/colorator-1.0[ruby_targets_ruby26(-)] >=dev-ruby/em-websocket-0.5[ruby_targets_ruby26(-)] dev-ruby/i18n:1[ruby_targets_ruby26(-)] >=dev-ruby/kramdown-2.1:2[ruby_targets_ruby26(-)] dev-ruby/kramdown-parser-gfm:1[ruby_targets_ruby26(-)] dev-ruby/liquid:4[ruby_targets_ruby26(-)] >=dev-ruby/mercenary-0.4.0[ruby_targets_ruby26(-)] >=dev-ruby/pathutil-0.9[ruby_targets_ruby26(-)] =dev-ruby/rouge-3*[ruby_targets_ruby26(-)] >=dev-ruby/safe_yaml-1.0[ruby_targets_ruby26(-)] >=dev-ruby/terminal-table-1.8:0[ruby_targets_ruby26(-)] >=www-apps/jekyll-sass-converter-2.0[ruby_targets_ruby26(-)] >=www-apps/jekyll-watch-2.0[ruby_targets_ruby26(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/jekyll/jekyll/archive/v4.2.0.tar.gz -> jekyll-4.2.0.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d410501a125f99ffb560b0c523cd3d1e ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 03dfa7f54d59d740c2964dc7256d2820 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=cae9f7dca05c3fbc2f411a2ae832237b diff --git a/metadata/md5-cache/www-apps/moodle-3.9.3 b/metadata/md5-cache/www-apps/moodle-3.10.1 similarity index 83% rename from metadata/md5-cache/www-apps/moodle-3.9.3 rename to metadata/md5-cache/www-apps/moodle-3.10.1 index 215abf05d72b..d51d94decf39 100644 --- a/metadata/md5-cache/www-apps/moodle-3.9.3 +++ b/metadata/md5-cache/www-apps/moodle-3.10.1 @@ -7,7 +7,7 @@ IUSE=mysqli mssql postgres imap ldap odbc vhosts vhosts KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-3+ RDEPEND=>=dev-lang/php-7.2[mysqli?,mssql?,postgres?,imap?,ldap?,odbc?,ctype,curl,iconv,json,session,simplexml,xml,zip,gd,intl,soap,ssl,tokenizer,xmlrpc] virtual/httpd-php virtual/cron >=app-admin/webapp-config-1.50.15 -SLOT=3.9.3 -SRC_URI=https://download.moodle.org/stable39/moodle-3.9.3.tgz +SLOT=3.10.1 +SRC_URI=https://download.moodle.org/stable310/moodle-3.10.1.tgz _eclasses_=webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=7b06e3705765f57dd329a0030d598269 +_md5_=334ec8cf381cb26d4fc2ab834bdbf6eb diff --git a/metadata/md5-cache/www-apps/moodle-3.5.15 b/metadata/md5-cache/www-apps/moodle-3.5.16 similarity index 83% rename from metadata/md5-cache/www-apps/moodle-3.5.15 rename to metadata/md5-cache/www-apps/moodle-3.5.16 index fa15f33f8b55..4146974f444b 100644 --- a/metadata/md5-cache/www-apps/moodle-3.5.15 +++ b/metadata/md5-cache/www-apps/moodle-3.5.16 @@ -7,7 +7,7 @@ IUSE=mysqli mssql postgres imap ldap odbc vhosts vhosts KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-3+ RDEPEND=>=dev-lang/php-7.0[mysqli?,mssql?,postgres?,imap?,ldap?,odbc?,ctype,curl,iconv,json,session,simplexml,xml,zip,gd,intl,soap,ssl,tokenizer,xmlrpc] virtual/httpd-php virtual/cron >=app-admin/webapp-config-1.50.15 -SLOT=3.5.15 -SRC_URI=https://download.moodle.org/stable35/moodle-3.5.15.tgz +SLOT=3.5.16 +SRC_URI=https://download.moodle.org/stable35/moodle-3.5.16.tgz _eclasses_=webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=dd2cf54713894595d75f17b1a8aca0cf +_md5_=96531b830097a8d2a4913e76740cac3c diff --git a/metadata/md5-cache/www-apps/moodle-3.8.6 b/metadata/md5-cache/www-apps/moodle-3.8.6 deleted file mode 100644 index 6dd4b733c891..000000000000 --- a/metadata/md5-cache/www-apps/moodle-3.8.6 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install postinst prepare prerm setup -DEPEND=>=app-admin/webapp-config-1.50.15 -DESCRIPTION=The Moodle Course Management System -EAPI=7 -HOMEPAGE=https://moodle.org -IUSE=mysqli mssql postgres imap ldap odbc vhosts vhosts -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-3+ -RDEPEND=>=dev-lang/php-7.1[mysqli?,mssql?,postgres?,imap?,ldap?,odbc?,ctype,curl,iconv,json,session,simplexml,xml,zip,gd,intl,soap,ssl,tokenizer,xmlrpc] virtual/httpd-php virtual/cron >=app-admin/webapp-config-1.50.15 -SLOT=3.8.6 -SRC_URI=https://download.moodle.org/stable38/moodle-3.8.6.tgz -_eclasses_=webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=e9fe778fe0771a874d45752aba33919a diff --git a/metadata/md5-cache/www-apps/moodle-3.7.9 b/metadata/md5-cache/www-apps/moodle-3.8.7 similarity index 83% rename from metadata/md5-cache/www-apps/moodle-3.7.9 rename to metadata/md5-cache/www-apps/moodle-3.8.7 index baa11bf3c121..114703ec76d3 100644 --- a/metadata/md5-cache/www-apps/moodle-3.7.9 +++ b/metadata/md5-cache/www-apps/moodle-3.8.7 @@ -7,7 +7,7 @@ IUSE=mysqli mssql postgres imap ldap odbc vhosts vhosts KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-3+ RDEPEND=>=dev-lang/php-7.1[mysqli?,mssql?,postgres?,imap?,ldap?,odbc?,ctype,curl,iconv,json,session,simplexml,xml,zip,gd,intl,soap,ssl,tokenizer,xmlrpc] virtual/httpd-php virtual/cron >=app-admin/webapp-config-1.50.15 -SLOT=3.7.9 -SRC_URI=https://download.moodle.org/stable37/moodle-3.7.9.tgz +SLOT=3.8.7 +SRC_URI=https://download.moodle.org/stable38/moodle-3.8.7.tgz _eclasses_=webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=e9fe778fe0771a874d45752aba33919a +_md5_=a3e3e4cf2f559f1440cfb2537a8e7366 diff --git a/metadata/md5-cache/www-apps/moodle-3.10 b/metadata/md5-cache/www-apps/moodle-3.9.4 similarity index 83% rename from metadata/md5-cache/www-apps/moodle-3.10 rename to metadata/md5-cache/www-apps/moodle-3.9.4 index 101dcaedb4d3..7995479ba022 100644 --- a/metadata/md5-cache/www-apps/moodle-3.10 +++ b/metadata/md5-cache/www-apps/moodle-3.9.4 @@ -7,7 +7,7 @@ IUSE=mysqli mssql postgres imap ldap odbc vhosts vhosts KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-3+ RDEPEND=>=dev-lang/php-7.2[mysqli?,mssql?,postgres?,imap?,ldap?,odbc?,ctype,curl,iconv,json,session,simplexml,xml,zip,gd,intl,soap,ssl,tokenizer,xmlrpc] virtual/httpd-php virtual/cron >=app-admin/webapp-config-1.50.15 -SLOT=3.10 -SRC_URI=https://download.moodle.org/stable310/moodle-3.10.tgz +SLOT=3.9.4 +SRC_URI=https://download.moodle.org/stable39/moodle-3.9.4.tgz _eclasses_=webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=7b06e3705765f57dd329a0030d598269 +_md5_=334ec8cf381cb26d4fc2ab834bdbf6eb diff --git a/metadata/md5-cache/www-apps/nextcloud-18.0.12 b/metadata/md5-cache/www-apps/nextcloud-18.0.12 index 6b99c627d033..af187a862041 100644 --- a/metadata/md5-cache/www-apps/nextcloud-18.0.12 +++ b/metadata/md5-cache/www-apps/nextcloud-18.0.12 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) SLOT=18.0.12 SRC_URI=https://download.nextcloud.com/server/releases/nextcloud-18.0.12.tar.bz2 _eclasses_=webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=4440baf5c6e1013a6f30620fba20abd3 +_md5_=76fc7db22f06d7571ad48463fe4515dc diff --git a/metadata/md5-cache/www-apps/nextcloud-18.0.13 b/metadata/md5-cache/www-apps/nextcloud-18.0.13 index a70e3038c31f..422fb2f8c161 100644 --- a/metadata/md5-cache/www-apps/nextcloud-18.0.13 +++ b/metadata/md5-cache/www-apps/nextcloud-18.0.13 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) SLOT=18.0.13 SRC_URI=https://download.nextcloud.com/server/releases/nextcloud-18.0.13.tar.bz2 _eclasses_=webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=891e3a3052af44caf4567d605b88dadb +_md5_=76fc7db22f06d7571ad48463fe4515dc diff --git a/metadata/md5-cache/www-apps/nextcloud-19.0.6 b/metadata/md5-cache/www-apps/nextcloud-19.0.6 index c9d1491e27f5..3ef3f1b328b7 100644 --- a/metadata/md5-cache/www-apps/nextcloud-19.0.6 +++ b/metadata/md5-cache/www-apps/nextcloud-19.0.6 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) SLOT=19.0.6 SRC_URI=https://download.nextcloud.com/server/releases/nextcloud-19.0.6.tar.bz2 _eclasses_=webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=4440baf5c6e1013a6f30620fba20abd3 +_md5_=76fc7db22f06d7571ad48463fe4515dc diff --git a/metadata/md5-cache/www-apps/nextcloud-19.0.7 b/metadata/md5-cache/www-apps/nextcloud-19.0.7 index a138b98bdaf9..b2f077ba00ca 100644 --- a/metadata/md5-cache/www-apps/nextcloud-19.0.7 +++ b/metadata/md5-cache/www-apps/nextcloud-19.0.7 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) SLOT=19.0.7 SRC_URI=https://download.nextcloud.com/server/releases/nextcloud-19.0.7.tar.bz2 _eclasses_=webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=891e3a3052af44caf4567d605b88dadb +_md5_=76fc7db22f06d7571ad48463fe4515dc diff --git a/metadata/md5-cache/www-apps/nextcloud-20.0.4 b/metadata/md5-cache/www-apps/nextcloud-20.0.4 index b031fb46731f..63cc72e838c3 100644 --- a/metadata/md5-cache/www-apps/nextcloud-20.0.4 +++ b/metadata/md5-cache/www-apps/nextcloud-20.0.4 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) SLOT=20.0.4 SRC_URI=https://download.nextcloud.com/server/releases/nextcloud-20.0.4.tar.bz2 _eclasses_=webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=4440baf5c6e1013a6f30620fba20abd3 +_md5_=76fc7db22f06d7571ad48463fe4515dc diff --git a/metadata/md5-cache/www-apps/nextcloud-20.0.5 b/metadata/md5-cache/www-apps/nextcloud-20.0.5 index 882c82f7dbec..5c4e7bb855f5 100644 --- a/metadata/md5-cache/www-apps/nextcloud-20.0.5 +++ b/metadata/md5-cache/www-apps/nextcloud-20.0.5 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) SLOT=20.0.5 SRC_URI=https://download.nextcloud.com/server/releases/nextcloud-20.0.5.tar.bz2 _eclasses_=webapp 1d03df021d958f89f4cc78e289d0b116 -_md5_=891e3a3052af44caf4567d605b88dadb +_md5_=76fc7db22f06d7571ad48463fe4515dc diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz index 9e6cdb98355c..e1597fa9a927 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/firefox-78.7.0 b/metadata/md5-cache/www-client/firefox-78.7.0 new file mode 100644 index 000000000000..9b2c4ed39134 --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-78.7.0 @@ -0,0 +1,15 @@ +BDEPEND=|| ( dev-lang/python:3.9[ncurses,sqlite,ssl] dev-lang/python:3.8[ncurses,sqlite,ssl] dev-lang/python:3.7[ncurses,sqlite,ssl] ) app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.14.3 >=net-libs/nodejs-10.21.0 virtual/pkgconfig >=virtual/rust-1.41.0 || ( ( sys-devel/clang:11 sys-devel/llvm:11 clang? ( =sys-devel/lld-11* pgo? ( =sys-libs/compiler-rt-sanitizers-11*[profile] ) ) ) ( sys-devel/clang:10 sys-devel/llvm:10 clang? ( =sys-devel/lld-10* pgo? ( =sys-libs/compiler-rt-sanitizers-10*[profile] ) ) ) ( sys-devel/clang:9 sys-devel/llvm:9 clang? ( =sys-devel/lld-9* pgo? ( =sys-libs/compiler-rt-sanitizers-9*[profile] ) ) ) ) lto? ( !clang? ( sys-devel/binutils[gold] ) ) amd64? ( >=dev-lang/yasm-1.1 ) x86? ( >=dev-lang/yasm-1.1 ) !system-av1? ( amd64? ( >=dev-lang/nasm-2.13 ) x86? ( >=dev-lang/nasm-2.13 ) ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 pgo? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack +DEPEND=>=dev-libs/nss-3.53.1 >=dev-libs/nspr-4.25 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.6.8:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4[sdk] ) ) wayland? ( >=x11-libs/gtk+-3.11:3[wayland] ) amd64? ( virtual/opengl ) x86? ( virtual/opengl ) !!sys-devel/llvm:0 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Firefox Web Browser +EAPI=7 +HOMEPAGE=https://www.mozilla.com/firefox +IUSE=+clang cpu_flags_arm_neon dbus debug eme-free geckodriver +gmp-autoupdate hardened hwaccel jack lto +openh264 pgo pulseaudio screencast selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx +system-webp wayland wifi l10n_ach l10n_af l10n_an l10n_ar l10n_ast l10n_az l10n_be l10n_bg l10n_bn l10n_br l10n_bs l10n_ca-valencia l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_eo l10n_es-AR l10n_es-CL l10n_es-ES l10n_es-MX l10n_et l10n_eu l10n_fa l10n_ff l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_gn l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_ia l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_km l10n_kn l10n_ko l10n_lij l10n_lt l10n_lv l10n_mk l10n_mr l10n_ms l10n_my l10n_nb l10n_ne l10n_nl l10n_nn l10n_oc l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_son l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tl l10n_tr l10n_trs l10n_uk l10n_ur l10n_uz l10n_vi l10n_xh l10n_zh-CN l10n_zh-TW pgo +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=>=dev-libs/nss-3.53.1 >=dev-libs/nspr-4.25 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.6.8:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) jack? ( virtual/jack ) openh264? ( media-libs/openh264:*[plugin] ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4 ) ) selinux? ( sec-policy/selinux-mozilla ) +REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) wifi? ( dbus ) +SLOT=0/esr78 +SRC_URI=https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/source/firefox-78.7.0esr.source.tar.xz -> firefox-78.7.0esr.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-78esr-patches-07.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-78esr-patches-07.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-78esr-patches-07.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ach.xpi -> firefox-78.7.0esr-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/af.xpi -> firefox-78.7.0esr-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/an.xpi -> firefox-78.7.0esr-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ar.xpi -> firefox-78.7.0esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ast.xpi -> firefox-78.7.0esr-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/az.xpi -> firefox-78.7.0esr-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/be.xpi -> firefox-78.7.0esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/bg.xpi -> firefox-78.7.0esr-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/bn.xpi -> firefox-78.7.0esr-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/br.xpi -> firefox-78.7.0esr-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/bs.xpi -> firefox-78.7.0esr-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ca-valencia.xpi -> firefox-78.7.0esr-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ca.xpi -> firefox-78.7.0esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/cak.xpi -> firefox-78.7.0esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/cs.xpi -> firefox-78.7.0esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/cy.xpi -> firefox-78.7.0esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/da.xpi -> firefox-78.7.0esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/de.xpi -> firefox-78.7.0esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/dsb.xpi -> firefox-78.7.0esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/el.xpi -> firefox-78.7.0esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/en-CA.xpi -> firefox-78.7.0esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/en-GB.xpi -> firefox-78.7.0esr-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/eo.xpi -> firefox-78.7.0esr-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/es-AR.xpi -> firefox-78.7.0esr-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/es-CL.xpi -> firefox-78.7.0esr-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/es-ES.xpi -> firefox-78.7.0esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/es-MX.xpi -> firefox-78.7.0esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/et.xpi -> firefox-78.7.0esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/eu.xpi -> firefox-78.7.0esr-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/fa.xpi -> firefox-78.7.0esr-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ff.xpi -> firefox-78.7.0esr-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/fi.xpi -> firefox-78.7.0esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/fr.xpi -> firefox-78.7.0esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/fy-NL.xpi -> firefox-78.7.0esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ga-IE.xpi -> firefox-78.7.0esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/gd.xpi -> firefox-78.7.0esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/gl.xpi -> firefox-78.7.0esr-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/gn.xpi -> firefox-78.7.0esr-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/gu-IN.xpi -> firefox-78.7.0esr-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/he.xpi -> firefox-78.7.0esr-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/hi-IN.xpi -> firefox-78.7.0esr-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/hr.xpi -> firefox-78.7.0esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/hsb.xpi -> firefox-78.7.0esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/hu.xpi -> firefox-78.7.0esr-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/hy-AM.xpi -> firefox-78.7.0esr-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ia.xpi -> firefox-78.7.0esr-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/id.xpi -> firefox-78.7.0esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/is.xpi -> firefox-78.7.0esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/it.xpi -> firefox-78.7.0esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ja.xpi -> firefox-78.7.0esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ka.xpi -> firefox-78.7.0esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/kab.xpi -> firefox-78.7.0esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/kk.xpi -> firefox-78.7.0esr-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/km.xpi -> firefox-78.7.0esr-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/kn.xpi -> firefox-78.7.0esr-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ko.xpi -> firefox-78.7.0esr-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/lij.xpi -> firefox-78.7.0esr-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/lt.xpi -> firefox-78.7.0esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/lv.xpi -> firefox-78.7.0esr-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/mk.xpi -> firefox-78.7.0esr-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/mr.xpi -> firefox-78.7.0esr-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ms.xpi -> firefox-78.7.0esr-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/my.xpi -> firefox-78.7.0esr-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/nb-NO.xpi -> firefox-78.7.0esr-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ne-NP.xpi -> firefox-78.7.0esr-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/nl.xpi -> firefox-78.7.0esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/nn-NO.xpi -> firefox-78.7.0esr-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/oc.xpi -> firefox-78.7.0esr-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/pa-IN.xpi -> firefox-78.7.0esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/pl.xpi -> firefox-78.7.0esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/pt-BR.xpi -> firefox-78.7.0esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/pt-PT.xpi -> firefox-78.7.0esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/rm.xpi -> firefox-78.7.0esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ro.xpi -> firefox-78.7.0esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ru.xpi -> firefox-78.7.0esr-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/si.xpi -> firefox-78.7.0esr-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/sk.xpi -> firefox-78.7.0esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/sl.xpi -> firefox-78.7.0esr-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/son.xpi -> firefox-78.7.0esr-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/sq.xpi -> firefox-78.7.0esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/sr.xpi -> firefox-78.7.0esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/sv-SE.xpi -> firefox-78.7.0esr-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ta.xpi -> firefox-78.7.0esr-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/te.xpi -> firefox-78.7.0esr-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/th.xpi -> firefox-78.7.0esr-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/tl.xpi -> firefox-78.7.0esr-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/tr.xpi -> firefox-78.7.0esr-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/trs.xpi -> firefox-78.7.0esr-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/uk.xpi -> firefox-78.7.0esr-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ur.xpi -> firefox-78.7.0esr-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/uz.xpi -> firefox-78.7.0esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/vi.xpi -> firefox-78.7.0esr-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/xh.xpi -> firefox-78.7.0esr-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/zh-CN.xpi -> firefox-78.7.0esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/zh-TW.xpi -> firefox-78.7.0esr-zh-TW.xpi ) +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=3cb60c24c5a71c129e0c5448941b9938 diff --git a/metadata/md5-cache/www-client/firefox-85.0 b/metadata/md5-cache/www-client/firefox-85.0 new file mode 100644 index 000000000000..ce039abd3596 --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-85.0 @@ -0,0 +1,15 @@ +BDEPEND=|| ( dev-lang/python:3.9[ncurses,sqlite,ssl] dev-lang/python:3.8[ncurses,sqlite,ssl] dev-lang/python:3.7[ncurses,sqlite,ssl] ) app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.15.0 >=net-libs/nodejs-10.22.1 virtual/pkgconfig >=virtual/rust-1.47.0 || ( ( sys-devel/clang:11 sys-devel/llvm:11 clang? ( =sys-devel/lld-11* pgo? ( =sys-libs/compiler-rt-sanitizers-11*[profile] ) ) ) ( sys-devel/clang:10 sys-devel/llvm:10 clang? ( =sys-devel/lld-10* pgo? ( =sys-libs/compiler-rt-sanitizers-10*[profile] ) ) ) ( sys-devel/clang:9 sys-devel/llvm:9 clang? ( =sys-devel/lld-9* pgo? ( =sys-libs/compiler-rt-sanitizers-9*[profile] ) ) ) ) amd64? ( >=dev-lang/yasm-1.1 ) x86? ( >=dev-lang/yasm-1.1 ) !system-av1? ( amd64? ( >=dev-lang/nasm-2.13 ) x86? ( >=dev-lang/nasm-2.13 ) ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 pgo? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack +DEPEND=>=dev-libs/nss-3.60 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.6.8:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4[sdk] ) ) wayland? ( >=x11-libs/gtk+-3.11:3[wayland] ) amd64? ( virtual/opengl ) x86? ( virtual/opengl ) !!sys-devel/llvm:0 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Firefox Web Browser +EAPI=7 +HOMEPAGE=https://www.mozilla.com/firefox +IUSE=+clang cpu_flags_arm_neon dbus debug eme-free geckodriver +gmp-autoupdate hardened hwaccel jack lto +openh264 pgo pulseaudio screencast selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx +system-webp wayland wifi l10n_ach l10n_af l10n_an l10n_ar l10n_ast l10n_az l10n_be l10n_bg l10n_bn l10n_br l10n_bs l10n_ca-valencia l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_eo l10n_es-AR l10n_es-CL l10n_es-ES l10n_es-MX l10n_et l10n_eu l10n_fa l10n_ff l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_gn l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_ia l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_km l10n_kn l10n_ko l10n_lij l10n_lt l10n_lv l10n_mk l10n_mr l10n_ms l10n_my l10n_nb l10n_ne l10n_nl l10n_nn l10n_oc l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_son l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tl l10n_tr l10n_trs l10n_uk l10n_ur l10n_uz l10n_vi l10n_xh l10n_zh-CN l10n_zh-TW pgo +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=>=dev-libs/nss-3.60 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.6.8:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) jack? ( virtual/jack ) openh264? ( media-libs/openh264:*[plugin] ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4 ) ) selinux? ( sec-policy/selinux-mozilla ) +REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) +SLOT=0/85 +SRC_URI=https://archive.mozilla.org/pub/firefox/releases/85.0/source/firefox-85.0.source.tar.xz -> firefox-85.0.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-85-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-85-patches-01.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-85-patches-01.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ach.xpi -> firefox-85.0-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/af.xpi -> firefox-85.0-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/an.xpi -> firefox-85.0-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ar.xpi -> firefox-85.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ast.xpi -> firefox-85.0-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/az.xpi -> firefox-85.0-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/be.xpi -> firefox-85.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/bg.xpi -> firefox-85.0-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/bn.xpi -> firefox-85.0-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/br.xpi -> firefox-85.0-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/bs.xpi -> firefox-85.0-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ca-valencia.xpi -> firefox-85.0-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ca.xpi -> firefox-85.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/cak.xpi -> firefox-85.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/cs.xpi -> firefox-85.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/cy.xpi -> firefox-85.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/da.xpi -> firefox-85.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/de.xpi -> firefox-85.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/dsb.xpi -> firefox-85.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/el.xpi -> firefox-85.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/en-CA.xpi -> firefox-85.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/en-GB.xpi -> firefox-85.0-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/eo.xpi -> firefox-85.0-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-AR.xpi -> firefox-85.0-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-CL.xpi -> firefox-85.0-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-ES.xpi -> firefox-85.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-MX.xpi -> firefox-85.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/et.xpi -> firefox-85.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/eu.xpi -> firefox-85.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fa.xpi -> firefox-85.0-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ff.xpi -> firefox-85.0-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fi.xpi -> firefox-85.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fr.xpi -> firefox-85.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fy-NL.xpi -> firefox-85.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ga-IE.xpi -> firefox-85.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gd.xpi -> firefox-85.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gl.xpi -> firefox-85.0-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gn.xpi -> firefox-85.0-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gu-IN.xpi -> firefox-85.0-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/he.xpi -> firefox-85.0-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hi-IN.xpi -> firefox-85.0-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hr.xpi -> firefox-85.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hsb.xpi -> firefox-85.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hu.xpi -> firefox-85.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hy-AM.xpi -> firefox-85.0-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ia.xpi -> firefox-85.0-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/id.xpi -> firefox-85.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/is.xpi -> firefox-85.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/it.xpi -> firefox-85.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ja.xpi -> firefox-85.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ka.xpi -> firefox-85.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/kab.xpi -> firefox-85.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/kk.xpi -> firefox-85.0-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/km.xpi -> firefox-85.0-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/kn.xpi -> firefox-85.0-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ko.xpi -> firefox-85.0-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/lij.xpi -> firefox-85.0-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/lt.xpi -> firefox-85.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/lv.xpi -> firefox-85.0-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/mk.xpi -> firefox-85.0-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/mr.xpi -> firefox-85.0-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ms.xpi -> firefox-85.0-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/my.xpi -> firefox-85.0-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/nb-NO.xpi -> firefox-85.0-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ne-NP.xpi -> firefox-85.0-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/nl.xpi -> firefox-85.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/nn-NO.xpi -> firefox-85.0-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/oc.xpi -> firefox-85.0-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pa-IN.xpi -> firefox-85.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pl.xpi -> firefox-85.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pt-BR.xpi -> firefox-85.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pt-PT.xpi -> firefox-85.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/rm.xpi -> firefox-85.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ro.xpi -> firefox-85.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ru.xpi -> firefox-85.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/si.xpi -> firefox-85.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sk.xpi -> firefox-85.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sl.xpi -> firefox-85.0-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/son.xpi -> firefox-85.0-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sq.xpi -> firefox-85.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sr.xpi -> firefox-85.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sv-SE.xpi -> firefox-85.0-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ta.xpi -> firefox-85.0-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/te.xpi -> firefox-85.0-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/th.xpi -> firefox-85.0-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/tl.xpi -> firefox-85.0-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/tr.xpi -> firefox-85.0-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/trs.xpi -> firefox-85.0-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/uk.xpi -> firefox-85.0-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ur.xpi -> firefox-85.0-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/uz.xpi -> firefox-85.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/vi.xpi -> firefox-85.0-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/xh.xpi -> firefox-85.0-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/zh-CN.xpi -> firefox-85.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/zh-TW.xpi -> firefox-85.0-zh-TW.xpi ) +_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=76f6770a16bb3b6937ed88ccaa90e7ce diff --git a/metadata/md5-cache/www-client/firefox-85.0_rc1 b/metadata/md5-cache/www-client/firefox-85.0_rc1 deleted file mode 100644 index efd0a41f0c37..000000000000 --- a/metadata/md5-cache/www-client/firefox-85.0_rc1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.9[ncurses,sqlite,ssl] dev-lang/python:3.8[ncurses,sqlite,ssl] dev-lang/python:3.7[ncurses,sqlite,ssl] ) app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.15.0 >=net-libs/nodejs-10.22.1 virtual/pkgconfig >=virtual/rust-1.47.0 || ( ( sys-devel/clang:11 sys-devel/llvm:11 clang? ( =sys-devel/lld-11* pgo? ( =sys-libs/compiler-rt-sanitizers-11*[profile] ) ) ) ( sys-devel/clang:10 sys-devel/llvm:10 clang? ( =sys-devel/lld-10* pgo? ( =sys-libs/compiler-rt-sanitizers-10*[profile] ) ) ) ( sys-devel/clang:9 sys-devel/llvm:9 clang? ( =sys-devel/lld-9* pgo? ( =sys-libs/compiler-rt-sanitizers-9*[profile] ) ) ) ) amd64? ( >=dev-lang/yasm-1.1 ) x86? ( >=dev-lang/yasm-1.1 ) !system-av1? ( amd64? ( >=dev-lang/nasm-2.13 ) x86? ( >=dev-lang/nasm-2.13 ) ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 pgo? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=>=dev-libs/nss-3.60 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.6.8:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4[sdk] ) ) wayland? ( >=x11-libs/gtk+-3.11:3[wayland] ) amd64? ( virtual/opengl ) x86? ( virtual/opengl ) !!sys-devel/llvm:0 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Firefox Web Browser -EAPI=7 -HOMEPAGE=https://www.mozilla.com/firefox -IUSE=+clang cpu_flags_arm_neon dbus debug eme-free geckodriver +gmp-autoupdate hardened hwaccel jack lto +openh264 pgo pulseaudio screencast selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx +system-webp wayland wifi l10n_ach l10n_af l10n_an l10n_ar l10n_ast l10n_az l10n_be l10n_bg l10n_bn l10n_br l10n_bs l10n_ca-valencia l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_eo l10n_es-AR l10n_es-CL l10n_es-ES l10n_es-MX l10n_et l10n_eu l10n_fa l10n_ff l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_gn l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_ia l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_km l10n_kn l10n_ko l10n_lij l10n_lt l10n_lv l10n_mk l10n_mr l10n_ms l10n_my l10n_nb l10n_ne l10n_nl l10n_nn l10n_oc l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_son l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tl l10n_tr l10n_trs l10n_uk l10n_ur l10n_uz l10n_vi l10n_xh l10n_zh-CN l10n_zh-TW pgo -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=>=dev-libs/nss-3.60 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.6.8:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) jack? ( virtual/jack ) openh264? ( media-libs/openh264:*[plugin] ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4 ) ) selinux? ( sec-policy/selinux-mozilla ) -REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) -SLOT=0/85 -SRC_URI=https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/source/firefox-85.0.source.tar.xz -> firefox-85.0_rc1.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-85-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-85-patches-01.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-85-patches-01.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ach.xpi -> firefox-85.0_rc1-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/af.xpi -> firefox-85.0_rc1-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/an.xpi -> firefox-85.0_rc1-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ar.xpi -> firefox-85.0_rc1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ast.xpi -> firefox-85.0_rc1-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/az.xpi -> firefox-85.0_rc1-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/be.xpi -> firefox-85.0_rc1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/bg.xpi -> firefox-85.0_rc1-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/bn.xpi -> firefox-85.0_rc1-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/br.xpi -> firefox-85.0_rc1-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/bs.xpi -> firefox-85.0_rc1-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ca-valencia.xpi -> firefox-85.0_rc1-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ca.xpi -> firefox-85.0_rc1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/cak.xpi -> firefox-85.0_rc1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/cs.xpi -> firefox-85.0_rc1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/cy.xpi -> firefox-85.0_rc1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/da.xpi -> firefox-85.0_rc1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/de.xpi -> firefox-85.0_rc1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/dsb.xpi -> firefox-85.0_rc1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/el.xpi -> firefox-85.0_rc1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/en-CA.xpi -> firefox-85.0_rc1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/en-GB.xpi -> firefox-85.0_rc1-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/eo.xpi -> firefox-85.0_rc1-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/es-AR.xpi -> firefox-85.0_rc1-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/es-CL.xpi -> firefox-85.0_rc1-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/es-ES.xpi -> firefox-85.0_rc1-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/es-MX.xpi -> firefox-85.0_rc1-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/et.xpi -> firefox-85.0_rc1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/eu.xpi -> firefox-85.0_rc1-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/fa.xpi -> firefox-85.0_rc1-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ff.xpi -> firefox-85.0_rc1-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/fi.xpi -> firefox-85.0_rc1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/fr.xpi -> firefox-85.0_rc1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/fy-NL.xpi -> firefox-85.0_rc1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ga-IE.xpi -> firefox-85.0_rc1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/gd.xpi -> firefox-85.0_rc1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/gl.xpi -> firefox-85.0_rc1-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/gn.xpi -> firefox-85.0_rc1-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/gu-IN.xpi -> firefox-85.0_rc1-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/he.xpi -> firefox-85.0_rc1-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/hi-IN.xpi -> firefox-85.0_rc1-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/hr.xpi -> firefox-85.0_rc1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/hsb.xpi -> firefox-85.0_rc1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/hu.xpi -> firefox-85.0_rc1-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/hy-AM.xpi -> firefox-85.0_rc1-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ia.xpi -> firefox-85.0_rc1-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/id.xpi -> firefox-85.0_rc1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/is.xpi -> firefox-85.0_rc1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/it.xpi -> firefox-85.0_rc1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ja.xpi -> firefox-85.0_rc1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ka.xpi -> firefox-85.0_rc1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/kab.xpi -> firefox-85.0_rc1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/kk.xpi -> firefox-85.0_rc1-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/km.xpi -> firefox-85.0_rc1-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/kn.xpi -> firefox-85.0_rc1-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ko.xpi -> firefox-85.0_rc1-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/lij.xpi -> firefox-85.0_rc1-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/lt.xpi -> firefox-85.0_rc1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/lv.xpi -> firefox-85.0_rc1-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/mk.xpi -> firefox-85.0_rc1-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/mr.xpi -> firefox-85.0_rc1-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ms.xpi -> firefox-85.0_rc1-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/my.xpi -> firefox-85.0_rc1-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/nb-NO.xpi -> firefox-85.0_rc1-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ne-NP.xpi -> firefox-85.0_rc1-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/nl.xpi -> firefox-85.0_rc1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/nn-NO.xpi -> firefox-85.0_rc1-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/oc.xpi -> firefox-85.0_rc1-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/pa-IN.xpi -> firefox-85.0_rc1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/pl.xpi -> firefox-85.0_rc1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/pt-BR.xpi -> firefox-85.0_rc1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/pt-PT.xpi -> firefox-85.0_rc1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/rm.xpi -> firefox-85.0_rc1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ro.xpi -> firefox-85.0_rc1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ru.xpi -> firefox-85.0_rc1-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/si.xpi -> firefox-85.0_rc1-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/sk.xpi -> firefox-85.0_rc1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/sl.xpi -> firefox-85.0_rc1-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/son.xpi -> firefox-85.0_rc1-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/sq.xpi -> firefox-85.0_rc1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/sr.xpi -> firefox-85.0_rc1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/sv-SE.xpi -> firefox-85.0_rc1-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ta.xpi -> firefox-85.0_rc1-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/te.xpi -> firefox-85.0_rc1-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/th.xpi -> firefox-85.0_rc1-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/tl.xpi -> firefox-85.0_rc1-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/tr.xpi -> firefox-85.0_rc1-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/trs.xpi -> firefox-85.0_rc1-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/uk.xpi -> firefox-85.0_rc1-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/ur.xpi -> firefox-85.0_rc1-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/uz.xpi -> firefox-85.0_rc1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/vi.xpi -> firefox-85.0_rc1-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/xh.xpi -> firefox-85.0_rc1-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/zh-CN.xpi -> firefox-85.0_rc1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/candidates/85.0-candidates/build1/linux-x86_64/xpi/zh-TW.xpi -> firefox-85.0_rc1-zh-TW.xpi ) -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-any-r1 f630b6d8702353cdc13f2d4dd882e16e python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1ccc01ccd3a649a943b33d5b79e87887 diff --git a/metadata/md5-cache/www-client/firefox-bin-78.7.0 b/metadata/md5-cache/www-client/firefox-bin-78.7.0 new file mode 100644 index 000000000000..1b5fdaf49d40 --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-bin-78.7.0 @@ -0,0 +1,15 @@ +BDEPEND=app-arch/unzip alsa? ( !pulseaudio? ( dev-util/patchelf ) ) +DEFINED_PHASES=install postinst postrm preinst prepare unpack +DEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Firefox Web Browser +EAPI=7 +HOMEPAGE=https://www.mozilla.com/firefox +IUSE=+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux wayland l10n_ach l10n_af l10n_an l10n_ar l10n_ast l10n_az l10n_be l10n_bg l10n_bn l10n_br l10n_bs l10n_ca-valencia l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_eo l10n_es-AR l10n_es-CL l10n_es-ES l10n_es-MX l10n_et l10n_eu l10n_fa l10n_ff l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_gn l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_ia l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_km l10n_kn l10n_ko l10n_lij l10n_lt l10n_lv l10n_mk l10n_mr l10n_ms l10n_my l10n_nb l10n_ne l10n_nl l10n_nn l10n_oc l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_son l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tl l10n_tr l10n_trs l10n_uk l10n_ur l10n_uz l10n_vi l10n_xh l10n_zh-CN l10n_zh-TW +KEYWORDS=-* amd64 x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) dev-libs/atk dev-libs/dbus-glib >=dev-libs/glib-2.26:2 media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.11:3[wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt >=x11-libs/pango-1.22.0 ffmpeg? ( media-video/ffmpeg ) pulseaudio? ( media-sound/pulseaudio ) selinux? ( sec-policy/selinux-mozilla ) +RESTRICT=strip +SLOT=0/esr78 +SRC_URI=amd64? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/en-US/firefox-78.7.0esr.tar.bz2 -> firefox-bin_x86_64-78.7.0.tar.bz2 ) x86? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-i686/en-US/firefox-78.7.0esr.tar.bz2 -> firefox-bin_i686-78.7.0.tar.bz2 ) l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ach.xpi -> firefox-78.7.0esr-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/af.xpi -> firefox-78.7.0esr-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/an.xpi -> firefox-78.7.0esr-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ar.xpi -> firefox-78.7.0esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ast.xpi -> firefox-78.7.0esr-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/az.xpi -> firefox-78.7.0esr-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/be.xpi -> firefox-78.7.0esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/bg.xpi -> firefox-78.7.0esr-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/bn.xpi -> firefox-78.7.0esr-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/br.xpi -> firefox-78.7.0esr-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/bs.xpi -> firefox-78.7.0esr-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ca-valencia.xpi -> firefox-78.7.0esr-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ca.xpi -> firefox-78.7.0esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/cak.xpi -> firefox-78.7.0esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/cs.xpi -> firefox-78.7.0esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/cy.xpi -> firefox-78.7.0esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/da.xpi -> firefox-78.7.0esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/de.xpi -> firefox-78.7.0esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/dsb.xpi -> firefox-78.7.0esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/el.xpi -> firefox-78.7.0esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/en-CA.xpi -> firefox-78.7.0esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/en-GB.xpi -> firefox-78.7.0esr-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/eo.xpi -> firefox-78.7.0esr-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/es-AR.xpi -> firefox-78.7.0esr-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/es-CL.xpi -> firefox-78.7.0esr-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/es-ES.xpi -> firefox-78.7.0esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/es-MX.xpi -> firefox-78.7.0esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/et.xpi -> firefox-78.7.0esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/eu.xpi -> firefox-78.7.0esr-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/fa.xpi -> firefox-78.7.0esr-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ff.xpi -> firefox-78.7.0esr-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/fi.xpi -> firefox-78.7.0esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/fr.xpi -> firefox-78.7.0esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/fy-NL.xpi -> firefox-78.7.0esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ga-IE.xpi -> firefox-78.7.0esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/gd.xpi -> firefox-78.7.0esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/gl.xpi -> firefox-78.7.0esr-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/gn.xpi -> firefox-78.7.0esr-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/gu-IN.xpi -> firefox-78.7.0esr-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/he.xpi -> firefox-78.7.0esr-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/hi-IN.xpi -> firefox-78.7.0esr-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/hr.xpi -> firefox-78.7.0esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/hsb.xpi -> firefox-78.7.0esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/hu.xpi -> firefox-78.7.0esr-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/hy-AM.xpi -> firefox-78.7.0esr-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ia.xpi -> firefox-78.7.0esr-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/id.xpi -> firefox-78.7.0esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/is.xpi -> firefox-78.7.0esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/it.xpi -> firefox-78.7.0esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ja.xpi -> firefox-78.7.0esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ka.xpi -> firefox-78.7.0esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/kab.xpi -> firefox-78.7.0esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/kk.xpi -> firefox-78.7.0esr-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/km.xpi -> firefox-78.7.0esr-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/kn.xpi -> firefox-78.7.0esr-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ko.xpi -> firefox-78.7.0esr-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/lij.xpi -> firefox-78.7.0esr-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/lt.xpi -> firefox-78.7.0esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/lv.xpi -> firefox-78.7.0esr-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/mk.xpi -> firefox-78.7.0esr-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/mr.xpi -> firefox-78.7.0esr-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ms.xpi -> firefox-78.7.0esr-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/my.xpi -> firefox-78.7.0esr-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/nb-NO.xpi -> firefox-78.7.0esr-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ne-NP.xpi -> firefox-78.7.0esr-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/nl.xpi -> firefox-78.7.0esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/nn-NO.xpi -> firefox-78.7.0esr-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/oc.xpi -> firefox-78.7.0esr-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/pa-IN.xpi -> firefox-78.7.0esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/pl.xpi -> firefox-78.7.0esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/pt-BR.xpi -> firefox-78.7.0esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/pt-PT.xpi -> firefox-78.7.0esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/rm.xpi -> firefox-78.7.0esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ro.xpi -> firefox-78.7.0esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ru.xpi -> firefox-78.7.0esr-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/si.xpi -> firefox-78.7.0esr-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/sk.xpi -> firefox-78.7.0esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/sl.xpi -> firefox-78.7.0esr-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/son.xpi -> firefox-78.7.0esr-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/sq.xpi -> firefox-78.7.0esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/sr.xpi -> firefox-78.7.0esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/sv-SE.xpi -> firefox-78.7.0esr-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ta.xpi -> firefox-78.7.0esr-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/te.xpi -> firefox-78.7.0esr-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/th.xpi -> firefox-78.7.0esr-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/tl.xpi -> firefox-78.7.0esr-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/tr.xpi -> firefox-78.7.0esr-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/trs.xpi -> firefox-78.7.0esr-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/uk.xpi -> firefox-78.7.0esr-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/ur.xpi -> firefox-78.7.0esr-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/uz.xpi -> firefox-78.7.0esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/vi.xpi -> firefox-78.7.0esr-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/xh.xpi -> firefox-78.7.0esr-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/zh-CN.xpi -> firefox-78.7.0esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/78.7.0esr/linux-x86_64/xpi/zh-TW.xpi -> firefox-78.7.0esr-zh-TW.xpi ) +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 pax-utils a41d1fd1c111289ffa04490de6ee79d7 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=a6dc0753e28af35a2034105b44ced6e1 diff --git a/metadata/md5-cache/www-client/firefox-bin-85.0 b/metadata/md5-cache/www-client/firefox-bin-85.0 new file mode 100644 index 000000000000..69490227dfed --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-bin-85.0 @@ -0,0 +1,15 @@ +BDEPEND=app-arch/unzip alsa? ( !pulseaudio? ( dev-util/patchelf ) ) +DEFINED_PHASES=install postinst postrm preinst prepare unpack +DEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Firefox Web Browser +EAPI=7 +HOMEPAGE=https://www.mozilla.com/firefox +IUSE=+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux wayland l10n_ach l10n_af l10n_an l10n_ar l10n_ast l10n_az l10n_be l10n_bg l10n_bn l10n_br l10n_bs l10n_ca-valencia l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_eo l10n_es-AR l10n_es-CL l10n_es-ES l10n_es-MX l10n_et l10n_eu l10n_fa l10n_ff l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_gn l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_ia l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_km l10n_kn l10n_ko l10n_lij l10n_lt l10n_lv l10n_mk l10n_mr l10n_ms l10n_my l10n_nb l10n_ne l10n_nl l10n_nn l10n_oc l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_son l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tl l10n_tr l10n_trs l10n_uk l10n_ur l10n_uz l10n_vi l10n_xh l10n_zh-CN l10n_zh-TW +KEYWORDS=-* amd64 x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) dev-libs/atk dev-libs/dbus-glib >=dev-libs/glib-2.26:2 media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.11:3[wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt >=x11-libs/pango-1.22.0 ffmpeg? ( media-video/ffmpeg ) pulseaudio? ( media-sound/pulseaudio ) selinux? ( sec-policy/selinux-mozilla ) +RESTRICT=strip +SLOT=0/85 +SRC_URI=amd64? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/en-US/firefox-85.0.tar.bz2 -> firefox-bin_x86_64-85.0.tar.bz2 ) x86? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-i686/en-US/firefox-85.0.tar.bz2 -> firefox-bin_i686-85.0.tar.bz2 ) l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ach.xpi -> firefox-85.0-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/af.xpi -> firefox-85.0-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/an.xpi -> firefox-85.0-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ar.xpi -> firefox-85.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ast.xpi -> firefox-85.0-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/az.xpi -> firefox-85.0-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/be.xpi -> firefox-85.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/bg.xpi -> firefox-85.0-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/bn.xpi -> firefox-85.0-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/br.xpi -> firefox-85.0-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/bs.xpi -> firefox-85.0-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ca-valencia.xpi -> firefox-85.0-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ca.xpi -> firefox-85.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/cak.xpi -> firefox-85.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/cs.xpi -> firefox-85.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/cy.xpi -> firefox-85.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/da.xpi -> firefox-85.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/de.xpi -> firefox-85.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/dsb.xpi -> firefox-85.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/el.xpi -> firefox-85.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/en-CA.xpi -> firefox-85.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/en-GB.xpi -> firefox-85.0-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/eo.xpi -> firefox-85.0-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-AR.xpi -> firefox-85.0-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-CL.xpi -> firefox-85.0-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-ES.xpi -> firefox-85.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-MX.xpi -> firefox-85.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/et.xpi -> firefox-85.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/eu.xpi -> firefox-85.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fa.xpi -> firefox-85.0-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ff.xpi -> firefox-85.0-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fi.xpi -> firefox-85.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fr.xpi -> firefox-85.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fy-NL.xpi -> firefox-85.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ga-IE.xpi -> firefox-85.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gd.xpi -> firefox-85.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gl.xpi -> firefox-85.0-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gn.xpi -> firefox-85.0-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gu-IN.xpi -> firefox-85.0-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/he.xpi -> firefox-85.0-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hi-IN.xpi -> firefox-85.0-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hr.xpi -> firefox-85.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hsb.xpi -> firefox-85.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hu.xpi -> firefox-85.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hy-AM.xpi -> firefox-85.0-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ia.xpi -> firefox-85.0-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/id.xpi -> firefox-85.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/is.xpi -> firefox-85.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/it.xpi -> firefox-85.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ja.xpi -> firefox-85.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ka.xpi -> firefox-85.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/kab.xpi -> firefox-85.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/kk.xpi -> firefox-85.0-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/km.xpi -> firefox-85.0-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/kn.xpi -> firefox-85.0-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ko.xpi -> firefox-85.0-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/lij.xpi -> firefox-85.0-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/lt.xpi -> firefox-85.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/lv.xpi -> firefox-85.0-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/mk.xpi -> firefox-85.0-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/mr.xpi -> firefox-85.0-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ms.xpi -> firefox-85.0-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/my.xpi -> firefox-85.0-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/nb-NO.xpi -> firefox-85.0-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ne-NP.xpi -> firefox-85.0-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/nl.xpi -> firefox-85.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/nn-NO.xpi -> firefox-85.0-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/oc.xpi -> firefox-85.0-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pa-IN.xpi -> firefox-85.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pl.xpi -> firefox-85.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pt-BR.xpi -> firefox-85.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pt-PT.xpi -> firefox-85.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/rm.xpi -> firefox-85.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ro.xpi -> firefox-85.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ru.xpi -> firefox-85.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/si.xpi -> firefox-85.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sk.xpi -> firefox-85.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sl.xpi -> firefox-85.0-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/son.xpi -> firefox-85.0-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sq.xpi -> firefox-85.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sr.xpi -> firefox-85.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sv-SE.xpi -> firefox-85.0-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ta.xpi -> firefox-85.0-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/te.xpi -> firefox-85.0-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/th.xpi -> firefox-85.0-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/tl.xpi -> firefox-85.0-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/tr.xpi -> firefox-85.0-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/trs.xpi -> firefox-85.0-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/uk.xpi -> firefox-85.0-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ur.xpi -> firefox-85.0-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/uz.xpi -> firefox-85.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/vi.xpi -> firefox-85.0-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/xh.xpi -> firefox-85.0-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/zh-CN.xpi -> firefox-85.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/zh-TW.xpi -> firefox-85.0-zh-TW.xpi ) +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 pax-utils a41d1fd1c111289ffa04490de6ee79d7 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=dfa8761fe8a182c31d47e474ccda49b1 diff --git a/metadata/md5-cache/www-client/luakit-2.2.1 b/metadata/md5-cache/www-client/luakit-2.2.1 deleted file mode 100644 index 6047d666fea7..000000000000 --- a/metadata/md5-cache/www-client/luakit-2.2.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig doc? ( app-doc/doxygen ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-lua/luafilesystem[luajit=] net-libs/webkit-gtk:4= x11-libs/gtk+:3 luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:0 ) test? ( dev-lua/luassert[luajit=] dev-lua/luacheck[luajit=] x11-base/xorg-server[xvfb] ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A fast, extensible, and customizable web browser -EAPI=7 -HOMEPAGE=https://luakit.github.io/luakit -IUSE=doc luajit test -KEYWORDS=~amd64 -LICENSE=GPL-3 -RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-lua/luafilesystem[luajit=] net-libs/webkit-gtk:4= x11-libs/gtk+:3 luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:0 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/luakit/luakit/archive/2.2.1.tar.gz -> luakit-2.2.1.tar.gz -_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b574e2ab99f7bf03f358c5d07459a521 diff --git a/metadata/md5-cache/www-servers/Manifest.gz b/metadata/md5-cache/www-servers/Manifest.gz index ca9a70ee1876..1701e035c3c3 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/ocsigenserver-2.8 b/metadata/md5-cache/www-servers/ocsigenserver-2.8 index 61552281e16e..8a45ac4fa5e0 100644 --- a/metadata/md5-cache/www-servers/ocsigenserver-2.8 +++ b/metadata/md5-cache/www-servers/ocsigenserver-2.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( sqlite dbm postgres ) RESTRICT=strip installsources SLOT=0/2.8 SRC_URI=https://github.com/ocsigen/ocsigenserver/archive/2.8.tar.gz -> ocsigenserver-2.8.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e72b0569c9bbc0dfca706f36f87e3176 diff --git a/metadata/md5-cache/www-servers/ocsigenserver-9999 b/metadata/md5-cache/www-servers/ocsigenserver-9999 index 568e8ee6feef..eaea54fbbb07 100644 --- a/metadata/md5-cache/www-servers/ocsigenserver-9999 +++ b/metadata/md5-cache/www-servers/ocsigenserver-9999 @@ -10,5 +10,5 @@ RDEPEND=>=dev-ml/lwt-2.5.0:=[camlp4(+)] dev-ml/lwt_react:= dev-ml/lwt_ssl:= >=de REQUIRED_USE=|| ( sqlite dbm postgres ) RESTRICT=strip installsources SLOT=0/9999 -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib df74899b0837d14d75b7e6bb42422b14 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e findlib 9674d5e3d151793fecab20e2bb73e6c6 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e72b0569c9bbc0dfca706f36f87e3176 diff --git a/metadata/md5-cache/x11-libs/Manifest.gz b/metadata/md5-cache/x11-libs/Manifest.gz index 9f0d1dd41312..7601ed780870 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/libvdpau-1.2 b/metadata/md5-cache/x11-libs/libvdpau-1.2 deleted file mode 100644 index fbf0d9b680b5..000000000000 --- a/metadata/md5-cache/x11-libs/libvdpau-1.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=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(-)?] dri? ( >=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(-)?] ) virtual/pkgconfig doc? ( app-doc/doxygen media-gfx/graphviz virtual/latex-base ) dri? ( x11-base/xorg-proto ) -DESCRIPTION=VDPAU wrapper and trace libraries -EAPI=7 -HOMEPAGE=https://www.freedesktop.org/wiki/Software/VDPAU -IUSE=doc dri 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 arm64 x86 -LICENSE=MIT -RDEPEND=>=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(-)?] dri? ( >=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(-)?] ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://gitlab.freedesktop.org/vdpau/libvdpau/-/archive/libvdpau-1.2/libvdpau-libvdpau-1.2.tar.bz2 -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=892e06848b3963309851c96cdf65aa9f diff --git a/metadata/md5-cache/x11-libs/libvdpau-1.3 b/metadata/md5-cache/x11-libs/libvdpau-1.3 deleted file mode 100644 index 1b5f25c10efc..000000000000 --- a/metadata/md5-cache/x11-libs/libvdpau-1.3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-util/meson-0.54.0 >=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 prepare test -DEPEND=>=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(-)?] dri? ( >=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(-)?] ) virtual/pkgconfig doc? ( app-doc/doxygen media-gfx/graphviz virtual/latex-base ) dri? ( x11-base/xorg-proto ) -DESCRIPTION=VDPAU wrapper and trace libraries -EAPI=7 -HOMEPAGE=https://www.freedesktop.org/wiki/Software/VDPAU -IUSE=doc dri 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 ~arm64 x86 -LICENSE=MIT -RDEPEND=>=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(-)?] dri? ( >=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(-)?] ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://gitlab.freedesktop.org/vdpau/libvdpau/-/archive/1.3/libvdpau-1.3.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e meson fdaf2a7b9376934c1c7ddbd32114defb multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 65bb60d137e5a51f58ada69bf3f366da toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=0819cffc6199094ad726b6a86a041680 diff --git a/metadata/md5-cache/x11-misc/Manifest.gz b/metadata/md5-cache/x11-misc/Manifest.gz index 99f297e0ca97..e8b1c60309ed 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/vdpauinfo-1.3 b/metadata/md5-cache/x11-misc/vdpauinfo-1.3 deleted file mode 100644 index 5f26ba7ced42..000000000000 --- a/metadata/md5-cache/x11-misc/vdpauinfo-1.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=prepare -DEPEND=x11-libs/libX11 >=x11-libs/libvdpau-1.3 virtual/pkgconfig x11-base/xorg-proto -DESCRIPTION=Displays info about your card's VDPAU support -EAPI=7 -HOMEPAGE=https://www.freedesktop.org/wiki/Software/VDPAU -KEYWORDS=amd64 x86 -LICENSE=MIT -RDEPEND=x11-libs/libX11 >=x11-libs/libvdpau-1.3 -SLOT=0 -SRC_URI=https://gitlab.freedesktop.org/vdpau/vdpauinfo/-/archive/vdpauinfo-1.3/vdpauinfo-vdpauinfo-1.3.tar.gz -> vdpauinfo-1.3.tar.gz -_eclasses_=autotools 9988ecbe04129214297a7bbf3d253710 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=2adc78f417be82e491302e209c0c050e diff --git a/metadata/md5-cache/x11-themes/Manifest.gz b/metadata/md5-cache/x11-themes/Manifest.gz index 728349d0c189..4d1cebc4d0e2 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/light-themes-17.04_p20170406-r1 b/metadata/md5-cache/x11-themes/light-themes-17.04_p20170406-r2 similarity index 92% rename from metadata/md5-cache/x11-themes/light-themes-17.04_p20170406-r1 rename to metadata/md5-cache/x11-themes/light-themes-17.04_p20170406-r2 index e8c93798d02c..b8944ee61c74 100644 --- a/metadata/md5-cache/x11-themes/light-themes-17.04_p20170406-r1 +++ b/metadata/md5-cache/x11-themes/light-themes-17.04_p20170406-r2 @@ -9,4 +9,4 @@ LICENSE=CC-BY-SA-3.0 CC-BY-SA-4.0 RDEPEND=x11-themes/gtk-engines-murrine gtk3? ( x11-themes/gtk-engines-unico ) SLOT=0 SRC_URI=mirror://ubuntu/pool/main/u/ubuntu-themes/ubuntu-themes_16.10+17.04.20170406.orig.tar.gz https://dev.gentoo.org/~pacho/light-themes/Gentoo-Buttons-r1.tar.xz -_md5_=2d26e8e71cfe6d30c6ac3b0f9d6ad5d3 +_md5_=8c9aa6ab84b532fd88c4676db1971a35 diff --git a/metadata/md5-cache/x11-themes/light-themes-19.04 b/metadata/md5-cache/x11-themes/light-themes-19.04-r2 similarity index 75% rename from metadata/md5-cache/x11-themes/light-themes-19.04 rename to metadata/md5-cache/x11-themes/light-themes-19.04-r2 index 8cd48b05ffc6..cb2def7dbad7 100644 --- a/metadata/md5-cache/x11-themes/light-themes-19.04 +++ b/metadata/md5-cache/x11-themes/light-themes-19.04-r2 @@ -3,10 +3,9 @@ DEPEND=app-arch/xz-utils DESCRIPTION=GTK2/GTK3 Ambiance and Radiance themes from Ubuntu EAPI=7 HOMEPAGE=https://packages.ubuntu.com/zesty/light-themes -IUSE=gtk3 KEYWORDS=~amd64 ~x86 LICENSE=CC-BY-SA-3.0 CC-BY-SA-4.0 -RDEPEND=x11-themes/gtk-engines-murrine gtk3? ( x11-themes/gtk-engines-unico ) +RDEPEND=x11-themes/gtk-engines-murrine SLOT=0 SRC_URI=mirror://ubuntu/pool/main/u/ubuntu-themes/ubuntu-themes_19.04.orig.tar.gz https://dev.gentoo.org/~pacho/light-themes/Gentoo-Buttons-r1.tar.xz -_md5_=eed3e377dc992f5169c7b5e10fde7c1f +_md5_=631d62906b1e2790feb9f19f9c07a480 diff --git a/metadata/md5-cache/x11-themes/light-themes-20.10-r2 b/metadata/md5-cache/x11-themes/light-themes-20.10-r2 new file mode 100644 index 000000000000..f77f3e12cab4 --- /dev/null +++ b/metadata/md5-cache/x11-themes/light-themes-20.10-r2 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install prepare +DEPEND=app-arch/xz-utils +DESCRIPTION=GTK2/GTK3 Ambiance and Radiance themes from Ubuntu +EAPI=7 +HOMEPAGE=https://packages.ubuntu.com/zesty/light-themes +KEYWORDS=~amd64 ~x86 +LICENSE=CC-BY-SA-3.0 CC-BY-SA-4.0 +RDEPEND=x11-themes/gtk-engines-murrine +SLOT=0 +SRC_URI=mirror://ubuntu/pool/main/u/ubuntu-themes/ubuntu-themes_20.10.orig.tar.gz https://dev.gentoo.org/~pacho/light-themes/Gentoo-Buttons-r1.tar.xz +_md5_=631d62906b1e2790feb9f19f9c07a480 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 07ee96252b17..c7744d0bca9d 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Mon, 25 Jan 2021 05:38:35 +0000 +Tue, 26 Jan 2021 05:38:34 +0000 diff --git a/metadata/projects.xml b/metadata/projects.xml index e47eee3868b3..021fb22af3c5 100644 --- a/metadata/projects.xml +++ b/metadata/projects.xml @@ -575,6 +575,28 @@ OpenMPI/Slurm + + codec@gentoo.org + Core libraries for gfx / audio / video formats + https://wiki.gentoo.org/wiki/Project:Codec + The codec project maintains core libraries for gfx / audio / video formats, partly in cooperation with other projects. + + dilfridge@gentoo.org + Andreas K. Hüttel + + + mgorny@gentoo.org + Michał Górny + + + sam@gentoo.org + Sam James + + + whissi@gentoo.org + Thomas Deutschmann + + comrel@gentoo.org Community Relations diff --git a/metadata/timestamp b/metadata/timestamp index ebc4e444a9f6..f2a3c950010d 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Mon Jan 25 05:38:35 AM UTC 2021 +Tue Jan 26 05:38:33 AM UTC 2021 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index ef8c2e7ab900..eb4953dec604 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Mon, 25 Jan 2021 06:00:01 +0000 +Tue, 26 Jan 2021 06:00:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index 0c1b02472081..efe13daae30d 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -f70bc63e84eb5797b02ec3aa6d972d2f1f8bc55a 1611545271 2021-01-25T03:27:51+00:00 +b744f0a4f66a2f2466ef2c1197631914f0ec59eb 1611632300 2021-01-26T03:38:20+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 50deeacbe676..6099aaf50ed6 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1611552901 Mon 25 Jan 2021 05:35:01 AM UTC +1611639301 Tue 26 Jan 2021 05:35:01 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index 07ee96252b17..f0dad6f0dc60 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Mon, 25 Jan 2021 05:38:35 +0000 +Tue, 26 Jan 2021 05:38:33 +0000 diff --git a/net-analyzer/Manifest.gz b/net-analyzer/Manifest.gz index 9b61bb7ed7be..90b810cf3f85 100644 Binary files a/net-analyzer/Manifest.gz and b/net-analyzer/Manifest.gz differ diff --git a/net-analyzer/arping/arping-2.21.ebuild b/net-analyzer/arping/arping-2.21.ebuild index 889b70b2de49..6daaf2358a7a 100644 --- a/net-analyzer/arping/arping-2.21.ebuild +++ b/net-analyzer/arping/arping-2.21.ebuild @@ -2,9 +2,10 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools fcaps -DESCRIPTION="A utility to see if a specific IP address is taken and what MAC address owns it" +DESCRIPTION="A utility to see if a specific IP is taken and what MAC owns it" HOMEPAGE="http://www.habets.pp.se/synscan/programs.php?prog=arping" SRC_URI="https://github.com/ThomasHabets/${PN}/archive/${P}.tar.gz" @@ -16,19 +17,23 @@ RESTRICT="!test? ( test )" CDEPEND=" net-libs/libpcap - net-libs/libnet:1.1 -" + net-libs/libnet:1.1" DEPEND=" ${CDEPEND} - test? ( dev-libs/check ) -" + test? ( + dev-libs/check + dev-python/subunit )" RDEPEND=" ${CDEPEND} - !net-misc/iputils[arping(+)] -" + !net-misc/iputils[arping(+)]" + FILECAPS=( cap_net_raw /usr/sbin/arping ) + S=${WORKDIR}/${PN}-${P} +# patch is in upstream master +PATCHES=( "${FILESDIR}/arping-tests.patch" ) + src_prepare() { default eautoreconf diff --git a/net-analyzer/arping/files/arping-tests.patch b/net-analyzer/arping/files/arping-tests.patch new file mode 100644 index 000000000000..fb8592df372f --- /dev/null +++ b/net-analyzer/arping/files/arping-tests.patch @@ -0,0 +1,190 @@ +diff --git a/src/arping_test.c b/src/arping_test.c +index 438670b..0133fe7 100644 +--- a/src/arping_test.c ++++ b/src/arping_test.c +@@ -40,35 +40,10 @@ extern libnet_t* libnet; + extern int mock_libnet_lo_ok; + extern int mock_libnet_null_ok; + +-struct registered_test { +- void* fn; +- const char* name; +-}; +- +-static int numtests = 0; +-static struct registered_test test_registry[1024]; +- +-static int num_exit_tests = 0; +-static struct registered_test test_exit_registry[1024]; +- + int get_mac_addr(const char *in, char *out); + void strip_newline(char* s); + + +-#define MYTEST(a) static void a(int);__attribute__((constructor)) \ +-static void cons_##a() { \ +- test_registry[numtests].fn = a; \ +- test_registry[numtests].name = #a; \ +- numtests++; \ +-} START_TEST(a) +- +-#define MY_EXIT_TEST(a) static void a(int);__attribute__((constructor)) \ +-static void cons_##a() { \ +- test_exit_registry[num_exit_tests].fn = a; \ +- test_exit_registry[num_exit_tests].name = #a; \ +- num_exit_tests++; \ +-} START_TEST(a) +- + /** + * + */ +@@ -236,7 +211,7 @@ dump_packet(uint8_t* packet, int len) + fprintf(stderr, "\n"); + } + +-MYTEST(test_mkpacket) ++START_TEST(test_mkpacket) + { + uint8_t correct_packet[] = { + 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, +@@ -261,7 +236,7 @@ MYTEST(test_mkpacket) + + + // Received uninteresting packet, should not record anything. +-MYTEST(pingip_uninteresting_packet) ++START_TEST(pingip_uninteresting_packet) + { + struct pcap_pkthdr pkthdr; + uint8_t* packet; +@@ -389,7 +364,7 @@ MYTEST(pingip_uninteresting_packet) + } END_TEST + + // Received reply that actually matches. Things should happen. +-MYTEST(pingip_interesting_packet) ++START_TEST(pingip_interesting_packet) + { + struct pcap_pkthdr pkthdr; + extern uint8_t srcmac[ETH_ALEN]; +@@ -449,7 +424,7 @@ MYTEST(pingip_interesting_packet) + "numrecvd not incremented second time"); + } END_TEST + +-MYTEST(strip_newline_test) ++START_TEST(strip_newline_test) + { + const char *tests[][2] = { + {"", ""}, +@@ -469,7 +444,7 @@ MYTEST(strip_newline_test) + } + } END_TEST + +-MYTEST(get_mac_addr_success) ++START_TEST(get_mac_addr_success) + { + const char *tests[][2] = { + // Null. +@@ -501,7 +476,7 @@ MYTEST(get_mac_addr_success) + } + } END_TEST + +-MYTEST(get_mac_addr_fail) ++START_TEST(get_mac_addr_fail) + { + const char *tests[] = { + "", +@@ -517,7 +492,7 @@ MYTEST(get_mac_addr_fail) + } + } END_TEST + +-MY_EXIT_TEST(libnet_init_bad_nolo) ++START_TEST(libnet_init_bad_nolo) + { + // It'll only try lo if named interface fails. + // So by accepting lo, we make sure it doesn't try lo. +@@ -525,27 +500,28 @@ MY_EXIT_TEST(libnet_init_bad_nolo) + do_libnet_init("bad", 0); + } END_TEST + +-MY_EXIT_TEST(libnet_init_null_nolo_nonull) ++START_TEST(libnet_init_null_nolo_nonull) + { + mock_libnet_lo_ok = 0; + mock_libnet_null_ok = 0; + do_libnet_init(NULL, 0); + } END_TEST + +-MYTEST(libnet_init_good) ++START_TEST(libnet_init_good) + { + mock_libnet_lo_ok = 0; // Don't even try falling back to lo. + do_libnet_init("good", 0); + fail_if(libnet == NULL); + } END_TEST + +-MYTEST(libnet_init_null_nolo) ++START_TEST(libnet_init_null_nolo) + { + mock_libnet_lo_ok = 0; + mock_libnet_null_ok = 1; + do_libnet_init(NULL, 0); + fail_if(libnet == NULL); +-} END_TEST ++} ++END_TEST + + static Suite* + arping_suite(void) +@@ -553,17 +529,34 @@ arping_suite(void) + int c; + Suite* s = suite_create("Arping"); + +- //tcase_add_checked_fixture (tc_core, setup, teardown); +- for (c = 0; c < numtests; c++) { +- TCase *tc_core = tcase_create(test_registry[c].name); +- tcase_add_test(tc_core, test_registry[c].fn); +- suite_add_tcase(s, tc_core); +- } +- for (c = 0; c < num_exit_tests; c++) { +- TCase *tc_core = tcase_create(test_exit_registry[c].name); +- tcase_add_exit_test(tc_core, test_exit_registry[c].fn, 1); +- suite_add_tcase(s, tc_core); +- } ++ ++ TCase *tc_core; ++ ++ // libcheck broke test registries, so have to resort to code duplication. :-( ++ // https://github.com/libcheck/check/pull/158/files ++#define SIGH_LIBCHECK(tn) \ ++ tc_core = tcase_create(#tn); \ ++ tcase_add_test(tc_core, tn); \ ++ suite_add_tcase(s, tc_core); ++ ++ SIGH_LIBCHECK(libnet_init_null_nolo); ++ SIGH_LIBCHECK(test_mkpacket); ++ SIGH_LIBCHECK(pingip_uninteresting_packet); ++ SIGH_LIBCHECK(pingip_interesting_packet); ++ SIGH_LIBCHECK(strip_newline_test); ++ SIGH_LIBCHECK(get_mac_addr_success); ++ SIGH_LIBCHECK(get_mac_addr_fail); ++ SIGH_LIBCHECK(libnet_init_good); ++ ++ ++#define SIGH_LIBCHECK_EXIT(tn) \ ++ tc_core = tcase_create(#tn); \ ++ tcase_add_exit_test(tc_core, tn, 1); \ ++ suite_add_tcase(s, tc_core); ++ ++ SIGH_LIBCHECK_EXIT(libnet_init_bad_nolo); ++ SIGH_LIBCHECK_EXIT(libnet_init_null_nolo_nonull); ++ + return s; + } + +@@ -577,6 +570,7 @@ main() + number_failed = srunner_ntests_failed (sr); + srunner_free (sr); + return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE; ++ return 0; + } + /* ---- Emacs Variables ---- + * Local Variables: diff --git a/net-analyzer/masscan/Manifest b/net-analyzer/masscan/Manifest index 29f988e17eb1..3c3c024854f4 100644 --- a/net-analyzer/masscan/Manifest +++ b/net-analyzer/masscan/Manifest @@ -1,3 +1,4 @@ DIST masscan-1.0.4.tar.gz 343513 BLAKE2B e50789c8a2246c4109990e93c9c53cf68b2b555955f675e1a9acd4074c2b85773aba58f3644db1f98a88c4cff85cff5a9035f2fbc56978103458dc34e6dc353a SHA512 eb82d8ad4d6a5c77cf79197e18470a68f7c361f0785180d631e9625578e90af6ffdaa45b728349da5a1cb945a8f902541b8f708be8a4075737ccb06e948d6e2b DIST masscan-1.0.5.tar.gz 353901 BLAKE2B 83145955b42f660788fdd7687b0a88ad84d6f31a4f99fc1fe4691f266f3c3492882334d9f0b4acf3c31d33950daedda56b6623cd3ba6ef9a27914613f09d485b SHA512 55d58234994ebea10bcb3f45a24cdb51b020350faa116aee3a48861a119f66c339d1f533c978f52e37ccf5266be6fd2802765f13461d94eb28ec8d18c68e2f88 DIST masscan-1.3.0.tar.gz 451097 BLAKE2B 1d64a80345aa18cc0fdd00b5fca6708bcabded62571887e7171f6ac9e9f77f6d9f5bcca9c0ee04f67fcdf3ead1d6b242dc5129c6c9a94e560ac5380904a5a02a SHA512 dbf489d1fb1c882873071073ef8e65723bf3b805c794a5d13dfdcea539558f049845b5bc02ada1e313729954fe7ba29be727a777937b8e4d41778c9175d13824 +DIST masscan-1.3.1.tar.gz 461128 BLAKE2B cb18c6665bdd106dd6b9d69c904d465988b0727cfb62b3845b8b68e9f0db8d2fe4dd91b6bc0eb0ddb91a143a6d0656e774fb4dd9d7b19623261f94ace3c0b3e0 SHA512 bc43b0c41313b400d55f5da2c777c94c3db31e087c87dc8dc883cd319a6eb45da1e8d7de107f52748e415d75c104c6e564f72bf8d7677c9be84e9297d02fa466 diff --git a/net-analyzer/masscan/masscan-1.3.1.ebuild b/net-analyzer/masscan/masscan-1.3.1.ebuild new file mode 100644 index 000000000000..6a290f96f458 --- /dev/null +++ b/net-analyzer/masscan/masscan-1.3.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Mass IP port scanner" +HOMEPAGE="https://github.com/robertdavidgraham/masscan" +SRC_URI="https://github.com/robertdavidgraham/masscan/archive/${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="AGPL-3" +KEYWORDS="~amd64 ~x86" + +RDEPEND="net-libs/libpcap" + +src_prepare() { + default + + sed -i \ + -e '/$(CC)/s!$(CFLAGS)!$(LDFLAGS) $(CFLAGS)!g' \ + -e '/^GITVER :=/s!= .(.*!=!g' \ + -e '/^SYS/s|gcc|$(CC)|g' \ + -e '/^CFLAGS =/{s,=,+=,;s,-g -ggdb,,;s,-O3,,;}' \ + -e '/^CC =/d' \ + Makefile || die + + tc-export CC +} + +src_install() { + dobin bin/masscan + + insinto /etc/masscan + doins data/exclude.conf + doins "${FILESDIR}"/masscan.conf + + dodoc doc/bot.html *.md + + doman doc/masscan.8 +} diff --git a/net-analyzer/nmap/metadata.xml b/net-analyzer/nmap/metadata.xml index 668d67a59b22..0d1aaf915108 100644 --- a/net-analyzer/nmap/metadata.xml +++ b/net-analyzer/nmap/metadata.xml @@ -9,9 +9,9 @@ dilfridge@gentoo.org Andreas K. Hüttel - - netmon@gentoo.org - Gentoo network monitoring and analysis project + + zlogene@gentoo.org + Mikle Kolyada Enable SSH support through net-libs/libssh2 diff --git a/net-analyzer/suricata/Manifest b/net-analyzer/suricata/Manifest index 4393b479fd57..5a442b0ea2e5 100644 --- a/net-analyzer/suricata/Manifest +++ b/net-analyzer/suricata/Manifest @@ -1,4 +1,2 @@ -DIST suricata-5.0.4.tar.gz 29091046 BLAKE2B 38526ca39d2460d630fdd9e804f36c74bfcde54a529748896779b549ed1b55174d6080ddad8933ddfd26004f4e78748a503832f47ee5f52d84a133643aef482b SHA512 e5da14f80b628968e146839b828971e888fd0158b2ecbbcc15c0f42fda2bdcc8ad89632ba05cc45c88d88e537452e77f8e2f3a5e09ecd038d0d38b1a8cf8cea6 DIST suricata-5.0.5.tar.gz 29094537 BLAKE2B c2a5897836117abe9ca39b3a03de36c4d5667d3e64dc1befd77a7b777e4191439a497e3042e6d00b80ae31c8c4f18347cb2e6833e8db5f64b31c8ab1cf557ac5 SHA512 5f26731e0a0134fdecc8e76a68a69584bacb614ba4fd56b74f27abe62ab7d80135908eeaae38c9a03101f069d83597b3c7c69000bdd2a2e6bfe87f7a98de4e16 -DIST suricata-6.0.0.tar.gz 30832555 BLAKE2B 9cea05b07520924706e961efed6a45b9ba73388a25777f43c1a90497aa00ec200bad15863b7b17b84e622c79309365596853423776da9c3d103c2a8c1126a0d2 SHA512 3c30f6f57c0e8a24992ff2b4ce8ce166d3c0d4b28c8f5e79434d04de9f2016773be01a1689fedfc9e54ff1c8bc9838206bc28f3ff2e47d60102a7016f1062ec3 DIST suricata-6.0.1.tar.gz 30460439 BLAKE2B 55a24fa2f653a0a80f51e1ab102bb7046bd1f67d60c64c139b485086f4d8e0f5db58906bc33a7b5bdb76ba37b8206ded99b08034c4c292cf16d595bcafc7acc0 SHA512 be57150afc238b6627731e4463297e67469b66241779f5af3d1bd93bfad4fde41a5371298b54a06c7c3ea324e5642753ca57900173989ac738d663a85e9c33f4 diff --git a/net-analyzer/suricata/suricata-5.0.4.ebuild b/net-analyzer/suricata/suricata-5.0.4.ebuild deleted file mode 100644 index 077c14ece6d3..000000000000 --- a/net-analyzer/suricata/suricata-5.0.4.ebuild +++ /dev/null @@ -1,197 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6..9} ) - -inherit autotools flag-o-matic linux-info python-single-r1 systemd - -DESCRIPTION="High performance Network IDS, IPS and Network Security Monitoring engine" -HOMEPAGE="https://suricata-ids.org/" -SRC_URI="https://www.openinfosecfoundation.org/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+af-packet bpf control-socket cuda debug +detection geoip hardened logrotate lua luajit lz4 nflog +nfqueue redis systemd test" - -RESTRICT="!test? ( test )" - -REQUIRED_USE="${PYTHON_REQUIRED_USE} - ?? ( lua luajit ) - bpf? ( af-packet )" - -RDEPEND="${PYTHON_DEPS} - acct-group/suricata - acct-user/suricata - dev-libs/jansson - dev-libs/libpcre - dev-libs/libyaml - net-libs/libnet:* - net-libs/libnfnetlink - dev-libs/nspr - dev-libs/nss - $(python_gen_cond_dep ' - dev-python/pyyaml[${PYTHON_USEDEP}] - ') - >=net-libs/libhtp-0.5.35 - net-libs/libpcap - sys-apps/file - sys-libs/libcap-ng - bpf? ( >=dev-libs/libbpf-0.1.0 ) - cuda? ( dev-util/nvidia-cuda-toolkit ) - geoip? ( dev-libs/libmaxminddb ) - logrotate? ( app-admin/logrotate ) - lua? ( dev-lang/lua:0= ) - luajit? ( dev-lang/luajit:* ) - lz4? ( app-arch/lz4 ) - nflog? ( net-libs/libnetfilter_log ) - nfqueue? ( net-libs/libnetfilter_queue ) - redis? ( dev-libs/hiredis )" -DEPEND="${RDEPEND} - >=sys-devel/autoconf-2.69-r5 - virtual/rust" - -PATCHES=( - "${FILESDIR}/${PN}-5.0.1_configure-no-lz4-automagic.patch" - "${FILESDIR}/${PN}-5.0.1_default-config.patch" -) - -pkg_pretend() { - if use bpf && use kernel_linux; then - if kernel_is -lt 4 15; then - ewarn "Kernel 4.15 or newer is necessary to use all XDP features like the CPU redirect map" - fi - - CONFIG_CHECK="~XDP_SOCKETS" - ERROR_XDP_SOCKETS="CONFIG_XDP_SOCKETS is not set, making it impossible for Suricata to load XDP programs. " - ERROR_XDP_SOCKETS+="Other eBPF features should work normally." - check_extra_config - fi -} - -src_prepare() { - default - sed -ie 's/docdir =.*/docdir = ${datarootdir}\/doc\/'${PF}'\//' "${S}/doc/Makefile.am" || die - eautoreconf -} - -src_configure() { - local myeconfargs=( - "--localstatedir=/var" \ - "--runstatedir=/run" \ - "--enable-non-bundled-htp" \ - "--enable-gccmarch-native=no" \ - "--enable-python" \ - $(use_enable af-packet) \ - $(use_enable bpf ebpf) \ - $(use_enable control-socket unix-socket) \ - $(use_enable cuda) \ - $(use_enable detection) \ - $(use_enable geoip) \ - $(use_enable hardened gccprotect) \ - $(use_enable hardened pie) \ - $(use_enable lua) \ - $(use_enable luajit) \ - $(use_enable lz4) \ - $(use_enable nflog) \ - $(use_enable nfqueue) \ - $(use_enable redis hiredis) \ - $(use_enable test unittests) \ - "--disable-coccinelle" - ) - - if use debug; then - myeconfargs+=( $(use_enable debug) ) - # so we can get a backtrace according to "reporting bugs" on upstream web site - CFLAGS="-ggdb -O0" econf ${myeconfargs[@]} - else - econf ${myeconfargs[@]} - fi -} - -src_install() { - emake DESTDIR="${D}" install - python_optimize - - if use bpf; then - rm -f ebpf/Makefile.{am,in} - dodoc -r ebpf/ - keepdir /usr/libexec/suricata/ebpf - fi - - insinto "/etc/${PN}" - doins etc/{classification,reference}.config threshold.config suricata.yaml - - keepdir "/var/lib/${PN}/rules" "/var/lib/${PN}/update" - keepdir "/var/log/${PN}" - - fowners -R ${PN}: "/var/lib/${PN}" "/var/log/${PN}" "/etc/${PN}" - fperms 750 "/var/lib/${PN}" "/var/log/${PN}" "/etc/${PN}" - fperms 2750 "/var/lib/${PN}/rules" "/var/lib/${PN}/update" - - newinitd "${FILESDIR}/${PN}-5.0.1-init" ${PN} - newconfd "${FILESDIR}/${PN}-5.0.1-conf" ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service - systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfiles ${PN}.conf - - if use logrotate; then - insopts -m0644 - insinto /etc/logrotate.d - newins etc/${PN}.logrotate ${PN} - fi -} - -pkg_postinst() { - elog "" - if use systemd; then - elog "Suricata requires either the mode of operation (e.g. --af-packet) or the interface to listen on (e.g. -i eth0)" - elog "to be specified on the command line. The provided systemd unit launches Suricata in af-packet mode and relies" - elog "on file configuration to specify interfaces, should you prefer to run it differently you will have to customise" - elog "said unit. The simplest way of doing it is to override the Environment=OPTIONS='...' line using a .conf file" - elog "placed in the directory ${EPREFIX}/etc/systemd/system/suricata.service.d/ ." - elog "For details, see the section on drop-in directories in systemd.unit(5)." - else - elog "The ${PN} init script expects to find the path to the configuration" - elog "file as well as extra options in /etc/conf.d." - elog "" - elog "To create more than one ${PN} service, simply create a new .yaml file for it" - elog "then create a symlink to the init script from a link called" - elog "${PN}.foo - like so" - elog " cd /etc/${PN}" - elog " ${EDITOR##*/} suricata-foo.yaml" - elog " cd /etc/init.d" - elog " ln -s ${PN} ${PN}.foo" - elog "Then edit /etc/conf.d/${PN} and make sure you specify sensible options for foo." - elog "" - elog "You can create as many ${PN}.foo* services as you wish." - fi - - if use bpf; then - elog "" - elog "eBPF/XDP files must be compiled (using sys-devel/clang[llvm_targets_BPF]) before use" - elog "because their configuration is hard-coded. You can find the default ones in" - elog " ${EPREFIX}/usr/share/doc/${PF}/ebpf" - elog "and the common location for eBPF bytecode is" - elog " ${EPREFIX}/usr/libexec/${PN}" - elog "For more information, see https://${PN}.readthedocs.io/en/${P}/capture-hardware/ebpf-xdp.html" - fi - - if use debug; then - elog "" - elog "You have enabled the debug USE flag. Please read this link to report bugs upstream:" - elog "https://redmine.openinfosecfoundation.org/projects/suricata/wiki/Reporting_Bugs" - elog "You need to also ensure the FEATURES variable in make.conf contains the" - elog "'nostrip' option to produce useful core dumps or back traces." - fi - - elog "" - elog "To download and install an initial set of rules, run:" - elog " emerge --config =${CATEGORY}/${PF}" - elog "" -} - -pkg_config() { - suricata-update -} diff --git a/net-analyzer/suricata/suricata-5.0.5.ebuild b/net-analyzer/suricata/suricata-5.0.5-r1.ebuild similarity index 89% rename from net-analyzer/suricata/suricata-5.0.5.ebuild rename to net-analyzer/suricata/suricata-5.0.5-r1.ebuild index db9ee04aadb6..9fd6cb858948 100644 --- a/net-analyzer/suricata/suricata-5.0.5.ebuild +++ b/net-analyzer/suricata/suricata-5.0.5-r1.ebuild @@ -1,11 +1,12 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +LUA_COMPAT=( lua5-1 luajit ) PYTHON_COMPAT=( python3_{6..9} ) -inherit autotools flag-o-matic linux-info python-single-r1 systemd +inherit autotools flag-o-matic linux-info lua-single python-single-r1 systemd DESCRIPTION="High performance Network IDS, IPS and Network Security Monitoring engine" HOMEPAGE="https://suricata-ids.org/" @@ -14,13 +15,13 @@ SRC_URI="https://www.openinfosecfoundation.org/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+af-packet bpf control-socket cuda debug +detection geoip hardened logrotate lua luajit lz4 nflog +nfqueue redis systemd test" +IUSE="+af-packet bpf control-socket cuda debug +detection geoip hardened logrotate lua lz4 nflog +nfqueue redis systemd test" RESTRICT="!test? ( test )" REQUIRED_USE="${PYTHON_REQUIRED_USE} - ?? ( lua luajit ) - bpf? ( af-packet )" + bpf? ( af-packet ) + lua? ( ${LUA_REQUIRED_USE} )" RDEPEND="${PYTHON_DEPS} acct-group/suricata @@ -43,8 +44,7 @@ RDEPEND="${PYTHON_DEPS} cuda? ( dev-util/nvidia-cuda-toolkit ) geoip? ( dev-libs/libmaxminddb ) logrotate? ( app-admin/logrotate ) - lua? ( dev-lang/lua:0= ) - luajit? ( dev-lang/luajit:* ) + lua? ( ${LUA_DEPS} ) lz4? ( app-arch/lz4 ) nflog? ( net-libs/libnetfilter_log ) nfqueue? ( net-libs/libnetfilter_queue ) @@ -92,8 +92,6 @@ src_configure() { $(use_enable geoip) \ $(use_enable hardened gccprotect) \ $(use_enable hardened pie) \ - $(use_enable lua) \ - $(use_enable luajit) \ $(use_enable lz4) \ $(use_enable nflog) \ $(use_enable nfqueue) \ @@ -101,6 +99,13 @@ src_configure() { $(use_enable test unittests) \ "--disable-coccinelle" ) + if use lua; then + if use lua_single_target_luajit; then + myeconfargs+=( --enable-luajit ) + else + myeconfargs+=( --enable-lua ) + fi + fi if use debug; then myeconfargs+=( $(use_enable debug) ) @@ -144,7 +149,7 @@ src_install() { } pkg_postinst() { - elog "" + elog if use systemd; then elog "Suricata requires either the mode of operation (e.g. --af-packet) or the interface to listen on (e.g. -i eth0)" elog "to be specified on the command line. The provided systemd unit launches Suricata in af-packet mode and relies" @@ -155,7 +160,7 @@ pkg_postinst() { else elog "The ${PN} init script expects to find the path to the configuration" elog "file as well as extra options in /etc/conf.d." - elog "" + elog elog "To create more than one ${PN} service, simply create a new .yaml file for it" elog "then create a symlink to the init script from a link called" elog "${PN}.foo - like so" @@ -164,12 +169,12 @@ pkg_postinst() { elog " cd /etc/init.d" elog " ln -s ${PN} ${PN}.foo" elog "Then edit /etc/conf.d/${PN} and make sure you specify sensible options for foo." - elog "" + elog elog "You can create as many ${PN}.foo* services as you wish." fi if use bpf; then - elog "" + elog elog "eBPF/XDP files must be compiled (using sys-devel/clang[llvm_targets_BPF]) before use" elog "because their configuration is hard-coded. You can find the default ones in" elog " ${EPREFIX}/usr/share/doc/${PF}/ebpf" @@ -179,17 +184,19 @@ pkg_postinst() { fi if use debug; then - elog "" + elog elog "You have enabled the debug USE flag. Please read this link to report bugs upstream:" elog "https://redmine.openinfosecfoundation.org/projects/suricata/wiki/Reporting_Bugs" elog "You need to also ensure the FEATURES variable in make.conf contains the" elog "'nostrip' option to produce useful core dumps or back traces." fi - elog "" - elog "To download and install an initial set of rules, run:" - elog " emerge --config =${CATEGORY}/${PF}" - elog "" + elog + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "To download and install an initial set of rules, run:" + elog " emerge --config =${CATEGORY}/${PF}" + fi + elog } pkg_config() { diff --git a/net-analyzer/suricata/suricata-6.0.0.ebuild b/net-analyzer/suricata/suricata-6.0.0.ebuild deleted file mode 100644 index 6a00d0c18c98..000000000000 --- a/net-analyzer/suricata/suricata-6.0.0.ebuild +++ /dev/null @@ -1,203 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6..9} ) - -inherit autotools flag-o-matic linux-info python-single-r1 systemd - -DESCRIPTION="High performance Network IDS, IPS and Network Security Monitoring engine" -HOMEPAGE="https://suricata-ids.org/" -SRC_URI="https://www.openinfosecfoundation.org/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+af-packet bpf control-socket cuda debug +detection geoip hardened logrotate lua luajit lz4 nflog +nfqueue redis systemd test" - -RESTRICT="!test? ( test )" - -REQUIRED_USE="${PYTHON_REQUIRED_USE} - ?? ( lua luajit ) - bpf? ( af-packet )" - -RDEPEND="${PYTHON_DEPS} - acct-group/suricata - acct-user/suricata - dev-libs/jansson - dev-libs/libpcre - dev-libs/libyaml - net-libs/libnet:* - net-libs/libnfnetlink - dev-libs/nspr - dev-libs/nss - $(python_gen_cond_dep ' - dev-python/pyyaml[${PYTHON_USEDEP}] - ') - >=net-libs/libhtp-0.5.35 - net-libs/libpcap - sys-apps/file - sys-libs/libcap-ng - bpf? ( >=dev-libs/libbpf-0.1.0 ) - cuda? ( dev-util/nvidia-cuda-toolkit ) - geoip? ( dev-libs/libmaxminddb ) - logrotate? ( app-admin/logrotate ) - lua? ( dev-lang/lua:0= ) - luajit? ( dev-lang/luajit:* ) - lz4? ( app-arch/lz4 ) - nflog? ( net-libs/libnetfilter_log ) - nfqueue? ( net-libs/libnetfilter_queue ) - redis? ( dev-libs/hiredis )" -DEPEND="${RDEPEND} - >=sys-devel/autoconf-2.69-r5 - virtual/rust" - -PATCHES=( - "${FILESDIR}/${PN}-5.0.1_configure-no-lz4-automagic.patch" - "${FILESDIR}/${PN}-6.0.0_default-config.patch" -) - -pkg_pretend() { - if use bpf && use kernel_linux; then - if kernel_is -lt 4 15; then - ewarn "Kernel 4.15 or newer is necessary to use all XDP features like the CPU redirect map" - fi - - CONFIG_CHECK="~XDP_SOCKETS" - ERROR_XDP_SOCKETS="CONFIG_XDP_SOCKETS is not set, making it impossible for Suricata to load XDP programs. " - ERROR_XDP_SOCKETS+="Other eBPF features should work normally." - check_extra_config - fi -} - -src_prepare() { - default - sed -ie 's/docdir =.*/docdir = ${datarootdir}\/doc\/'${PF}'\//' "${S}/doc/Makefile.am" || die - eautoreconf -} - -src_configure() { - local myeconfargs=( - "--localstatedir=/var" \ - "--runstatedir=/run" \ - "--enable-non-bundled-htp" \ - "--enable-gccmarch-native=no" \ - "--enable-python" \ - $(use_enable af-packet) \ - $(use_enable bpf ebpf) \ - $(use_enable control-socket unix-socket) \ - $(use_enable cuda) \ - $(use_enable detection) \ - $(use_enable geoip) \ - $(use_enable hardened gccprotect) \ - $(use_enable hardened pie) \ - $(use_enable lua) \ - $(use_enable luajit) \ - $(use_enable lz4) \ - $(use_enable nflog) \ - $(use_enable nfqueue) \ - $(use_enable redis hiredis) \ - $(use_enable test unittests) \ - "--disable-coccinelle" - ) - - if use debug; then - myeconfargs+=( $(use_enable debug) ) - # so we can get a backtrace according to "reporting bugs" on upstream web site - CFLAGS="-ggdb -O0" econf ${myeconfargs[@]} - else - econf ${myeconfargs[@]} - fi -} - -src_install() { - emake DESTDIR="${D}" install - python_optimize - - if use bpf; then - rm -f ebpf/Makefile.{am,in} - dodoc -r ebpf/ - keepdir /usr/libexec/suricata/ebpf - fi - - insinto "/etc/${PN}" - doins etc/{classification,reference}.config threshold.config suricata.yaml - - keepdir "/var/lib/${PN}/rules" "/var/lib/${PN}/update" - keepdir "/var/log/${PN}" - - fowners -R ${PN}: "/var/lib/${PN}" "/var/log/${PN}" "/etc/${PN}" - fperms 750 "/var/lib/${PN}" "/var/log/${PN}" "/etc/${PN}" - fperms 2750 "/var/lib/${PN}/rules" "/var/lib/${PN}/update" - - newinitd "${FILESDIR}/${PN}-5.0.1-init" ${PN} - newconfd "${FILESDIR}/${PN}-5.0.1-conf" ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service - systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfiles ${PN}.conf - - if use logrotate; then - insopts -m0644 - insinto /etc/logrotate.d - newins etc/${PN}.logrotate ${PN} - fi -} - -pkg_postinst() { - elog - if use systemd; then - elog "Suricata requires either the mode of operation (e.g. --af-packet) or the interface to listen on (e.g. -i eth0)" - elog "to be specified on the command line. The provided systemd unit launches Suricata in af-packet mode and relies" - elog "on file configuration to specify interfaces, should you prefer to run it differently you will have to customise" - elog "said unit. The simplest way of doing it is to override the Environment=OPTIONS='...' line using a .conf file" - elog "placed in the directory ${EPREFIX}/etc/systemd/system/suricata.service.d/ ." - elog "For details, see the section on drop-in directories in systemd.unit(5)." - else - elog "The ${PN} init script expects to find the path to the configuration" - elog "file as well as extra options in /etc/conf.d." - elog - elog "To create more than one ${PN} service, simply create a new .yaml file for it" - elog "then create a symlink to the init script from a link called" - elog "${PN}.foo - like so" - elog " cd /etc/${PN}" - elog " ${EDITOR##*/} suricata-foo.yaml" - elog " cd /etc/init.d" - elog " ln -s ${PN} ${PN}.foo" - elog "Then edit /etc/conf.d/${PN} and make sure you specify sensible options for foo." - elog - elog "You can create as many ${PN}.foo* services as you wish." - fi - - if use bpf; then - elog - elog "eBPF/XDP files must be compiled (using sys-devel/clang[llvm_targets_BPF]) before use" - elog "because their configuration is hard-coded. You can find the default ones in" - elog " ${EPREFIX}/usr/share/doc/${PF}/ebpf" - elog "and the common location for eBPF bytecode is" - elog " ${EPREFIX}/usr/libexec/${PN}" - elog "For more information, see https://${PN}.readthedocs.io/en/${P}/capture-hardware/ebpf-xdp.html" - fi - - if use debug; then - elog - elog "You have enabled the debug USE flag. Please read this link to report bugs upstream:" - elog "https://redmine.openinfosecfoundation.org/projects/suricata/wiki/Reporting_Bugs" - elog "You need to also ensure the FEATURES variable in make.conf contains the" - elog "'nostrip' option to produce useful core dumps or back traces." - fi - - elog - if [[ -n "${REPLACING_VERSIONS}" ]]; then - ewarn "Since version 6.0.0 Suricata no longer supports the unified2 output format commonly used" - ewarn "in legacy, Snort-compatible IDS solutions, e.g. ones based on net-analyzer/barnyard2." - ewarn "If you need unified2 support, please continue to use suricata-5." - else - elog "To download and install an initial set of rules, run:" - elog " emerge --config =${CATEGORY}/${PF}" - fi - elog -} - -pkg_config() { - suricata-update -} diff --git a/net-analyzer/suricata/suricata-6.0.1.ebuild b/net-analyzer/suricata/suricata-6.0.1.ebuild deleted file mode 100644 index 6602a4b80adc..000000000000 --- a/net-analyzer/suricata/suricata-6.0.1.ebuild +++ /dev/null @@ -1,203 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6..9} ) - -inherit autotools flag-o-matic linux-info python-single-r1 systemd - -DESCRIPTION="High performance Network IDS, IPS and Network Security Monitoring engine" -HOMEPAGE="https://suricata-ids.org/" -SRC_URI="https://www.openinfosecfoundation.org/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+af-packet bpf control-socket cuda debug +detection geoip hardened logrotate lua luajit lz4 nflog +nfqueue redis systemd test" - -RESTRICT="!test? ( test )" - -REQUIRED_USE="${PYTHON_REQUIRED_USE} - ?? ( lua luajit ) - bpf? ( af-packet )" - -RDEPEND="${PYTHON_DEPS} - acct-group/suricata - acct-user/suricata - dev-libs/jansson - dev-libs/libpcre - dev-libs/libyaml - net-libs/libnet:* - net-libs/libnfnetlink - dev-libs/nspr - dev-libs/nss - $(python_gen_cond_dep ' - dev-python/pyyaml[${PYTHON_USEDEP}] - ') - >=net-libs/libhtp-0.5.36 - net-libs/libpcap - sys-apps/file - sys-libs/libcap-ng - bpf? ( >=dev-libs/libbpf-0.1.0 ) - cuda? ( dev-util/nvidia-cuda-toolkit ) - geoip? ( dev-libs/libmaxminddb ) - logrotate? ( app-admin/logrotate ) - lua? ( dev-lang/lua:0= ) - luajit? ( dev-lang/luajit:* ) - lz4? ( app-arch/lz4 ) - nflog? ( net-libs/libnetfilter_log ) - nfqueue? ( net-libs/libnetfilter_queue ) - redis? ( dev-libs/hiredis )" -DEPEND="${RDEPEND} - >=sys-devel/autoconf-2.69-r5 - virtual/rust" - -PATCHES=( - "${FILESDIR}/${PN}-5.0.1_configure-no-lz4-automagic.patch" - "${FILESDIR}/${PN}-6.0.0_default-config.patch" -) - -pkg_pretend() { - if use bpf && use kernel_linux; then - if kernel_is -lt 4 15; then - ewarn "Kernel 4.15 or newer is necessary to use all XDP features like the CPU redirect map" - fi - - CONFIG_CHECK="~XDP_SOCKETS" - ERROR_XDP_SOCKETS="CONFIG_XDP_SOCKETS is not set, making it impossible for Suricata to load XDP programs. " - ERROR_XDP_SOCKETS+="Other eBPF features should work normally." - check_extra_config - fi -} - -src_prepare() { - default - sed -ie 's/docdir =.*/docdir = ${datarootdir}\/doc\/'${PF}'\//' "${S}/doc/Makefile.am" || die - eautoreconf -} - -src_configure() { - local myeconfargs=( - "--localstatedir=/var" \ - "--runstatedir=/run" \ - "--enable-non-bundled-htp" \ - "--enable-gccmarch-native=no" \ - "--enable-python" \ - $(use_enable af-packet) \ - $(use_enable bpf ebpf) \ - $(use_enable control-socket unix-socket) \ - $(use_enable cuda) \ - $(use_enable detection) \ - $(use_enable geoip) \ - $(use_enable hardened gccprotect) \ - $(use_enable hardened pie) \ - $(use_enable lua) \ - $(use_enable luajit) \ - $(use_enable lz4) \ - $(use_enable nflog) \ - $(use_enable nfqueue) \ - $(use_enable redis hiredis) \ - $(use_enable test unittests) \ - "--disable-coccinelle" - ) - - if use debug; then - myeconfargs+=( $(use_enable debug) ) - # so we can get a backtrace according to "reporting bugs" on upstream web site - CFLAGS="-ggdb -O0" econf ${myeconfargs[@]} - else - econf ${myeconfargs[@]} - fi -} - -src_install() { - emake DESTDIR="${D}" install - python_optimize - - if use bpf; then - rm -f ebpf/Makefile.{am,in} - dodoc -r ebpf/ - keepdir /usr/libexec/suricata/ebpf - fi - - insinto "/etc/${PN}" - doins etc/{classification,reference}.config threshold.config suricata.yaml - - keepdir "/var/lib/${PN}/rules" "/var/lib/${PN}/update" - keepdir "/var/log/${PN}" - - fowners -R ${PN}: "/var/lib/${PN}" "/var/log/${PN}" "/etc/${PN}" - fperms 750 "/var/lib/${PN}" "/var/log/${PN}" "/etc/${PN}" - fperms 2750 "/var/lib/${PN}/rules" "/var/lib/${PN}/update" - - newinitd "${FILESDIR}/${PN}-5.0.1-init" ${PN} - newconfd "${FILESDIR}/${PN}-5.0.1-conf" ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service - systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfiles ${PN}.conf - - if use logrotate; then - insopts -m0644 - insinto /etc/logrotate.d - newins etc/${PN}.logrotate ${PN} - fi -} - -pkg_postinst() { - elog - if use systemd; then - elog "Suricata requires either the mode of operation (e.g. --af-packet) or the interface to listen on (e.g. -i eth0)" - elog "to be specified on the command line. The provided systemd unit launches Suricata in af-packet mode and relies" - elog "on file configuration to specify interfaces, should you prefer to run it differently you will have to customise" - elog "said unit. The simplest way of doing it is to override the Environment=OPTIONS='...' line using a .conf file" - elog "placed in the directory ${EPREFIX}/etc/systemd/system/suricata.service.d/ ." - elog "For details, see the section on drop-in directories in systemd.unit(5)." - else - elog "The ${PN} init script expects to find the path to the configuration" - elog "file as well as extra options in /etc/conf.d." - elog - elog "To create more than one ${PN} service, simply create a new .yaml file for it" - elog "then create a symlink to the init script from a link called" - elog "${PN}.foo - like so" - elog " cd /etc/${PN}" - elog " ${EDITOR##*/} suricata-foo.yaml" - elog " cd /etc/init.d" - elog " ln -s ${PN} ${PN}.foo" - elog "Then edit /etc/conf.d/${PN} and make sure you specify sensible options for foo." - elog - elog "You can create as many ${PN}.foo* services as you wish." - fi - - if use bpf; then - elog - elog "eBPF/XDP files must be compiled (using sys-devel/clang[llvm_targets_BPF]) before use" - elog "because their configuration is hard-coded. You can find the default ones in" - elog " ${EPREFIX}/usr/share/doc/${PF}/ebpf" - elog "and the common location for eBPF bytecode is" - elog " ${EPREFIX}/usr/libexec/${PN}" - elog "For more information, see https://${PN}.readthedocs.io/en/${P}/capture-hardware/ebpf-xdp.html" - fi - - if use debug; then - elog - elog "You have enabled the debug USE flag. Please read this link to report bugs upstream:" - elog "https://redmine.openinfosecfoundation.org/projects/suricata/wiki/Reporting_Bugs" - elog "You need to also ensure the FEATURES variable in make.conf contains the" - elog "'nostrip' option to produce useful core dumps or back traces." - fi - - elog - if [[ -n "${REPLACING_VERSIONS}" ]]; then - ewarn "Since version 6.0.0 Suricata no longer supports the unified2 output format commonly used" - ewarn "in legacy, Snort-compatible IDS solutions, e.g. ones based on net-analyzer/barnyard2." - ewarn "If you need unified2 support, please continue to use suricata-5." - else - elog "To download and install an initial set of rules, run:" - elog " emerge --config =${CATEGORY}/${PF}" - fi - elog -} - -pkg_config() { - suricata-update -} diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz index 7752d4635667..3c9ba9d55c0f 100644 Binary files a/net-dns/Manifest.gz and b/net-dns/Manifest.gz differ diff --git a/net-dns/dnsmasq/Manifest b/net-dns/dnsmasq/Manifest index 48a71d9fcdd8..5c828b66a970 100644 --- a/net-dns/dnsmasq/Manifest +++ b/net-dns/dnsmasq/Manifest @@ -1,3 +1,4 @@ DIST dnsmasq-2.81.tar.xz 510648 BLAKE2B 07861888df11f6e2e02d1b80f4e82a407b558ddb34e016f7bda5cb449ee870db000683264b2e36987ece16d50ab773f239bf12dd3468b9529ae4dccd77ecb8ee SHA512 85550c9782fef9b0710d0e233523ed1fe26e877a8bc53fcea3f7cf1fb17c3a79c46f284a99dab2bdaf6a107ea3f1a71cec476ab6d4e1b936da6591aaef42c88e DIST dnsmasq-2.82.tar.xz 509904 BLAKE2B 4df3778b2ec6775a6147f66d53b8dd7068d97872c6e5d3a16716faeb0ca489331560c77d6fa9cc913af0d7e0320a6ef463c690bb9e3fdbd8c266ed273e5a5403 SHA512 faf36efdaa3abe84994e46aea018b0a324218d42814baac056ca635f6d03f1301e7b4d958f92b272a8e3a7ac358f3a4e2606129a217587b471aedb3ce23e903b DIST dnsmasq-2.83.tar.xz 513880 BLAKE2B 16220fd7eac03f3ba70b014ace3c9775a85b31cdbabd7680d88a87697453a54bfec4c553207477f416032e679dbdaf3ca6c8bb56b72ee423540e0bedf0621865 SHA512 1eaade775dc19658afe825407c10456ab954b82034644bb19af2594d737ceae17ff2cee7f1f917e8e8b2dadbfbcb83dd8b842c0693fcac71487a5fade1eb4b05 +DIST dnsmasq-2.84.tar.xz 514216 BLAKE2B 2bca97c16bcf32e0126eb50dc14b82a1f37e1635ebd1dc205e9a92455640fcbb98c093be725768ba9ced84443e451775f8556a164c82967e09e1df4bf7fc901b SHA512 e84bdcdf3cf35f08e8492eb5aa89ee6543233bdb821d01f164783bd6d0913ec01c513e85e2109352c77e77142a1a94bedcd3361f37d7b2a9a5d35a02448e85c6 diff --git a/net-dns/dnsmasq/dnsmasq-2.84-r100.ebuild b/net-dns/dnsmasq/dnsmasq-2.84-r100.ebuild new file mode 100644 index 000000000000..a96c17c5fb2a --- /dev/null +++ b/net-dns/dnsmasq/dnsmasq-2.84-r100.ebuild @@ -0,0 +1,217 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( lua5-{1..4} luajit ) + +inherit toolchain-funcs flag-o-matic lua-single systemd + +DESCRIPTION="Small forwarding DNS server" +HOMEPAGE="http://www.thekelleys.org.uk/dnsmasq/doc.html" +SRC_URI="http://www.thekelleys.org.uk/dnsmasq/${P}.tar.xz" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + +IUSE="auth-dns conntrack dbus +dhcp dhcp-tools dnssec +dumpfile id idn libidn2" +IUSE+=" +inotify ipv6 lua nettlehash nls script selinux static tftp" + +DM_LINGUAS=(de es fi fr id it no pl pt_BR ro) + +BDEPEND=" + app-arch/xz-utils + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +COMMON_DEPEND=" + acct-group/dnsmasq + acct-user/dnsmasq + dbus? ( sys-apps/dbus:= ) + idn? ( + !libidn2? ( net-dns/libidn:0= ) + libidn2? ( >=net-dns/libidn2-2.0:= ) + ) + lua? ( ${LUA_DEPS} ) + conntrack? ( net-libs/libnetfilter_conntrack:= ) + nls? ( sys-devel/gettext ) +" + +DEPEND="${COMMON_DEPEND} + dnssec? ( + dev-libs/nettle:=[gmp] + static? ( >=dev-libs/nettle-3.4[static-libs(+)] ) + ) +" + +RDEPEND="${COMMON_DEPEND} + dnssec? ( + !static? ( >=dev-libs/nettle-3.4:=[gmp] ) + ) + selinux? ( sec-policy/selinux-dnsmasq ) +" + +REQUIRED_USE=" + dhcp-tools? ( dhcp ) + dnssec? ( !nettlehash ) + lua? ( + script + ${LUA_REQUIRED_USE} + ) + libidn2? ( idn ) +" + +PATCHES=( + "${FILESDIR}/dnsmasq-2.84-version-string.patch" +) + +use_have() { + local no_only + if [[ ${1} == '-n' ]]; then + no_only=1 + shift + fi + local useflag="${1}" + shift + + local uword="${1:-${useflag}}" + shift + + while [[ ${uword} ]]; do + uword="${uword^^}" + + if ! use "${useflag}"; then + printf -- " -DNO_%s" "${uword}" + elif [[ -z "${no_only}" ]]; then + printf -- " -DHAVE_%s" "${uword}" + fi + uword="${1}" + shift + done +} + +pkg_pretend() { + if use static; then + einfo "Only sys-libs/gmp and dev-libs/nettle are statically linked." + use dnssec || einfo "Thus, ${P}[!dnssec,static] makes no sense;" \ + "in this case the static USE flag does nothing." + fi +} + +src_prepare() { + default + + sed -i -r 's:lua5.[0-9]+:lua:' Makefile || die + sed -i "s:%%PREFIX%%:${EPREFIX}/usr:" \ + dnsmasq.conf.example || die +} + +src_configure() { + COPTS=( + $(use_have -n auth-dns auth) + $(use_have conntrack) + $(use_have dbus) + $(use libidn2 || use_have idn) + $(use_have libidn2) + $(use_have -n inotify) + $(use_have -n dhcp dhcp dhcp6) + $(use_have -n ipv6 ipv6 dhcp6) + $(use_have -n id id) + $(use_have lua luascript) + $(use_have -n script) + $(use_have -n tftp) + $(use_have dnssec) + $(use_have nettlehash) + $(use_have static dnssec_static) + $(use_have -n dumpfile) + ) +} + +src_compile() { + emake \ + PREFIX=/usr \ + MANDIR=/usr/share/man \ + CC="$(tc-getCC)" \ + PKG_CONFIG="$(tc-getPKG_CONFIG)" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ + COPTS="${COPTS[*]}" \ + CONFFILE="/etc/${PN}.conf" \ + all$(use nls && printf -- "-i18n\n") + + use dhcp-tools && emake -C contrib/lease-tools \ + PREFIX=/usr \ + MANDIR=/usr/share/man \ + CC="$(tc-getCC)" \ + PKG_CONFIG="$(tc-getPKG_CONFIG)" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ + all +} + +src_install() { + local lingua puid + emake \ + PREFIX=/usr \ + MANDIR=/usr/share/man \ + COPTS="${COPTS[*]}" \ + DESTDIR="${ED}" \ + install$(use nls && printf -- "-i18n\n") + + for lingua in "${DM_LINGUAS[@]}"; do + has ${lingua} ${LINGUAS-${lingua}} \ + || rm -rf "${ED}"/usr/share/locale/${lingua} + done + [[ -d "${D}"/usr/share/locale/ ]] && \ + rmdir --ignore-fail-on-non-empty "${ED}"/usr/share/locale/ + + dodoc CHANGELOG CHANGELOG.archive FAQ dnsmasq.conf.example + dodoc -r logo + + docinto html/ + dodoc *.html + + newinitd "${FILESDIR}"/dnsmasq-init-r4 ${PN} + newconfd "${FILESDIR}"/dnsmasq.confd-r1 ${PN} + + insinto /etc/logrotate.d + newins "${FILESDIR}"/dnsmasq.logrotate ${PN} + + insinto /etc + newins dnsmasq.conf.example dnsmasq.conf + + insinto /usr/share/dnsmasq + doins trust-anchors.conf + + if use dhcp; then + keepdir /var/lib/misc + newinitd "${FILESDIR}"/dnsmasq-init-dhcp-r3 ${PN} + fi + if use dbus; then + insinto /etc/dbus-1/system.d + doins dbus/dnsmasq.conf + fi + + if use dhcp-tools; then + dosbin contrib/lease-tools/{dhcp_release,dhcp_lease_time} + doman contrib/lease-tools/{dhcp_release,dhcp_lease_time}.1 + if use ipv6; then + dosbin contrib/lease-tools/dhcp_release6 + doman contrib/lease-tools/dhcp_release6.1 + fi + fi + + systemd_newunit "${FILESDIR}"/${PN}.service-r1 ${PN}.service +} + +pkg_preinst() { + [[ -f /var/lib/misc/dnsmasq.leases ]] && \ + cp /var/lib/misc/dnsmasq.leases "${T}" +} + +pkg_postinst() { + [[ -f "${T}"/dnsmasq.leases ]] && \ + cp "${T}"/dnsmasq.leases /var/lib/misc/dnsmasq.leases +} diff --git a/net-dns/dnsmasq/dnsmasq-2.84.ebuild b/net-dns/dnsmasq/dnsmasq-2.84.ebuild new file mode 100644 index 000000000000..eee292c64aca --- /dev/null +++ b/net-dns/dnsmasq/dnsmasq-2.84.ebuild @@ -0,0 +1,212 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs flag-o-matic systemd + +DESCRIPTION="Small forwarding DNS server" +HOMEPAGE="http://www.thekelleys.org.uk/dnsmasq/doc.html" +SRC_URI="http://www.thekelleys.org.uk/dnsmasq/${P}.tar.xz" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + +IUSE="auth-dns conntrack dbus +dhcp dhcp-tools dnssec +dumpfile id idn libidn2" +IUSE+=" +inotify ipv6 lua nettlehash nls script selinux static tftp" + +DM_LINGUAS=(de es fi fr id it no pl pt_BR ro) + +BDEPEND=" + app-arch/xz-utils + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +COMMON_DEPEND=" + acct-group/dnsmasq + acct-user/dnsmasq + dbus? ( sys-apps/dbus:= ) + idn? ( + !libidn2? ( net-dns/libidn:0= ) + libidn2? ( >=net-dns/libidn2-2.0:= ) + ) + lua? ( dev-lang/lua:0= ) + conntrack? ( net-libs/libnetfilter_conntrack:= ) + nls? ( sys-devel/gettext ) +" + +DEPEND="${COMMON_DEPEND} + dnssec? ( + dev-libs/nettle:=[gmp] + static? ( >=dev-libs/nettle-3.4[static-libs(+)] ) + ) +" + +RDEPEND="${COMMON_DEPEND} + dnssec? ( + !static? ( >=dev-libs/nettle-3.4:=[gmp] ) + ) + selinux? ( sec-policy/selinux-dnsmasq ) +" + +REQUIRED_USE=" + dhcp-tools? ( dhcp ) + dnssec? ( !nettlehash ) + lua? ( script ) + libidn2? ( idn ) +" + +PATCHES=( + "${FILESDIR}/dnsmasq-2.84-version-string.patch" +) + +use_have() { + local no_only + if [[ ${1} == '-n' ]]; then + no_only=1 + shift + fi + local useflag="${1}" + shift + + local uword="${1:-${useflag}}" + shift + + while [[ ${uword} ]]; do + uword="${uword^^}" + + if ! use "${useflag}"; then + printf -- " -DNO_%s" "${uword}" + elif [[ -z "${no_only}" ]]; then + printf -- " -DHAVE_%s" "${uword}" + fi + uword="${1}" + shift + done +} + +pkg_pretend() { + if use static; then + einfo "Only sys-libs/gmp and dev-libs/nettle are statically linked." + use dnssec || einfo "Thus, ${P}[!dnssec,static] makes no sense;" \ + "in this case the static USE flag does nothing." + fi +} + +src_prepare() { + default + + sed -i -r 's:lua5.[0-9]+:lua:' Makefile || die + sed -i "s:%%PREFIX%%:${EPREFIX}/usr:" \ + dnsmasq.conf.example || die +} + +src_configure() { + COPTS=( + $(use_have -n auth-dns auth) + $(use_have conntrack) + $(use_have dbus) + $(use libidn2 || use_have idn) + $(use_have libidn2) + $(use_have -n inotify) + $(use_have -n dhcp dhcp dhcp6) + $(use_have -n ipv6 ipv6 dhcp6) + $(use_have -n id id) + $(use_have lua luascript) + $(use_have -n script) + $(use_have -n tftp) + $(use_have dnssec) + $(use_have nettlehash) + $(use_have static dnssec_static) + $(use_have -n dumpfile) + ) +} + +src_compile() { + emake \ + PREFIX=/usr \ + MANDIR=/usr/share/man \ + CC="$(tc-getCC)" \ + PKG_CONFIG="$(tc-getPKG_CONFIG)" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ + COPTS="${COPTS[*]}" \ + CONFFILE="/etc/${PN}.conf" \ + all$(use nls && printf -- "-i18n\n") + + use dhcp-tools && emake -C contrib/lease-tools \ + PREFIX=/usr \ + MANDIR=/usr/share/man \ + CC="$(tc-getCC)" \ + PKG_CONFIG="$(tc-getPKG_CONFIG)" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ + all +} + +src_install() { + local lingua puid + emake \ + PREFIX=/usr \ + MANDIR=/usr/share/man \ + COPTS="${COPTS[*]}" \ + DESTDIR="${ED}" \ + install$(use nls && printf -- "-i18n\n") + + for lingua in "${DM_LINGUAS[@]}"; do + has ${lingua} ${LINGUAS-${lingua}} \ + || rm -rf "${ED}"/usr/share/locale/${lingua} + done + [[ -d "${D}"/usr/share/locale/ ]] && \ + rmdir --ignore-fail-on-non-empty "${ED}"/usr/share/locale/ + + dodoc CHANGELOG CHANGELOG.archive FAQ dnsmasq.conf.example + dodoc -r logo + + docinto html/ + dodoc *.html + + newinitd "${FILESDIR}"/dnsmasq-init-r4 ${PN} + newconfd "${FILESDIR}"/dnsmasq.confd-r1 ${PN} + + insinto /etc/logrotate.d + newins "${FILESDIR}"/dnsmasq.logrotate ${PN} + + insinto /etc + newins dnsmasq.conf.example dnsmasq.conf + + insinto /usr/share/dnsmasq + doins trust-anchors.conf + + if use dhcp; then + keepdir /var/lib/misc + newinitd "${FILESDIR}"/dnsmasq-init-dhcp-r3 ${PN} + fi + if use dbus; then + insinto /etc/dbus-1/system.d + doins dbus/dnsmasq.conf + fi + + if use dhcp-tools; then + dosbin contrib/lease-tools/{dhcp_release,dhcp_lease_time} + doman contrib/lease-tools/{dhcp_release,dhcp_lease_time}.1 + if use ipv6; then + dosbin contrib/lease-tools/dhcp_release6 + doman contrib/lease-tools/dhcp_release6.1 + fi + fi + + systemd_newunit "${FILESDIR}"/${PN}.service-r1 ${PN}.service +} + +pkg_preinst() { + [[ -f /var/lib/misc/dnsmasq.leases ]] && \ + cp /var/lib/misc/dnsmasq.leases "${T}" +} + +pkg_postinst() { + [[ -f "${T}"/dnsmasq.leases ]] && \ + cp "${T}"/dnsmasq.leases /var/lib/misc/dnsmasq.leases +} diff --git a/net-dns/dnsmasq/files/dnsmasq-2.84-version-string.patch b/net-dns/dnsmasq/files/dnsmasq-2.84-version-string.patch new file mode 100644 index 000000000000..bd37dbbfe751 --- /dev/null +++ b/net-dns/dnsmasq/files/dnsmasq-2.84-version-string.patch @@ -0,0 +1,13 @@ +diff --git a/bld/get-version b/bld/get-version +index e472aab..3bf0b87 100755 +--- a/bld/get-version ++++ b/bld/get-version +@@ -28,7 +28,7 @@ else + vers=`cat $1/VERSION | sed 's/[(), ]/,/ g' | tr ',' '\n' | grep ^v[0-9]` + + if [ $? -eq 0 ]; then +- echo "${vers}" | sort -r | head -n 1 | sed 's/^v//' ++ echo "${vers}" | sort | head -n 1 | sed 's/^v//' + else + cat $1/VERSION + fi diff --git a/net-fs/Manifest.gz b/net-fs/Manifest.gz index 4c570357692c..287cd78a9645 100644 Binary files a/net-fs/Manifest.gz and b/net-fs/Manifest.gz differ diff --git a/net-fs/samba/samba-4.13.3.ebuild b/net-fs/samba/samba-4.13.3-r1.ebuild similarity index 87% rename from net-fs/samba/samba-4.13.3.ebuild rename to net-fs/samba/samba-4.13.3-r1.ebuild index 9972add4bfa3..f7c3aa7715ae 100644 --- a/net-fs/samba/samba-4.13.3.ebuild +++ b/net-fs/samba/samba-4.13.3-r1.ebuild @@ -1,32 +1,48 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python3_{6..9} ) -PYTHON_REQ_USE='threads(+),xml(+)' +PYTHON_REQ_USE="threads(+),xml(+)" inherit python-single-r1 waf-utils multilib-minimal linux-info systemd pam +DESCRIPTION="Samba Suite Version 4" +HOMEPAGE="https://samba.org/" + MY_PV="${PV/_rc/rc}" MY_P="${PN}-${MY_PV}" +if [[ ${PV} = *_rc* ]]; then + SRC_URI="mirror://samba/rc/${MY_P}.tar.gz" +else + SRC_URI="mirror://samba/stable/${MY_P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +fi +S="${WORKDIR}/${MY_P}" -SRC_PATH="stable" -[[ ${PV} = *_rc* ]] && SRC_PATH="rc" - -SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz" -[[ ${PV} = *_rc* ]] || \ -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" - -DESCRIPTION="Samba Suite Version 4" -HOMEPAGE="https://www.samba.org/" LICENSE="GPL-3" - SLOT="0" - IUSE="acl addc addns ads ceph client cluster cups debug dmapi fam gpg iprint json ldap pam profiling-data python quota selinux snapper syslog system-heimdal +system-mitkrb5 systemd test winbind zeroconf" +REQUIRED_USE="${PYTHON_REQUIRED_USE} + addc? ( python json winbind ) + addns? ( python ) + ads? ( acl ldap winbind ) + cluster? ( ads ) + gpg? ( addc ) + test? ( python ) + !ads? ( !addc ) + ?? ( system-heimdal system-mitkrb5 ) +" + +# the test suite is messed, it uses system-installed samba +# bits instead of what was built, tests things disabled via use +# flags, and generally just fails to work in a way ebuilds could +# rely on in its current state +RESTRICT="test" + MULTILIB_WRAPPED_HEADERS=( /usr/include/samba-4.0/policy.h /usr/include/samba-4.0/dcerpc_server.h @@ -38,7 +54,7 @@ MULTILIB_WRAPPED_HEADERS=( /usr/include/samba-4.0/ctdb_version.h ) -CDEPEND=" +COMMON_DEPEND=" >=app-arch/libarchive-3.1.2[${MULTILIB_USEDEP}] dev-lang/perl:= dev-libs/icu:=[${MULTILIB_USEDEP}] @@ -49,31 +65,27 @@ CDEPEND=" >=net-libs/gnutls-3.4.7[${MULTILIB_USEDEP}] net-libs/libnsl:=[${MULTILIB_USEDEP}] sys-libs/e2fsprogs-libs[${MULTILIB_USEDEP}] - >=sys-libs/ldb-2.2.0[ldap(+)?,python?,${PYTHON_SINGLE_USEDEP},${MULTILIB_USEDEP}] - =sys-libs/ldb-2.2.0[ldap(+)?,${MULTILIB_USEDEP}] + =sys-libs/talloc-2.3.1[python?,${PYTHON_SINGLE_USEDEP},${MULTILIB_USEDEP}] - >=sys-libs/tdb-1.4.3[python?,${PYTHON_SINGLE_USEDEP},${MULTILIB_USEDEP}] - >=sys-libs/tevent-0.10.2[python?,${PYTHON_SINGLE_USEDEP},${MULTILIB_USEDEP}] + >=sys-libs/talloc-2.3.1[${MULTILIB_USEDEP}] + >=sys-libs/tdb-1.4.3[${MULTILIB_USEDEP}] + >=sys-libs/tevent-0.10.2[${MULTILIB_USEDEP}] sys-libs/zlib[${MULTILIB_USEDEP}] virtual/libiconv - pam? ( sys-libs/pam ) acl? ( virtual/acl ) $(python_gen_cond_dep " dev-python/subunit[\${PYTHON_MULTI_USEDEP},${MULTILIB_USEDEP}] addns? ( - net-dns/bind-tools[gssapi] dev-python/dnspython:=[\${PYTHON_MULTI_USEDEP}] + net-dns/bind-tools[gssapi] ) ") ceph? ( sys-cluster/ceph ) - cluster? ( - net-libs/rpcsvc-proto - !dev-db/ctdb - ) + cluster? ( net-libs/rpcsvc-proto ) cups? ( net-print/cups ) debug? ( dev-util/lttng-ust ) dmapi? ( sys-apps/dmapi ) @@ -81,57 +93,45 @@ CDEPEND=" gpg? ( app-crypt/gpgme ) json? ( dev-libs/jansson ) ldap? ( net-nds/openldap[${MULTILIB_USEDEP}] ) + pam? ( sys-libs/pam ) + python? ( + sys-libs/ldb[python,${PYTHON_SINGLE_USEDEP}] + sys-libs/talloc[python,${PYTHON_SINGLE_USEDEP}] + sys-libs/tdb[python,${PYTHON_SINGLE_USEDEP}] + sys-libs/tevent[python,${PYTHON_SINGLE_USEDEP}] + ) snapper? ( sys-apps/dbus ) system-heimdal? ( >=app-crypt/heimdal-1.5[-ssl,${MULTILIB_USEDEP}] ) system-mitkrb5? ( >=app-crypt/mit-krb5-1.15.1[${MULTILIB_USEDEP}] ) systemd? ( sys-apps/systemd:0= ) zeroconf? ( net-dns/avahi[dbus] ) " -DEPEND="${CDEPEND} - ${PYTHON_DEPS} - app-text/docbook-xsl-stylesheets - dev-libs/libxslt +DEPEND="${COMMON_DEPEND} >=dev-util/cmocka-1.1.3[${MULTILIB_USEDEP}] net-libs/libtirpc[${MULTILIB_USEDEP}] - virtual/pkgconfig || ( net-libs/rpcsvc-proto =sys-libs/nss_wrapper-1.1.3 >=net-dns/resolv_wrapper-1.1.4 >=net-libs/socket_wrapper-1.1.9 + >=sys-libs/nss_wrapper-1.1.3 >=sys-libs/uid_wrapper-1.2.1 ) )" -RDEPEND="${CDEPEND} - python? ( ${PYTHON_DEPS} ) +RDEPEND="${COMMON_DEPEND} client? ( net-fs/cifs-utils[ads?] ) + python? ( ${PYTHON_DEPS} ) selinux? ( sec-policy/selinux-samba ) " - -REQUIRED_USE=" - addc? ( python json winbind ) - addns? ( python ) - ads? ( acl ldap winbind ) - cluster? ( ads ) - gpg? ( addc ) - test? ( python ) - !ads? ( !addc ) - ?? ( system-heimdal system-mitkrb5 ) - ${PYTHON_REQUIRED_USE} +BDEPEND="${PYTHON_DEPS} + app-text/docbook-xsl-stylesheets + dev-libs/libxslt + virtual/pkgconfig " -# the test suite is messed, it uses system-installed samba -# bits instead of what was built, tests things disabled via use -# flags, and generally just fails to work in a way ebuilds could -# rely on in its current state -RESTRICT="test" - -S="${WORKDIR}/${MY_P}" - PATCHES=( "${FILESDIR}/${PN}-4.4.0-pam.patch" ) @@ -274,7 +274,7 @@ multilib_src_install() { -e '/path =/s@/usr/local/samba/lib/@/var/lib/samba/@' \ -e '/path =/s@/usr/local/samba/@/var/lib/samba/@' \ -e '/path =/s@/usr/spool/samba@/var/spool/samba@' \ - -i "${ED%/}"/etc/samba/smb.conf.default || die + -i "${ED}"/etc/samba/smb.conf.default || die # Install init script and conf.d file newinitd "${CONFDIR}/samba4.initd-r1" samba @@ -310,11 +310,13 @@ multilib_src_test() { } pkg_postinst() { - ewarn "Be aware that this release contains the best of all of Samba's" - ewarn "technology parts, both a file server (that you can reasonably expect" - ewarn "to upgrade existing Samba 3.x releases to) and the AD domain" - ewarn "controller work previously known as 'samba4'." - + if [[ -z ${REPLACING_VERSIONS} ]] ; then + elog "Be aware that this release contains the best of all of Samba's" + elog "technology parts, both a file server (that you can reasonably expect" + elog "to upgrade existing Samba 3.x releases to) and the AD domain" + elog "controller work previously known as 'samba4'." + elog + fi elog "For further information and migration steps make sure to read " elog "https://samba.org/samba/history/${P}.html " elog "https://wiki.samba.org/index.php/Samba4/HOWTO " diff --git a/net-ftp/Manifest.gz b/net-ftp/Manifest.gz index 09428f0d2d69..fa563d3898f3 100644 Binary files a/net-ftp/Manifest.gz and b/net-ftp/Manifest.gz differ diff --git a/net-ftp/atftp/atftp-0.7.2-r2.ebuild b/net-ftp/atftp/atftp-0.7.2-r2.ebuild index 61f9c48e42b1..fec89f3f92a4 100644 --- a/net-ftp/atftp/atftp-0.7.2-r2.ebuild +++ b/net-ftp/atftp/atftp-0.7.2-r2.ebuild @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/atftp/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="amd64 arm ppc ppc64 ~s390 ~sparc ~x86" +KEYWORDS="amd64 arm ppc ppc64 ~s390 ~sparc x86" IUSE="selinux tcpd readline pcre" DEPEND="tcpd? ( sys-apps/tcp-wrappers ) diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index 0561d4230205..8be97bf1c689 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/dhcpcd/dhcpcd-8.1.9.ebuild b/net-misc/dhcpcd/dhcpcd-8.1.9.ebuild deleted file mode 100644 index 78cc0a1b8c4c..000000000000 --- a/net-misc/dhcpcd/dhcpcd-8.1.9.ebuild +++ /dev/null @@ -1,144 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit systemd toolchain-funcs - -if [[ ${PV} == "9999" ]]; then - inherit git-r3 - EGIT_REPO_URI="https://roy.marples.name/git/dhcpcd.git" -else - MY_P="${P/_alpha/-alpha}" - MY_P="${MY_P/_beta/-beta}" - MY_P="${MY_P/_rc/-rc}" - SRC_URI="https://roy.marples.name/downloads/${PN}/${MY_P}.tar.xz" - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux" - S="${WORKDIR}/${MY_P}" -fi - -DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client" -HOMEPAGE="https://roy.marples.name/projects/dhcpcd" -LICENSE="BSD-2" -SLOT="0" -IUSE="elibc_glibc +embedded ipv6 kernel_linux +udev" - -COMMON_DEPEND="udev? ( virtual/udev )" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" - -src_configure() { - local myeconfargs=( - --dbdir="${EPREFIX}/var/lib/dhcpcd" - --libexecdir="${EPREFIX}/lib/dhcpcd" - --localstatedir="${EPREFIX}/var" - --prefix="${EPREFIX}" - --with-hook=ntp.conf - $(use_enable embedded) - $(use_enable ipv6) - $(usex elibc_glibc '--with-hook=yp.conf' '') - $(usex kernel_linux '--rundir=${EPREFIX}/run' '') - $(usex udev '' '--without-dev --without-udev') - CC="$(tc-getCC)" - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - keepdir /var/lib/dhcpcd - newinitd "${FILESDIR}"/${PN}.initd ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service -} - -pkg_postinst() { - local dbdir="${EROOT}"/var/lib/dhcpcd old_files=() - - local old_old_duid="${EROOT}"/var/lib/dhcpcd/dhcpcd.duid - local old_duid="${EROOT}"/etc/dhcpcd.duid - local new_duid="${dbdir}"/duid - if [[ -e "${old_old_duid}" ]] ; then - # Upgrade the duid file to the new format if needed - if ! grep -q '..:..:..:..:..:..' "${old_old_duid}"; then - sed -i -e 's/\(..\)/\1:/g; s/:$//g' "${old_old_duid}" - fi - - # Move the duid to /etc, a more sensible location - if [[ ! -e "${old_duid}" ]] ; then - cp -p "${old_old_duid}" "${new_duid}" - fi - old_files+=( "${old_old_duid}" ) - fi - - # dhcpcd-7 moves the files out of /etc - if [[ -e "${old_duid}" ]] ; then - if [[ ! -e "${new_duid}" ]] ; then - cp -p "${old_duid}" "${new_duid}" - fi - old_files+=( "${old_duid}" ) - fi - local old_secret="${EROOT}"/etc/dhcpcd.secret - local new_secret="${dbdir}"/secret - if [[ -e "${old_secret}" ]] ; then - if [[ ! -e "${new_secret}" ]] ; then - cp -p "${old_secret}" "${new_secret}" - fi - old_files+=( "${old_secret}" ) - fi - - # dhcpcd-7 renames some files in /var/lib/dhcpcd - local old_rdm="${dbdir}"/dhcpcd-rdm.monotonic - local new_rdm="${dbdir}"/rdm_monotonic - if [[ -e "${old_rdm}" ]] ; then - if [[ ! -e "${new_rdm}" ]] ; then - cp -p "${old_rdm}" "${new_rdm}" - fi - old_files+=( "${old_rdm}" ) - fi - local lease= - for lease in "${dbdir}"/dhcpcd-*.lease*; do - [[ -f "${lease}" ]] || continue - old_files+=( "${lease}" ) - local new_lease=$(basename "${lease}" | sed -e "s/dhcpcd-//") - [[ -e "${dbdir}/${new_lease}" ]] && continue - cp "${lease}" "${dbdir}/${new_lease}" - done - - # Warn about removing stale files - if [[ -n "${old_files[@]}" ]] ; then - elog - elog "dhcpcd-7 has copied dhcpcd.duid and dhcpcd.secret from" - elog "${EROOT}/etc to ${dbdir}" - elog "and copied leases in ${dbdir} to new files with the dhcpcd-" - elog "prefix dropped." - elog - elog "You should remove these files if you don't plan on reverting" - elog "to an older version:" - local old_file= - for old_file in ${old_files[@]}; do - elog " ${old_file}" - done - fi - - if [ -z "${REPLACING_VERSIONS}" ]; then - elog - elog "dhcpcd has zeroconf support active by default." - elog "This means it will always obtain an IP address even if no" - elog "DHCP server can be contacted, which will break any existing" - elog "failover support you may have configured in your net configuration." - elog "This behaviour can be controlled with the noipv4ll configuration" - elog "file option or the -L command line switch." - elog "See the dhcpcd and dhcpcd.conf man pages for more details." - - elog - elog "Dhcpcd has duid enabled by default, and this may cause issues" - elog "with some dhcp servers. For more information, see" - elog "https://bugs.gentoo.org/show_bug.cgi?id=477356" - fi - - if ! has_version net-dns/bind-tools; then - elog - elog "If you activate the lookup-hostname hook to look up your hostname" - elog "using the dns, you need to install net-dns/bind-tools." - fi -} diff --git a/net-misc/iputils/files/iputils-20200821-fclose.patch b/net-misc/iputils/files/iputils-20200821-fclose.patch new file mode 100644 index 000000000000..cc370f0a5561 --- /dev/null +++ b/net-misc/iputils/files/iputils-20200821-fclose.patch @@ -0,0 +1,45 @@ +From e1c3d09b412ad0d022178344b8cbf748dc60f17f Mon Sep 17 00:00:00 2001 +From: Mike Gilbert +Date: Sun, 24 Jan 2021 23:29:27 -0500 +Subject: [PATCH] tftpd: recvfile: avoid closing the file twice + +The close_stream function calls fclose, so don't call it again. + +This resolves an abort in glibc: + + Message: Process 1038079 (tftpd) of user 65534 dumped core. + + Stack trace of thread 1038079: + #0 0x00007f5f650ed204 raise (libc.so.6 + 0x39204) + #1 0x00007f5f650d6547 abort (libc.so.6 + 0x22547) + #2 0x00007f5f6512f25f n/a (libc.so.6 + 0x7b25f) + #3 0x00007f5f651372fa n/a (libc.so.6 + 0x832fa) + #4 0x00007f5f65138dc2 n/a (libc.so.6 + 0x84dc2) + #5 0x00007f5f65124b2f fclose (libc.so.6 + 0x70b2f) + #6 0x000055571a50de73 recvfile (tftpd + 0x2e73) + #7 0x000055571a50e064 tftp (tftpd + 0x3064) + #8 0x000055571a50e387 tftpd_inetd (tftpd + 0x3387) + #9 0x000055571a50e50f main (tftpd + 0x350f) + #10 0x00007f5f650d7e6d __libc_start_main (libc.so.6 + 0x23e6d) + #11 0x000055571a50d3ca _start (tftpd + 0x23ca) + +Fixes: 5d6be65 ("tftpd: remove global variables by using a run state struct") + +Reviewed-by: Petr Vorel +Signed-off-by: Mike Gilbert +--- + tftpd/tftpd.c | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/tftpd/tftpd.c b/tftpd/tftpd.c +index 42998f9b..a09d32ba 100644 +--- a/tftpd/tftpd.c ++++ b/tftpd/tftpd.c +@@ -387,7 +387,6 @@ void recvfile(struct run_state *ctl, struct formats *pf) + write_behind(ctl->file, pf->f_convert); + if (close_stream(ctl->file)) + syslog(LOG_ERR, "tftpd: write error: %s\n", strerror(errno)); +- fclose(ctl->file); /* close data file */ + + ap->th_opcode = htons((uint16_t)ACK); /* send the "final" ack */ + ap->th_block = htons(block); diff --git a/net-misc/iputils/files/iputils-20200821-install-sbindir.patch b/net-misc/iputils/files/iputils-20200821-install-sbindir.patch new file mode 100644 index 000000000000..cb1575841ccd --- /dev/null +++ b/net-misc/iputils/files/iputils-20200821-install-sbindir.patch @@ -0,0 +1,29 @@ +From 8d1420f3019cd1caccf2ffa15a5873f0c61ab529 Mon Sep 17 00:00:00 2001 +From: Mike Gilbert +Date: Sun, 24 Jan 2021 22:39:03 -0500 +Subject: [PATCH] tftpd: install into sbindir + +The xinet.d config expects the daemon to live in sbindir. + +Closes: https://github.com/iputils/iputils/pull/310 + +Reviewed-by: Petr Vorel +Signed-off-by: Mike Gilbert +--- + tftpd/meson.build | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/tftpd/meson.build b/tftpd/meson.build +index 6e508a24..b4cf6812 100644 +--- a/tftpd/meson.build ++++ b/tftpd/meson.build +@@ -3,7 +3,8 @@ inc = include_directories('..') + executable('tftpd', ['tftpd.c', 'tftpsubs.c', git_version_h], + include_directories : inc, + link_with : [libcommon], +- install: true) ++ install: true, ++ install_dir: sbindir) + + subs = configuration_data() + subs.set('sbindir', sbindir) diff --git a/net-misc/iputils/iputils-20200821-r1.ebuild b/net-misc/iputils/iputils-20200821-r2.ebuild similarity index 97% rename from net-misc/iputils/iputils-20200821-r1.ebuild rename to net-misc/iputils/iputils-20200821-r2.ebuild index 3b1245c10826..a7ac2b0d2a99 100644 --- a/net-misc/iputils/iputils-20200821-r1.ebuild +++ b/net-misc/iputils/iputils-20200821-r2.ebuild @@ -63,6 +63,8 @@ fi PATCHES=( "${FILESDIR}/iputils-20200821-getrandom-fallback.patch" + "${FILESDIR}/iputils-20200821-fclose.patch" + "${FILESDIR}/iputils-20200821-install-sbindir.patch" ) src_prepare() { diff --git a/net-misc/ntpsec/Manifest b/net-misc/ntpsec/Manifest index ce7e422fd68f..7de62087eed7 100644 --- a/net-misc/ntpsec/Manifest +++ b/net-misc/ntpsec/Manifest @@ -1 +1,2 @@ DIST ntpsec-1.1.9.tar.gz 2606066 BLAKE2B bbc482333c7f86936fa20751df1b427bc24be159969050caf5751e26724714bbf6491b120986563497f015c96ac9cdbdf0e999c6446a68798aff23076f631ecc SHA512 e04267aa675a5b528f3478d00329a569ecb9bbe2b6ad18697020854d2ee451bc188c4603cd5f420a08a7e3bf047d2db1301416f57f9156df23aceb1f57303b0b +DIST ntpsec-1.2.0.tar.gz 2625968 BLAKE2B 23ceae5a1f241fcf5a17801fec2f15f9b9d9d64a108bebe29bdc75196303091eaf0efee7df67ce10acefb7c8dba90ce1144a0c0c5432797d7659714d162f26bb SHA512 9e18b3ca2f786a1ea323ba2384b51cff3d862115cea1ae576fc98172c476ac5e7d0d0fc873e47be0b19b050204ea9ed49669d94e66eb94525068dd1b08a8ae71 diff --git a/net-misc/ntpsec/ntpsec-1.2.0.ebuild b/net-misc/ntpsec/ntpsec-1.2.0.ebuild new file mode 100644 index 000000000000..bc77d00d178c --- /dev/null +++ b/net-misc/ntpsec/ntpsec-1.2.0.ebuild @@ -0,0 +1,163 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{6..9} ) +PYTHON_REQ_USE='threads(+)' + +inherit flag-o-matic python-r1 waf-utils systemd + +if [[ ${PV} == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/NTPsec/ntpsec.git" +else + SRC_URI="ftp://ftp.ntpsec.org/pub/releases/${PN}-${PV}.tar.gz" + RESTRICT="mirror" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +DESCRIPTION="The NTP reference implementation, refactored" +HOMEPAGE="https://www.ntpsec.org/" + +NTPSEC_REFCLOCK=( + oncore trimble truetime gpsd jjy generic spectracom + shm pps hpgps zyfer arbiter nmea neoclock modem + local) + +IUSE_NTPSEC_REFCLOCK=${NTPSEC_REFCLOCK[@]/#/rclock_} + +LICENSE="HPND MIT BSD-2 BSD CC-BY-SA-4.0" +SLOT="0" +IUSE="${IUSE_NTPSEC_REFCLOCK} debug doc early gdb heat libbsd nist ntpviz samba seccomp smear tests" #ionice +REQUIRED_USE="${PYTHON_REQUIRED_USE} nist? ( rclock_local )" + +# net-misc/pps-tools oncore,pps +CDEPEND="${PYTHON_DEPS} + sys-libs/libcap + dev-python/psutil[${PYTHON_USEDEP}] + libbsd? ( dev-libs/libbsd:0= ) + dev-libs/openssl:0= + seccomp? ( sys-libs/libseccomp ) +" +RDEPEND="${CDEPEND} + ntpviz? ( sci-visualization/gnuplot media-fonts/liberation-fonts ) + !net-misc/ntp + !net-misc/openntpd + acct-group/ntp + acct-user/ntp +" +DEPEND="${CDEPEND} + >=app-text/asciidoc-8.6.8 + dev-libs/libxslt + app-text/docbook-xsl-stylesheets + sys-devel/bison + rclock_oncore? ( net-misc/pps-tools ) + rclock_pps? ( net-misc/pps-tools ) +" + +PATCHES=( + "${FILESDIR}/${PN}-1.1.8-fix-missing-scmp_sys-on-aarch64.patch" + "${FILESDIR}/${PN}-1.1.9-remove-asciidoctor-from-config.patch" +) + +WAF_BINARY="${S}/waf" + +src_prepare() { + default + # Remove autostripping of binaries + sed -i -e '/Strip binaries/d' wscript + if ! use libbsd ; then + epatch "${FILESDIR}/${PN}-no-bsd.patch" + fi + # remove extra default pool servers + sed -i '/use-pool/s/^/#/' "${S}"/etc/ntp.d/default.conf + python_copy_sources +} + +src_configure() { + is-flagq -flto* && filter-flags -flto* -fuse-linker-plugin + + local string_127="" + local rclocks=""; + local CLOCKSTRING="" + + for refclock in ${NTPSEC_REFCLOCK[@]} ; do + if use rclock_${refclock} ; then + string_127+="$refclock," + fi + done + CLOCKSTRING="`echo ${string_127}|sed 's|,$||'`" + + local myconf=( + --nopyc + --nopyo + --enable-pylib ext + --refclock="${CLOCKSTRING}" + --build-epoch="$(date +%s)" + $(use doc || echo "--disable-doc") + $(use early && echo "--enable-early-droproot") + $(use gdb && echo "--enable-debug-gdb") + $(use samba && echo "--enable-mssntp") + $(use seccomp && echo "--enable-seccomp") + $(use smear && echo "--enable-leap-smear") + $(use tests && echo "--alltests") + $(use debug && echo "--enable-debug") + ) + + python_configure() { + waf-utils_src_configure "${myconf[@]}" + } + python_foreach_impl run_in_build_dir python_configure +} + +src_compile() { + unset MAKEOPTS + python_compile() { + waf-utils_src_compile + } + python_foreach_impl run_in_build_dir python_compile +} + +src_install() { + python_install() { + waf-utils_src_install + } + python_foreach_impl run_in_build_dir python_install + python_foreach_impl python_optimize + + # Install heat generating scripts + use heat && dosbin "${S}"/contrib/ntpheat{,usb} + + # Install the openrc files + newinitd "${FILESDIR}"/ntpd.rc-r2 ntp + newconfd "${FILESDIR}"/ntpd.confd ntp + + # Install the systemd unit file + systemd_newunit "${FILESDIR}"/ntpd-r1.service ntpd.service + + # Prepare a directory for the ntp.drift file + mkdir -pv "${ED}"/var/lib/ntp + chown ntp:ntp "${ED}"/var/lib/ntp + chmod 770 "${ED}"/var/lib/ntp + keepdir /var/lib/ntp + + # Install a log rotate script + mkdir -pv "${ED}"/etc/logrotate.d + cp -v "${S}"/etc/logrotate-config.ntpd "${ED}"/etc/logrotate.d/ntpd + + # Install the configuration file and sample configuration + cp -v "${FILESDIR}"/ntp.conf "${ED}"/etc/ntp.conf + cp -Rv "${S}"/etc/ntp.d/ "${ED}"/etc/ + + # move doc files to /usr/share/doc/"${P}" + use doc && mv -v "${ED}"/usr/share/doc/"${PN}" "${ED}"/usr/share/doc/"${P}"/html +} + +pkg_postinst() { + einfo "If you want to serve time on your local network, then" + einfo "you should disable all the ref_clocks unless you have" + einfo "one and can get stable time from it. Feel free to try" + einfo "it but PPS probably won't work unless you have a UART" + einfo "GPS that actually provides PPS messages." +} diff --git a/net-misc/openssh/openssh-8.4_p1-r3.ebuild b/net-misc/openssh/openssh-8.4_p1-r3.ebuild index 6f524b1cb9f3..fc00136b3125 100644 --- a/net-misc/openssh/openssh-8.4_p1-r3.ebuild +++ b/net-misc/openssh/openssh-8.4_p1-r3.ebuild @@ -294,6 +294,9 @@ src_configure() { append-cppflags -DBROKEN_GLOB fi + # use replacement, RPF_ECHO_ON doesn't exist here + [[ ${CHOST} == *-darwin* ]] && export ac_cv_func_readpassphrase=no + local myconf=( --with-ldflags="${LDFLAGS}" --disable-strip diff --git a/net-misc/remmina/remmina-1.4.10-r1.ebuild b/net-misc/remmina/remmina-1.4.10-r1.ebuild new file mode 100644 index 000000000000..42c9eab621b2 --- /dev/null +++ b/net-misc/remmina/remmina-1.4.10-r1.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake optfeature xdg + +MY_P="${PN^}-v${PV}" + +DESCRIPTION="A GTK+ RDP, SPICE, VNC, XDMCP and SSH client" +HOMEPAGE="https://remmina.org/" +SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz" + +LICENSE="GPL-2+-with-openssl-exception" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="appindicator crypt cups examples gnome-keyring kwallet libressl nls spice ssh rdp telemetry telepathy vnc webkit zeroconf" + +DEPEND=" + app-emulation/spice-protocol + dev-libs/glib:2 + dev-libs/json-glib + dev-libs/libsodium:= + net-libs/libsoup + x11-libs/gdk-pixbuf + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/libxkbfile + appindicator? ( dev-libs/libappindicator:3 ) + crypt? ( dev-libs/libgcrypt:0= ) + rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129[X] + =net-dns/avahi-0.8-r2[dbus,gtk] ) +" +BDEPEND=" + dev-util/intltool + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +RDEPEND=" + ${DEPEND} + virtual/freedesktop-icon-theme +" + +DOCS=( AUTHORS CHANGELOG.md README.md THANKS.md ) + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + xdg_environment_reset + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DWITH_APPINDICATOR=$(usex appindicator) + -DWITH_GCRYPT=$(usex crypt) + -DWITH_EXAMPLES=$(usex examples) + -DWITH_LIBSECRET=$(usex gnome-keyring) + -DWITH_KF5WALLET=$(usex kwallet) + -DWITH_GETTEXT=$(usex nls) + -DWITH_TRANSLATIONS=$(usex nls) + -DWITH_FREERDP=$(usex rdp) + -DWITH_CUPS=$(usex cups) + -DWITH_SPICE=$(usex spice) + -DWITH_LIBSSH=$(usex ssh) + -DWITH_VTE=$(usex ssh) + -DWITH_TELEPATHY=$(usex telepathy) + -DWITH_LIBVNCSERVER=$(usex vnc) + -DWITH_WWW=$(usex webkit) + -DWITH_AVAHI=$(usex zeroconf) + -DWITH_NEWS=$(usex telemetry) + -DWITH_ICON_CACHE=OFF + -DWITH_UPDATE_DESKTOP_DB=OFF + ) + cmake_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + + elog "To get additional features, some optional runtime dependencies" + elog "may be installed:" + elog "" + optfeature "encrypted VNC connections" net-libs/libvncserver[gcrypt] + optfeature "XDMCP support" x11-base/xorg-server[xephyr] +} diff --git a/net-misc/zerotier/Manifest b/net-misc/zerotier/Manifest index 68043e5890ba..3708673b2922 100644 --- a/net-misc/zerotier/Manifest +++ b/net-misc/zerotier/Manifest @@ -1,2 +1,2 @@ -DIST zerotier-1.2.12.tar.gz 6058902 BLAKE2B 851d0d871fac7f6cdd9feafb375f97181f9155c265f13e44122424bd7adcaff10e3f2c2a4484d2e2ad1f4f2f174fc723681451c1a728c9aa324bdcb02300af57 SHA512 a35029993d9266f3529a9922daa606b0d56a332514545f8cfab2092a4c9db4fc7217223f3bd7dbe59e536de325ee9b4f0226d673c0f0ec5859cf2937e8a4a2d4 DIST zerotier-1.4.6.tar.gz 13055818 BLAKE2B 46003d9c3ad09e30dbefaa441422ed4570bdbdfb99f2f24fb82246f9e970501d38d96c19dc9771a1d0d30bc49bd8be2b79ebd2e5c8bd85e88b738b29f0a1dcc3 SHA512 72f00602f67190d03ac0c8caa6b79e7f346b10745bdf772c68f77a3a940cdd718d05ec642bc862a6235aab9bd3bfefb0c57571f358ae55f38761f45500f0f189 +DIST zerotier-1.6.2.tar.gz 16020599 BLAKE2B 91da6c85f8d3dfd993a9aea9cd2a8b33e560d5475413fde8bef0a69df7d89503a66b1967ac336bd2213f6ffc35e452f665d37ceb8d9ae53cf5e5d4d352775e74 SHA512 8abb31ba8aed4c187a4e88ffe6f536ed7d0fe2421f89ae706eef620cc9508372a089ce9e9579df372e21b6dab271bea91e2d12b424dd85ece8c19885a6caa643 diff --git a/net-misc/zerotier/files/zerotier.init-r1 b/net-misc/zerotier/files/zerotier.init-r1 new file mode 100644 index 000000000000..ee3097b58690 --- /dev/null +++ b/net-misc/zerotier/files/zerotier.init-r1 @@ -0,0 +1,12 @@ +#!/sbin/openrc-run +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +description="ZeroTier - Global Area Networking" +pidfile="/run/${SVCNAME}.pid" +command="/usr/sbin/zerotier-one" +command_background=true + +depend() { + use net +} diff --git a/net-misc/zerotier/zerotier-1.2.12.ebuild b/net-misc/zerotier/zerotier-1.2.12.ebuild deleted file mode 100644 index 6f5351d0790d..000000000000 --- a/net-misc/zerotier/zerotier-1.2.12.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic systemd toolchain-funcs - -HOMEPAGE="https://www.zerotier.com/" -DESCRIPTION="A software-based managed Ethernet switch for planet Earth" -SRC_URI="https://github.com/zerotier/ZeroTierOne/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" - -S="${WORKDIR}/ZeroTierOne-${PV}" - -RDEPEND=" - dev-libs/json-glib:= - net-libs/http-parser:= - net-libs/libnatpmp:= - net-libs/miniupnpc:=" - -DEPEND="${RDEPEND}" - -DOCS=( README.md AUTHORS.md ) - -src_compile() { - append-ldflags -Wl,-z,noexecstack - emake CXX="$(tc-getCXX)" STRIP=: one -} - -src_test() { - emake selftest - ./zerotier-selftest || die -} - -src_install() { - default - - newinitd "${FILESDIR}/${PN}".init "${PN}" - systemd_dounit "${FILESDIR}/${PN}".service - doman doc/zerotier-{cli.1,idtool.1,one.8} -} diff --git a/net-misc/zerotier/zerotier-1.6.2.ebuild b/net-misc/zerotier/zerotier-1.6.2.ebuild new file mode 100644 index 000000000000..fdfc4d61007e --- /dev/null +++ b/net-misc/zerotier/zerotier-1.6.2.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic llvm systemd toolchain-funcs + +HOMEPAGE="https://www.zerotier.com/" +DESCRIPTION="A software-based managed Ethernet switch for planet Earth" +SRC_URI="https://github.com/zerotier/ZeroTierOne/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="clang neon" + +S="${WORKDIR}/ZeroTierOne-${PV}" + +RDEPEND=" + dev-libs/json-glib + net-libs/libnatpmp + net-libs/miniupnpc:= + clang? ( >=sys-devel/clang-6:* )" + +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-1.4.6-respect-ldflags.patch" + "${FILESDIR}/${PN}-1.4.6-add-armv7a-support.patch" +) + +DOCS=( README.md AUTHORS.md ) + +LLVM_MAX_SLOT=11 + +llvm_check_deps() { + if use clang ; then + if ! has_version --host-root "sys-devel/clang:${LLVM_SLOT}" ; then + ewarn "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." + return 1 + fi + + if ! has_version --host-root "=sys-devel/lld-${LLVM_SLOT}*" ; then + ewarn "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." + return 1 + fi + + einfo "Will use LLVM slot ${LLVM_SLOT}!" + fi +} + +pkg_setup() { + if use clang && ! tc-is-clang ; then + export CC=${CHOST}-clang + export CXX=${CHOST}-clang++ + else + tc-export CXX CC + fi + use neon || export ZT_DISABLE_NEON=1 +} + +src_compile() { + append-ldflags -Wl,-z,noexecstack + emake CXX="${CXX}" STRIP=: one +} + +src_test() { + emake selftest + ./zerotier-selftest || die +} + +src_install() { + default + # remove pre-zipped man pages + rm "${ED}"/usr/share/man/{man1,man8}/* || die + + newinitd "${FILESDIR}/${PN}".init-r1 "${PN}" + systemd_dounit "${FILESDIR}/${PN}".service + doman doc/zerotier-{cli.1,idtool.1,one.8} +} diff --git a/net-p2p/Manifest.gz b/net-p2p/Manifest.gz index 88938054d3d8..0062ec2cb93e 100644 Binary files a/net-p2p/Manifest.gz and b/net-p2p/Manifest.gz differ diff --git a/net-p2p/eiskaltdcpp/eiskaltdcpp-2.2.10.ebuild b/net-p2p/eiskaltdcpp/eiskaltdcpp-2.2.10.ebuild deleted file mode 100644 index bfdb1e073486..000000000000 --- a/net-p2p/eiskaltdcpp/eiskaltdcpp-2.2.10.ebuild +++ /dev/null @@ -1,149 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PLOCALES="be bg cs de el en es eu fr hu it pl pt_BR ru sk sr@latin sr sv_SE uk vi zh_CN" - -inherit cmake-utils gnome2-utils l10n xdg-utils -[[ ${PV} = *9999* ]] && inherit git-r3 - -DESCRIPTION="Qt/DC++ based client for DirectConnect and ADC protocols" -HOMEPAGE="https://github.com/eiskaltdcpp/eiskaltdcpp" - -LICENSE="GPL-2 GPL-3" -SLOT="0" -IUSE="cli daemon dbus +dht examples idn -javascript json lua +minimal pcre +qt5 spell sqlite upnp -xmlrpc" - -REQUIRED_USE=" - ?? ( json xmlrpc ) - cli? ( ^^ ( json xmlrpc ) ) - dbus? ( qt5 ) - javascript? ( qt5 ) - spell? ( qt5 ) - sqlite? ( qt5 ) -" - -if [[ ${PV} != *9999* ]]; then - SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -else - EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" - KEYWORDS="" -fi - -RDEPEND=" - app-arch/bzip2 - dev-libs/boost:= - 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 - json? ( dev-perl/JSON-RPC ) - xmlrpc? ( dev-perl/RPC-XML ) - ) - daemon? ( xmlrpc? ( dev-libs/xmlrpc-c[abyss,cxx] ) ) - idn? ( net-dns/libidn ) - lua? ( dev-lang/lua:0= ) - 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 ) -" -DEPEND="${RDEPEND} - sys-devel/gettext - virtual/pkgconfig - qt5? ( dev-qt/linguist-tools:5 ) -" - -DOCS=( AUTHORS ChangeLog.txt ) - -PATCHES=( - "${FILESDIR}"/${P}-ipv6_upnp.patch - "${FILESDIR}"/${P}-miniupnpc{1,2}.patch - "${FILESDIR}"/${P}-openssl-1.1.patch - "${FILESDIR}"/${P}-tray-close.patch -) - -src_prepare() { - cmake-utils_src_prepare - l10n_find_plocales_changes 'eiskaltdcpp-qt/translations' '' '.ts' -} - -src_configure() { - local mycmakeargs=( - -DLIB_INSTALL_DIR="$(get_libdir)" - -Dlinguas="$(l10n_get_locales)" - -DLOCAL_MINIUPNP=OFF - -DUSE_GTK=OFF - -DUSE_GTK3=OFF - -DUSE_LIBGNOME2=OFF - -DUSE_LIBCANBERRA=OFF - -DUSE_LIBNOTIFY=OFF - -DUSE_QT=OFF - -DUSE_QT_QML=OFF - -DNO_UI_DAEMON=$(usex daemon) - -DDBUS_NOTIFY=$(usex dbus) - -DWITH_DHT=$(usex dht) - -DWITH_EXAMPLES=$(usex examples) - -DUSE_IDNA=$(usex idn) - -DUSE_JS=$(usex javascript) - -DLUA_SCRIPT=$(usex lua) - -DWITH_LUASCRIPTS=$(usex lua) - -DWITH_DEV_FILES=$(usex !minimal) - -DPERL_REGEX=$(usex pcre) - -DUSE_QT5=$(usex qt5) - -DWITH_EMOTICONS=$(usex qt5) - -DWITH_SOUNDS=$(usex qt5) - -DUSE_ASPELL=$(usex spell) - -DUSE_QT_SQLITE=$(usex sqlite) - -DUSE_MINIUPNP=$(usex upnp) - ) - if use cli; then - mycmakeargs+=( - -DUSE_CLI_JSONRPC=$(usex json) - -DUSE_CLI_XMLRPC=$(usex xmlrpc) - ) - fi - if use daemon; then - mycmakeargs+=( - -DJSONRPC_DAEMON=$(usex json) - -DXMLRPC_DAEMON=$(usex xmlrpc) - ) - fi - cmake-utils_src_configure -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - xdg_desktop_database_update - gnome2_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - gnome2_icon_cache_update -} diff --git a/net-print/Manifest.gz b/net-print/Manifest.gz index 165b8e31c784..7874d6d9e9d9 100644 Binary files a/net-print/Manifest.gz and b/net-print/Manifest.gz differ diff --git a/net-print/epson-inkjet-printer-escpr/Manifest b/net-print/epson-inkjet-printer-escpr/Manifest index 9ae590467d4c..52bd1fd5cd42 100644 --- a/net-print/epson-inkjet-printer-escpr/Manifest +++ b/net-print/epson-inkjet-printer-escpr/Manifest @@ -1,2 +1 @@ -DIST epson-inkjet-printer-escpr-1.7.7-1lsb3.2.tar.gz 4767015 BLAKE2B a50be3f9975183c64a55225d81cb607ffbb018843aab682b077e7ab236e02b20d0d2aecbdb6fed58daab78d8d2382745f434d7dfec6098c2d8c111d2b4e4fabd SHA512 9663b9ed425fbe5d3f2b6f85f036cdbd230665919e2cc9d62a33ebae85a0068513417209dae97ce55e406124b92c96c455cdc204d3d2335f4215f57b79f9d2a9 DIST epson-inkjet-printer-escpr-1.7.8-1lsb3.2.tar.gz 4809140 BLAKE2B f26b5ce71aec624777e23bd76c65da938b47b24300d3a025b9541a3c1f3aedeb061b342e078f5103b6f4b5d1aa4a72b71764c13b65b842e9014d482aff758c99 SHA512 2d8c36debba52721febef07d18390e3ece6cd5f3a500304dfd285dc31ae33b3712934e0eca8cdb0afe644c18b505190d8a35cd5a69d11d0079f027fa35032195 diff --git a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.7.7.ebuild b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.7.7.ebuild deleted file mode 100644 index 5407e22e9813..000000000000 --- a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.7.7.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Epson Inkjet Printer Driver (ESC/P-R)" -HOMEPAGE="https://download.ebz.epson.net/dsc/search/01/search/?OSC=LX" -SRC_URI="https://download3.ebz.epson.net/dsc/f/03/00/10/49/18/f3016be6120a7271a6d9cb64872f817bce1920b8/epson-inkjet-printer-escpr-${PV}-1lsb3.2.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc64" - -DEPEND="net-print/cups" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/1.6.5-warnings.patch" - "${FILESDIR}/${P}-fnocommon.patch" -) - -src_configure() { - econf --disable-shared - - # Makefile calls ls to generate a file list which is included in Makefile.am - # Set the collation to C to avoid automake being called automatically - unset LC_ALL - export LC_COLLATE=C -} - -src_install() { - emake -C ppd DESTDIR="${D}" install - emake -C src DESTDIR="${D}" install - einstalldocs -} diff --git a/net-print/hplip/Manifest b/net-print/hplip/Manifest index 3fe677e345ec..bbe4324220b0 100644 --- a/net-print/hplip/Manifest +++ b/net-print/hplip/Manifest @@ -1,4 +1,5 @@ DIST hplip-3.20.11-patches-1.tar.xz 17876 BLAKE2B 39514399b4b43c668c38f7fe570fc53f50547598fc86ddf383b237a6992e9c24e3aab524bee0c7055003e766f8fea67cbe7c86ab4c23911d31ade0ad4766b181 SHA512 eabc26feca22e2d6dbafb9f40df5d61fde1fd08ac0cfb17751b0e179ecd6cc3ce6c4434746293aa372d9cca0bdc9b5d6bc96af9e199aeab5b3621e2c584fedc1 +DIST hplip-3.20.11-patches-2.tar.xz 18140 BLAKE2B a0271d0c6fcfaa53c68ab00c4c6cfc121e4eef0368b7eff04677ccbd8b897897352fe44a111693d0d45ee1b40bc3c783984f23a35faedfa2fa0da52018aade3c SHA512 8d00d48e295572df19b6edf0efce005f6bae6e051cce5d618575f5e226e2c32896111ddc1a193d4aacfadbe9d7f525761b0ea2564277f4c263b3df5bc86c1f40 DIST hplip-3.20.11.tar.gz 26301441 BLAKE2B 14667f33cc50b2887c8434ada7327a82e16b9acbcdc75d3a50c0261ec9aef3fada9be81e6c0cbdfb4d29914630799c6406893644386db99c0ce86245cca38cc2 SHA512 f583fb4140a29c5e21956c3e51fe3620baa65d33b40447af419d7fc61473a1148a1873216a84e89be785b155ee8e9aebd5e3eb19d2ded82b8415b1a35de1b55d DIST hplip-3.20.9-patches-2.tar.xz 18040 BLAKE2B f218703f5e6f319306b6cd178eb9f91981eed0d0c06b14c6846ad8a79b1d92b66176856f7b8bb272d0fa20194d4150fecf066c11fff5996f32b6fd71e1d6237d SHA512 5aa16f9c4e829774ea9266f30f6cd9d78556ea4ed36abc57cb11975c097c8bfdc44f139f5b1236af79859355ef715ec27d47f187d330541b29361e779d972fff DIST hplip-3.20.9.tar.gz 26141198 BLAKE2B 3aa353343ee79ae04dbe94cb9e135469586a50c2052a21ffcff6907be40522a1605f1174b0b8891dea25abb83a3b836350e1e6c9d12ab2798aa826f1d3ce4069 SHA512 d2981cf51f6d893a576c51808710ac9815aa6ac5fdc617d95cc372518731a48b0aca09af721c1792e1531df6cf8fc0ebf5ebd7e9c96950602a830ceed3d441ae diff --git a/net-print/hplip/hplip-3.20.11-r1.ebuild b/net-print/hplip/hplip-3.20.11-r1.ebuild new file mode 100644 index 000000000000..7b9e45039330 --- /dev/null +++ b/net-print/hplip/hplip-3.20.11-r1.ebuild @@ -0,0 +1,288 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_REQ_USE="threads(+),xml" + +# 14 and 15 spit out a lot of warnings about subdirs +WANT_AUTOMAKE="1.13" + +inherit autotools linux-info python-single-r1 readme.gentoo-r1 udev + +DESCRIPTION="HP Linux Imaging and Printing - Print, scan, fax drivers and service tools" +HOMEPAGE="https://developers.hp.com/hp-linux-imaging-and-printing" +SRC_URI="mirror://sourceforge/hplip/${P}.tar.gz + https://dev.gentoo.org/~billie/distfiles/${PN}-3.20.11-patches-2.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 arm arm64 ppc ppc64 x86" + +IUSE="doc fax +hpcups hpijs kde libnotify libressl -libusb0 minimal parport policykit qt5 scanner +snmp static-ppds X" + +COMMON_DEPEND=" + net-print/cups + sys-apps/dbus + virtual/jpeg:0 + hpijs? ( net-print/cups-filters[foomatic] ) + !libusb0? ( virtual/libusb:1 ) + libusb0? ( virtual/libusb:0 ) + ${PYTHON_DEPS} + !minimal? ( + scanner? ( + media-gfx/sane-backends + ) + snmp? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:= ) + net-analyzer/net-snmp:= + $(python_gen_cond_dep 'net-dns/avahi[dbus,${PYTHON_MULTI_USEDEP}]') + ) + ) +" +BDEPEND=" + virtual/pkgconfig +" +DEPEND=" + ${COMMON_DEPEND} +" +RDEPEND=" + ${COMMON_DEPEND} + app-text/ghostscript-gpl + !minimal? ( + $(python_gen_cond_dep 'dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]' 'python3*') + kernel_linux? ( virtual/udev ) + $(python_gen_cond_dep ' + >=dev-python/dbus-python-1.2.0-r1[${PYTHON_MULTI_USEDEP}] + dev-python/distro[${PYTHON_MULTI_USEDEP}] + fax? ( dev-python/reportlab[${PYTHON_MULTI_USEDEP}] ) + qt5? ( + >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,${PYTHON_MULTI_USEDEP}] + libnotify? ( dev-python/notify2[${PYTHON_MULTI_USEDEP}] ) + ) + scanner? ( + >=dev-python/reportlab-3.2[${PYTHON_MULTI_USEDEP}] + >=dev-python/pillow-3.1.1[${PYTHON_MULTI_USEDEP}] + X? ( + || ( + kde? ( kde-misc/skanlite ) + media-gfx/xsane + media-gfx/sane-frontends + ) + ) + ) + ') + ) + policykit? ( sys-auth/polkit ) +" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +PATCHES=( + "${WORKDIR}/patches" +) + +CONFIG_CHECK="~PARPORT ~PPDEV" +ERROR_PARPORT="Please make sure kernel parallel port support is enabled (PARPORT and PPDEV)." + +#DISABLE_AUTOFORMATTING="yes" +DOC_CONTENTS=" +For more information on setting up your printer please take +a look at the hplip section of the gentoo printing guide: +https://wiki.gentoo.org/wiki/Printing +" + +pkg_setup() { + python-single-r1_pkg_setup + + use scanner && ! use X && ewarn "You need USE=X for the scanner GUI." + + use parport && linux-info_pkg_setup + + if use minimal ; then + ewarn "Installing driver portions only, make sure you know what you are doing." + ewarn "Depending on the USE flags set for hpcups or hpijs the appropiate driver" + ewarn "is installed. If both USE flags are set hpijs overrides hpcups." + ewarn "This also disables fax, network, scanner and gui support!" + fi + + if ! use hpcups && ! use hpijs ; then + ewarn "Installing neither hpcups (USE=-hpcups) nor hpijs (USE=-hpijs) driver," + ewarn "which is probably not what you want." + ewarn "You will almost certainly not be able to print." + fi +} + +src_prepare() { + default + + python_fix_shebang . + + # Make desktop files follow the specification + # Gentoo bug: https://bugs.gentoo.org/show_bug.cgi?id=443680 + # Upstream bug: https://bugs.launchpad.net/hplip/+bug/1080324 + sed -i -e '/^Categories=/s/Application;//' \ + -e '/^Encoding=.*/d' hplip.desktop.in || die + sed -i -e '/^Categories=/s/Application;//' \ + -e '/^Version=.*/d' \ + -e '/^Comment=.*/d' hplip-systray.desktop.in || die + + # Fix for Gentoo bug https://bugs.gentoo.org/show_bug.cgi?id=345725 + # Upstream bug: https://bugs.launchpad.net/hplip/+bug/880847, + # https://bugs.launchpad.net/hplip/+bug/500086 + local udevdir=$(get_udevdir) + sed -i -e "s|/etc/udev|${udevdir}|g" \ + $(find . -type f -exec grep -l /etc/udev {} +) || die + + # Force recognition of Gentoo distro by hp-check + sed -i \ + -e "s:file('/etc/issue', 'r').read():'Gentoo':" \ + installer/core_install.py || die + + eautoreconf +} + +src_configure() { + local drv_build minimal_build + + if use hpcups ; then + drv_build="$(use_enable hpcups hpcups-install)" + if use static-ppds ; then + drv_build="${drv_build} --enable-cups-ppd-install" + drv_build="${drv_build} --disable-cups-drv-install" + else + drv_build="${drv_build} --enable-cups-drv-install" + drv_build="${drv_build} --disable-cups-ppd-install" + fi + else + drv_build="--disable-hpcups-install" + drv_build="${drv_build} --disable-cups-drv-install" + drv_build="${drv_build} --disable-cups-ppd-install" + fi + + if use hpijs ; then + drv_build="${drv_build} $(use_enable hpijs hpijs-install)" + if use static-ppds ; then + drv_build="${drv_build} --enable-foomatic-ppd-install" + drv_build="${drv_build} --disable-foomatic-drv-install" + else + drv_build="${drv_build} --enable-foomatic-drv-install" + drv_build="${drv_build} --disable-foomatic-ppd-install" + fi + else + drv_build="${drv_build} --disable-hpijs-install" + drv_build="${drv_build} --disable-foomatic-drv-install" + drv_build="${drv_build} --disable-foomatic-ppd-install" + fi + + if use minimal ; then + if use hpijs ; then + minimal_build="--enable-hpijs-only-build" + else + minimal_build="--disable-hpijs-only-build" + fi + if use hpcups ; then + minimal_build="${minimal_build} --enable-hpcups-only-build" + else + minimal_build="${minimal_build} --disable-hpcups-only-build" + fi + minimal_build="${minimal_build} --disable-fax-build" + minimal_build="${minimal_build} --disable-network-build" + minimal_build="${minimal_build} --disable-scan-build" + minimal_build="${minimal_build} --disable-gui-build" + else + if use fax ; then + minimal_build="${minimal_build} --enable-fax-build" + else + minimal_build="${minimal_build} --disable-fax-build" + fi + if use snmp ; then + minimal_build="${minimal_build} --enable-network-build" + else + minimal_build="${minimal_build} --disable-network-build" + fi + if use scanner ; then + minimal_build="${minimal_build} --enable-scan-build" + else + minimal_build="${minimal_build} --disable-scan-build" + fi + if use qt5 ; then + minimal_build="${minimal_build} --enable-qt5" + minimal_build="${minimal_build} --enable-gui-build" + else + minimal_build="${minimal_build} --disable-gui-build" + minimal_build="${minimal_build} --disable-qt5" + fi + fi + + # disable class driver for now + econf \ + --disable-class-driver \ + --disable-foomatic-rip-hplip-install \ + --disable-cups11-build \ + --disable-lite-build \ + --disable-shadow-build \ + --disable-qt3 \ + --disable-qt4 \ + --disable-udev_sysfs_rules \ + --with-cupsbackenddir=$(cups-config --serverbin)/backend \ + --with-cupsfilterdir=$(cups-config --serverbin)/filter \ + --with-docdir=/usr/share/doc/${PF} \ + --with-htmldir=/usr/share/doc/${PF}/html \ + --enable-hpps-install \ + --enable-dbus-build \ + ${drv_build} \ + ${minimal_build} \ + $(use_enable doc doc-build) \ + $(use_enable libusb0 libusb01_build) \ + $(use_enable parport pp-build) \ + $(use_enable policykit) + + # hpijs ppds are created at configure time but are not installed (3.17.11) + + # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip + # The hpcups driver does not use foomatic-rip + #local i + #for i in ppd/hpijs/*.ppd.gz ; do + # rm -f ${i}.temp || die + # gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \ + # gzip > ${i}.temp || die + # mv ${i}.temp ${i} || die + #done +} + +src_install() { + # Disable parallel install + # Gentoo Bug: https://bugs.gentoo.org/show_bug.cgi?id=578018 + emake -j1 DESTDIR="${D}" install + einstalldocs + # default + + # Installed by sane-backends + # Gentoo Bug: https://bugs.gentoo.org/show_bug.cgi?id=201023 + rm -f "${ED}"/etc/sane.d/dll.conf || die + + # Remove desktop and autostart files + # Gentoo Bug: https://bugs.gentoo.org/show_bug.cgi?id=638770 + use qt5 || { + rm -Rf "${ED}"/usr/share/applications "${ED}"/etc/xdg + } + + rm -f "${ED}"/usr/share/doc/${PF}/{copyright,README_LIBJPG,COPYING} || die + rmdir --ignore-fail-on-non-empty "${ED}"/usr/share/doc/${PF}/ || die + + # Remove hal fdi files + rm -rf "${ED}"/usr/share/hal || die + + find "${D}" -name '*.la' -delete || die + + python_optimize "${ED}"/usr/share/hplip + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +} diff --git a/net-wireless/Manifest.gz b/net-wireless/Manifest.gz index 5dabdc952ad8..159ee440bfb7 100644 Binary files a/net-wireless/Manifest.gz and b/net-wireless/Manifest.gz differ diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest index 255ffd401abe..c07d8d10873f 100644 --- a/net-wireless/unifi/Manifest +++ b/net-wireless/unifi/Manifest @@ -1,2 +1,3 @@ DIST unifi-6.0.43.zip 136844666 BLAKE2B fb330f9ba8c2d22dacd5e37fbeccc411101e388525cdf7ae76fd2ade629c8230d10a5098d01453fcd9e091d581961b556c7f86d1625baff735fa76a2896b2d94 SHA512 16cfec8f12aa31c146ebd38b946a51730f7ca600f36f16058e06ec20d6d3597a34fa8fa8efef1bad1980b73a15c13d5c6458f03d08cee6eda5cedf62ef17a6b8 +DIST unifi-6.0.45.zip 147691229 BLAKE2B ad8e34e4934449151b0244bb32e2ce81e2506f228c995e72c2756279ce22f1ce06d44c37f1cfd6156cee0d03066e36d99f98b56d2a1c759ee98ada6569b8309e SHA512 6b2aebf33b6e2114a2b274ce332e2bd88a30406e3a21bc66dc0eddee3ee27ee2e4d3948dea73ff85289cbc2ed0e4f2b646e095091c54120f718b5fb2f0b35943 DIST unifi-6.1.26.zip 243498936 BLAKE2B 72a17f02279ecedd8f876df85167824a03abebb2816e68fcbfff11923b00c1e0b80b7357e48a4e044f0835e3e0054bd0ab034bd8fb3d67289bf61b4804ce9a87 SHA512 9ea5a7307ad507f08e4d39805bdf776eaa50895513e4c086d94527e28ae93b1f97e3d1b23ff314ed03ea560638b8cb44fc16bf4ff8f7746035e8b5de9b31321b diff --git a/net-wireless/unifi/unifi-6.0.45.ebuild b/net-wireless/unifi/unifi-6.0.45.ebuild new file mode 100644 index 000000000000..0623e179e30c --- /dev/null +++ b/net-wireless/unifi/unifi-6.0.45.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +# Set this var for any releases except stable +RC_SUFFIX="-564eef1dda" + +inherit 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" + +KEYWORDS="~amd64" +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/6.0" +IUSE="systemd" + +RDEPEND=" + acct-group/unifi + acct-user/unifi + dev-db/mongodb + virtual/jre:1.8 +" + +DEPEND="app-arch/unzip" + +RESTRICT="bindist mirror" + +S="${WORKDIR}/UniFi" + +DOCS=( "readme.txt" ) + +QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so" + +src_prepare() { + # Remove unneeded files Linux, Mac and Windows + rm -r lib/native/Linux/{aarch64,armv7} lib/native/{Mac,Windows} || die + if ! use systemd; then + rm lib/native/Linux/x86_64/libubnt_sdnotify_jni.so || die + fi + + default +} + +src_install() { + insinto /usr/lib/unifi + doins -r bin dl lib webapps + + 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 + + newinitd "${FILESDIR}"/unifi.initd-r1 unifi + systemd_dounit "${FILESDIR}"/unifi.service + + newconfd "${FILESDIR}"/unifi.confd unifi + + echo 'CONFIG_PROTECT="/var/lib/unifi"' > "${T}"/99unifi || die + doenvd "${T}"/99unifi + + einstalldocs +} diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index 1a4c470452a7..84e428634bf7 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/arch/arm/package.use.mask b/profiles/arch/arm/package.use.mask index 0e2d64025274..d3e84051f2e0 100644 --- a/profiles/arch/arm/package.use.mask +++ b/profiles/arch/arm/package.use.mask @@ -5,18 +5,6 @@ # Depends on media-video/rav1e which needs Rust >=media-libs/libheif-1.10.0 rav1e -# Sam James (2021-01-21) -# Needs keywording of new test dependency -# bug #766441 -dev-db/redis ssl - -# Sam James (2021-01-19) -# Joonas Niilola (2021-01-10) -# Test-dep needs keywording on multiple arches, best to just mask it -# globally for now. Resolves issue by b5248bbb1b5 -# bug #766147 -app-text/enchant test - # Sam James (2020-01-17) # gnuefi + systemd-boot works on arm # bug #729720 diff --git a/profiles/arch/arm64/package.use.mask b/profiles/arch/arm64/package.use.mask index 0d674780969d..9c97e5a0c531 100644 --- a/profiles/arch/arm64/package.use.mask +++ b/profiles/arch/arm64/package.use.mask @@ -1,23 +1,11 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# Sam James (2021-01-21) -# Needs keywording of new test dependency -# bug #766441 -dev-db/redis ssl - # Sam James (2021-01-19) # app-text/dblatex not yet keyworded # bug #766186 dev-util/ragel doc -# Sam James (2021-01-19) -# Joonas Niilola (2021-01-10) -# Test-dep needs keywording on multiple arches, best to just mask it -# globally for now. Resolves issue by b5248bbb1b5 -# bug #766147 -app-text/enchant test - # Sam James (2020-01-17) # gnuefi + systemd-boot works on arm64 # bug #729720 diff --git a/profiles/package.mask b/profiles/package.mask index 540b4cb697ce..fe6bbc1055ca 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -32,6 +32,19 @@ #--- END OF EXAMPLES --- +# Andreas K. Hüttel (2021-01-26) +# In preparation. Do not use yet. +~dev-lang/perl-5.32.1 +=virtual/perl-Data-Dumper-2.174.10_rc +=virtual/perl-Module-CoreList-5.202.101.230 +=virtual/perl-Safe-2.410.100_rc + +# Brian Evans (2021-01-25) +# Dead upstream. Relies on soon to be removed wddx support in PHP. +# wddx in general failed overall as a protocol. No real maintainer. +# Removal in 30 days. Bug #688066 +net-analyzer/jffnms + # Andreas Sturmlechner (2021-01-24) # (New and QML-based) functionality moved into kde-plasma/plasma-desktop:5 # Masked for removal in 14 days. diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 8247c19a29ea..838dee79b886 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1879,6 +1879,7 @@ dev-lang/vala:valadoc - Installs valadoc documentation generation tool dev-lang/yap:R - Enable support for connecting R to Prolog dev-lang/yap:raptor - Enable support for Raptor RDF syntax libarary dev-lang/zig:experimental - Enable builds that do not support all of LLVM's target architectures +dev-libs/aml:examples - Build and install examples dev-libs/antlr-c:debugger - Compiles debug info into the library dev-libs/appstream:apt - Enables Debians APT support dev-libs/appstream-glib:fonts - Enable fonts support for appstream-builder. @@ -3387,10 +3388,19 @@ gui-apps/waybar:popups - Enable popup support with gtk-layer-shell gui-apps/waybar:pulseaudio - Enable support for volume control via PulseAudio gui-apps/waybar:tray - Enable support for tray gui-apps/waybar:wifi - Enable support for wifi/rfkill +gui-apps/waypipe:dmabuf - Use dmabuf for data exchange and hardware decoding +gui-apps/waypipe:ffmpeg - Link with ffmpeg for software decoding +gui-apps/waypipe:man - Build and install man pages +gui-apps/waypipe:systemtap - Enable SystemTAP/DTrace tracing +gui-apps/wayvnc:gbm - enable GPU-side screencopy (experimental) +gui-apps/wayvnc:tracing - Trace kernel and memory calls gui-apps/wf-recorder:man - Build and install man pages gui-apps/wf-recorder:opencl - Enable OpenCL gui-libs/greetd:man - Build and install man pages gui-libs/libhandy:glade - Install module and catalog for dev-util/glade +gui-libs/neatvnc:examples - Build and install examples +gui-libs/neatvnc:jpeg - Enable fast encodings +gui-libs/neatvnc:tracing - Trace kernel and memory calls gui-libs/wlroots:X - Enable support for X11 applications (XWayland) gui-libs/wlroots:elogind - Enable support for rootless session via elogind gui-libs/wlroots:icccm - Use xcb-icccm (from x11-libs/xcb-util-wm) util library for improved Xwayland introspection @@ -3871,6 +3881,10 @@ media-fonts/culmus:fancy - Install fancy fonts media-fonts/culmus:fontforge - Use media-gfx/fontforge to build fonts from source media-fonts/culmus:taamey - Install taamey fonts media-fonts/dejavu:fontforge - Use media-gfx/fontforge to build fonts from source +media-fonts/fira-mono:otf - Install the OpenType version of the font +media-fonts/fira-mono:ttf - Install the TrueType version of the font +media-fonts/fira-sans:otf - Install the OpenType version of the font +media-fonts/fira-sans:ttf - Install the TrueType version of the font media-fonts/fontawesome:otf - Install the OpenType version of the font media-fonts/fontawesome:ttf - Install the TrueType version of the font media-fonts/ibm-plex:otf - Install OTF fonts @@ -7204,7 +7218,6 @@ sci-libs/ceres-solver:cxsparse - Enable simple support for sparse matrix algebra sci-libs/ceres-solver:gflags - Use dev-cpp/gflags for flag parsing sci-libs/ceres-solver:schur - Enable fixed-size schur specializations (disable if binary size is an issue) sci-libs/ceres-solver:sparse - Enable support for sparse matrix algebra with various packages from SuiteSparse -sci-libs/cfitsio:tools - Build execs fpack, funpack, imcopy, fitscopy, listhead sci-libs/cgnslib:legacy - Enable or disable building legacy code (3.0 compatible) sci-libs/cgnslib:tools - A number of utility programs: cgnscheck, cgnscompress, cgnsdiff, cgnslist, cgnsnames, cgnsupdate, cgnsconvert, adf2hdf, hdf2adf. sci-libs/cholmod:cuda - Use nvidia cuda toolkit for speeding up computations diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index c0128bf1e646..d193abae7065 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/cfitsio/Manifest b/sci-libs/cfitsio/Manifest index d4be6d38173b..470fffa01b2d 100644 --- a/sci-libs/cfitsio/Manifest +++ b/sci-libs/cfitsio/Manifest @@ -1,3 +1 @@ -DIST cfitsio-3.360.tar.gz 4104894 BLAKE2B 7a84177c28679db5c27d0586cb6959a0663918a84d46ced9aea6ef7e6bdd32955946807efd4cd852e55128dbc887c4a2135b2eba26847b265011bfd6df049335 SHA512 158819b4a3a29c29a5f017283e2b20067420994e881d202dbf3ba199c9e564dc1e74f8be5ce84f78107126d2a8688cc55cc7ed284540ca647e44cdc3b0b02072 -DIST cfitsio-3.410.tar.gz 4194529 BLAKE2B 31250b9add5b6a85c919c33251d127117ceab81c2243e0b9f8bbe2ef0fd09c85a938b7525338bc718a9b3035efa3660ecffa17ec79e3e278c8014e727f23473b SHA512 cc1de2a4314e7c82bdd6855e11dea4e18dc4e7bcb27b0d15b884cbaeb4acd3b1e12dadd17ab83c7917570934913f89337035470ee4921e7b62409a81052d70cd DIST cfitsio-3.49.tar.gz 4934662 BLAKE2B ca8b701f0fec399d989efb61fdaa2bfbf49d0eea2d3ff47e156757c5a99bc77c23a1b91b4c91166696293c71c78210065dc48d0bb3c77039815f326d0ed55f0a SHA512 9836a4af3bbbfed1ea1b4c70b9d500ac485d7c3d8131eb8a25ee6ef6662f46ba52b5161c45c709ed9a601ff0e9ec36daa5650eaaf4f2cc7d6f4bb5640f10da15 diff --git a/sci-libs/cfitsio/cfitsio-3.360.ebuild b/sci-libs/cfitsio/cfitsio-3.360.ebuild deleted file mode 100644 index d281612a65bf..000000000000 --- a/sci-libs/cfitsio/cfitsio-3.360.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -FORTRAN_NEEDED=fortran - -inherit autotools-utils fortran-2 - -DESCRIPTION="C and Fortran library for manipulating FITS files" -HOMEPAGE="https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html" -SRC_URI="https://dev.gentoo.org/~bicatali/distfiles/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/1" -KEYWORDS="~alpha amd64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris" -IUSE="doc examples fortran static-libs +tools threads" - -RDEPEND="sys-libs/zlib" -DEPEND="${RDEPEND} - fortran? ( dev-lang/cfortran )" - -pkg_setup() { - use fortran && fortran-2_pkg_setup -} - -src_prepare() { - # avoid internal cfortran - if use fortran; then - mv cfortran.h cfortran.h.disabled - ln -s "${EPREFIX}"/usr/include/cfortran.h . || die - fi - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( - $(use_enable fortran) - $(use_enable threads) - $(use_enable tools) - ) - autotools-utils_src_configure -} - -src_install() { - autotools-utils_src_install - dodoc README* Changes* docs/changes.txt docs/cfitsio.doc - use fortran && dodoc docs/fitsio.doc - use doc && dodoc docs/{quick,cfitsio,fpackguide}.pdf - use doc && use fortran && dodoc docs/fitsio.pdf - - if use examples; then - docinto examples - dodoc cookbook.c testprog.c speed.c smem.c - use fortran && dodoc cookbook.f testf77.f - fi -} diff --git a/sci-libs/cfitsio/cfitsio-3.410.ebuild b/sci-libs/cfitsio/cfitsio-3.410.ebuild deleted file mode 100644 index 2ff8d4bbe26e..000000000000 --- a/sci-libs/cfitsio/cfitsio-3.410.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -FORTRAN_NEEDED=fortran - -inherit fortran-2 ltprune multilib-minimal - -DESCRIPTION="C and Fortran library for manipulating FITS files" -HOMEPAGE="https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html" -SRC_URI="https://dev.gentoo.org/~bicatali/distfiles/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/5" -KEYWORDS="~alpha amd64 ~hppa ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris" -IUSE="bzip2 doc examples fortran static-libs +tools threads" - -RDEPEND=" - sys-libs/zlib[${MULTILIB_USEDEP}] - bzip2? ( app-arch/bzip2[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - fortran? ( dev-lang/cfortran )" - -pkg_setup() { - use fortran && fortran-2_pkg_setup -} - -src_prepare() { - # avoid internal cfortran - if use fortran; then - mv cfortran.h cfortran.h.disabled - ln -s "${EPREFIX}"/usr/include/cfortran.h . || die - fi - default -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - $(use_enable fortran) \ - $(use_enable static-libs static) \ - $(use_enable threads) \ - $(use_enable tools) \ - $(use_with bzip2) -} - -multilib_src_install_all() { - dodoc README README.md CHANGES.md docs/changes.txt docs/cfitsio.doc - use fortran && dodoc docs/fitsio.doc - use doc && dodoc docs/{quick,cfitsio,fpackguide}.pdf - use doc && use fortran && dodoc docs/fitsio.pdf - if use examples; then - docinto examples - dodoc cookbook.c testprog.c speed.c smem.c - use fortran && dodoc cookbook.f testf77.f - fi - prune_libtool_files --all -} diff --git a/sci-libs/cfitsio/metadata.xml b/sci-libs/cfitsio/metadata.xml index 70b6e88c674a..c25c3510d3a5 100644 --- a/sci-libs/cfitsio/metadata.xml +++ b/sci-libs/cfitsio/metadata.xml @@ -14,8 +14,4 @@ features for manipulating and filtering the information in FITS files.
- - Build execs fpack, funpack, imcopy, fitscopy, listhead - -
diff --git a/sci-libs/libgeotiff/Manifest b/sci-libs/libgeotiff/Manifest index 998b19aee176..930d7ae0d298 100644 --- a/sci-libs/libgeotiff/Manifest +++ b/sci-libs/libgeotiff/Manifest @@ -1 +1,2 @@ DIST libgeotiff-1.5.1.tar.gz 528083 BLAKE2B 24dd812c4b12a942b21640c031fd890bb2151f6dfedfd98d0b54cf41d6341ee4d352edd427d350f36542169f822a360f8d0c9f3bb13019a422db77f43e7bd893 SHA512 6599ec89dd39d975ba389584778dd084ded628d3304b302e3af25bb7d156cf583c56b52f1c89c253b041df43f99d6893190ee1556398dab1ba044f12ef8b8dc1 +DIST libgeotiff-1.6.0.tar.gz 537175 BLAKE2B 4b1430c9e80cdd4193f474484b295c151ecb9a654248e08527046f1aa35cfab0be59980edad2cc6ae90c1a7b0e03d46fd203affd5b01c83e0fd4435d5e56b2d3 SHA512 4c59598140d6c435a25aff6520e07a01a0153cac526df3b3e1366d5edc43cd82b15099da79ee8a2fb916e858f5a5d7421cfbf96bb485c91fac9e19c7209b7418 diff --git a/sci-libs/libgeotiff/libgeotiff-1.6.0.ebuild b/sci-libs/libgeotiff/libgeotiff-1.6.0.ebuild new file mode 100644 index 000000000000..0826b31d2196 --- /dev/null +++ b/sci-libs/libgeotiff/libgeotiff-1.6.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Library for reading TIFF files with embedded tags for geographic information" +HOMEPAGE="https://trac.osgeo.org/geotiff/ https://github.com/OSGeo/libgeotiff" +SRC_URI="https://download.osgeo.org/geotiff/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0/5" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +IUSE="debug doc static-libs" + +BDEPEND=" + doc? ( app-doc/doxygen ) + virtual/pkgconfig +" +DEPEND=" + >=media-libs/tiff-3.9.1:0 + >=sci-libs/proj-6.0.0:= + sys-libs/zlib + virtual/jpeg:= +" +RDEPEND="${DEPEND}" + +src_prepare() { + default + sed -e "s:-O3::g" -i configure.ac || die + eautoreconf +} + +src_configure() { + econf \ + --disable-static \ + --enable-debug=$(usex debug) \ + --with-jpeg="${EPREFIX}"/usr \ + --with-zip="${EPREFIX}"/usr +} + +src_compile() { + default + + if use doc; then + mkdir -p docs/api || die + cp "${FILESDIR}"/Doxyfile Doxyfile || die + doxygen -u Doxyfile || die "updating doxygen config failed" + doxygen Doxyfile || die "docs generation failed" + fi +} + +src_install() { + use doc && local HTML_DOCS=( docs/api/. ) + + default + + find "${D}" -name '*.la' -type f -delete || die +} diff --git a/sci-mathematics/Manifest.gz b/sci-mathematics/Manifest.gz index a72bb72b8fed..49638869bdfd 100644 Binary files a/sci-mathematics/Manifest.gz and b/sci-mathematics/Manifest.gz differ diff --git a/sci-mathematics/flint/flint-2.6.3.ebuild b/sci-mathematics/flint/flint-2.6.3.ebuild index d943d1c39050..75b13e2ca97a 100644 --- a/sci-mathematics/flint/flint-2.6.3.ebuild +++ b/sci-mathematics/flint/flint-2.6.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ SRC_URI="http://www.flintlib.org/${P}.tar.gz" LICENSE="LGPL-2.1+" SLOT="0/14" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ppc ~x86" IUSE="doc ntl test" RESTRICT="!test? ( test )" diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz index cad43fd80be5..72ce1c703812 100644 Binary files a/sys-apps/Manifest.gz and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/flashrom/flashrom-1.2-r3.ebuild b/sys-apps/flashrom/flashrom-1.2-r3.ebuild index f8cc25ba0170..2759492b7901 100644 --- a/sys-apps/flashrom/flashrom-1.2-r3.ebuild +++ b/sys-apps/flashrom/flashrom-1.2-r3.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} == "9999" ]] ; then else MY_P="${PN}-v${PV}" SRC_URI="https://download.flashrom.org/releases/${MY_P}.tar.bz2" - KEYWORDS="amd64 arm arm64 ppc ppc64 sparc ~x86" + KEYWORDS="amd64 arm arm64 ppc ppc64 sparc x86" S="${WORKDIR}/${MY_P}" fi diff --git a/sys-apps/smartmontools/smartmontools-7.1-r1.ebuild b/sys-apps/smartmontools/smartmontools-7.1-r1.ebuild index 158bfd6444fc..823bf3d00684 100644 --- a/sys-apps/smartmontools/smartmontools-7.1-r1.ebuild +++ b/sys-apps/smartmontools/smartmontools-7.1-r1.ebuild @@ -114,8 +114,8 @@ src_install() { pkg_postinst() { if use daemon || use update-drivedb; then - local initial_db_file="${EROOT}/usr/share/${PN}/drivedb.h" - local db_path="${EROOT}/var/db/${PN}" + local initial_db_file="${EROOT}usr/share/${PN}/drivedb.h" + local db_path="${EROOT}var/db/${PN}" if [[ ! -f "${db_path}/drivedb.h" ]] ; then # No initial database found diff --git a/sys-apps/smartmontools/smartmontools-7.2.ebuild b/sys-apps/smartmontools/smartmontools-7.2.ebuild index bcbd184c16d7..8743a731e871 100644 --- a/sys-apps/smartmontools/smartmontools-7.2.ebuild +++ b/sys-apps/smartmontools/smartmontools-7.2.ebuild @@ -118,8 +118,8 @@ src_install() { pkg_postinst() { if use daemon || use update-drivedb; then - local initial_db_file="${EROOT}/usr/share/${PN}/drivedb.h" - local db_path="${EROOT}/var/db/${PN}" + local initial_db_file="${EROOT}usr/share/${PN}/drivedb.h" + local db_path="${EROOT}var/db/${PN}" if [[ ! -f "${db_path}/drivedb.h" ]] ; then # No initial database found diff --git a/sys-apps/smartmontools/smartmontools-9999.ebuild b/sys-apps/smartmontools/smartmontools-9999.ebuild index bcbd184c16d7..8743a731e871 100644 --- a/sys-apps/smartmontools/smartmontools-9999.ebuild +++ b/sys-apps/smartmontools/smartmontools-9999.ebuild @@ -118,8 +118,8 @@ src_install() { pkg_postinst() { if use daemon || use update-drivedb; then - local initial_db_file="${EROOT}/usr/share/${PN}/drivedb.h" - local db_path="${EROOT}/var/db/${PN}" + local initial_db_file="${EROOT}usr/share/${PN}/drivedb.h" + local db_path="${EROOT}var/db/${PN}" if [[ ! -f "${db_path}/drivedb.h" ]] ; then # No initial database found diff --git a/sys-block/Manifest.gz b/sys-block/Manifest.gz index 35ba3b1e115c..b5ebb31b608d 100644 Binary files a/sys-block/Manifest.gz and b/sys-block/Manifest.gz differ diff --git a/sys-block/fio/fio-3.20-r2.ebuild b/sys-block/fio/fio-3.20-r2.ebuild index 36b088a60fb9..ffd492d87137 100644 --- a/sys-block/fio/fio-3.20-r2.ebuild +++ b/sys-block/fio/fio-3.20-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -16,7 +16,7 @@ SRC_URI="https://brick.kernel.dk/snaps/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86" IUSE="aio curl glusterfs gnuplot gtk libressl io-uring numa python rbd rdma static tcmalloc test zbc zlib" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ) libressl? ( curl ) diff --git a/sys-boot/Manifest.gz b/sys-boot/Manifest.gz index cbfc65d863e6..685f83f5777c 100644 Binary files a/sys-boot/Manifest.gz and b/sys-boot/Manifest.gz differ diff --git a/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20201201.ebuild b/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20201201.ebuild index 55d6595f60bf..43c2288dc321 100644 --- a/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20201201.ebuild +++ b/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20201201.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ if [[ "${PV}" == 9999 ]]; then EGIT_CLONE_TYPE="shallow" else SRC_URI="https://github.com/raspberrypi/firmware/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="-* ~arm ~arm64" + KEYWORDS="-* arm arm64" S="${WORKDIR}/firmware-${PV}" fi diff --git a/sys-fabric/Manifest.gz b/sys-fabric/Manifest.gz index dad7a57ece47..d90141cdd342 100644 Binary files a/sys-fabric/Manifest.gz and b/sys-fabric/Manifest.gz differ diff --git a/sys-fabric/libibverbs/libibverbs-1.1.7-r1.ebuild b/sys-fabric/libibverbs/libibverbs-1.1.7-r1.ebuild index 1261760d1d08..36227d3bcda6 100644 --- a/sys-fabric/libibverbs/libibverbs-1.1.7-r1.ebuild +++ b/sys-fabric/libibverbs/libibverbs-1.1.7-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -12,7 +12,7 @@ inherit eutils openib multilib-minimal DESCRIPTION="A library to use InfiniBand 'verbs' for direct access to IB hardware" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux" IUSE="static-libs" DEPEND="" diff --git a/sys-fabric/librdmacm/librdmacm-1.0.18-r1.ebuild b/sys-fabric/librdmacm/librdmacm-1.0.18-r1.ebuild index 682ee80b9223..c6ab4d81f4e6 100644 --- a/sys-fabric/librdmacm/librdmacm-1.0.18-r1.ebuild +++ b/sys-fabric/librdmacm/librdmacm-1.0.18-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -12,7 +12,7 @@ inherit eutils openib multilib-minimal DESCRIPTION="OpenIB userspace RDMA CM library" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux" IUSE="static-libs" DEPEND="sys-fabric/libibverbs:${SLOT}[static-libs?,${MULTILIB_USEDEP}]" diff --git a/sys-firmware/Manifest.gz b/sys-firmware/Manifest.gz index c242a1cc211f..3fd392ff7f09 100644 Binary files a/sys-firmware/Manifest.gz and b/sys-firmware/Manifest.gz differ diff --git a/sys-firmware/raspberrypi-wifi-ucode/raspberrypi-wifi-ucode-20190114.1_p10.ebuild b/sys-firmware/raspberrypi-wifi-ucode/raspberrypi-wifi-ucode-20190114.1_p10.ebuild index 38d2b40eea18..ec573949e197 100644 --- a/sys-firmware/raspberrypi-wifi-ucode/raspberrypi-wifi-ucode-20190114.1_p10.ebuild +++ b/sys-firmware/raspberrypi-wifi-ucode/raspberrypi-wifi-ucode-20190114.1_p10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ S="${WORKDIR}" LICENSE="Broadcom" SLOT="0" -KEYWORDS="~arm ~arm64" +KEYWORDS="arm arm64" RDEPEND="!sys-kernel/linux-firmware[-savedconfig]" diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz index 72e5b1bf5024..3c51e0ac818c 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 a8fa65b73f97..0ccba9bc20f7 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -3,3 +3,4 @@ DIST patch-5.11-rc1.patch 74495974 BLAKE2B a8a7cae289cb1421597f9c69f07624259a828 DIST patch-5.11-rc2.patch 74560270 BLAKE2B 1e4ac4ce26e20aa6b48c88af114f6303c6d89ce28b64eb98085ac24a2c7747e706ec988cc5dcaf2fa46f9589a66d721d7808ed39e52da3fffa6f24e2fa01df86 SHA512 a4b0145be9066e9602efe8fc7b6f57f71832b31d4dda9ae4368d0ff95aaf9fec7a238d6c2b1e91c31a4b88feabf41118513891384181043b91cda1211a40fad8 DIST patch-5.11-rc3.patch 75045235 BLAKE2B d159e9e4bedcf6838e0b81462b53445955e59edd266e25cd001d163af36ad56de06dae5496e14663db860805825402959189ce15a80bdb561134d78ff5616b5d SHA512 5fd19e81144ebf489d5a6833b95a21f94c8b0f8d66e85d1c94acdeba008f8705367e03c411c80a61c4c0df30ddfbadcb65ba835014dad6e79c130b756fe518df DIST patch-5.11-rc4.patch 75392493 BLAKE2B efc6b837641883d1ed7e165d5ba08a36ec85c3bfce49f4f8a0ed09d39df6ecf5844908c13a0bd2792c3dd2a57073dae211934f681482d3a04c0a3589a0776f68 SHA512 072cca3d9bc343b791278258102186646fb46f4808680c71cbe55ba3574448711aaa85b34e8f664a354d69d1665759c196ed37e23f1c0285851b0d2538ff173d +DIST patch-5.11-rc5.patch 75678864 BLAKE2B 8f8afe6935e2d9616981a87c753cc517772f9b0e29d027518fda903f2bd068b0c376ccd668bab489b155875589962211a430880d44945d1faa6d53bd06b5deb2 SHA512 7665e1bd8c58567af774a85065c28a8ded29520eaca4b6ff367ab99a6ce26091e1097949baf23455b5d20e04b9214410dea3d3812b81e91701f6eb40a6d52df8 diff --git a/sys-kernel/git-sources/git-sources-5.11_rc5.ebuild b/sys-kernel/git-sources/git-sources-5.11_rc5.ebuild new file mode 100644 index 000000000000..d3797acbcee8 --- /dev/null +++ b/sys-kernel/git-sources/git-sources-5.11_rc5.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +UNIPATCH_STRICTORDER="yes" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_NOUSEPR="yes" +K_SECURITY_UNSUPPORTED="1" +K_BASE_VER="5.10" +K_EXP_GENPATCHES_NOUSE="1" +K_FROM_GIT="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 ~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.5" + +pkg_postinst() { + postinst_sources +} diff --git a/sys-libs/Manifest.gz b/sys-libs/Manifest.gz index 06eac1f669a8..17f176a03e46 100644 Binary files a/sys-libs/Manifest.gz and b/sys-libs/Manifest.gz differ diff --git a/sys-libs/db/db-4.3.29_p1-r3.ebuild b/sys-libs/db/db-4.3.29_p1-r3.ebuild index b2852ed59b78..6203db5bb196 100644 --- a/sys-libs/db/db-4.3.29_p1-r3.ebuild +++ b/sys-libs/db/db-4.3.29_p1-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -32,8 +32,7 @@ IUSE="tcl java doc cxx" RESTRICT="!test? ( test )" DEPEND="tcl? ( >=dev-lang/tcl-8.4 ) - java? ( >=virtual/jdk-1.4 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.4 )" RDEPEND="tcl? ( dev-lang/tcl ) java? ( >=virtual/jre-1.4 )" diff --git a/sys-libs/db/db-4.4.20_p4-r3.ebuild b/sys-libs/db/db-4.4.20_p4-r3.ebuild index dfdea3ae9c22..7c080be4429c 100644 --- a/sys-libs/db/db-4.4.20_p4-r3.ebuild +++ b/sys-libs/db/db-4.4.20_p4-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -33,8 +33,7 @@ IUSE="tcl java doc cxx" RESTRICT="!test? ( test )" DEPEND="tcl? ( >=dev-lang/tcl-8.4 ) - java? ( >=virtual/jdk-1.4 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.4 )" RDEPEND="tcl? ( dev-lang/tcl ) java? ( >=virtual/jre-1.4 )" diff --git a/sys-libs/db/db-4.5.20_p2-r3.ebuild b/sys-libs/db/db-4.5.20_p2-r3.ebuild index 0167e85d91b2..daddf6588b80 100644 --- a/sys-libs/db/db-4.5.20_p2-r3.ebuild +++ b/sys-libs/db/db-4.5.20_p2-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -32,8 +32,7 @@ IUSE="tcl java doc cxx" RESTRICT="!test? ( test )" DEPEND="tcl? ( >=dev-lang/tcl-8.4 ) - java? ( >=virtual/jdk-1.4 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.4 )" RDEPEND="tcl? ( dev-lang/tcl ) java? ( >=virtual/jre-1.4 )" diff --git a/sys-libs/db/db-4.5.20_p2-r4.ebuild b/sys-libs/db/db-4.5.20_p2-r4.ebuild index 12148350901a..47bd09277278 100644 --- a/sys-libs/db/db-4.5.20_p2-r4.ebuild +++ b/sys-libs/db/db-4.5.20_p2-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -32,8 +32,7 @@ IUSE="tcl java doc cxx" RESTRICT="!test? ( test )" DEPEND="tcl? ( >=dev-lang/tcl-8.4 ) - java? ( >=virtual/jdk-1.4 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.4 )" RDEPEND="tcl? ( dev-lang/tcl ) java? ( >=virtual/jre-1.4 )" diff --git a/sys-libs/db/db-4.6.21_p4-r2.ebuild b/sys-libs/db/db-4.6.21_p4-r2.ebuild index e0038732223a..4f065e64ff7b 100644 --- a/sys-libs/db/db-4.6.21_p4-r2.ebuild +++ b/sys-libs/db/db-4.6.21_p4-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -32,8 +32,7 @@ IUSE="tcl java doc cxx" RESTRICT="!test? ( test )" DEPEND="tcl? ( >=dev-lang/tcl-8.4 ) - java? ( >=virtual/jdk-1.4 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.4 )" RDEPEND="tcl? ( dev-lang/tcl ) java? ( >=virtual/jre-1.4 )" diff --git a/sys-libs/db/db-4.6.21_p4-r3.ebuild b/sys-libs/db/db-4.6.21_p4-r3.ebuild index 7b9ae1bc4928..e424bff8ea0a 100644 --- a/sys-libs/db/db-4.6.21_p4-r3.ebuild +++ b/sys-libs/db/db-4.6.21_p4-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -32,8 +32,7 @@ IUSE="tcl java doc cxx" RESTRICT="!test? ( test )" DEPEND="tcl? ( >=dev-lang/tcl-8.4 ) - java? ( >=virtual/jdk-1.4 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.4 )" RDEPEND="tcl? ( dev-lang/tcl ) java? ( >=virtual/jre-1.4 )" diff --git a/sys-libs/db/db-4.7.25_p4-r2.ebuild b/sys-libs/db/db-4.7.25_p4-r2.ebuild index 51fc314037da..f7474414846a 100644 --- a/sys-libs/db/db-4.7.25_p4-r2.ebuild +++ b/sys-libs/db/db-4.7.25_p4-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -35,8 +35,7 @@ IUSE="doc java cxx tcl test" # the entire testsuite needs the TCL functionality DEPEND="tcl? ( >=dev-lang/tcl-8.4 ) test? ( >=dev-lang/tcl-8.4 ) - java? ( >=virtual/jdk-1.5 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.5 )" RDEPEND="tcl? ( dev-lang/tcl ) java? ( >=virtual/jre-1.5 )" diff --git a/sys-libs/db/db-4.7.25_p4-r3.ebuild b/sys-libs/db/db-4.7.25_p4-r3.ebuild index 482880fbe964..791f144c7d93 100644 --- a/sys-libs/db/db-4.7.25_p4-r3.ebuild +++ b/sys-libs/db/db-4.7.25_p4-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -35,8 +35,7 @@ IUSE="doc java cxx tcl test" # the entire testsuite needs the TCL functionality DEPEND="tcl? ( >=dev-lang/tcl-8.4 ) test? ( >=dev-lang/tcl-8.4 ) - java? ( >=virtual/jdk-1.5 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.5 )" RDEPEND="tcl? ( dev-lang/tcl ) java? ( >=virtual/jre-1.5 )" diff --git a/sys-libs/db/db-4.8.30-r3.ebuild b/sys-libs/db/db-4.8.30-r3.ebuild index 8681fcf5b7ff..1e116e00d1da 100644 --- a/sys-libs/db/db-4.8.30-r3.ebuild +++ b/sys-libs/db/db-4.8.30-r3.ebuild @@ -37,8 +37,7 @@ REQUIRED_USE="test? ( tcl )" # the entire testsuite needs the TCL functionality DEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) test? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) - java? ( >=virtual/jdk-1.5 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.5 )" RDEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) java? ( >=virtual/jre-1.5 )" diff --git a/sys-libs/db/db-4.8.30-r4.ebuild b/sys-libs/db/db-4.8.30-r4.ebuild index 5eed810dfd1e..f8233b07a27e 100644 --- a/sys-libs/db/db-4.8.30-r4.ebuild +++ b/sys-libs/db/db-4.8.30-r4.ebuild @@ -37,8 +37,7 @@ REQUIRED_USE="test? ( tcl )" # the entire testsuite needs the TCL functionality DEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) test? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) - java? ( >=virtual/jdk-1.5 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.5 )" RDEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) java? ( >=virtual/jre-1.5 )" diff --git a/sys-libs/db/db-5.1.29-r2.ebuild b/sys-libs/db/db-5.1.29-r2.ebuild index 56046db05acf..feeee909bc10 100644 --- a/sys-libs/db/db-5.1.29-r2.ebuild +++ b/sys-libs/db/db-5.1.29-r2.ebuild @@ -37,8 +37,7 @@ REQUIRED_USE="test? ( tcl )" # the entire testsuite needs the TCL functionality DEPEND="tcl? ( >=dev-lang/tcl-8.4:0 ) test? ( >=dev-lang/tcl-8.4:0 ) - java? ( >=virtual/jdk-1.5 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.5 )" RDEPEND="tcl? ( dev-lang/tcl:0 ) java? ( >=virtual/jre-1.5 )" diff --git a/sys-libs/db/db-5.3.28-r4.ebuild b/sys-libs/db/db-5.3.28-r4.ebuild index 2e6a4b352717..f1fc34d4b543 100644 --- a/sys-libs/db/db-5.3.28-r4.ebuild +++ b/sys-libs/db/db-5.3.28-r4.ebuild @@ -37,8 +37,7 @@ REQUIRED_USE="test? ( tcl )" # the entire testsuite needs the TCL functionality DEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) test? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) - java? ( >=virtual/jdk-1.5 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.5 )" RDEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) java? ( >=virtual/jre-1.5 )" diff --git a/sys-libs/db/db-5.3.28-r5.ebuild b/sys-libs/db/db-5.3.28-r5.ebuild index dbe9de3f2a98..81350c2f3cea 100644 --- a/sys-libs/db/db-5.3.28-r5.ebuild +++ b/sys-libs/db/db-5.3.28-r5.ebuild @@ -37,8 +37,7 @@ REQUIRED_USE="test? ( tcl )" # the entire testsuite needs the TCL functionality DEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) test? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) - java? ( >=virtual/jdk-1.5 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.5 )" RDEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) java? ( >=virtual/jre-1.5 )" diff --git a/sys-libs/db/db-6.0.35-r2.ebuild b/sys-libs/db/db-6.0.35-r2.ebuild index 6bcf7ebc98a3..5d1ee090cf51 100644 --- a/sys-libs/db/db-6.0.35-r2.ebuild +++ b/sys-libs/db/db-6.0.35-r2.ebuild @@ -37,8 +37,7 @@ REQUIRED_USE="test? ( tcl )" # the entire testsuite needs the TCL functionality DEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) test? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) - java? ( >=virtual/jdk-1.5 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.5 )" RDEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) java? ( >=virtual/jre-1.5 )" diff --git a/sys-libs/db/db-6.0.35-r3.ebuild b/sys-libs/db/db-6.0.35-r3.ebuild index 618d3a77ccee..8a7daad00b0d 100644 --- a/sys-libs/db/db-6.0.35-r3.ebuild +++ b/sys-libs/db/db-6.0.35-r3.ebuild @@ -37,8 +37,7 @@ REQUIRED_USE="test? ( tcl )" # the entire testsuite needs the TCL functionality DEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) test? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) - java? ( >=virtual/jdk-1.5 ) - >=sys-devel/binutils-2.16.1" + java? ( >=virtual/jdk-1.5 )" RDEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) java? ( >=virtual/jre-1.5 )" diff --git a/sys-libs/ldb/ldb-2.2.0-r1.ebuild b/sys-libs/ldb/ldb-2.2.0-r2.ebuild similarity index 79% rename from sys-libs/ldb/ldb-2.2.0-r1.ebuild rename to sys-libs/ldb/ldb-2.2.0-r2.ebuild index 94ec2e94d300..03e931d4d102 100644 --- a/sys-libs/ldb/ldb-2.2.0-r1.ebuild +++ b/sys-libs/ldb/ldb-2.2.0-r2.ebuild @@ -1,46 +1,49 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + PYTHON_COMPAT=( python3_{6..9} ) PYTHON_REQ_USE="threads(+)" +inherit python-single-r1 waf-utils multilib-minimal -inherit python-single-r1 waf-utils multilib-minimal eutils - -DESCRIPTION="An LDAP-like embedded database" +DESCRIPTION="LDAP-like embedded database" HOMEPAGE="https://ldb.samba.org" -SRC_URI="https://www.samba.org/ftp/pub/${PN}/${P}.tar.gz" +SRC_URI="https://samba.org/ftp/pub/${PN}/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0/${PV}" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="doc +ldap +lmdb python test" +REQUIRED_USE="${PYTHON_REQUIRED_USE} + test? ( python )" + RESTRICT="!test? ( test )" RDEPEND=" !elibc_FreeBSD? ( dev-libs/libbsd[${MULTILIB_USEDEP}] ) dev-libs/popt[${MULTILIB_USEDEP}] >=dev-util/cmocka-1.1.3[${MULTILIB_USEDEP}] - >=sys-libs/talloc-2.3.1[python?,${MULTILIB_USEDEP}] - >=sys-libs/tdb-1.4.3[python?,${MULTILIB_USEDEP}] - >=sys-libs/tevent-0.10.2[python(+)?,${MULTILIB_USEDEP}] + >=sys-libs/talloc-2.3.1[${MULTILIB_USEDEP}] + >=sys-libs/tdb-1.4.3[${MULTILIB_USEDEP}] + >=sys-libs/tevent-0.10.2[${MULTILIB_USEDEP}] ldap? ( net-nds/openldap ) lmdb? ( >=dev-db/lmdb-0.9.16[${MULTILIB_USEDEP}] ) - python? ( ${PYTHON_DEPS} ) + python? ( + ${PYTHON_DEPS} + sys-libs/talloc[python,${PYTHON_SINGLE_USEDEP}] + sys-libs/tdb[python,${PYTHON_SINGLE_USEDEP}] + sys-libs/tevent[python,${PYTHON_SINGLE_USEDEP}] + ) " - -DEPEND="dev-libs/libxslt - doc? ( app-doc/doxygen ) +DEPEND="${RDEPEND}" +BDEPEND="${PYTHON_DEPS} + dev-libs/libxslt virtual/pkgconfig - ${PYTHON_DEPS} - ${RDEPEND} + doc? ( app-doc/doxygen ) " -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} - test? ( python )" - WAF_BINARY="${S}/buildtools/bin/waf" MULTILIB_WRAPPED_HEADERS=( /usr/include/pyldb.h ) @@ -100,7 +103,7 @@ multilib_src_install() { if multilib_is_native_abi && use doc; then doman apidocs/man/man3/*.3 docinto html - dodoc -r apidocs/html/* + dodoc -r apidocs/html/. fi use python && python_optimize #726454 diff --git a/sys-libs/libcap/Manifest b/sys-libs/libcap/Manifest index 7947640a9a33..d4c82b428884 100644 --- a/sys-libs/libcap/Manifest +++ b/sys-libs/libcap/Manifest @@ -1,3 +1,3 @@ DIST libcap-2.43.tar.xz 125284 BLAKE2B bde36f8397f4adb74760eb403daa06bee1b8f45ddc253cc3c3ef1f6e95d0e4c76d0f2e6fa3335a8bc451f18ac7128c96230f6aba9ae0320fa4f9d669e7b4f715 SHA512 817add571fb2c54ad2a39974e6545b8fc8d855ecdcf2e00b2cc10e583802c49dfea2d8bca484c89ecd574fdacfc46565b51e3064a4407cf1985defb913240d45 -DIST libcap-2.45.tar.xz 127608 BLAKE2B 61b422ad3a53b9f1e2e2fb253794ac5eef652e6592ffe5b0c4d7eb98c6683ebf08342bb2cbd1e4792cec206639c56bc3bafb983a990523ee3a1814686b57edf1 SHA512 32ddc303eeb1bf6a4b6cc81b0cb0c49544c58697735925b661a0cdfa18e4096fdbaed1a340c09b8060b09302dea332b216e9bdaf246e4c45f91211afc4752138 DIST libcap-2.46.tar.xz 129296 BLAKE2B 22df1dcf37a920e831c47edad62df2b3e35b5360605ed24bdb9199ac8ba1fd30cd20492f8a9eae25232cc042cbef9a89a3649e0d06412b84c58f12e7795844bc SHA512 6dcb249aac78efde959a986e7f06a364b2e6e57dd40b14e791d5a56012df485b2395dee0228f4cc3e1cddb2a4e3dcb9c1d83d5331ed084f23a46848494933845 +DIST libcap-2.47.tar.xz 131960 BLAKE2B 745bd3ba9819a1582880dff81d94ccf198fcf3f89d776ac0ce3055535e5370a0be57c5efdf7287f99ed50189af14ee46e90805d0a324f92d394211ffc6d7002d SHA512 cfa4aaa82b7dbb76e38cd207401603582343b14eb91d6df23e0ea6698d0ec0ab2b368fe0d08208a014a1b1a68d11316ecefa45c27983f9ad95e7b8184351fad8 diff --git a/sys-libs/libcap/libcap-2.45.ebuild b/sys-libs/libcap/libcap-2.47.ebuild similarity index 98% rename from sys-libs/libcap/libcap-2.45.ebuild rename to sys-libs/libcap/libcap-2.47.ebuild index f96270520eda..e74b1a5547fc 100644 --- a/sys-libs/libcap/libcap-2.45.ebuild +++ b/sys-libs/libcap/libcap-2.47.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 diff --git a/sys-libs/talloc/talloc-2.3.1.ebuild b/sys-libs/talloc/talloc-2.3.1.ebuild index b6befc83c907..849ee66f4691 100644 --- a/sys-libs/talloc/talloc-2.3.1.ebuild +++ b/sys-libs/talloc/talloc-2.3.1.ebuild @@ -1,11 +1,10 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python3_{6..9} ) PYTHON_REQ_USE="threads(+)" - inherit waf-utils python-single-r1 multilib multilib-minimal DESCRIPTION="Samba talloc library" @@ -18,8 +17,10 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 s IUSE="compat +python" REQUIRED_USE="${PYTHON_REQUIRED_USE}" +RESTRICT="test" -RDEPEND="!elibc_FreeBSD? ( +RDEPEND=" + !elibc_FreeBSD? ( !elibc_SunOS? ( !elibc_Darwin? ( dev-libs/libbsd[${MULTILIB_USEDEP}] @@ -27,16 +28,16 @@ RDEPEND="!elibc_FreeBSD? ( ) ) python? ( ${PYTHON_DEPS} ) - !! +Date: Sun, 5 Jan 2020 15:05:55 +1100 +Subject: [PATCH] pgrep: check sanity of SC_ARG_MAX + +A kernel change means we cannot trust what sysconf(SC_ARG_MAX) +returns. We clamp it so its more than 4096 and less than 128*1024 +which is what findutils does. + +References: + procps-ng/procps#152 + https://git.savannah.gnu.org/cgit/findutils.git/tree/lib/buildcmd.c#n535 + https://lwn.net/Articles/727862/ +--- + pgrep.c | 22 +++++++++++++++++++++- + 1 file changed, 21 insertions(+), 1 deletion(-) + +diff --git a/pgrep.c b/pgrep.c +index 01563db..bde7448 100644 +--- a/pgrep.c ++++ b/pgrep.c +@@ -485,6 +485,26 @@ static regex_t * do_regcomp (void) + return preg; + } + ++/* ++ * SC_ARG_MAX used to return the maximum size a command line can be ++ * however changes to the kernel mean this can be bigger than we can ++ * alloc. Clamp it to 128kB like xargs and friends do ++ * Should also not be smaller than POSIX_ARG_MAX which is 4096 ++ */ ++static size_t get_arg_max(void) ++{ ++#define MIN_ARG_SIZE 4096u ++#define MAX_ARG_SIZE (128u * 1024u) ++ ++ size_t val = sysconf(_SC_ARG_MAX); ++ ++ if (val < MIN_ARG_SIZE) ++ val = MIN_ARG_SIZE; ++ if (val > MAX_ARG_SIZE) ++ val = MAX_ARG_SIZE; ++ ++ return val; ++} + static struct el * select_procs (int *num) + { + PROCTAB *ptp; +@@ -497,7 +517,7 @@ static struct el * select_procs (int *num) + regex_t *preg; + pid_t myself = getpid(); + struct el *list = NULL; +- long cmdlen = sysconf(_SC_ARG_MAX) * sizeof(char); ++ long cmdlen = get_arg_max() * sizeof(char); + char *cmdline = xmalloc(cmdlen); + char *cmdsearch = xmalloc(cmdlen); + char *cmdoutput = xmalloc(cmdlen); +-- +GitLab + diff --git a/sys-process/procps/procps-3.3.15-r1.ebuild b/sys-process/procps/procps-3.3.16-r3.ebuild similarity index 53% rename from sys-process/procps/procps-3.3.15-r1.ebuild rename to sys-process/procps/procps-3.3.16-r3.ebuild index 9c45dfc2ce86..5e67f3649e5c 100644 --- a/sys-process/procps/procps-3.3.15-r1.ebuild +++ b/sys-process/procps/procps-3.3.16-r3.ebuild @@ -1,25 +1,25 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit toolchain-funcs flag-o-matic usr-ldscript +inherit toolchain-funcs flag-o-matic multilib-minimal usr-ldscript DESCRIPTION="standard informational utilities and process-handling tools" HOMEPAGE="http://procps-ng.sourceforge.net/ https://gitlab.com/procps-ng/procps" SRC_URI="mirror://sourceforge/${PN}-ng/${PN}-ng-${PV}.tar.xz" LICENSE="GPL-2" -SLOT="0/6" # libprocps.so -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux" +SLOT="0/8" # libprocps.so +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="elogind +kill modern-top +ncurses nls selinux static-libs systemd test unicode" RESTRICT="!test? ( test )" COMMON_DEPEND=" elogind? ( sys-auth/elogind ) ncurses? ( >=sys-libs/ncurses-5.7-r7:=[unicode?] ) - selinux? ( sys-libs/libselinux ) - systemd? ( sys-apps/systemd ) + selinux? ( sys-libs/libselinux[${MULTILIB_USEDEP}] ) + systemd? ( sys-apps/systemd[${MULTILIB_USEDEP}] ) " DEPEND="${COMMON_DEPEND} elogind? ( virtual/pkgconfig ) @@ -32,7 +32,8 @@ RDEPEND=" !sys-apps/coreutils[kill] !sys-apps/util-linux[kill] ) - ! - + + codec@gentoo.org + Gentoo Codec Project + diff --git a/virtual/perl-Data-Dumper/perl-Data-Dumper-2.174.0-r1.ebuild b/virtual/perl-Data-Dumper/perl-Data-Dumper-2.174.0-r2.ebuild similarity index 83% rename from virtual/perl-Data-Dumper/perl-Data-Dumper-2.174.0-r1.ebuild rename to virtual/perl-Data-Dumper/perl-Data-Dumper-2.174.0-r2.ebuild index ec20f56d2069..cb099b7c0c79 100644 --- a/virtual/perl-Data-Dumper/perl-Data-Dumper-2.174.0-r1.ebuild +++ b/virtual/perl-Data-Dumper/perl-Data-Dumper-2.174.0-r2.ebuild @@ -1,14 +1,14 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DESCRIPTION="Virtual for ${PN#perl-}" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND=" - || ( =dev-lang/perl-5.32* =dev-lang/perl-5.30* ~perl-core/${PN#perl-}-${PV} ) + || ( =dev-lang/perl-5.32.0* =dev-lang/perl-5.30* ~perl-core/${PN#perl-}-${PV} ) dev-lang/perl:= !perl-core/${PN#perl-}-${PV}-r999 diff --git a/virtual/perl-Data-Dumper/perl-Data-Dumper-2.174.10_rc.ebuild b/virtual/perl-Data-Dumper/perl-Data-Dumper-2.174.10_rc.ebuild new file mode 100644 index 000000000000..d9abdd553f97 --- /dev/null +++ b/virtual/perl-Data-Dumper/perl-Data-Dumper-2.174.10_rc.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual for ${PN#perl-}" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +RDEPEND=" + || ( =dev-lang/perl-5.32.1* ~perl-core/${PN#perl-}-${PV} ) + dev-lang/perl:= + !perl-core/${PN#perl-}-${PV}-r999 +" diff --git a/virtual/perl-Module-CoreList/perl-Module-CoreList-5.202.101.230.ebuild b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.202.101.230.ebuild new file mode 100644 index 000000000000..26362095aa16 --- /dev/null +++ b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.202.101.230.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Virtual for ${PN#perl-}" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +# Check https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/virtual/perl-Module-CoreList +# When bumping this package. +RDEPEND=" + || ( =dev-lang/perl-5.32.1* ~perl-core/${PN#perl-}-${PV} ) + dev-lang/perl:= + !perl-core/${PN#perl-}-${PV}-r999 +" diff --git a/virtual/perl-Safe/perl-Safe-2.410.0.ebuild b/virtual/perl-Safe/perl-Safe-2.410.0-r1.ebuild similarity index 88% rename from virtual/perl-Safe/perl-Safe-2.410.0.ebuild rename to virtual/perl-Safe/perl-Safe-2.410.0-r1.ebuild index b2ef089ea50e..1bce4a7f67e9 100644 --- a/virtual/perl-Safe/perl-Safe-2.410.0.ebuild +++ b/virtual/perl-Safe/perl-Safe-2.410.0-r1.ebuild @@ -8,7 +8,7 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND=" - || ( =dev-lang/perl-5.32* ~perl-core/${PN#perl-}-${PV} ) + || ( =dev-lang/perl-5.32.0* ~perl-core/${PN#perl-}-${PV} ) dev-lang/perl:= !perl-core/${PN#perl-}-${PV}-r999 diff --git a/virtual/perl-Safe/perl-Safe-2.410.100_rc.ebuild b/virtual/perl-Safe/perl-Safe-2.410.100_rc.ebuild new file mode 100644 index 000000000000..846306fadeab --- /dev/null +++ b/virtual/perl-Safe/perl-Safe-2.410.100_rc.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual for ${PN#perl-}" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +RDEPEND=" + || ( =dev-lang/perl-5.32.1* ~perl-core/${PN#perl-}-${PV} ) + dev-lang/perl:= + !perl-core/${PN#perl-}-${PV}-r999 +" diff --git a/www-apache/Manifest.gz b/www-apache/Manifest.gz index f5c8a8f040b2..6e78d833a82c 100644 Binary files a/www-apache/Manifest.gz and b/www-apache/Manifest.gz differ diff --git a/www-apache/mod_security/mod_security-2.9.3.ebuild b/www-apache/mod_security/mod_security-2.9.3.ebuild deleted file mode 100644 index c7a7974d2d08..000000000000 --- a/www-apache/mod_security/mod_security-2.9.3.ebuild +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit apache-module - -MY_PN=modsecurity -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Application firewall and intrusion detection for Apache" -HOMEPAGE="https://www.modsecurity.org/" -SRC_URI="https://www.modsecurity.org/tarball/${PV}/${MY_P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc fuzzyhash geoip jit json lua mlogc" - -COMMON_DEPEND="dev-libs/apr - dev-libs/apr-util[openssl] - dev-libs/libxml2 - dev-libs/libpcre[jit?] - fuzzyhash? ( app-crypt/ssdeep ) - json? ( dev-libs/yajl ) - lua? ( dev-lang/lua:0 ) - mlogc? ( net-misc/curl ) - www-servers/apache[apache2_modules_unique_id]" -DEPEND="${COMMON_DEPEND} - doc? ( app-doc/doxygen )" -RDEPEND="${COMMON_DEPEND} - geoip? ( dev-libs/geoip ) - mlogc? ( dev-lang/perl )" -PDEPEND=">=www-apache/modsecurity-crs-2.2.6-r1" - -S="${WORKDIR}/${MY_P}" - -APACHE2_MOD_FILE="apache2/.libs/${PN}2.so" -APACHE2_MOD_CONF="79_${PN}" -APACHE2_MOD_DEFINE="SECURITY" - -# Tests require symbols only defined within the Apache binary. -RESTRICT=test - -need_apache2 - -pkg_setup() { - _init_apache2 - _init_apache2_late -} - -src_configure() { - local myconf=( - --disable-static - --enable-request-early - --with-apxs="${APXS}" - --with-pic - $(use_with fuzzyhash ssdeep) - $(use_with json yajl) - $(use_enable mlogc) - $(use_with lua) - $(use_enable lua lua-cache) - $(use_enable jit pcre-jit) - $(use_enable doc docs) ) - - econf ${myconf[@]} -} - -src_compile() { - default -} - -src_install() { - apache-module_src_install - - dodoc CHANGES README.md modsecurity.conf-recommended - - if use doc; then - dodoc -r doc/apache/html - fi - - if use mlogc; then - insinto /etc/ - newins mlogc/mlogc-default.conf mlogc.conf - dobin mlogc/mlogc - dobin mlogc/mlogc-batch-load.pl - newdoc mlogc/INSTALL INSTALL-mlogc - fi - - # Use /var/lib instead of /var/cache. This stuff is "persistent," - # and isn't a cached copy of something that we can recreate. - # Bug 605496. - keepdir /var/lib/modsecurity - fowners apache:apache /var/lib/modsecurity - fperms 0750 /var/lib/modsecurity - for dir in data tmp upload; do - keepdir "/var/lib/modsecurity/${dir}" - fowners apache:apache "/var/lib/modsecurity/${dir}" - fperms 0750 "/var/lib/modsecurity/${dir}" - done -} - -pkg_postinst() { - elog "The base configuration file has been renamed ${APACHE2_MOD_CONF}" - elog "so that you can put your own configuration in (for example)" - elog "90_modsecurity_local.conf." - elog "" - elog "That would be the correct place for site-global security rules." - elog "Note: 80_modsecurity_crs.conf is used by www-apache/modsecurity-crs" -} diff --git a/www-apps/Manifest.gz b/www-apps/Manifest.gz index 545875d9916f..36350ca0ed1a 100644 Binary files a/www-apps/Manifest.gz and b/www-apps/Manifest.gz differ diff --git a/www-apps/cgit/Manifest b/www-apps/cgit/Manifest index b57cd8a0d6bd..bb3450fe0966 100644 --- a/www-apps/cgit/Manifest +++ b/www-apps/cgit/Manifest @@ -1,4 +1,2 @@ -DIST cgit-1.2.1.tar.xz 89648 BLAKE2B c1dc2fe9af58cc00bef9e11c5f784c5696d108671456be61c46e971659df3274874e751b26d6e124c2b3e7b407bbad2878ec5d74f26a0469146bfc66a479501c SHA512 c7380df9afbc3735ef9e4f196f4f5bbd26cf52e473fa6f435e7d0c00dc295cc8de6bee6bfb1857144025c8591d41a6a74efb1af551e8610848d90ac40fcfab36 DIST cgit-1.2.3.tar.xz 90632 BLAKE2B 594a9b2ae0b449e0ef090f428f955cc02833f5f5b1e4d6dc8c737daa565d01ba6840933c0bdc53d4eb683b2f44e2fae885ddd020cfb2de38141a870a6eae2380 SHA512 58f9bb644b07be49dc51f3ef30a3d0e53699cede3c06b1d6920f3874fe846c83dd2589632aa84357b70ea2d60272448409aa1b892f405d14dd6745f5559b4504 -DIST git-2.18.0.tar.xz 5102264 BLAKE2B 94a8469a0e489d517136233301f1af622a3e612967316620800a771721f4e558dfb9159f158ddd07d294fce3ceb256038483f5a8c1fe6a84f661710857945dce SHA512 db19363c9c2042248322d49874a27c0614acfb912183725e5d4f0331d6b44cef66a9a7da6a49bd4a17e5d86d30c5fed6bef7527f386494184595a433c4060e46 DIST git-2.25.1.tar.xz 5875548 BLAKE2B 582da3d4ac996d7b9ce6cf505661496ab1a2cd061f058745350498121956b33d79739b567fb5fea0b4e298303261256034aa0b8da0b842feab04ae67a7d5b142 SHA512 15241143acfd8542d85d2709ac3c80dbd6e8d5234438f70c4f33cc71a2bdec3e32938df7f6351e2746d570b021d3bd0b70474ea4beec0c51d1fc45f9c287b344 diff --git a/www-apps/cgit/cgit-1.2.1.ebuild b/www-apps/cgit/cgit-1.2.1.ebuild deleted file mode 100644 index 04dc11ed32ec..000000000000 --- a/www-apps/cgit/cgit-1.2.1.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -WEBAPP_MANUAL_SLOT="yes" - -inherit webapp eutils multilib user toolchain-funcs - -[[ -z "${CGIT_CACHEDIR}" ]] && CGIT_CACHEDIR="/var/cache/${PN}/" - -GIT_V="2.18.0" - -DESCRIPTION="a fast web-interface for git repositories" -HOMEPAGE="https://git.zx2c4.com/cgit/about" -SRC_URI="https://www.kernel.org/pub/software/scm/git/git-${GIT_V}.tar.xz - https://git.zx2c4.com/cgit/snapshot/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm x86" -IUSE="doc +highlight libressl +lua +jit" - -RDEPEND=" - dev-vcs/git - sys-libs/zlib - virtual/httpd-cgi - highlight? ( || ( dev-python/pygments app-text/highlight ) ) - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - lua? ( jit? ( dev-lang/luajit ) !jit? ( dev-lang/lua:0 ) ) -" -# ebuilds without WEBAPP_MANUAL_SLOT="yes" are broken -DEPEND="${RDEPEND} - !=app-text/asciidoc-8.5.1 ) -" - -pkg_setup() { - webapp_pkg_setup - enewgroup ${PN} - enewuser ${PN} -1 -1 -1 ${PN} -} - -src_prepare() { - rmdir git || die - mv "${WORKDIR}"/git-"${GIT_V}" git || die - - echo "prefix = ${EPREFIX}/usr" >> cgit.conf - echo "libdir = ${EPREFIX}/usr/$(get_libdir)" >> cgit.conf - echo "CGIT_SCRIPT_PATH = ${MY_CGIBINDIR}" >> cgit.conf - echo "CGIT_DATA_PATH = ${MY_HTDOCSDIR}" >> cgit.conf - echo "CACHE_ROOT = ${CGIT_CACHEDIR}" >> cgit.conf - echo "DESTDIR = ${D}" >> cgit.conf - if use lua; then - if use jit; then - echo "LUA_PKGCONFIG = luajit" >> cgit.conf - else - echo "LUA_PKGCONFIG = lua" >> cgit.conf - fi - else - echo "NO_LUA = 1" >> cgit.conf - fi -} - -src_compile() { - emake V=1 AR="$(tc-getAR)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" - use doc && emake V=1 doc-man -} - -src_install() { - webapp_src_preinst - - emake V=1 AR="$(tc-getAR)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" install - - insinto /etc - doins "${FILESDIR}"/cgitrc - - dodoc README - use doc && doman cgitrc.5 - - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - webapp_src_install - - keepdir "${CGIT_CACHEDIR}" - fowners ${PN}:${PN} "${CGIT_CACHEDIR}" - fperms 700 "${CGIT_CACHEDIR}" -} - -pkg_postinst() { - webapp_pkg_postinst - ewarn "If you intend to run cgit using web server's user" - ewarn "you should change ${CGIT_CACHEDIR} permissions." -} diff --git a/www-apps/cgit/cgit-1.2.3-r1.ebuild b/www-apps/cgit/cgit-1.2.3-r1.ebuild deleted file mode 100644 index 707d23f3bcc5..000000000000 --- a/www-apps/cgit/cgit-1.2.3-r1.ebuild +++ /dev/null @@ -1,104 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WEBAPP_MANUAL_SLOT="yes" - -inherit toolchain-funcs webapp - -[[ -z "${CGIT_CACHEDIR}" ]] && CGIT_CACHEDIR="/var/cache/${PN}/" - -GIT_V="2.25.1" - -DESCRIPTION="a fast web-interface for git repositories" -HOMEPAGE="https://git.zx2c4.com/cgit/about" -SRC_URI="https://www.kernel.org/pub/software/scm/git/git-${GIT_V}.tar.xz - https://git.zx2c4.com/cgit/snapshot/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="doc +highlight libressl +lua +luajit test" -RESTRICT="!test? ( test )" - -RDEPEND=" - acct-group/cgit - acct-user/cgit - dev-vcs/git - highlight? ( || ( dev-python/pygments app-text/highlight ) ) - lua? ( - luajit? ( dev-lang/luajit ) - !luajit? ( dev-lang/lua:0 ) - ) - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - sys-libs/zlib - virtual/httpd-cgi -" -# ebuilds without WEBAPP_MANUAL_SLOT="yes" are broken -DEPEND="${RDEPEND} - doc? ( app-text/docbook-xsl-stylesheets - >=app-text/asciidoc-8.5.1 ) -" - -pkg_setup() { - webapp_pkg_setup -} - -src_prepare() { - rmdir git || die - mv "${WORKDIR}"/git-"${GIT_V}" git || die - - echo "prefix = ${EPREFIX}/usr" >> cgit.conf - echo "libdir = ${EPREFIX}/usr/$(get_libdir)" >> cgit.conf - echo "CGIT_SCRIPT_PATH = ${MY_CGIBINDIR}" >> cgit.conf - echo "CGIT_DATA_PATH = ${MY_HTDOCSDIR}" >> cgit.conf - echo "CACHE_ROOT = ${CGIT_CACHEDIR}" >> cgit.conf - echo "DESTDIR = ${D}" >> cgit.conf - if use lua; then - if use luajit; then - echo "LUA_PKGCONFIG = luajit" >> cgit.conf - else - echo "LUA_PKGCONFIG = lua" >> cgit.conf - fi - else - echo "NO_LUA = 1" >> cgit.conf - fi - - eapply_user -} - -src_compile() { - emake V=1 AR="$(tc-getAR)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" - use doc && emake V=1 doc-man -} - -src_install() { - webapp_src_preinst - - emake V=1 AR="$(tc-getAR)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" install - - insinto /etc - doins "${FILESDIR}"/cgitrc - - dodoc README - use doc && doman cgitrc.5 - - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - webapp_src_install - - keepdir "${CGIT_CACHEDIR}" - fowners ${PN}:${PN} "${CGIT_CACHEDIR}" - fperms 700 "${CGIT_CACHEDIR}" -} - -src_test() { - emake V=1 AR="$(tc-getAR)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" test -} - -pkg_postinst() { - webapp_pkg_postinst - ewarn "If you intend to run cgit using web server's user" - ewarn "you should change ${CGIT_CACHEDIR} permissions." -} diff --git a/www-apps/cgit/cgit-1.2.3.ebuild b/www-apps/cgit/cgit-1.2.3.ebuild deleted file mode 100644 index e01974c18b1e..000000000000 --- a/www-apps/cgit/cgit-1.2.3.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -WEBAPP_MANUAL_SLOT="yes" - -inherit webapp eutils multilib user toolchain-funcs - -[[ -z "${CGIT_CACHEDIR}" ]] && CGIT_CACHEDIR="/var/cache/${PN}/" - -GIT_V="2.25.1" - -DESCRIPTION="a fast web-interface for git repositories" -HOMEPAGE="https://git.zx2c4.com/cgit/about" -SRC_URI="https://www.kernel.org/pub/software/scm/git/git-${GIT_V}.tar.xz - https://git.zx2c4.com/cgit/snapshot/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="doc +highlight libressl +lua +luajit" - -RDEPEND=" - dev-vcs/git - sys-libs/zlib - virtual/httpd-cgi - highlight? ( || ( dev-python/pygments app-text/highlight ) ) - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - lua? ( - luajit? ( dev-lang/luajit ) - !luajit? ( dev-lang/lua:0 ) - ) -" -# ebuilds without WEBAPP_MANUAL_SLOT="yes" are broken -DEPEND="${RDEPEND} - doc? ( app-text/docbook-xsl-stylesheets - >=app-text/asciidoc-8.5.1 ) -" - -pkg_setup() { - webapp_pkg_setup - enewgroup ${PN} - enewuser ${PN} -1 -1 -1 ${PN} -} - -src_prepare() { - rmdir git || die - mv "${WORKDIR}"/git-"${GIT_V}" git || die - - echo "prefix = ${EPREFIX}/usr" >> cgit.conf - echo "libdir = ${EPREFIX}/usr/$(get_libdir)" >> cgit.conf - echo "CGIT_SCRIPT_PATH = ${MY_CGIBINDIR}" >> cgit.conf - echo "CGIT_DATA_PATH = ${MY_HTDOCSDIR}" >> cgit.conf - echo "CACHE_ROOT = ${CGIT_CACHEDIR}" >> cgit.conf - echo "DESTDIR = ${D}" >> cgit.conf - if use lua; then - if use luajit; then - echo "LUA_PKGCONFIG = luajit" >> cgit.conf - else - echo "LUA_PKGCONFIG = lua" >> cgit.conf - fi - else - echo "NO_LUA = 1" >> cgit.conf - fi - - epatch_user -} - -src_compile() { - emake V=1 AR="$(tc-getAR)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" - use doc && emake V=1 doc-man -} - -src_install() { - webapp_src_preinst - - emake V=1 AR="$(tc-getAR)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" install - - insinto /etc - doins "${FILESDIR}"/cgitrc - - dodoc README - use doc && doman cgitrc.5 - - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - webapp_src_install - - keepdir "${CGIT_CACHEDIR}" - fowners ${PN}:${PN} "${CGIT_CACHEDIR}" - fperms 700 "${CGIT_CACHEDIR}" -} - -pkg_postinst() { - webapp_pkg_postinst - ewarn "If you intend to run cgit using web server's user" - ewarn "you should change ${CGIT_CACHEDIR} permissions." -} diff --git a/www-apps/jekyll/Manifest b/www-apps/jekyll/Manifest index 5b9729c8243d..024159d8adca 100644 --- a/www-apps/jekyll/Manifest +++ b/www-apps/jekyll/Manifest @@ -1 +1,2 @@ DIST jekyll-4.1.1.tar.gz 1398438 BLAKE2B ac207d58b155e069fda40b4598d441d8fb88f22e85740082829d018dc9cefe51ca636b23a6207c37711c4d26e078f6e4913946599f0200b8e8cb065a9ceff952 SHA512 98c635b54219c9666de6496e76f3a131fc715d650d868049c0fe10d76851a027e0808609c2dce1a138c95eb2fb7e58ef978237a305484071339b4a15d5acc4d5 +DIST jekyll-4.2.0.tar.gz 1412419 BLAKE2B 351852b52abc227f8e1eedeeef0871a593d66ffc95f4ed644441f81e841582ab9f393b206f049107daa7e9deaa63d36359ff8d0b47c69b629dda2ea462cd0481 SHA512 aee4d832631a285c3d37576b5f3d80073b56afefcb8c8a19a74435ce431b606b5cedc28a02c8e3930f9bc35ab432c952f96e1878b3bee6b9d33fbd01f0a147ec diff --git a/www-apps/jekyll/files/jekyll-missingdep.patch b/www-apps/jekyll/files/jekyll-missingdep.patch new file mode 100644 index 000000000000..fcaf8f10e86f --- /dev/null +++ b/www-apps/jekyll/files/jekyll-missingdep.patch @@ -0,0 +1,14 @@ +--- a/jekyll.gemspec 2021-01-26 04:08:18.198289608 +0200 ++++ b/jekyll.gemspec 2021-01-26 04:09:08.545548043 +0200 +@@ -41,9 +41,11 @@ + s.add_runtime_dependency("kramdown", "~> 2.3") + s.add_runtime_dependency("kramdown-parser-gfm", "~> 1.0") + s.add_runtime_dependency("liquid", "~> 4.0") ++ s.add_runtime_dependency("listen", "~> 3.4") + s.add_runtime_dependency("mercenary", "~> 0.4.0") + s.add_runtime_dependency("pathutil", "~> 0.9") + s.add_runtime_dependency("rouge", "~> 3.0") + s.add_runtime_dependency("safe_yaml", "~> 1.0") + s.add_runtime_dependency("terminal-table", "~> 2.0") ++ + end diff --git a/www-apps/jekyll/jekyll-4.2.0.ebuild b/www-apps/jekyll/jekyll-4.2.0.ebuild new file mode 100644 index 000000000000..8affdcb77943 --- /dev/null +++ b/www-apps/jekyll/jekyll-4.2.0.ebuild @@ -0,0 +1,95 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby25 ruby26" + +inherit ruby-fakegem + +RUBY_FAKEGEM_EXTRADOC="README.markdown History.markdown" +RUBY_FAKEGEM_EXTRAINSTALL="features" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +RUBY_FAKEGEM_BINDIR="exe" + +DESCRIPTION="A simple, blog aware, static site generator" +HOMEPAGE="https://jekyllrb.com https://github.com/jekyll/jekyll" +SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64" +IUSE="test" + +ruby_add_rdepend " + >=dev-ruby/addressable-2.4 + >=dev-ruby/colorator-1.0 + >=dev-ruby/em-websocket-0.5 + dev-ruby/i18n:1 + >=dev-ruby/kramdown-2.1:2 + dev-ruby/kramdown-parser-gfm:1 + dev-ruby/liquid:4 + >=dev-ruby/mercenary-0.4.0 + >=dev-ruby/pathutil-0.9 + =dev-ruby/rouge-3* + >=dev-ruby/safe_yaml-1.0 + >=dev-ruby/terminal-table-1.8:0 + >=www-apps/jekyll-sass-converter-2.0 + >=www-apps/jekyll-watch-2.0 +" + +ruby_add_bdepend " + test? ( + >=dev-ruby/classifier-reborn-2.1.0 + dev-ruby/httpclient + dev-ruby/kramdown-syntax-coderay + dev-ruby/launchy + dev-ruby/nokogiri + >=dev-ruby/rdiscount-2.0 + >=dev-ruby/redcarpet-3.2.3 + dev-ruby/rspec-mocks + >=dev-ruby/shoulda-3 + dev-ruby/test-unit:2 + www-apps/jekyll-coffeescript + ) +" + +all_ruby_prepare() { + # reported upstream https://github.com/jekyll/jekyll/issues/8556 + eapply "${FILESDIR}"/jekyll-missingdep.patch + eapply "${FILESDIR}"/jekyll-3.6.0-test-helper.patch + + # Drop tests requiring bundler + sed -i -e '/bundle_message/d' test/test_new_command.rb || die + rm test/test_plugin_manager.rb || die + + # Replace git command in gemspec + sed -e 's/git ls-files/find -not -type d -print/' \ + -e 's:_relative ": "./:' \ + -i $RUBY_FAKEGEM_GEMSPEC || die + + # FIXMEs: + # fails to find fixtures because this requires bundler + rm test/test_theme.rb || die + rm test/test_theme_assets_reader.rb || die + sed -i -e '/^ should.*theme/,/^ end$/d' \ + -e '/^ should.*theme/,/^ end$/d' test/test_site.rb || die + sed -i -e '/context "with a theme"/,/^ end/ s:^:#:' test/test_layout_reader.rb || die + sed -i -e '/normalize paths of rendered items/askip "test-theme"' test/test_liquid_renderer.rb || die + # partially requires 'toml' + rm test/test_configuration.rb || die + # pygments tests fail because of line numbering + sed -i -e '/^ context.*pygments/,/^ end$/d' test/test_tags.rb || die + #sed -i -e '/^ context.*pygments/,/^ end$/d' test/test_redcarpet.rb || die + + # Tries to use bundler and install packages. + rm -f test/test_new_command.rb || die +} + +src_test() { + local -x JEKYLL_NO_BUNDLER_REQUIRE=true + + ruby-ng_src_test +} diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest index f23234535494..28e16377d749 100644 --- a/www-apps/moodle/Manifest +++ b/www-apps/moodle/Manifest @@ -1,5 +1,4 @@ -DIST moodle-3.10.tgz 57423153 BLAKE2B fe59ef50e28a0170ff7a158d0ab52d93e30e4739a6af61cc2c3f6c93e763c459ebef8e6bda138af2ac2c6000d7ed6ea718821c01d2417b7c55d9c1faaeff2afa SHA512 f0a55c5ed3636943a5193cadc3755cfd509619b1f85c003dffa6387c131f0579c02b40e825932b313d649d5e1e557f8e63569b5b51dada59f8aed5eac0474500 -DIST moodle-3.5.15.tgz 46781368 BLAKE2B 5d47fc9526122314a490ef9728e8b1c8fddc233539de406d8077d59e7c14c6920d887fc074c94f9f5ffe6d66df68a325d03ab652cf1b39dc4870e64a7a638de1 SHA512 283f2f059181c3ba79799cb0b474bf9c5b876c528f1779b72b86a4b4087bfa73afc875dca5f454d527d5b3f0bfb3cc59531b59830f60e426bd9ef7bc65302698 -DIST moodle-3.7.9.tgz 45879636 BLAKE2B d07f080ed7333c575a04c813c0ffe4fce26ded2f1df267fdf5a1c5b9b787859d9d0c8d688dc435dd51f9850335528edb15a07b5a37200acca097f15c522e94df SHA512 22452ea2b497aeedba6be739f573c8ca1d4dec3aca401f1ce6aac3fa96411f94fc72aeef895a5c35b97112fb6dd1d836b421fa26740a3dcb6936ae88d4267b9f -DIST moodle-3.8.6.tgz 53308269 BLAKE2B 20e722bbcd1f4575fa4450b6d7cefd1d882322776975f47940f49300f6c6a4bb9b80dae9e936207c5168a8847ae5d77e535d722aed07b68c1c29bad472cc6b74 SHA512 c3e63d6872fc476391747af03f25f0153a51dcc8a8a81d0330bd368d8bef9703dac700bf975a1891e701faed28227dd4d26a5d61255ca4b5bb349f91db66f20e -DIST moodle-3.9.3.tgz 57048773 BLAKE2B 21721718ae19c42c61ad4f0d971887e4bf545b88126ab12570d3a9b54e33821b0a99708adcbed78d49ed324d8525a2410db8988b614f76513b61067cb9e4ecc2 SHA512 830e81f28e54c8ebbb4528fe113c1b1b345bb47c80abc725b6afd8111d92315d5af4c82e4241d235bdd22a1b9324b1e63cc3a66bdfa352a768c4604adbec4bdc +DIST moodle-3.10.1.tgz 57464025 BLAKE2B 55a7f1ba24fa516cdb5f67a936797a5e9450ddd279bd3ea67a3fe4b321019dddae57f928a816374282dd9c08e78281b4835879a1ff5843e1997f61cede1ed05f SHA512 3460857b5e0d524849d30d3d883fc35624cb2afe52184e85cb63477b7b17b8737338b91f6f8b5cd263fa1a3666288c85f8f3b10fcab3669cb5b1e68f6d8e5399 +DIST moodle-3.5.16.tgz 46790181 BLAKE2B 921026617cc435f481ef5533908ca2a809fc63c57365d3cc114acb51ea246ea035d37c63fc64b8cfc25b29250ac2a3e92cbb5c838dce53b6e62971901c73de19 SHA512 ae9b2689a232c48a6d682627271e83460d6d95154f58dd8d1e27a58faec49c1089680378d943b1b45c3ebfa8e1f6cd1b879108b0c79bd9f49aab44e9520690c6 +DIST moodle-3.8.7.tgz 53309020 BLAKE2B 6be85529dd7cd69631b1f2de0873ffb00bb1d50b8165d2198b3ee08a2ffbd34b4e9f3f2b97e956166ffc3617e7c234051c8f43e81838b1470caa7f6b9b2b91c6 SHA512 28cd050bcec988cf235776be8058f1f153a76e7720dd47db16f6c243dc4b542eac230a73e5fa86ca62dea056e9e6a1af71e4b485a7ccc6198b19670900871527 +DIST moodle-3.9.4.tgz 57068491 BLAKE2B 9a7f3c1d5eae206b063e1dc5d471a34f378f8dd5b3f227cd87b2fc2a9c6b7429fab5d803a09a1fe312cbd936b37696aaf4b92ce8cd06b675ad7c891ff03fd518 SHA512 1a5069005aed3f0e1b5620d6c091cb8e9ad9003f95ae9d66055eb52e892feaf54b150942baecdc27a8d2884a349e3b882e16b187a2188e03aca0146abbc75a7a diff --git a/www-apps/moodle/moodle-3.9.3.ebuild b/www-apps/moodle/moodle-3.10.1.ebuild similarity index 98% rename from www-apps/moodle/moodle-3.9.3.ebuild rename to www-apps/moodle/moodle-3.10.1.ebuild index 1012b291cbc9..35d47aa5db46 100644 --- a/www-apps/moodle/moodle-3.9.3.ebuild +++ b/www-apps/moodle/moodle-3.10.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" diff --git a/www-apps/moodle/moodle-3.5.15.ebuild b/www-apps/moodle/moodle-3.5.16.ebuild similarity index 98% rename from www-apps/moodle/moodle-3.5.15.ebuild rename to www-apps/moodle/moodle-3.5.16.ebuild index 8b94917f96cc..5b538bc3be85 100644 --- a/www-apps/moodle/moodle-3.5.15.ebuild +++ b/www-apps/moodle/moodle-3.5.16.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" diff --git a/www-apps/moodle/moodle-3.8.6.ebuild b/www-apps/moodle/moodle-3.8.6.ebuild deleted file mode 100644 index 53ac6f44ea4e..000000000000 --- a/www-apps/moodle/moodle-3.8.6.ebuild +++ /dev/null @@ -1,120 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit webapp - -MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)" - -DESCRIPTION="The Moodle Course Management System" -HOMEPAGE="https://moodle.org" -SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz" -S="${WORKDIR}/${PN}" - -LICENSE="GPL-3+" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" -#SLOT empty due to webapp - -DB_FLAGS="mysqli?,mssql?,postgres?" -DB_TYPES=${DB_FLAGS//\?/} -DB_TYPES=${DB_TYPES//,/ } - -AUTHENTICATION_FLAGS="imap?,ldap?,odbc?" -AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/} -AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ } - -PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip" -PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc" -PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}" - -IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts" - -# No forced dependency on -# mssql? - lives on a windows server -# mysql? ( virtual/mysql ) -# postgres? ( dev-db/postgresql-server-9* ) -# which may live on another server. These USE flags affect the configuration -# file and the dependency on php. However other dbs are possible. See config.php -# and the moodle documentation for other possibilities. -DEPEND="" -RDEPEND=" - >=dev-lang/php-7.1[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}] - virtual/httpd-php - virtual/cron" - -pkg_setup() { - webapp_pkg_setup - - # How many dbs were selected? If one and only one, which one is it? - MYDB="" - DB_COUNT=0 - for db in ${DB_TYPES}; do - if use ${db}; then - MYDB=${db} - DB_COUNT=$(($DB_COUNT+1)) - fi - done - - if [[ ${DB_COUNT} -eq 0 ]]; then - eerror - eerror "No database selected in your USE flags," - eerror "You must select at least one." - eerror - die - fi - - if [[ ${DB_COUNT} -gt 1 ]]; then - MYDB="" - ewarn - ewarn "Multiple databases selected in your USE flags," - ewarn "You will have to choose your database manually." - ewarn - fi -} - -src_prepare() { - rm COPYING.txt - cp "${FILESDIR}"/config-r1.php config.php - - # Moodle expect pgsql, not postgres - MYDB=${MYDB/postgres/pgsql} - - if [[ ${DB_COUNT} -eq 1 ]] ; then - sed -i -e "s|mydb|${MYDB}|" config.php - fi - - eapply_user -} - -src_install() { - webapp_src_preinst - - local MOODLEDATA="${MY_HOSTROOTDIR}"/moodle - dodir ${MOODLEDATA} - webapp_serverowned -R "${MOODLEDATA}" - - local MOODLEROOT="${MY_HTDOCSDIR}" - insinto ${MOODLEROOT} - doins -r * - - webapp_configfile "${MOODLEROOT}"/config.php - - if [[ ${DB_COUNT} -eq 1 ]]; then - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - else - webapp_postinst_txt en "${FILESDIR}"/postinstall-nodb-en.txt - fi - - webapp_src_install -} - -pkg_postinst() { - einfo - einfo - einfo "To see the post install instructions, do" - einfo - einfo " webapp-config --show-postinst ${PN} ${PVR}" - einfo - einfo -} diff --git a/www-apps/moodle/moodle-3.7.9.ebuild b/www-apps/moodle/moodle-3.8.7.ebuild similarity index 98% rename from www-apps/moodle/moodle-3.7.9.ebuild rename to www-apps/moodle/moodle-3.8.7.ebuild index 53ac6f44ea4e..407eecf4f7f0 100644 --- a/www-apps/moodle/moodle-3.7.9.ebuild +++ b/www-apps/moodle/moodle-3.8.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" diff --git a/www-apps/moodle/moodle-3.10.ebuild b/www-apps/moodle/moodle-3.9.4.ebuild similarity index 98% rename from www-apps/moodle/moodle-3.10.ebuild rename to www-apps/moodle/moodle-3.9.4.ebuild index 1012b291cbc9..35d47aa5db46 100644 --- a/www-apps/moodle/moodle-3.10.ebuild +++ b/www-apps/moodle/moodle-3.9.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" diff --git a/www-apps/nextcloud/files/php-argon2-en.txt b/www-apps/nextcloud/files/php-argon2-en.txt new file mode 100644 index 000000000000..44d6487890da --- /dev/null +++ b/www-apps/nextcloud/files/php-argon2-en.txt @@ -0,0 +1,11 @@ +Migrating from an existing Nextcloud deployment + +if you migrate data from a previously existing Nextcloud deployment, you may +need to enable USE=argon2 on dev-lang/php (if previous system ran on a php +version using this hashing algorithm) + +This is not listed in ebuild requirements as this will not be required for +most systems (new installs and some migrations) + +More details in bug: +https://bugs.gentoo.org/762388 diff --git a/www-apps/nextcloud/nextcloud-18.0.12.ebuild b/www-apps/nextcloud/nextcloud-18.0.12.ebuild index de1b7898efdf..0aa3ba1808c6 100644 --- a/www-apps/nextcloud/nextcloud-18.0.12.ebuild +++ b/www-apps/nextcloud/nextcloud-18.0.12.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,5 +37,7 @@ src_install() { webapp_serverowned -R "${MY_HTDOCSDIR}"/config webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt + webapp_src_install } diff --git a/www-apps/nextcloud/nextcloud-18.0.13.ebuild b/www-apps/nextcloud/nextcloud-18.0.13.ebuild index f4ace9730f93..0aa3ba1808c6 100644 --- a/www-apps/nextcloud/nextcloud-18.0.13.ebuild +++ b/www-apps/nextcloud/nextcloud-18.0.13.ebuild @@ -37,5 +37,7 @@ src_install() { webapp_serverowned -R "${MY_HTDOCSDIR}"/config webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt + webapp_src_install } diff --git a/www-apps/nextcloud/nextcloud-19.0.6.ebuild b/www-apps/nextcloud/nextcloud-19.0.6.ebuild index de1b7898efdf..0aa3ba1808c6 100644 --- a/www-apps/nextcloud/nextcloud-19.0.6.ebuild +++ b/www-apps/nextcloud/nextcloud-19.0.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,5 +37,7 @@ src_install() { webapp_serverowned -R "${MY_HTDOCSDIR}"/config webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt + webapp_src_install } diff --git a/www-apps/nextcloud/nextcloud-19.0.7.ebuild b/www-apps/nextcloud/nextcloud-19.0.7.ebuild index f4ace9730f93..0aa3ba1808c6 100644 --- a/www-apps/nextcloud/nextcloud-19.0.7.ebuild +++ b/www-apps/nextcloud/nextcloud-19.0.7.ebuild @@ -37,5 +37,7 @@ src_install() { webapp_serverowned -R "${MY_HTDOCSDIR}"/config webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt + webapp_src_install } diff --git a/www-apps/nextcloud/nextcloud-20.0.4.ebuild b/www-apps/nextcloud/nextcloud-20.0.4.ebuild index de1b7898efdf..0aa3ba1808c6 100644 --- a/www-apps/nextcloud/nextcloud-20.0.4.ebuild +++ b/www-apps/nextcloud/nextcloud-20.0.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,5 +37,7 @@ src_install() { webapp_serverowned -R "${MY_HTDOCSDIR}"/config webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt + webapp_src_install } diff --git a/www-apps/nextcloud/nextcloud-20.0.5.ebuild b/www-apps/nextcloud/nextcloud-20.0.5.ebuild index f4ace9730f93..0aa3ba1808c6 100644 --- a/www-apps/nextcloud/nextcloud-20.0.5.ebuild +++ b/www-apps/nextcloud/nextcloud-20.0.5.ebuild @@ -37,5 +37,7 @@ src_install() { webapp_serverowned -R "${MY_HTDOCSDIR}"/config webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt + webapp_src_install } diff --git a/www-client/Manifest.gz b/www-client/Manifest.gz index ae5edd8b03d6..a27cb75bf5ea 100644 Binary files a/www-client/Manifest.gz and b/www-client/Manifest.gz differ diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest index 60a9db95a4c0..6368164ec0c4 100644 --- a/www-client/firefox-bin/Manifest +++ b/www-client/firefox-bin/Manifest @@ -93,6 +93,101 @@ DIST firefox-78.6.1esr-vi.xpi 562862 BLAKE2B d14cfd22c94c99ce84e17f58ff909de23e0 DIST firefox-78.6.1esr-xh.xpi 427828 BLAKE2B 3892fe73e5b19e0f0b14228ba181e678fd447d18ae143137140e12bcd4ca3bc30522848d01262c085803a09ea5eaec431f82f7defa98bc6be93fd374f9ed8776 SHA512 6747c1917b062553023dce4437251d17bd65c5efa1176a67bce6efa17fc936d576d03c3e3abce043c5b7406c806200db0aa44e7353bd54913dd62ba1d8a70422 DIST firefox-78.6.1esr-zh-CN.xpi 564774 BLAKE2B 7fa27e4fe274e11758cbfc490918f634254cf8cfc2262b91f6eca2e2521de345450e41e05abfa51bbec7d4fa893c835ae23760a80d6335a6383de652a3ac78bc SHA512 ba768296eeeac68605c8919e920c57e23b7cd8595ba219ff11836f7d31aee76c7b0a03d2f5a701417965432aeeecdc8aa74255a17d89f4ddfcc75078daf105a7 DIST firefox-78.6.1esr-zh-TW.xpi 564710 BLAKE2B 844f0296fb078d84cb388cc4b76afd0eb1d534808d1e0693c642b7d32d7eba2f36e7d8c9aa93a6f805e00b76703cae09be96364e9eb7f32d310db998f2bf3120 SHA512 180fc430e3de57942f80477d97d83f9c4d3ba1b6d5b02b6ada97244b8aa5ac623dc88da3854a86f36103a8f0d1fba67d246fe4d7bef70fa8fcb5b0613440d9b9 +DIST firefox-78.7.0esr-ach.xpi 460304 BLAKE2B 0bf6789552f642486e117cb3f21e711182b43a8a687bce5f82c477baa7659c646daf70a47a1fed5ee7f497954658fd1d1daa48e0363c7c277d426656d6c5e93d SHA512 6f5bc3f83115c72a0aa0e07817069f8a249f9d38e0c82d3c9b2a4802fca514e3c02c7f581a4cadb0adde20615fd4cbc3775f566b627dbd21b1cb6d5a88a18461 +DIST firefox-78.7.0esr-af.xpi 428364 BLAKE2B 3bb94756335a5700b49f9e92a1d1b873fafe17318c28a5a7ce0446798370d256950d566351e3119870022c90ed36f1e4590bafc52b7fa1019e58e44e6d18219a SHA512 6ec382ba46210df6d94176121f2445e2c7a032e0bb6ad4066e0389e4d1e81f4daea057066740f026d61d7ca26d1a3d8c12edb1c9839d25ca3e8ccdf7e0af54cb +DIST firefox-78.7.0esr-an.xpi 508375 BLAKE2B 19084e4a2a2cf09565be3eebd88904cdbd3c59e5aaab6a86a8812b673d3a6474d69e1d5d42a9d5bb034ad8891ea05314783e64649ec4cebe78940a7f3e95c3a5 SHA512 88dd3f35650c15dd63c2584f50cc882d098c0bceca7416028b0e728a9696147054f3f84afadf738c3f51f6d2e22302c6558582bdf15fc76e2728e41cadda4a27 +DIST firefox-78.7.0esr-ar.xpi 560960 BLAKE2B 2c265fa689b1674f37186a96794bc9fcdbe66749d1cc3783b96e054fe66f891ac1f13de40b1f4c9d6f0f7e5e14f10d9991443393019feed7f5e27e3dd1296166 SHA512 ae28ff38ce6f6609f6fada98f53f020b43c0bac1e27bd2cb20e57f637489086ccb112d7d4e2cd3830533c1370ef26bcb1484518f273960c605985608ffc8cb84 +DIST firefox-78.7.0esr-ast.xpi 456397 BLAKE2B 0697a2fd082c0673e4b65d5722b36e4dea42a6224eb74896e93be97f3fe34a9d7eea621a3016f59d9695b53a8b92a863a97d82bbaffd71eb46474363dcee2983 SHA512 89cc70aaa20142d618bcc3781a0729f4d3efa44a3b7ff8e81a04d135750838dc6a5e893d3b7ed27ef85983e279c0bbc8922dc755563463eec36016867246808c +DIST firefox-78.7.0esr-az.xpi 497441 BLAKE2B 16b43b26f12c75682c97fbf3426934d4ea38f3f12972b60690a33f83f3e7b047aed06ac5909f0a1425c66a6467158b5af19c9142340559db875ebc78f61b4c23 SHA512 f491730930dd2746a467aaadb9779e88784512aea093dd7a8f424a96089ad532baef2a67a8206e4a15fa75edc588dcf0faaea3c2a11d5bc4102a0da9206ceca4 +DIST firefox-78.7.0esr-be.xpi 608652 BLAKE2B fd1f20bb87d3ffda99b4b04054747db3402ffc1bf64afa8442d3149546be01ff9ae442168689d44763f7d3b70d1548f1c4f41609e7218a0087599a76c51aff08 SHA512 ec53a3ca2e2c673fca330e989f7c38f408a88ce12a0e982416e715d3a10e2effba158bd7573d70012cf85463d9d47329d6a65e3b1704d50ae949361b82384e0b +DIST firefox-78.7.0esr-bg.xpi 553979 BLAKE2B 4b5117349f74de369c3865cc0453bf350170a8f0a52727a7b4a883e20bf667ab633664862186c36be4b6b0ffd59cb5115561d08a60815ab235760f76852ef7e2 SHA512 02cefec8bd5bc999d4225da2a0177085c17937d2ef5223f81c0e266c3f82bba49a4e66f5cd7966b9c622b3c10fcd41c8aeb89fee1b35803e6294c7fefa1610b9 +DIST firefox-78.7.0esr-bn.xpi 572627 BLAKE2B 4448d0b66317a7ca9796efd5c21cd3391df40f94e3fec8b12324b5e7ad0adc764a0a70582693fbedc10449f92b02c14b372913f46fb88a66b401f9a866298920 SHA512 ac6dbdaa8483585f6a06329b451aaf57ce1daa6cdbf15725cd758b842c1517475ce996a7b01d09cec80f114a9eab7c8148608b58987d3170a887d0500bdbb358 +DIST firefox-78.7.0esr-br.xpi 507126 BLAKE2B 1d6124a9165e0fdabdda1c9644548b7ee803027f14ac9f4dbb510aac4805361e628bed0593f33554b9737d591c875fa59c4c7433027d1e3e692621e7e8196233 SHA512 2800b314c7bbd575dd9c3859d07ee93e149eb300fcc65a002f50750e2d8425787f02991a9fe1466afff9d5cfc240dac15e701008f43253388450f6141368f17d +DIST firefox-78.7.0esr-bs.xpi 463815 BLAKE2B 81b068033d0d67e0f27ca37ab974b455ed85cf0577f4084c13b90f284d546667d51194f966092b2f7170d418062c5128c5cfac8775d5dc742ca1d204959431e8 SHA512 58e2d4aa6f7f874d20b5959426fa9abccf5f6ff23562ba871bd0e74f2f18dcd4ba88ba05229f0ba14de482ccdb6f5b95a507de3bdde7c1963d326c218dafbd4f +DIST firefox-78.7.0esr-ca-valencia.xpi 517180 BLAKE2B 7dd0807b53f1aec5f14842163bc5d78267bf7196e5f6050c59182abfd4f495a0a0ce295a0c6d7ab8b1d687c0926add9c261e25307c4f01b05046329ee6ac7b8b SHA512 cf844542ca663095a641e97e8e36324c6b0dbe8091fb23b645b04d89ace177a24be48b05f3df34a514fcf2fcaac92ad7578430a8ef0e3f03034afffbc18a687c +DIST firefox-78.7.0esr-ca.xpi 514183 BLAKE2B 9edf83e758945c21bf2b7270537545917eb1acbf324ae9d04f1688376d008b50533d799464a15a4bf58a0eac2db8fc7b2a0861303e1e7fc9777049acdcb459be SHA512 70b562e946cbe9b8e6623794bd2ca8eafa7db669347853b9e0736aa73420f768131dbb494934b39d5779e695b7e606c413f658169012e1d09698284b1ec86658 +DIST firefox-78.7.0esr-cak.xpi 551551 BLAKE2B 3c972e950bd6e4736708c3f33d54088aca6fcb56a25cb324ee383dfeac653dd8468b244603aee7e01b45d0eb891d776e1381aa7c2ab09eda4061b57f5e5ffd2b SHA512 8109c712d7eaff1aa16f87e1c7692b565b985c807e12d91e1a6a39628936d2d3004fdb17c17fe0fba2e32d006b6a6c57867747854f2699c5ff0306a26bcab3d0 +DIST firefox-78.7.0esr-cs.xpi 540317 BLAKE2B ce1299e2068aea64d2b4ddd46bbf07d8588a3d19cf992d1409e19aa5df4db7b2cc03dec0a5437e160f60c1ea976030fdad7d8263c78192568d970076f9c5c60c SHA512 86af1f3a2728bfcc6bb49177b991482e6aa907cb217ba81023e11e4e6d9a66728aaec62b92f434eab90bc3e2c207eec0ea60c636bd35fb1e6daae136e1de4582 +DIST firefox-78.7.0esr-cy.xpi 530698 BLAKE2B 797aeb79a56bf1e3515b3f286e376c30b7cd6aee75c54a0eb31f1b2e3bb0bda293564f4edc20c1574afa1b29c8d5b948d9482d8e3eef24b4a1883e88f2f3091d SHA512 2d024d0f5a344869a0623feadc48f124d361cf4eac9440e7dc9b00207760a428470a5ef0fc8c51043d27abcf3b0394678e29531803c2bc08ae6fa84aacb99fdf +DIST firefox-78.7.0esr-da.xpi 520267 BLAKE2B ca974fe0790680a74d5b65bd23d36d204296f13bcbddfe95d10eb29e263ddb2cd23aee634d9a2366e7cdb66df142896c46bec35245a96060dfffbe93d1abce89 SHA512 6bd294ec2ce3324032469de85a96993f255729b4499c72adc45c3dde18fe882f0fe87dbb227365504024b842ed94a249476e7d1598b9f0bf63ea8875eae7e63b +DIST firefox-78.7.0esr-de.xpi 542846 BLAKE2B f4a3a81b5f1a27e9114470c419cf0ce942a612c29b8907a52dd9fba08efead975c013dfeeb0c0166bbd507c2465a633f0d7a04066d48f9216ce9969452769068 SHA512 219d540f04ad7cf3bc73cf981c6c03849c4952ec243eae3266a3b046c860e91e7e291f3efd66a0bda8acb50c3e9a8d023f5b70abe5d7eb78e6e4e3a9cad248eb +DIST firefox-78.7.0esr-dsb.xpi 554276 BLAKE2B 9b4b62ee758b6f2af3cd2c2647aff3d3acc8b9ec6b833325b2174b24412c051c7368818c0e4de5f5da4b1a478daeb44fa2a76be2f46f470ea3482976679c7160 SHA512 54fefaa41f9f9491decf7c8def6c4931f5476e47ba3541f42ada8ae0c1e03dc660de52ac117c81f9581a4997ee65f2ed6a14f8d13c36a8232400becc12db5f00 +DIST firefox-78.7.0esr-el.xpi 626557 BLAKE2B 5b9d059351ee309eb0fb159e1832060b42c9660eba408e4804c208d6def426889ae63f76486773e9f536cf9d34df6c35edb58a0a0067716457ed53fea1771d70 SHA512 d3cecc371aac469917bf1be6ca5621584ed9c136e3157f670961ce02532a13b7bbe0ea70e14554054c5fd4925515b41f0bf6bfbdcce78b044268f1d00299e61f +DIST firefox-78.7.0esr-en-CA.xpi 497736 BLAKE2B 89000d7a2444b5f49088d10fd1ba1ed1fff5b34361425b65ac60a187b03b6375aa5bfd88fdb476e8a85dd7b0c85d0011a719d06d3d3e4e54d6afaf8d4e11fa2e SHA512 6fb03153f3739207d4c35ca66ab94fa29ca7e0898f862d04da08f8984d15639b51d5c40160c563f905b63e484e4c0c34eeeba2e2a7c8a81dcf78a08e6ffa5b61 +DIST firefox-78.7.0esr-en-GB.xpi 497584 BLAKE2B 5e0f057cc8cbbd9f1d29bdf6919ad22343a11e3b95d6bc3ae7432e81020e50f042eb84c640343920670a22d7f28524359d5e579a6f82255324d34ae791cc5b39 SHA512 06d32eedb0e762033ec8949d5fc77e8f5dd746b24c158e46cee0c8b5bd663f2c2fc3e6975e841a4cb19ded3e167d0649d905c05903f26f13857b39baf1df31c0 +DIST firefox-78.7.0esr-eo.xpi 525742 BLAKE2B 18c50ffcaa125b9cae26434223a2e4711c288c6e3245fa4bbef750efbfd64335c0cc1f21500ec718e29dd1a0ed27ca252ae1971e243613eae8773593024261d0 SHA512 3df657c5856dde60a89af2a9226e1fd98da85e1c29218672e2f8f31d61d876248789f9ddb0cf54566b5045dc744346d2beff06a2e7e917b5e5db611e5229e6cb +DIST firefox-78.7.0esr-es-AR.xpi 535814 BLAKE2B e5f38b4a24e46e09beb5b75ed78bab792007da18640bccc3ef927a81ad98a9bc6a5d40a6adf19972c9d0facd435edd9f58974c84a06539ac1290efaa9611c4bc SHA512 d9c73813ac3c81389190a8808bf62e1a6ec3208735a0cd890dcda7c577a6dcca3b6f66f00be3203c5c1536b5e0248e5291eb357f2939bd7d08f7a98f4dc05db5 +DIST firefox-78.7.0esr-es-CL.xpi 535370 BLAKE2B f93d5a4d96248fed8aa811bf40a6e7ce6aebd3df7e9bedaa060952fc2437f11856368123d2a8ec8a58d0dc78d8b3d0fd41b86e0ae6fc8cde3de5e326f4f0e707 SHA512 3d8cc3c4f3e1ca9c7f026196a637a1cc73dacad58101bdc87560e39550df4dba47ff4f316cd4d739fa9c5a24c6ff3149677640e68de892eda5c427245aa23af0 +DIST firefox-78.7.0esr-es-ES.xpi 522698 BLAKE2B a8098ce455be4fb1b71dfdd362de997e3e6af680ab34c968dc2d12053b89bdb55aaf94180383e8fb16d29bf7ec9d567887535441154da88a658cee3d48448980 SHA512 406de89907ba3a719f5ca165a966f5c59d5c7957e2ca688725a2a9bcbe2f08ca500bab4ec6e9936ffa7de9c59fd77f4c3a2608f9a0c90018429e99967411296a +DIST firefox-78.7.0esr-es-MX.xpi 532289 BLAKE2B bbdb45cdc0ca6d37748f64c9faee112dc9e2861db1a9f8962e4549408175d3949df5e6f90c8ae8680081b21492faf16fbe36ba4d0094d210d05249c89fc89590 SHA512 247d03d4761d137e3af3bc39c81c86c2ce7df63aa35785a9e0e72d66f7cd41ddda3b10fef17c4aa5b41f6f5feafb9abc24e22dfd2a1f70587cefd2fc63fec984 +DIST firefox-78.7.0esr-et.xpi 485258 BLAKE2B 01b7f7fea7ba58e92fb41b6c308c9ad32812aca6ca4f78795e4c2c3abb7efdafd1a0ac281d3fc2351d3f0fb9468d7512d8f18dd0233e97714c3b1903f73a225f SHA512 ac4ec560834a2271604e738015f3fa8d3986943ae333b07888877e29cb9529c3c79b3de97f213cd6af8b4daf6d2cea40b520efbbae0a3d63975a31eb701cf98e +DIST firefox-78.7.0esr-eu.xpi 505886 BLAKE2B 7762907b15e73eb9b497acf8090d3290e3a3c7e4c68fbf1a8074b649f5ce7d09dbec05c53f3e265e69b7cd669c30ea4565b9c26537f1d1712af4949b1e93a76b SHA512 d8cce5e303727f62729c9f39797727786ac381462c0d91f28bbe077ebcb25795735d2ece61311ccf9cb64412b952185aeff98c4b96c912bba689f5f0d1da425d +DIST firefox-78.7.0esr-fa.xpi 538919 BLAKE2B 5e55debbd578a33f4ec180878f99c30b9d1c0a5025e4f689b8694b811e091cde282f85233e14af1fdb9187434f33a6ba4d5a51d67cf5275ae384f37fc469817a SHA512 c8ade91a84432f71043e157b45a787f9d7d7e219685bf1679932a6e89db5a90b4d70eb4a09d78e1e845dee02dcd4db2eac4f55957df8990d46e85556fb7426c7 +DIST firefox-78.7.0esr-ff.xpi 481615 BLAKE2B dfed58777c472de6ffb63e0e7668338db5112bea9cd34d1c4ad95313227b212d59a77a51158450a0d7c35997ae5651c82c199717f5105442e7147cf64403d04a SHA512 19241f4c9552319049c9023337ed5275c2c32ce02e0e63a7ca6a4ff59962955a43b2cd160f043b6b7234f7a379c987f3eff831af0b7e1a3b2a69573eb31f6a1a +DIST firefox-78.7.0esr-fi.xpi 517926 BLAKE2B d3dacee7a352833d28935475d526dcf0cd9ad2ac18a2227c913ed8bc3c8f67026f1b11062e3ad83da768fa5faa0724876845a5023319bd737bad1b6c2a31cea8 SHA512 fd62bcb0338ec6f16a53cbaadaaf442b144c63ebb4cf62afb836b85b6b171d68da572892b7de2d0dd6ca21b43346f45df3ffc596ad57f892986f8e8acf72069e +DIST firefox-78.7.0esr-fr.xpi 545888 BLAKE2B 2b1aaade9ce08a092b9a519ddcca3087f686699ac6ece284854bd421bf3fa3a4067d1b667e3a3b836ec6549ac9c702099f0f24b9f2121982df98305ee180fa1b SHA512 abd417d0179275d26a2842a1423a6d69c6782926d64efebb023f0b4bdd751da7997d06460c00292db34f2e6c0b2597ce18bade876531bcadb9018b53d1623eab +DIST firefox-78.7.0esr-fy-NL.xpi 532493 BLAKE2B f48728fd7a21097a45a9a2a8d1c97965401868ddd911b44419cc81b83cd43b02e40933c559ed52a918c6db96e559069c66550b4af58300cb003b1646ec9006d6 SHA512 dc900aed0ba72b457cfccfebb8358c52b4af851db4e09f199c8d278f257d2d6b1021ba263a4a4f55c0fbfab034b2ca5127e68355036b950e2a4e491b6a7ca0e6 +DIST firefox-78.7.0esr-ga-IE.xpi 466887 BLAKE2B 64e395ce88023ac1f0af8bc7711ccbd266d21f6b2c030af1c6b2f5072863fb64f65a962cd3e5b5117501a2371c924f03f8448cbe3222b0f00a78991f03c28007 SHA512 14cf04556e418a57796cc582def0ea95048f8ed06396b91d51d30fb05847c0d02a613e674f5291b3c5e5fcd4b0cbf564cf6eeffb38a39bbdc9a68996dc4fdae2 +DIST firefox-78.7.0esr-gd.xpi 491876 BLAKE2B 0d382624a78caf57eb63a995cff7f6c1f2551f41276a84ebcd05375c31b69982f5a68ceddd512576560ebca084933c6e874b84dc5d296291074f6ffde04e345c SHA512 e14f40a654dd8d8f0143752e95e1982483841335ddcc17c479c3f544193a41f06cba388a9566d00e28328eb677e234968a091bb3d801c12c5755f7d99df12e52 +DIST firefox-78.7.0esr-gl.xpi 528428 BLAKE2B 2f865726aadd998023b0476d55d69f3c4c47446eb9fac5c229a1aabdbdc199865b5d213bbdf9c03efa93a53bf54008bce8a9429f8ce36dd36952d82148c546db SHA512 159fa6e6c7ed5cb406f4b004f800eae86cee0e1e6a7fb15ed6b8905a365cb925be2798cef947963ed264583f9993797ad3cd6d4ebc3bdde1e6b5baf8334f66f0 +DIST firefox-78.7.0esr-gn.xpi 546468 BLAKE2B 748aa85ba67537df55f6c6faf941ac12f6bff3cccc9cd6e14cb710f7987069973682bca1826e48dbada7c964d9e291d3385171c43e7b33cc2d6e404fecae5ff0 SHA512 36784f317e08a4d169a3fd5f38e24e4a9b644dfa0b510a2a5a65e26d4e945d256d953b9633f4aa5d1da2685bb64ee7221d98e02abc7302c43926bdf3fbe50313 +DIST firefox-78.7.0esr-gu-IN.xpi 541433 BLAKE2B 1d59c1593d5e2e0be3b992996e27d515ffd62d0b6a75e55d6039d7b07a72e778a721d30da71b6bac476e2e767eb043240572bc104b869415f9362b1426545075 SHA512 978eb326ce7f90d7734b6d69b6f63ca96ae47f8206d2221f7f54ed4517fc3b40f84f9590b2a8cfe067395722f1a7ff15394835c5caf49123785b5324fb9d824d +DIST firefox-78.7.0esr-he.xpi 545588 BLAKE2B c2038b9b2fe59b63e2a264ac3d77309a243c3b6dcdab975020dfc8aa286ff60191d6940070008b9c3a00848b4c1c2a48da83ec339561b9cfaa10b0ded63e2252 SHA512 93c82235c6860acad542f9ddae1e0f44cd821ab7fc72331aa12fe22e28ab06e91ef016618afe7328b572b6f5673b23397fba23920f178653add3fe0eef55bbd9 +DIST firefox-78.7.0esr-hi-IN.xpi 567865 BLAKE2B bf2919dcac079e688f5cd23b9faae9acf29daf289fa1f86a7673c47469881f3971db093ce4f63e6a12c2f1151272a309303e3646da7408943e26707ee6d881e9 SHA512 1cc7118b433e9a3790bc83de8764a29646c461bb4d895d094f9747adac1f5519c6c7251497678179e6cea29c8db7d1a5e12fe4e11bc6bb6d38c5e65c5042a2da +DIST firefox-78.7.0esr-hr.xpi 522681 BLAKE2B 5f2bf77749f969470248ef88518a952e0cae2c079f0c2b51e60ec19882de21f24a7e83ca3934341f51d551b740c3873458eb3f57b1c2ed7176401972327cddae SHA512 4bdbb20ba77b611f181f5a59221106708d1227fca94214276441d0157c796d054aff4bfbd9b6ae60e5eb057c090117559d60176504e4eef9e1d8414f6ccf3038 +DIST firefox-78.7.0esr-hsb.xpi 550674 BLAKE2B 3c5c0b3d5e14aafecd238410d86a0c83494cd913c08b446bcaea2cdbb4aafa1de7139e6ce5776bce36001500ec34daef753b42076e376a1eda568e0f25c0bdde SHA512 8910a369a21f742894c2a202709449908310a7080219678515b0dc1b5954f7a47667af4b69bbc7098388eea1c357559c7655de6ce5c46bf91e3bdeb37875a2e2 +DIST firefox-78.7.0esr-hu.xpi 554894 BLAKE2B 988a9486c823fb4f45994ed52843d4f6b6f13439fd50c3d6faf73aa968d6980f906e4945eef140ee17720615ceca78ce59cfe647f979a704387fc0e6f0ed6c4b SHA512 364566a5dbd87d878144675e6e0a55ed393ac802aed63b5ae261c68db4c0837242aa02315374db98ea3a0959069f2b1583a1148e9e46acc5cb71193fc696f848 +DIST firefox-78.7.0esr-hy-AM.xpi 588987 BLAKE2B 4c070b3f94ceb83df9bdbeaab4347b0693e5218d0def201a01dc8649f51b1d4fd4ec059250641b6cb71bd1af234639bf166f5c9015f7dc5d8e9fceb8d326dcc8 SHA512 602bc236156fc93efbc81e9f836ad33143a80db0e127250e54fcad33bf9818366fdcfb9d3110eb4977c4ddc048d655d73ad5ee4a7105ff8439606ebbde9df2c5 +DIST firefox-78.7.0esr-ia.xpi 518825 BLAKE2B 5480f2522b5f6eca861d4346c60e70857e5a4f9c0b8c8d0f9a30673476528d6d7e9a2f9f782016905dcf2471155e69ff1d83f3bbec2ef92afd774f3a84f6330c SHA512 6c67bba02020fe222585d5329dae5150d41a24df1e02179c1d7ef1abee75ae0cf991169978f8ff5678a1d9019a3e03a60786510f083afa459f5f95bb9d6bdec5 +DIST firefox-78.7.0esr-id.xpi 509576 BLAKE2B e43d7858c3a9fda0a89daab17d11d134e4d188b225ceb6bc503c818877302cf846f3863d6671f0aa6e3dc7970fb2e85906578c1a3206b284521b9c219337bb5a SHA512 3dec223f2be276cad21c859a7209ea932f8f80b327be86caf8e6846e5e8983aaf6e03ee34487cd49fc9d5b85a2b8c9a7a610050fd9aaf01fb92576ed1b1c56c6 +DIST firefox-78.7.0esr-is.xpi 477039 BLAKE2B f8279f7bf9e203b0b76d4c3c13416ce99a5b5940bc59e26325b2519877410df9fef307efa7957d832c9e0512410a4c18dcd4aec611b78bde639063c89f9ec175 SHA512 7be25dd09d80c9868f1a61559668d14b82acc329625d0419309654373d5a4528f1e2beb2f42431b3fba3d3c9377068eb4bb5bd0c97a0b99d93989fdfc53d5abf +DIST firefox-78.7.0esr-it.xpi 449798 BLAKE2B c41f39b1d18e5abae232361aa0b8632c30399546585c80c3e6d3644694247ce68083f383d75bbb159d2668695a6a2ec3b2cc897df642233c89ea479027046cab SHA512 1439a43083a0a5be8a10747f38bf3e10f4ba18791ceec70fbcb3da594b007a40057e98f5c80d0abe8f8019d78c5b59af44207798bfbdf3f055e2ec957a1c15e0 +DIST firefox-78.7.0esr-ja.xpi 578204 BLAKE2B e0a2255cd3a529d8abc047e89488c6e9b6d06b293c5ce72a02870469e99c1446cf0cdcbd530b6842881c72afd7c6b5414bf73b17591fb0b207a5aab46158504b SHA512 8eb7daf621fedf85231fe0b9683ecbfeb9d61bb1b80d44ba2602157a944c040c82cdf7289c86244e6423462c24dd78bfe8d94e74bcfe058b654d0a478d4c8cbc +DIST firefox-78.7.0esr-ka.xpi 579084 BLAKE2B c3a8443f0f922cbd44e8d860157e37c0385cf1173735f719aaa86b9325417e3dd4204b6a6ee1dfc65f468dbe787427cba3519f97c860fdd71fcbbc4ac11dab89 SHA512 e88c9ad99b3fd4b27d5cf74b06bd763bd1f6f6fd1fc8585182a48e8add3af1af944d54c0ebc6b499ea3ee42cce406fbce1b7fd7e0ff5aadfeecb483768ee55e2 +DIST firefox-78.7.0esr-kab.xpi 539731 BLAKE2B 4e5ef7d2f13c2fdc9f81ecf49607887c8eec32a9b68e1ef29ed3bf4ca926f79b9860a75973756b74ea3b65c663a92a92e3ced092342e8bb6be7d80468808c381 SHA512 b97496b1218c3d1f90b8f8918afb7b8fcf9180c7068d703391f95e0908205526ba100612f2e165595cfd42a689c1094e73d96172dd8f715bf838dd116ccb1941 +DIST firefox-78.7.0esr-kk.xpi 593251 BLAKE2B 2eed14dd8333a808e76894c24a0a22d42ae6a9df2a1d6f0d317df11b0cda3ea25cf23fd91d948ae0097a42584c5be190fdbdeee0af6003d93fc2f388b0b40d2c SHA512 8db00cf2264103b8a7a3704710cdbb61555fcddf4839de5cb6ed807ce9c08c705ef7f12d5b6890453353edf46e19345cb31ff415e953a7313b4648043a6a0f41 +DIST firefox-78.7.0esr-km.xpi 527370 BLAKE2B e6f9ad774865475152c229b778f6b25472bb4dddba6d0156572d2dc5264c52f5ab0ffc95dca20c61bed4ac53cf6210a64bfc47bee92cfa9456c5a18bc3dbcc3e SHA512 0d4a0befd8943bc5d883e4fd8002579f60514df84cc51ccd5f1afba0d3b886a7b7db4f3d081f390ecae46b8f11f7b731f88ec4ea575d9504f59435ae5358a2b5 +DIST firefox-78.7.0esr-kn.xpi 506747 BLAKE2B 4ff242de1fd87ca50082c93c99ba57bc06cb97fe12cbeb807711160b2c0ea43230ff8a751f18170cad71d68a4c1012e4b68e8ecd28e54393e5c5957004602c8c SHA512 36b14b3dd0060672d07f34a074dc2af4976b5cf1e500310a3f9c83c215bffc49f9a68a09d2c5904c75b26d1c9393b044b0e2843a658c3880c82ff4e34ac1579c +DIST firefox-78.7.0esr-ko.xpi 567532 BLAKE2B 5d7dcfc2c795f234ea071eaee6627a91ea7a4332decc40498d98ba6cf86201b565ae634a8aad10f857690f0ebf923caa943f88ea2b4f1182f9a3149bc8c8ecb9 SHA512 c5c3e60b1c66d17b254673c44ae468c39b1ece1c327a017f1f47872c7468dd9d1c93232239ae1e64e329473643b1f92d7acc200a2f96df981d63362a18060d5b +DIST firefox-78.7.0esr-lij.xpi 475245 BLAKE2B 48765a1ac5b0d495dcc85bc1442b49d45e3337d7fbcfadbfd147ce605e5e955303efb05d26cb504d4577430f9fce71bce2877ab6eccd0e61b48cc1c664592acc SHA512 784bb9d9011d37facaf289e001d7dd68e673ac69e33827c4228da66b0fb0534015b38ee36c1378ed91f0eec6cf3979c64599f5427b86929dd8026d9741eca7e9 +DIST firefox-78.7.0esr-lt.xpi 540702 BLAKE2B 3e5305095ade41e074a78a37cec659630095962549e2c2627f93dfffc01d97cba6950f4e844a146c4d2a9689453e8ecad053742c6f8e9852e48a5ef9f0c0680b SHA512 351af9b5f4bbf99cd75210a9d11476922c63a7a71a9159da521af6d205a9c8aaa0b269f22ce0719871ad0a1cb00c175136958e8101edfed852ef73f3af307e9a +DIST firefox-78.7.0esr-lv.xpi 467460 BLAKE2B 623bfcba62c725d426c64612f71c199264a219bbc1c4511cb4e9c991dbdb55b4539807e27bab2bc391208b94495d38b63add419df987127feacb5debf5cb7473 SHA512 f0c81c17a7602b0a577deafd4d09caf53661a4a017f04e6955770d670da7d51d328a190f154c567ff980081615713fa39af559160b58c0413533cec356bd6797 +DIST firefox-78.7.0esr-mk.xpi 460027 BLAKE2B f0f0a3b8f18544dfc932a24a4848d74d9e1b0ac3e44a4d289e54785cecf066013338b4688bbca5fcb151baefc279bb7200f76e099cc637eb876ec3506c1654d2 SHA512 ff0d0afec0e1873fb2ce7e22ab18ab33bce30bf44e93b8e0436456994a7bacb9ba37d495dda114653c472673884461ed5d45d2ed8854ea4b1961991094800683 +DIST firefox-78.7.0esr-mr.xpi 541575 BLAKE2B ee02af9b5bc53758a9841e376b564863338c8021f5b37e9675e2f05b101e01f1b59929acfa9d504a47adb775b6067efd99cd89ba6e90d0561dc65b11d9001c36 SHA512 1630148cf7112d85866cf8d7eeb2fa9c9bf260636e89021529c9df8b987abd7aecf32f48c1ee4a069605bef142221aa320688c06e812044afa5ef4af2061c29a +DIST firefox-78.7.0esr-ms.xpi 453059 BLAKE2B 38d5479bbb9d4c0e22a961bb60d25c32914f40b6e2863cc3f3e75ab25958a70514cd3f66dceadd64dbbf5da4e628907b16fd79d71a8a1a7b1fde84120e9a0952 SHA512 c7f2ce7ef940b9431f4c4cd2841dd1dca17fd0a8a17def6528bc763bdd714a455b3b84a16a1a08ff546c8e832263a9b561a86c5c362c2b0d22eac150e6614a91 +DIST firefox-78.7.0esr-my.xpi 526326 BLAKE2B ccc2328f217baf6bc8608eb7fff8e835a70a01f5f84f42b028bef4cf868b40c31f61b89972136539af230f4d767212a1b67ac7d62f836e217ffd5d855d325977 SHA512 fe4e3ff27224499bfdb6ed2db8bef646f802a2554d33ae859ddcce07ac0221bed51e3c5b91966f1c6fa4e12df52ffbc465b7b6c80a4e0bb1df7ad6216cb594f4 +DIST firefox-78.7.0esr-nb-NO.xpi 518517 BLAKE2B 4cb065864384056f3ba5b07dafa0d4082ef7edfd6547ea504849c983bec12ef773f50652e4c62834a08d77d8057f7f9e01c4d8c3adb6b17221f3d06f5a7c4ec0 SHA512 b08d562ed1798d82930a8cb257d6fec05152850fc80ec9382c9e764f2c456d82defb9d8c9448c5d193fb2b5be3c569ca5261940e34c1f9217fb96cae087be9a8 +DIST firefox-78.7.0esr-ne-NP.xpi 483394 BLAKE2B c257741e59941423396813a0e0dd4ec9fcc657eb095f14bf65b6d0e6042df7f5ca741804e8420e1e119fd608fe68297f868ce51f7b3a997ad6b8bbdee5dca091 SHA512 e35f505623cd94be52f7e5e4e415e607e7e441e9fe849fb086174795f23f675c93d529d45eae24cf39fa82e867c57c2382b0cb298ee2f5ea09752498685d68fa +DIST firefox-78.7.0esr-nl.xpi 526197 BLAKE2B f100d0a4dbce836bb60ab2879be870a893c037b61d16aa997aa2524a618379e0835653f07f334cbd0480eeaff4ecb5ef30ecfd2ae51701d20bb16cb3f8b022b8 SHA512 e66738faf8d9f46d0b60ce50c422fa9199c73dfd40f8cf65698c3fc16baed4d713d4aae0c6a224309ff2e0fc65cb8870d4f338da8b0ebc94ccccc71416fee616 +DIST firefox-78.7.0esr-nn-NO.xpi 520147 BLAKE2B be34641f6e67bf41b98d9617b677a2a6b1aa06747687f0d6d0b325f07ddb8d58a907de5f9e72289253c5b8160360389e2a16f6f44aa132340554c60addb48b36 SHA512 7d918705fc8b3664c9c0385f82e18367d4d882c54332bdc39516fe8a3ecf31c3facb6cca5cfa988cdcf9b4ce8b5e64a029ced776beab4d477b2774e968c0dd91 +DIST firefox-78.7.0esr-oc.xpi 542150 BLAKE2B ca9346799b45d3056ecfed65e357f71c30b34f5912382642ca28f49a63690d6a4220931254de0bcdc3328f03e9a6e9636e45915082a3578bcc36f92ab20b2b51 SHA512 64bfb4a753b44875d21ab9ac712906094dd21c38c11acb6d8d1fd03f8929810e81b469e37d939257bd777903bb37b5ea2d1dfdb6c31560bfca11ad168bf7c23b +DIST firefox-78.7.0esr-pa-IN.xpi 580359 BLAKE2B 00c018c83e55463006f06b7ce5c2df2bd0f4ff8877ac3a779d2ca130ba4a1315fcd328725297d38c2c95af2b300bf9ca122c94b05f112a79d6013a185ea9523a SHA512 495bbc4ce39b39c1c6847e9f26e09f52cdfc820d548501c87538e26f54bfa93f9328464c0baf59b09db417c610a7a0e922ac552a30adc211e54feb724998290c +DIST firefox-78.7.0esr-pl.xpi 545612 BLAKE2B 7dd50d120b659b8328550fc92760e6445e3071ba7774691464d24e4bf9868622329ed76690a6b60d9b5be7f60f76f9cb80df4306d739e0f4bd7a423d424dfa1d SHA512 44baee533008916e10ac4caf5c174b730e73cdb837930081c00a3f1da23d64129dd46183894246bcb562d6175f6dc8ead27cec49a6569a5fcc46d09bf0d461b2 +DIST firefox-78.7.0esr-pt-BR.xpi 527579 BLAKE2B 869ce060e6e133a28ee54480d4ad02208fabbd9276fc9cc234710c669a504f3e093e9a3b8bac30d52975c1c27f806031c5c563bfe37be37384abd58ac1744a14 SHA512 d1bc121b7aa8d1225f6dde1d6c45b0bc4eaa7033e5d7f82d94af820d76080de91945bb6da1ead062d9af203694957273746fd032f62d625e1667c04136401e80 +DIST firefox-78.7.0esr-pt-PT.xpi 532059 BLAKE2B 9683257bfe2d305de553bc74d0eb8a9c63abdada829e752244ef25ea3047ec28e465a8335bd8781d61147de1d2f6748c93051b5e80e391be40194ab3482a4b42 SHA512 a6dc7147bef56e8b603b34d65434fcbd43315476ade1addfd91ff7fb4e8ee826b88967e361251a8a2f652389d57b65a216421f51fed70ab14f72fffbb5528ceb +DIST firefox-78.7.0esr-rm.xpi 526728 BLAKE2B abab9f49af1f8b92e3eef1dd311620bc603efb33fe31d0e2d0950a678385a99b4888ff3749bdfb303db6113b0d64841ebf5137de353dd68e76962eb40183f41e SHA512 edd8ba2da2f3620784a9e9a9ba604dfebf832fc06fdf22ba0558316fba8385d04889728ecbf069359fd0a1f97159d91c66151ba57b83b59e3927a11020d7e7cc +DIST firefox-78.7.0esr-ro.xpi 535579 BLAKE2B 90f03fb293c16ca0ff012174c684557550b698d6a13eadf003f3903b14da6ccbfe92d4684c53abdaa7a74171b7a971cb49b93a20db38cc1ddc13750823f6c540 SHA512 0f4803b29b20aacd5a8bec7748452ac43aa6d981202b975bdcb598df8e088867088a20d35c1faba914f613435a1629d48b90b4349749e2e256a84ce42a4c05ee +DIST firefox-78.7.0esr-ru.xpi 614594 BLAKE2B fbdb097dae54d7e1026c32bcd251ccb8a63be9f5697fcc3a9c989d50e25637cca49a5e7e96d4c1b9ea939a805944153dfd82569ee410abcf3470b6a219d9f02c SHA512 1ae0327c50e8a81e63945617f060bf3cf687b88b4d71980621ab41799983e50458197e63ae4f1cf3e59d69c51e9434c559e49fdcc7ce9093f678951b0c855ef7 +DIST firefox-78.7.0esr-si.xpi 492534 BLAKE2B 38d92c08a606647acf26f7e8d91b3d671bd658ca76ce13cb992cca19475efeb7dc91c38bd5b50a86b0880ab392f10cb3c861e34088479f34df9bfdf3aada993b SHA512 ef84b1e079dbeed00a6cf5da61db1bd0818d7457e67bad686356d3e1c2f06e067938b0b54c4c705adb391cd6909196f3a77b2b469fabff09c2eb4d77c2dd6e5f +DIST firefox-78.7.0esr-sk.xpi 534235 BLAKE2B 31be847d0f46aed3284806be2bda188e82809ad4303f2c7a0d3d574650e894ea7749490cddce13ae76252a2ab8301df590ddaf349bc082a49b3c3ff24f5cbe18 SHA512 23b57674fdc27c7df96270ffbaa5b1e37ad1ebb25ac66220c6bf4ccb969298e92ca159d2353b16d102fbd1d7806028a30c8a60a7ea75070547ce08d937dff78b +DIST firefox-78.7.0esr-sl.xpi 520948 BLAKE2B 0118a77bc9a59efbf9aed9e7871bff852a7d2d58507da68f8019a45f5461d4cbdce000e9a9eda0d8466ff21470361033a86952d2a1c2341a9d184ae406b0888d SHA512 de77564097e67ee83d52221a3b0588dd05a3b40d00faf976ab551a43f7fdd056573864fbe198d6865e5313f66575a021c163d8e19d8ffa104639bae99b130d73 +DIST firefox-78.7.0esr-son.xpi 424585 BLAKE2B 601f415d62262fd9be218eaac7dfdf51f86672708ea6053988bde5edfb0e2708d70bd34c4918575741c839cf23aa73a9eaab0873bba81413d67149480ebc05c3 SHA512 64bbece7454a68af424ed7a7d87ea0a07cb6dffd0a20ea8bf478f57347a935def993886f5a885c45c289f0e73d80e4c15eae2b816cc78c51c7b1833e8ca238f1 +DIST firefox-78.7.0esr-sq.xpi 544898 BLAKE2B fc2482ebe7a9edcac9e4b61f65d7ad9db617b14c6b9b097d455984e911efc19f092be9e957428973dbb3ba61e2c9423b380e5cb3954b52b65a169f7dc6655af1 SHA512 e5806bf5f6e939b0ddc03a9d2ecad134b99661e4d383f1c7b2d418700211d1e1a40ef2ba47ec76c53be26c656eedc11bf8c98b5a3548b5ab029510a90774fd0a +DIST firefox-78.7.0esr-sr.xpi 561396 BLAKE2B 7d444e936d876cc16c3a775c56ded5e927315f30c0657006155df8420e2e4d960e816a818eb6a62686a0521a57ee8529628e02ddcb19f869199c82f77cdf37c5 SHA512 9e4d79b01c0037c32fc82bb77cd1dcd115f28fdbc86afb49504a94c7fd7ef54e292308ff53415e18ddd87acf591a22c24f8127723e37ca40e9444b51cd7c8fe2 +DIST firefox-78.7.0esr-sv-SE.xpi 529708 BLAKE2B ddd719ec3109f6055dcfa2e2a2901d2176a9dd1f0b472686ac5f69b980f21ea376202686f1d9c2b1fffc0a3e6a96c7d83c2e6f4951d8d7e2aaca8587d2551889 SHA512 46cd125d9f07fc0d17f86e49a185bc2bd0fb8162fea43bda8547bffd35b47957949b998af90eecdc006b957d650ffb409941581cdbe8f917a505cfba852ddd1a +DIST firefox-78.7.0esr-ta.xpi 521532 BLAKE2B 81cbc4098f797dae45c8dc9fd82ac600c913c7320c673022bdf86996d69b4d63f48343daa670e34d054f911dd18191fee3a8f16c31bc784ed549bcc8f01cd6ab SHA512 fd4dc15f88785553c502a9428624299269d78978d82e577265318b78359f392f3d46d6d82c2be16d68efde84189a3bfe0d9a00f9441789c8e828ea02df134cbb +DIST firefox-78.7.0esr-te.xpi 558402 BLAKE2B 01e87da1a2f41df9bdcbf48d933db7110613c5d3f4b1c10185ca9b6f5c684fa21378259b285d6a97c9003642f3e736be629a895d02354a4ee196670ac89f2710 SHA512 205830d00a8cea5490505503c5cdb7875bf812b8b43dc9f16433f7d98b41c66abf0b7e25f1a1a3edf0c84c1edc1bebda2af2fd75924ef8c6767102bf401cdc6c +DIST firefox-78.7.0esr-th.xpi 592238 BLAKE2B 8c6d27be5ed523cbdb7e1b62bd6e351f932d15fd94cb62bec7d16669cb1875a787517dda658e24ed5c700685c5702418d8f9f82cc6410c9dda69a7ddca0fb61f SHA512 79ab254586435c5dee81c080b0ee8d235bdfa915bebef671b0cbc9fccbee6921db0ca33c22ba12202f98bf6b7f3f542124531fa203eebae72917174cd2b13c4a +DIST firefox-78.7.0esr-tl.xpi 521115 BLAKE2B cd20cad7b413c9be359db796569194a5255df859b992077dcb1f8e0e36e32cdb037aa3cab83dcc559437cd99dea0567577cd34e6cc28e49397612a4bc056a973 SHA512 6af44f07243724a5bd431ad4de15d6aa18fb673f808b4f7adeef898268bf46be7e77c61f23c9f40c6e356778d287b1e7dda0451688b676ad06261bdf06a9e557 +DIST firefox-78.7.0esr-tr.xpi 539880 BLAKE2B 6bd42340f8013edfd183b822f34bda69d658bf540fbba3295270e14c1908f2059bd276a6b413ec2423b61721ff229221f12040f0e7f06f8339a3da07cf44349d SHA512 784df6aff154d1c679784299a4d415e5938657403fda259332ed8bbdb12dc3d0fc0976705c30244cf5d2ee3a33cd716415cebad756f4c2f1eb9801343f8e5317 +DIST firefox-78.7.0esr-trs.xpi 501223 BLAKE2B 63293ce37235f9bd8626e55eb844daf0eebda72dad646d79b6a2c7ac970e33ab4baf877395221491ff0756e4150b033a09d79d19d53361176d6b7e8b45c0cad7 SHA512 98aebedc4f47f410d5f5bc023e78b6026781b02042dd73a39c43546089bffeaddee73bc9dd40760ad7c47f570c382d3f2bcfcd0ecc11cc53aed3f5a52d2ef665 +DIST firefox-78.7.0esr-uk.xpi 608599 BLAKE2B 23c1e27e21c8616ed2c5e2d95dd4310af08fdb56ef745ede88a5fcd95072ff9f8ec0429f468c0b1c5ede205ab18bf34a93224bdb046d419f7e8c05b059b6dd29 SHA512 4b81d234e0c175232630e72735b65abcbec336d82260b790fc5f57c9aaf665db72fb30899d9cfcf0501c2bb7383f6847fa028f128bddd16edb264fe155c897d8 +DIST firefox-78.7.0esr-ur.xpi 557957 BLAKE2B f42abc403a41deceb9ee3ae01c559aa9afda819cc00b9967667680e4f9f2fe9fd2ad8adc341dd9c931ba6540c57140ec33098d9dd52c7f89bcbcad64fdab7b86 SHA512 203b37437803dcf80b23d02ecc68e5bddc731c57275089ffdf3d80101a6b03ab315b0ce4b0695da8c07fca713d4b1943346159a68afe53b1103fd094bbc01b62 +DIST firefox-78.7.0esr-uz.xpi 477566 BLAKE2B 47163bf321b2661801ce4453ab85ca7ab93923af7306e6114c2f919438b1b406e31236c21904abb3395fb721ab29aa14a4c7e5379b7e5f799257a1825f3bdbb4 SHA512 398bad7171e2d88a1d70f317e549c15860eecc2bb2d4083d716722522540abc1801df47e129c174754a5c26e28a9c6738bc8d7b4c4479526e08abb7aa5847612 +DIST firefox-78.7.0esr-vi.xpi 562858 BLAKE2B 9c5e4625800594076fe8dba53585146e5afa0045f57abd6e1b3f0d5b2149c9f7a1d9ca5f00f365935d09c15d72d0a51c7eecff0ff57ff0419cfa556502a1ed01 SHA512 81894283abbd36ac0e14462626588f99a34d11b01a01e9883c9333f6c4b94a1523e9add82905801222f7fcb814d538e14686c05671f2b82fed80af3f43dc0e74 +DIST firefox-78.7.0esr-xh.xpi 427839 BLAKE2B baf565d5ba59db99bf340be6066a8b4b7ac45096dc6ef6e0f072f743b429ef24e6e5e6a3ff9d5cbb99544e3940877d9068664f5da43b62e9b684a45645945f76 SHA512 a4e4903db21356bcecf19ae3528bc4db699bd4811267b6fd3f2b5c3ce6d6a22fd30b8034b786b8c616a25671af2c4251dea3ff6af346edf13209fe09bd7a47f5 +DIST firefox-78.7.0esr-zh-CN.xpi 564772 BLAKE2B 94633d16a271194dc7e0560419dfe69aee2a6d884739388f2157e998bb47f53b71343fa52d05df37fe3c6dac0e1686cf096e04455d792bda18f9725e458b9509 SHA512 59c3b040665af760ae6d773c64e1cbce974a022ed47a462461bf7a09cb226bb65b105d714c66f898e3d30066a0f7ef19949e35044a416146c542fd8bd8ea4847 +DIST firefox-78.7.0esr-zh-TW.xpi 564734 BLAKE2B 4484dda1ec861e9f38a465b2fb43c5ef96f2f688350c86a84825dbf6e3656a03391584bcd0f7cff532b77ac5cf6605e59b85b073af801038fe23c0f9e3ff6aa3 SHA512 852481db2a47a48c0c29153aef337e91d70aa0c25854026c76fbb47775d87e96b657555776c3f09f75925044e6ce90f99a419d43c6b4f9e9665b59f0ef49a6e2 DIST firefox-84.0.2-ach.xpi 461779 BLAKE2B 09ca96b1583846c454cfc3378fda6a60b5fac543fcfc69b0579535af30020272435062f18b56f5437f05b9c3b564717e3c2bf5515d66c1e89e4ca6e8598c4656 SHA512 be1302e69f7f0ded255cb348f74d395a80567b449ba731fbea2a0332df58625dd30445c01b97a2a753719af3d123d6bcbe05fa2390aba94a5c88b6644abccc33 DIST firefox-84.0.2-af.xpi 429055 BLAKE2B 418471dc76eb251115aee2dbc32229420775aa7318d218a39790a5d715fef72f5e49d2aafc61f38ef00539c969c2549f6ff038fad50829e7b542301a4bf42a45 SHA512 52de79669bcc30ab2f3c42b4c4375b27df36007e5742a67b2bf79e24347272ed4cfba80ce6024682b7c2bdc6c7c12ce20a587d0f5d8669eecdc584ee0550f6fe DIST firefox-84.0.2-an.xpi 509109 BLAKE2B fbb28dca915a1309c78d4249891ab13c59c25ae64008e4f21e6aa93818f7a72d5de12c16bcb8145864a15772cca8a08ad5aa5fb8327cd89206028d282ee21b22 SHA512 e805aa7dcefe4170278344471e90450e157819596c6ef9beade028c2b03d021a6cadb2d5986ce447167d8cc8dea1292e7e205314bc8bf8e1f363e91d0cd5dd82 @@ -188,7 +283,106 @@ DIST firefox-84.0.2-vi.xpi 561442 BLAKE2B 101049828718b0ff75dc38558b28efcbcaa29d DIST firefox-84.0.2-xh.xpi 427838 BLAKE2B 3e233c26a53320328ed8557a37ec25a3950c873f495ed3c1d7c8cc5dfc1e685bc650d4a017d18de35a27219bbd475fe3d752549f797677cabc1a9cda78bfa39a SHA512 55156b9ee41f4e4f9e02249a0ed5cb3348f7db6ffc483ded1bef5d6d48cdb7ad1103e1ac1ccc0b56446f627976e384f944f1e4c60012dfabaa512a545ecb1373 DIST firefox-84.0.2-zh-CN.xpi 562152 BLAKE2B 282156975c144ce18291a1a641f6497ff939b3fbb4fdf101663220134ce65cd32692c423fbcb34f2d60d4ef64439daa4d8ad1b3880d60c041f1ea6e6359e715b SHA512 f090ccb51e3f9f231c175be4b892bf7ccc89f943165fec99b5b7d5d79d3ed7e0f7955bad0e0a5590b7c1028efcf9ab7eb39b0f08e6ba4f9215f9d19788f4694c DIST firefox-84.0.2-zh-TW.xpi 562090 BLAKE2B bfd8e042d9e5a5b0c9ce39aba96e3d81a4082eaae0302ce346a4d44ab3417580d54805cbe272efca50c0eb0713c84bd79157c658d1a0f6d1d5670f47ee6cc8df SHA512 a06ac452846c183a90a53a43793f26271b051e0ff6379aeac6e2aa384c18ce7ebb0a2d1a4dcd4b37a7bc5357956766e5b0716951ff58d80ab07ca7b3cb33621d +DIST firefox-85.0-ach.xpi 461933 BLAKE2B d1f93af47591ee08750afc8bf85ab00eb5ef635bb9d42958db8f0895ed364c911eccc49a17c7e9d49011c1e8c3b8c09538aef85e204f0aa7f20f68f458a61464 SHA512 4b77fa937f9533651575a0deadf2be2973b1b472a21490483e2742455bedeabb6de287e1fb4d6cbfb37717dcba73c18628663839c0f6c45281f954a30b8d5dc8 +DIST firefox-85.0-af.xpi 427614 BLAKE2B 66e9b75a14ad91cbc0658db0b7675851633e98341d821fb0cf38d65c403939ae59ece86abb4b669cf8900122ef3f7b6b165738317f0b9dc077456823740d5771 SHA512 90d1450f0c0dcdd77e99a661f8b9129c6dc385dd016099f44a94434fb92217dfe270cd982d01e095160cb2bd5870e16954b6b28160ae61379d94eaf400ce78a2 +DIST firefox-85.0-an.xpi 509100 BLAKE2B 42387657828f41570e02dce8b0a57487d1ebc06d10a99c7c773c7384ae5ec9664002390fcee642da09d4f4b6b9b78dd4f096e52b19cb173e2fa3f0ef4ca29139 SHA512 cd9ada8fe64c13ebb12c0932500cc88ac49b2e4ff42ca39a8373d9494f41d7beb8a00c127ba03fa820dc05dee086f8f9f1b45f4e68741689fd5af8a09f975507 +DIST firefox-85.0-ar.xpi 560013 BLAKE2B 3889d56153fefb34c920a15677f2b275c6570e16392745c9143360d028c9b6d17b8766c7a25c4d9bf9f3fdeb8b81e55f1cb79958ab5ee3b7795b990b511ddf65 SHA512 e5639bacea266e1286c3a248df63892357b2c77833415e0091bc8b405810bf78f1fdd8f8380baea361056057f0fd02fe9f0d27a1cd71c9f09bd619ed2fb4d13f +DIST firefox-85.0-ast.xpi 456389 BLAKE2B e73e9cf84fa3da6934cf5c349fcddb53066400e6da1c320bd0a314f2527a70bdc49325710f2d14bb9b8cdbfba0aa35c0fbfe226cb75697b028c3b20a5dc0b83d SHA512 f81afeff5fbd6cc87c0092e69b810ceeed9435fbc856b8b366fd2a45b5f2c097123dbaa1ea283196d6b65a0a626cc7780ffa70f4e36714bfb3e678263a4b6fd3 +DIST firefox-85.0-az.xpi 498340 BLAKE2B eac41a2097beb1d390f2784e180a8d6fb11e0432b5fc5223b855cbd08ac3612c8daf0b9685be83602363ba202d94d951e77480bf9064b21a371667ea8fd16c8c SHA512 471f2e00bb187e233ebdc76dc0ec2374d2adfeb3f3eb8209ebd7d94b2dcd553770113cf5dba5d5648dd29c52e228d4dd57a1348375f669f04d0434438e6d4389 +DIST firefox-85.0-be.xpi 608193 BLAKE2B 7cc0ae3a712054d97678e020bc3cccdb2abe9cba14930fa1763a4fe6276e4498b321bd0343332dab4f34c0e86af69336e704264c6a7406c8a4b713aa6516a872 SHA512 05a78e6b22bace042c3328ec842484b83d21dbdcdc0eac7fefd51326faa73be01fa399ffc67cb1d712a02e28a4c2ff13ca427e6312e243b66e3e7750d8daa6fe +DIST firefox-85.0-bg.xpi 556201 BLAKE2B 9412d1a27360aed6eca6f6c07abce6f2fe9acd8cfb5ffeb8a09f36c9ce6d577b83130ef70247f19a890189b5ad3ed2c2281ce0299d3c21d7e27e10a90196dc46 SHA512 a1adf3c24970ba70e915652870454974e1c77e7bc15e8ae715bce01418be6091a58d8266adce2a4fd51ea78b16b306a5d24f7fc38e6ac4746beb7aa717f7a470 +DIST firefox-85.0-bn.xpi 573119 BLAKE2B 4289988a494b287a695b2230c4464dc29c917016f58549b7bf1a97e487695182c004765df85501b24d92a82c4fe99949c710d388394a9d6adaaa71a9b9e42242 SHA512 d1c0c6739e9b4b327203968c5fd6474c6618765eff230df67e24fb05c16e09cc99b85c3d0ff223f59a8a70b1eb254387b182d0a0a8df8495a11e8a9d53bd23ac +DIST firefox-85.0-br.xpi 513260 BLAKE2B 2c323c8c37a24d7d455a483502bcacf0b47f15197a89b5f83a3f02ce5daefa7b0598291a3afa2ee8d004554a50209f6d08b51f310738dc3cae45580f52da1ae9 SHA512 f171033515aa19d097ef78b73ad3a4f2c4c5b423a902c500c0747616f9387736204b28563e38462a40c8a8b62359a9597e103854473626ccab4ed1f5a5d835ca +DIST firefox-85.0-bs.xpi 465162 BLAKE2B 74ddc93d5a98ba5bcec84e48aae0abf19dc7c1850ea963016df80540e502236b8bea068fb1d99c29778bd7eefedce10e3c5f322660470f51857c3e9f6f4c12ce SHA512 bf60c52aad97258400bb9d1e05e29fd4ff0a1dceb98fec208bcb7cf2552aa5aa2c391bff582f97d335a70fb08ba49c97aac4a7262b82872e75820b8bea84fdf1 +DIST firefox-85.0-ca-valencia.xpi 526000 BLAKE2B f8abd2f090cd76282930b2a62f4b643e9aa7d796518acdc4e6e0349e8d0b3ec2cb1d636c996adef601e54455e4c42ce40e5ac2b059763e7aafe0afb62eb1e216 SHA512 b1ef2e57ec1dccef4e391d36ad177324df980d4d3c7022fd2465f3456b734f4fbeb36a591d50d5eee6888d693b133e99c25a46153b8af1dcf795921d9e53c41b +DIST firefox-85.0-ca.xpi 518602 BLAKE2B f77a4014018baf6ed3ae6fe5c38aa62d2537548d85655792e7144af32adaeb1329120d2f913ab857acda5633d9da8ff61fb8e0df32f7ccbe4744ee9e09f8e90c SHA512 52ec976fa318e8525710037f8c8906afa9418f72d093bf36f21819fd9d361b952c286f916c8de9c3c4b0905067d6a3080a4fe26a2bfc82704bf7f995df180ea9 +DIST firefox-85.0-cak.xpi 550451 BLAKE2B 5e4ab366a8231dadcf93a4c61c15c7f2da924428bc1c7fbd471f1b861c3550c7d08676931905b1bd3dff189f0f1b5f7e50fe0b54a59c7bf5b391648dce1facc3 SHA512 33a1a10db234bb95ebded6a57e40ac7ae472519a92e4b507fdce156b3c4de46cb01630458078cea49d367af3b3c6b224311a1a6b8e8836be2173194501008c52 +DIST firefox-85.0-cs.xpi 546377 BLAKE2B 9aa86b30dbfc0208204a9b5770fa43371855c1025b2fe70cbf4ee71287f48ba204eb10e903b901bee892ae68ae4bd9f132b4d491b67b55a5db65a0e2bc90bdab SHA512 cef60b20b77d9b32dbe041c0cd089950be0b4e30b060f19eadda7f342ca9d82584ca7262084a41ff13ab0f26ff1db832a6fbbd6a73449aba7135fa80c29fe5d5 +DIST firefox-85.0-cy.xpi 530145 BLAKE2B e24a0334bca415c30cfb69df838ccb1f2cc09720d435dd64382047e43d9bddd6c5e17b51d69ebd38d71e4f2717073ef0ba62c9559c7ea310bb6b2aaf1baf4c4a SHA512 e2c98f2a8bcb38a9bfe684234bdcc58a22f97175f55b5e64633787e3a2d606532c860f3c3ded7ba1916852cbbf6912bb87a6d673f911bf55ee56f9eda6890e84 +DIST firefox-85.0-da.xpi 522999 BLAKE2B a460f37876db5271dba54a7d58349e329ed1aa3e8ab324c423b436d3180caa8bd85428cba29616fde8f4378b72f851b59c68f83783b3d69a092c5c476ef5d289 SHA512 849f8a72701ceac3c2a83bbe36792a4f46f8ff12ec5534a1ac44dce7b7f0cf9d5946b09087263bac0df963eff1b0a5ac14a8397f16f49836d40a8a36e8ddd6bb +DIST firefox-85.0-de.xpi 542064 BLAKE2B 02a8d3a048bcff162c257ec794870f055df9db511356907baad7a5dcd7b589e312124cbb1f4b4a83ca9b7d7ddef8a93f78330900dd14f6e8796cd383700975b6 SHA512 797773ba21c6bd8c525ea856aac1adb1cafcfc35650caaac87b1c04f8641b1e750ee40e9b24783c3b532c2c7448bf8ec367e1d0aa3e297c5e3e3e2aadbac8e83 +DIST firefox-85.0-dsb.xpi 553450 BLAKE2B 6ad3fb40c4fc6d266dba237560fd5eb8940bb119b6580452c5fbdb172578f534c66e8f424e1a90b353927821bf20e38ec9c46f93b5b3b854f232b6db8283f3a4 SHA512 b861fac004a04ffad9a8e2c517dc9637f101e809dfd2ed055e8b6b570286c6c4b7e81550a46321118e9414368b92219ca80d299c92bc9471928d35fbf9ecb36e +DIST firefox-85.0-el.xpi 624869 BLAKE2B a505f69821f5af30aeb74d4be1637599d204d7ac1ea977b78b3aa31b55584b051d0ea341a6677eb93f03db15b9d3b9958d2d0454f30d91dd086c22cabe18deaa SHA512 783602bbffbeb9858556a2f8f66604b40bc8e307f4fe2bc4e7bba00b0c3b67a77a14f41c090734cc67cbb910c533327f54a82017ff03f53179787d9a881197e1 +DIST firefox-85.0-en-CA.xpi 494923 BLAKE2B 742ace1f202ab7a5c5fa0c494969276c448324e05e1b88f1c85bcc035fba44ad74717734e69439f0f2a744d272731e1d932b3b23ebf5c722ecaa66e42a5be5b8 SHA512 5e7b29de2e6f7e406033fa4962f9dd41b4e9a9fe5835cdc6c885e7959e90b2cf343d53f404451338704bb0ea5dc2b7ec6c05cbeeccb5a007b2ee6b7e53cdeab6 +DIST firefox-85.0-en-GB.xpi 499617 BLAKE2B d3269060af5b04fd78bd23ba48bb0a5e6d5bf6446c9aeaff08c307b074ad47eddf859c78a67babdf76a517540e61601da58f2f0ca05424fa8e2a0bab56fa15a8 SHA512 15248fa28e91adb7b7741ccdf05ca445da7c9876c9a25322416fde2bf5d350d2ddf8d69a733febfb2c2a85fbd95c69f132899d60c4413f0c89d7d01353cdb93f +DIST firefox-85.0-eo.xpi 523960 BLAKE2B 4d7002b9c7e2e8fd280da46268bd0642473367f309fe6cd1efd02ec95ebae46c1df7028d1b8d3d399580ba43198dc3070ca510694e5959c36c454b57b6e66ae4 SHA512 d626b6846a15df99d71a237b6eee13e076fdb780876082864cb34d008722ea91c529273f4ec80ede31a85cd66b7eeafcb77e6997212c139a70a231ca9bdd8eb4 +DIST firefox-85.0-es-AR.xpi 534745 BLAKE2B fdf355b50c601848acf97bfae5014b26840d81cc062667779efeb54b0aad931e88d3fd773d85f421ba51b9d52a9130983f922b20446eb009b1a010df6ee7b1b2 SHA512 15cd9781859d129b56006db48a29e52d3297ceb43c93039de3b0db837d5344dd8f57369c4d01701ce6b446d668915222006079daf6b5cfdad6adfd40f6edc730 +DIST firefox-85.0-es-CL.xpi 534349 BLAKE2B b248d6dcfd2daa4aefad4d3f6656996660bf3258a4924e50e08ee4f4b46dc5e253270d2c35e3c149c2c507280197c99a7799d7a3d5a7161a646b4822548be2ae SHA512 638eae49da4f8670c2594985ea997220bc24d71585203cbd018436303c051be8fce27564f51048a59b323c73b2945aea66d1c761f97d00c070bb0ec603ea9c7e +DIST firefox-85.0-es-ES.xpi 524309 BLAKE2B 0095ddb66ddda9d33d41005d0a1ca9c5371297b3ef4919cee1b7ae36b1b86373802f0b27297bcff7e0683531dde23ddde08384ac19298d9383f094db17b78827 SHA512 838709fff7f452ea805774d7f1b13ad0a49c394623317d8990bb7699e24d4815d37c29ae4afdd6669a890b93683727fb56618810d98c2bf25731a0f549850645 +DIST firefox-85.0-es-MX.xpi 538264 BLAKE2B a059be257f0197645400e3fb27b1bc5c9c1ac24aefc678f4d379562f8536b4736394d60266eb1e159bf1dbdc78d57ba9d3558b1c4dc835945656a394e0af0595 SHA512 104e76074609759fb290595c2e4b54e329fd4c4d65323f7a5a5c10d1d63d6bb8e772cff0b23b2a0efcde3d2f027d26a657f5346faefcc0597ca0b3c4e7679408 +DIST firefox-85.0-et.xpi 489794 BLAKE2B 39192284d88f19072eae940ae0a28649dd85bd81dcd99b6c994418aa5f0fa423d33053cee790629a37429ad570e2117eaf005c8de2202d44915b38fa8e50fd53 SHA512 ec929143cf7cd7ac36563f6677191190bb30767e14b08a630f45890902ed9fa56fbd7492c212196e773f4d937bd4e2cb90181ad4c72081bf7406a11fdd22b2b1 +DIST firefox-85.0-eu.xpi 515959 BLAKE2B 837c2443d5317ef80cf25351666aabd7a21d2e602c698435b0abcf1b143585c65cac42eafdac6b54aecca9875805953cfb0b47870910a43c1f1b1fcbff94a616 SHA512 a81cf3ea6791356c1ca40295d8f04bd8087710c0e621452c52df3b61da88cc9314daa146bc1eeba58cd27253d138deec931c8da941eaba534970994fe156283a +DIST firefox-85.0-fa.xpi 539457 BLAKE2B b1fb8f2dd2b863d6bc660a4c993a537d16ee9bb34f221e6a3163143016179b1e9e589af73a12907e6deeba73db9182d06b55cb562239c1316caea2fbe0687ee3 SHA512 971baffb397712a1790cec02e26b548559f977f153975274fb81f48ed959f3ae02780bd65e8988c3c4069797a236689c598e9c738094aec34a39aa9e7660c00f +DIST firefox-85.0-ff.xpi 483060 BLAKE2B 683bc89133a4acad83b58f8181cbfc53873a40d129f0004b4e756d1d86755075f6feb848ec09f883b29a4ddc06dc129aafb8347b6ae66ec7c449907ce074f8df SHA512 6e7a6b32582b7dc9c53e5c1c6434ab265e458ae4ed374f5af16da115bcc924c70c562790313e745d6c658dcb125be1c76441f5cb5266718d60fafe02c3b18e37 +DIST firefox-85.0-fi.xpi 521320 BLAKE2B 0318da7b3dfe12c925dd5c4d89400860921da4ff3eab34768377034a3d22efeea89ca961676c33a64b88ee8f01012c4ebe970b106e9ccbd0d8f4b5b2425230bb SHA512 78bd2d8ad77b778256cb9de2b0934d4d1d0636e59da1378207b7e832b263c2b69f295bfd2e8004fdef7ec62bca0acedd0d96b9f137d08d6e3ef1c0baa4a32941 +DIST firefox-85.0-fr.xpi 545681 BLAKE2B d71b2a254c38cab7d799cb354260968493b09750e8af9a0334b352e0405c7a52f82fa2c00a59abc89796cf4bc653a7c4c1abd01b99d94f2f18d14d5d486b0c5f SHA512 6e461df03c5af731622b85d87d90c6836347fbdec4e55649b15708566800a3438f3120d2e229056b042780e9412633afc671978a0b2d1a8be820b6c67b57d4a4 +DIST firefox-85.0-fy-NL.xpi 531413 BLAKE2B 69e64dee7033e281b78bdd96fec3e3828b5e62bf8b22f925d106d5b38bbf71e0f2dd239114db9bb5abc2fa5ae1dcae55eb88973535eab8c0afef44d5f4826840 SHA512 b2c6328126b67ed1a8f8bfddc743f5a9efb81a8ef6f2a4e3d77e1062334112c70fd74689405d9f9e660f35d80cd57024f3904524bb7845174e0ceeec84224988 +DIST firefox-85.0-ga-IE.xpi 466795 BLAKE2B 84acdd8185bccee04b0d13b7570d93c7c585f5413c5b030b923a338fa6e7b2e61a772690aba58f51f1d8f150f8207ad9ca787a3c31f49c5806f9e5b8f006db12 SHA512 166a0a891862a0d99cbadc1a137a959152756d3810f80add06982ace738f8e44a7fe3baf9c364789c9581255722ac06f570a5a6ab0dc19b125e7e51108bf25c7 +DIST firefox-85.0-gd.xpi 493280 BLAKE2B 56e30e66ca5d6e90dc0c49d5f066422c6972a1c8a53c0a972eab8f2ec7a7f6cd0111c9f832354d366d2b04a4d59716bd1389fe802fcb6e4d2080621e3d1665f4 SHA512 e6487baa214f155a68a5b3851ffa064ba893e616b2b0d4bda734be14f64df9fdc04b4f6ee2b864ae037d545ee0f66791532812ef2b3809c27efcd0cc4cde65f5 +DIST firefox-85.0-gl.xpi 529929 BLAKE2B 43496663eb96871fdb6aca530cd0719accbd98b4858ac1f946a55c96a1368159b2b07d4127ba3fb6dd0608d5da70b555237f5beafb163aa9f509c3f7b179bc30 SHA512 10824271e5fb871f62c871ee4a53d8b66d613eec50a41c8062ecedb48ff253bd2f5fbb8355e4f64c5a29fd58c0b53cd4bf1e8ee5aca4f11e707c5a03f75500af +DIST firefox-85.0-gn.xpi 545326 BLAKE2B 83a69bfd0229d201b72e6c217d9414934f3be7dee6b96e6d0df2c0cd86ddb107fe48fbe5a5a3fb54ff8eadbf4610032505bd05c55d0447f03a94a9d9f607d46f SHA512 eb4a3a5272404fc9e9385e976d4d724281b722dcedc6b5af3d76b3aa7dd3ec40da3c80778eb91a47c29057b9d608d46790e8bdcdd12889e523554697bd495271 +DIST firefox-85.0-gu-IN.xpi 541803 BLAKE2B eb021f35b4ca4bb4eadc29b8287a44de4bc7b2631a2721c83c794c51614012f4dba28615587acfde67b8d76eca422f2f67613a7b16367a492e89e935dc1d1465 SHA512 8e0b3740525a631e703698e85311ad62a27af271f0fc18a2919d5bde91219ab34ab1a72c61e6cf6ce565b0bf70eb8f6161f55347d9488940bb3f00b0c758fd02 +DIST firefox-85.0-he.xpi 546611 BLAKE2B 026cb54ec9e80546a74aff1819106f4834be99579f51891dfb878956d835d1f48e7734aa2781dcf1cd0e217ea236c810a7261c0a67ccaa2786a8eb4eaf6b531a SHA512 8432928a249f34c6d0928965dbeba0fbf75bb99e1a8888b02fb867490495630544eef9799cc31ee64842853c2d0251eebc4ae4ed50722d6e32f9ac6399b96a38 +DIST firefox-85.0-hi-IN.xpi 567420 BLAKE2B 671f72205c873cd3a1fc23d76bf18bbb1db431136ec5125e2174fc2cd3857f952865165a5a54b56663c2f27aa3445b3e2601ceee077ac02e6a9011d335cdc8dc SHA512 b73439d3b8cf4c27ea162cd44153627b2868334393c13656f2f97d35383178fa1c3aad317fc39b7cb75b952852931232e2770838e016ee2489df602d46b274f9 +DIST firefox-85.0-hr.xpi 528008 BLAKE2B 46008c6f437635ef8e59b3c8c202457957d95a119d201d0dd35497b6b6496abd5e55227c11b9507a99127f24cbc66985214785ae505f98491c9a9d7dc0cd365a SHA512 29c86d7b76a9b0499685302436b8c1a8b89ca32a4a1a431235cff67c3d8597af1bc590b092a1f48f77ffd312acf647137c5d9d73f217d7e38c9ca9027d641a90 +DIST firefox-85.0-hsb.xpi 550091 BLAKE2B 694cb0c88b502d849dd01460f8bf2fd0384b200aef12692c6eea283ae68d36e15c1fa715818056fac7361dc6ca6052058878fe4d4cae3328a3d104f0a375bb51 SHA512 e7d381f69730e92ea1c5381140df1f854c9f14410df99f7a9d769d7ca1be2a6170d1dabcb5d7263019b1a7e8dc4af0aefd7884c539ced0cb229e0a8e83416057 +DIST firefox-85.0-hu.xpi 553365 BLAKE2B fe10f7843dca913fc56efb052377bd16ab99d39b764f6372f5bd881a465500b873b0d24a4d70bc040f8e0751bd5187ed3599c2e6e00b9a5734595c0a64a6b242 SHA512 c9529c266082f66270ad5b8086cd1044890c5996fa2e8c658764623ff53d9373ecdbb542e9e2cc69fb4371edcd33a19c93b4774d16587cb824dde1b54437efa9 +DIST firefox-85.0-hy-AM.xpi 588299 BLAKE2B e5b35d248751b8acf2f6f4086775412806f28c93c0bbdcfcd0f57036687fa4adbcf7a65cb339b94a3af62fdff4576ee01ef8327b3aa86ab059d7472af1aaf047 SHA512 d32b8970bde8d88d52e1636aa96b6da40cac550a5b65f9611a22a0ab4fd76b04d926144f348c559b68792a27daaa4ad468596492b7a308333883fce14896e2c2 +DIST firefox-85.0-ia.xpi 520736 BLAKE2B b1b809dcd2ee64a2a9af5c5fd6df1d2390a22d49d93d91db01fbadf8fdfbc03f6ebfcd71901d4d239bf4fb03da393f5913ea584d595c8931befba8be72c11719 SHA512 b46a60d30070a81385d83da8eef0b7ed51a95fa75daba742a6e901a6bc1699cef2c0f030e3f0f8493074572ffcfe23141a8a62b19ca66bc1197e96e04b952f39 +DIST firefox-85.0-id.xpi 508468 BLAKE2B 37101701607e459f11080ecdbfc92bfd005dfb973bf213fdceae2b20feb1c3c96413263cf4f43269a3e79c1e32d8a414fa91487b152a166a9db1b17ba421901f SHA512 50e35e400898c189d863160bc00251d4319a4caf85c2358618fa35114351164fd4e133939de835a09fe6034a2c1ce77ddd5ba69e87b4d123f9c1ec748761b475 +DIST firefox-85.0-is.xpi 478565 BLAKE2B 80a3fa6db94ccf7f7069bb3cc155f1aede98340f6f1ff541154cde14ba39e164539adf70f97feef18f45d60738f58b1bf1ffabd39db675a53763f72a69274e6f SHA512 51681c774ff6272cb44b0e5202cf7a793213712307abb06b09b9a1977b3bfbad792e22380db3c928f87745ec1a0cfcb040dfa2ae94d1b60d6ae85929c4fd693b +DIST firefox-85.0-it.xpi 449085 BLAKE2B 5dd0e08cbb940ba965cdf4617b65f579e4204154e7e47f8b4e36f18ce768d3cf961b75897467d350ee78bf9ff3a263cf71b8094896a780cf32e6a568095169a8 SHA512 a54882253b46dad64cc4368ae08cd2beb5413820f7353cb6e50d9f8bd1b46e128dd70fabe29d209db5f752ce3e9f4efd229806454fb0ca9dd8c8c9dfde5a9d35 +DIST firefox-85.0-ja.xpi 579681 BLAKE2B 3bc18067b491ae726816b8554827e2e906dd35c9a06e255b398ca19d7c0fe713c11b5a109f4505425ef12edf9e5cf5036f9a626eb2a7a75277d1794a5486478d SHA512 c6890c4ee983e1bb05c4cbc5973554a16181ae5ebf131fdcc545f7c52d1a61cf226c7fa09269c24cb772b1a817230b48da7dc63a425fdadf052cf53b51fb7608 +DIST firefox-85.0-ka.xpi 580365 BLAKE2B a15e44007feaf0be57f597a0da56e77c9107e0104f81a266d7afa7a1e19d56d758920bad6cf1689e41a3f9d701f7409e6f75823f93a50b12645156158c2c255e SHA512 a774161eed3dae5b9029de32ece7e2c371550ac1731a40453538135ae6eb450c1a1fd2b1dd161073583ceed9fec4de6106dac6349d85a4f7066164d4048aae27 +DIST firefox-85.0-kab.xpi 539953 BLAKE2B da98f727cce0f235a1a021441773470601b5dd1d677c1d58a87ee9014827468e2f0ed422fb2550dbaa334638352d0da7e4bef4a645e5859bb481a6c1c7eddc61 SHA512 14ae839e05710c3646d53bb126d17a9ac233e0d810b2b18abbda5bfe1195a8155d1c39e03554c08211280903cdc38a80806c692be18c705b58bc91643321e4c8 +DIST firefox-85.0-kk.xpi 591588 BLAKE2B 5e3e15c20bfb5e12e939b00529652fb8fd7bcdf102c9fc25cbc2ccf0eb08496a057a9d17d7c3879f5268c17d08a84ccaf15ead9923525399428363210a52294c SHA512 f9b7ba5e143946c113ac7e7ab07b8d2cdebc32605bf570d58915bc9e82b3ed511d9676fa0a108cea6d3925f5e394a56f8ab02477f581e7b2bec254d9a1229cbb +DIST firefox-85.0-km.xpi 527195 BLAKE2B 1cf3afd58e8a702c71fa07cef881e20ac490f2f4d5f846887e44bc0d07c88e9afcc9b69749bff4dfbbcc76ed46c24e80a3abed6626cb2e7891aa02429c8d75d4 SHA512 9504379b9fc938df54ccb599e715bdb869f81dd0bc62ccb7c2780f66a92bd88f20783daddc375a2a720ce70ed4255884d42a455884f829978ac881fc729ad41a +DIST firefox-85.0-kn.xpi 505553 BLAKE2B d6ea1ed1175c8cfc836605a2c5ce93bb8cc8e5954e652fb07d1a578c46ae4a5cb435b7d6f9ee2cdea7384042bab5ef62dc5a139b8c4b201832b52913498b8de8 SHA512 e73dc38c1e3bb5571960d2959e3ec25757028b12aa489edf8e6ad0d6dd48813aa471cf12a2658c2f0e13ff6297a605ff0d520af0232081d519e57bc984de8502 +DIST firefox-85.0-ko.xpi 565816 BLAKE2B 6f71032498f3eef34db86f4721263e5bbd3c8466e37b6c716650fbbaa5211530db4ef13db04080b0754aa025b34a62656ad78cc6d4505df8c5fb09dfaf8c9fd7 SHA512 ca0c85b1d02c0c6aa15a8c66195c49c8f9d3d7bf6c5f11bfb71b1eda3381aa4f44ff3f8ae28c68702cca2b008a3a553fea87e66e4b646c4b39f582b1bf213a7c +DIST firefox-85.0-lij.xpi 476943 BLAKE2B 4de7cb46af3d03a342cf4ff5b34abd20ddd59c46db8cf0aed8094ea484e8d120f2f08b7816678024fe8b3545a51095c80168280a98559899b397ea370dc24000 SHA512 6792da8f0ba9619802d6e34bda8f8a5c689ceca007223ac75af3c6908234daa49b9c9de6377248f5208f9bb95788b576283af12bd6e40bcd8e680d133ab318ac +DIST firefox-85.0-lt.xpi 548690 BLAKE2B a638b1c96b84c7da39a67aecd9d6296ff7fca6b405382ec821c5ff894f1daae7c18d4c5cb95242f9b66ea1dea4f70ade8d40364f437479ccf94d0788704549a7 SHA512 b0a7f9676985577dad8a939bd1c913d094b0ea1800d066eb431300847944b5ec16f8c652c8a8d71f4907bdd45312bf6dc25c1e25af85ceb01c6a42ec326c2a49 +DIST firefox-85.0-lv.xpi 470594 BLAKE2B fbf52f802ef81efa7276bda30ac53e43bb86b592b9851993fbcd165fec08993d22c884bc7b764876a2671ac80de6ae3e764bd1da181c2f75369d6c207f9f5ebb SHA512 2e1f406fe2b515c8beac4aa228ea18a13551d4b7b869df1457bdb03d70ab4d100e01783438ad1afa9508773f81ad4ac66c368703bc2b729660709cc086315f59 +DIST firefox-85.0-mk.xpi 458755 BLAKE2B 50cd592aa8e373ec70ee4204c2f4327ce8a9fc947bd5d80535a477c7bef94a42b8da0954bebb1ad570d238c190bc30c27763d3eccc2f2b82ad0224a7f10b9a3b SHA512 37d0b35f82b812c35d594163e72bd0303a30e317bda58cdefab55308c85f8e87696df0e63a1aa97d0035618f7a392f4c779eeee7fde3c39e4d19d9cf0dcdcf42 +DIST firefox-85.0-mr.xpi 541702 BLAKE2B ba45eb55b77b6013540263492c6ffa3bd9d8033020ff1a84ade2f308907ca364312dff27de317b0ce9d39516977317a16ee0f6e8e3d584c35c37897098d789e1 SHA512 ccd49254580468bf18eec2649b53baccb0aaadc6ee549d4b5c8808b4ebcca204d62531d88ca819b816ce64a2b91e704b62d708b3f5021c94245353277f2ef8af +DIST firefox-85.0-ms.xpi 454619 BLAKE2B 09c49b0dbe555615fce54b518b48545ff1cd2a9cd4af107f14a06ba31f8ac76d1f5a4bb20675beb368c62982d890ea8cc681d33c89acde7e4a545b22a1a8b9a7 SHA512 6ad069b8c7cafd3cee70e1529c86a0f91593c6b3c47fa78de70e927913d784d71aacd35ea7286ba03fc9382ba7dabf86b1d579a8f359fa21522349d697f5dc2b +DIST firefox-85.0-my.xpi 525376 BLAKE2B 027f463e914c1c950d7a343a258d0be64f1c1b4b5c20efeeeba34fa209cfd22a68e40596db314fdff89a264553cfe5a34a5ed73cc2cf8bea38160698fbe9b94b SHA512 65461bd07e7117edab0f6e603c9dafe58716a8b340f6e8db6430fbc5045584c49beea5b06ef02bf1a90d30440ff75596e0538506a6136d368116838224ccbb23 +DIST firefox-85.0-nb-NO.xpi 517675 BLAKE2B 9a3d3e9fa5decf6cb65483303d87842910e111579867b3c6fdb47184880ca9bc92c001e10d672c8744a494dd1d7d9cd36a45d5db5864eae6523a189b98370c5c SHA512 052088087a8decba9d256af74d5519344be41a81e6c103f3a44923f943bce41ee0220a6a9b506bc2611df3f945d9c7200152ddda3b8fdfb08db1093bf675c557 +DIST firefox-85.0-ne-NP.xpi 482299 BLAKE2B 7c1e97eecac8817529fbd729387b3d00bb594e878d1bf4c81c3b9e09c459fb307ecc9dfe815627eb4901cce3c66eac749351e20fb8e82ac9a0eb85299e726908 SHA512 3b62455320af12d8c30380ee21374ac8e72d4a76896538f10452e8a0757d7c7f2ee64a4cb54ff0a8b553d5a08a29b12f4ccea07a600c910271c4963a9c1758bc +DIST firefox-85.0-nl.xpi 525217 BLAKE2B a9406856cdc4a5b4a07d9e5721b046b2724a4f23cbf2771d43803fb57c4073a801459642544ac4042ab05e8d895e40dc8c93b6992cb5e3355a145a03ef9dae69 SHA512 5aaed37f8374cc874ae60ddfd8ff37ae4df8595d66ce8ef792eb5a308e9edacca3d4c3c85be8e28335a6aa5c818285c1d06ec331ea6a80767af2a9dd2faaaa07 +DIST firefox-85.0-nn-NO.xpi 517429 BLAKE2B 5905d11ee1b824646a87e0e1954551de038101f76eba19ca71a91831306eb67f35f926c18642caf768515cab2e86db8d1fffd6dc3847004bee102d6ad26f5579 SHA512 90bccb9a274d087b9e3507bc4c87e4f350f98281dc9086d35a68659ba2363c950c50a6297de3a4d7adcba14f2a08047a24626ba6cbdd1f62d5bdfe27238e3243 +DIST firefox-85.0-oc.xpi 541157 BLAKE2B 2ad3b8ab37495406ad0de5e652376f3db7bb8efe61f82b48ce2f59a8c6553d912b1a9056f8f4688303fc9d29108521a40abc5a89cd248cfa17754c9cf4d4cd2f SHA512 d11499da6e10b7ecf30100918a305c736374d51f388c4f7b48e363b92c9e8f75a5f72d10ceb9f758641a3a05da153559ba7736b18b8f7d8299dbb69712aedb0b +DIST firefox-85.0-pa-IN.xpi 587114 BLAKE2B e0af79edb653a12d8047d2fec88ded28a04be11eab061a4ccecce5ed0a0d7c1f94bc0d7dda900f317e6ae8816061b3701f3ec8956248e1aaffd8057d67b5b8f3 SHA512 6a4680ab8d6ea99e98b331b7fd5397b03cc950c6512f9691c889d45ac5ae8c771ccee4df7ade62a65fc4cb0a14b6e5354f4a0a6b5658084ba28964979ed9ec29 +DIST firefox-85.0-pl.xpi 544480 BLAKE2B cfcae877b80fedc37b6c8b225044c25a496a2073c6c2b372e165cffc102128312d4b412eb6f0e859bdc7dffe638d93ed32104d72dd5d53fea4f024d75d99fc36 SHA512 a868c627fb425890d9fc56f3ffc8df64c967b17b8e37c6ee27a72f1f3edf7c40f7cc9b8fc220714304584f4d5db3b34f4d33f141b4ef9457ce0b3ba3618b2cfe +DIST firefox-85.0-pt-BR.xpi 528210 BLAKE2B fdf51f54dd396c8d462f65fcf5159573fe2b5100c6bc4e18ff9446da5586e6e85f697c9c45a6ca1a6522fba7afc05b170cba923b179845cbe522fa14c750081b SHA512 1a9323b9cbc63c9344e47d1c5fd815e2e35acfee067c1f552247f5620f3eb386c4d80187390900683b616a542af40b0187599070aa4123eb1241a41fa782dfb0 +DIST firefox-85.0-pt-PT.xpi 534510 BLAKE2B 946c68118a8f3886e156c26cc4fb621af53e65a3191711a75acaa0340b883bb65803e5754b262a1c044c2b3945834aeb70577a0ba986225dfd1c6ee0665fba46 SHA512 add8647fbaad86f60facf75d75fc14c40147fe0aa1d4dd597cc59a30396efe5e346f404995fd7a910049cbad59d52e4766c64bea3e3474fa163bfae51ffba76e +DIST firefox-85.0-rm.xpi 525922 BLAKE2B 42d6fae51d3af1f0da07f20a4dc75a197a9872074538e22cdb326b772f5addd09c70deb30fad5f01ccd048bf3540d60f56284cdfb941ac46a8b720c723c3c614 SHA512 35638b188269b6b99978b3100f79e905976fc290e8b3ccfdf6608ded90813907c78b26732e89ddf7baba0e9a85b977c332d7218d10568e3abff6b711a5156584 +DIST firefox-85.0-ro.xpi 532837 BLAKE2B 2d9000e156b153273996f530dd7f3408d663716d66064075ba667eaecaf7a2c721aff82569a63d9c5500961eddf9b9df2c1b42b8b87affc25c63237d1064a9c9 SHA512 1b93107e760e0f0795fb2b70fd828119b427b44a1c485dbcf6c37fdb762d423e83bf06f5628813329b5df3d9b0d985e4210815aa99503f6dd203c33935d38504 +DIST firefox-85.0-ru.xpi 613677 BLAKE2B 874ff1efec06286d384972b509e0d54450e90c0f87571980489c37f07ddd66ee2cf2a8622f57dfc1021e34b3562588f369925573c22d1dd997a52ea1e041958a SHA512 a467bc92572128dc61d2ec40034fa17e3cbd6f800ecd54fe23d4b82830e75bea74043eb5b05e55880977eafc92ea4c7ef6975a5e76830f8b928d68ca9c9ebd46 +DIST firefox-85.0-si.xpi 491873 BLAKE2B 51910d2c2cf22cdd8140b5ad055bde311a2dc52098524ffba84ce3acb00d0b4cd8eafdf6c2bf150bf883137a39e42b34bdd3a14deacaa87ea850fa322ccfbaf8 SHA512 132fd189994683ed72722d32c1b8f2bddde7f3065b3a307a7161ba0f4568618a613a70a07033bd2f7647c2f4482c8341141304aa303ef28ddda8e3756db000a6 +DIST firefox-85.0-sk.xpi 540855 BLAKE2B b0259b4179c9d9babfd6898c59ae17e90b37e6e420877551b9ebad88564b0b8ef47a5a5657c11b907ed880621763639b782471c2eb0720974c980e4f168ee6dd SHA512 452630f324f6191f42e354fac7dd392f896266ec6d7d9e3eae157b9ee775ae03c1c03399b097f22349386d12527a33c17633ddfa5f615c2d27092655c3308ef0 +DIST firefox-85.0-sl.xpi 522716 BLAKE2B 9a02c647cffb82bde3872b5189b5913bf188c3d6c37f446e1bad0b31cf0b141d4aa58bb797996f8c667ddaf75bb7c4ebad5b1d27e3c644e1405e49c865015f56 SHA512 67a30de17626ecc98bcd081e2ff1500bfd4d4ccbe39a1f6699acacfad989b5c7a5e49516ba07e33cc03068db5eb304a6f5a4900ce53086cad21e6a04ca3b29f1 +DIST firefox-85.0-son.xpi 424307 BLAKE2B 9d648b9e56cd89ada26761e2fa7a010a3581cce7a26295e6b73d7566a27d73de66ba78010d228f7587a39b866a518d7b0e5ebccdd2796a5e8700ab513aa80ceb SHA512 d5461bed66690e8fc9bae22c6f15f3e70dc3b7b754dcfbcf010e3c359b1c7d4993dfcca7363e83f5b153137227b91c6e7ac95615870c2723292fd3f2a387e246 +DIST firefox-85.0-sq.xpi 542615 BLAKE2B 738d9c6b69b63d99168253da0090e8de95db7086f51855f666865b45c39cab9ad19ffc1e50aeb60217964d99795f300d8ba737e6b979cc4ae2ae109ac2e44386 SHA512 5760d7084482aae6d858886937332b0efa333111dc60fe2af2a931e69bd98b9f5d9cac4d0ffa23601584c453aee0810188020308c47ab3a6f340f5720758caac +DIST firefox-85.0-sr.xpi 570456 BLAKE2B 87c08aca9bfbd1ee70ffa015136226b7ce688df9033e8106ade187de43c5497a232ddcfc20e5f8296049800afa917b3497beb7a5049d95ba5f41dda878ec0a55 SHA512 f9954bdc98d0235580a08d69f075dc8f8a6294dbf7cb7ccdab4da72ea8845d5dd4d1beda5c9f4829151d9445d61e1949b6e89f1497fc1d277ca6e816ef165466 +DIST firefox-85.0-sv-SE.xpi 528662 BLAKE2B c1c10626ba6e3ede6a97ad0113bfc98a1a14fcfaf25c4e97ba566f0b6d210104f98a8c364ff594ff786ddf4d2894d72b3c7b3d3f06b22af2381e2da38a2e752f SHA512 99e89d17105dcfb92952e08a78d1d7482641b6086a3cc19b3aef6888114e5432f9927f60562f9deb2a0d0a55ebbd9b373621cc16b4b8aae4e903dfdf515e0f09 +DIST firefox-85.0-ta.xpi 521337 BLAKE2B 613e05d61887b72273c0c05191c9bac72e96f52ad99c83a83ce6decf7ef6908fe67a7fb49157aae982ed0c49c161df2d2f3d643ebe62ca96668b64343c4b99da SHA512 063148bdbb8771470859075c35d7742497c0a99faee5a6eebe249a2b7b92a2beb04d7fe4e29767b8f2b04a4556d09467a6bb0420786f8638c3ec22dd8ce0b6ee +DIST firefox-85.0-te.xpi 558654 BLAKE2B a8545af0b997bbe0a116f6842530be7710395a1a138fb0b445e0942db712ddd6eacb43e655172d5aed996993c7af578637c6b441116188dd1ed1718fd3dab14a SHA512 7d0759dd99b06d92eec16a5c4e3160a0db449c0073830e9a0169dc49b15259ae2ccbfda1c7d8a5eded33b1e82b80bbf8cacfb3e0f7a551d19e4632039db20523 +DIST firefox-85.0-th.xpi 593146 BLAKE2B 6181084554784b28a7c2f1e65bf207b62eee17802f4b35a988be83807558f4eff351633b072d0d9476905782a06d3c97661108476e5f1d3d15661abad5867a3b SHA512 efec2e911595580c3583ddfcdbfb99863500e8a739d89a684876256215febb5a9ae062a5dd58aa082848c4df5651cec1a33fc6854ffec3755b56a85ed34d864f +DIST firefox-85.0-tl.xpi 518995 BLAKE2B 7d2452239d651e08414642b1e6d7609e297715f7955c22b92655c869c361809c24d8706cc7cfb439835616751ec9f899ebce55efa916959b5c6ea69666b8ac38 SHA512 54a538432264829c4446e1b12f2a5217bc7a85812b41ecf10ebcb47308a124893ac0e41bbde9fe32de2b999524341fc0bef82766e2b9707dbe34c421ec068e4c +DIST firefox-85.0-tr.xpi 538940 BLAKE2B e29061ee14a90c9f981842f599d392b09265d99667134d4659d2c8f8ae0b892e93d02351e8516b6d486d8c8d022a819e234a5274bb0104d258799674536c6b94 SHA512 435b2c72900aa9375b1ce5d47ce18c8984996faf3d64e408d61a77c37f9dc0b3944298e5a3faf1e0b9c3a3182f656289cd449cd689f912ee83d8c07a6ad05b0d +DIST firefox-85.0-trs.xpi 500683 BLAKE2B d2039e6e0a9229693848e292e31077549ba54da7d0d73cff2308503b82db77d19231d17521f4479fff4de454aff8da811973d4f0145b4c87e83a4be5fc05b298 SHA512 237697164d19d0220223a0f53a298266d07a55ba715c9aacc17b365dbb0a9e8584a074be63d07b5aa481554e2f4a51b905c241c5737e531dd3d7f63604997d6f +DIST firefox-85.0-uk.xpi 607237 BLAKE2B ec7992cd261a85984c7c5a8b0728eed3732dbe3e23e6c0cc603946b7086ab050733ac92bac270f78952454d47f921594091727f28c7fed42fc4402b99ef0c7ed SHA512 1b9da0099e5f0e5a595f2f0eca975371e70da4709661aef48cb91f842892124b6d13e31dcab991ce5ed9afb3a60c84ff3beffc162aab788dfd4ad1f746d91682 +DIST firefox-85.0-ur.xpi 562130 BLAKE2B e1ad66ed73f189c89b0d7255c9559db8d9b6b0234244c5d381f64dd6431498e03388b984dd99e4b8456fa290b4b69bc52c54304f2accb2a2f3a2d12db74f19eb SHA512 9351dc155699842b4e1d3beb0ca9bf838bb4db01144bc8455e52c237ed889dc9b452bf2e06f4e8008f81fe0204d30aae19955b2359ee19a734eaaee7984aa2c9 +DIST firefox-85.0-uz.xpi 477244 BLAKE2B bc400dcb87548d62650b30478c9a0e6657a02e43b8eff88be13a15ce3e79b2bb2b4499e530c46373333615e9da4d597d8dfa9440f47ef12ec4846402061c6fb9 SHA512 c35cbaae6d77d66814886e1029c009f8e15149de8cd1220cb3cef9f7061614da75a40444c01770f6b985a7fd9ad5a4efcbc8c8fe586e797b8c80c82af910dce0 +DIST firefox-85.0-vi.xpi 562148 BLAKE2B 737c4770ff20395ba6f34b570662d0f576f4d420c9fcdac5a0c0696fd105a7fb8ee0f8a96152e4f2f6c41de0994dfcfc21bcb63bf1350c949c473f98154c5755 SHA512 de507a837dcdbf546722d821de816819bf22d2ce99c84850b327857c9cbd58d5cc3fca1aee1d189bd284f852d129a8ff1f16aa8e64faa1c5ee317c85cfaadb4a +DIST firefox-85.0-xh.xpi 426481 BLAKE2B 27ecada17b6c97f5733de5f13afb504fe0c5b29e51504ecbf77e999c6fe1f1d63771bcc5ce11a03ba4f89bb3d0528dfed92e66e7a2053344280c8553d8876032 SHA512 330a2b8740747ed8f1e89a6ba179a938d21c5683e923b62c32adad23ececebeeaff31a64d2a407ce806c93f73ad40236864da621cf4129dfe48264689bcb2576 +DIST firefox-85.0-zh-CN.xpi 563314 BLAKE2B a42dd3dbf51d3afc89044b65af505073c83436616ae1b7d2cc2c56499863b808a021044b707a625cc38288f6fd783cb09e78d5c62a101e38fc8c28f395803862 SHA512 2d1a31867823982e967339cce69f3d95916eabf25af4417d9b2fbd92bc7db16bd9b988e6e50d1b7990cb205a08761bf8023bce686a74cecf5b4d458f8845892b +DIST firefox-85.0-zh-TW.xpi 563119 BLAKE2B 25fd2e8d62ff8302df955201ff7823dec6b8f1f2201c38545673e62943f05ccc27bcb68b719830a4b7970c8063cf5d6ef6b693cccfa6057cdf202c6626817e43 SHA512 a982be2de34d8d417dc7043c6066d5ebcfe72381902a0dd9d4bc7240ace75c00f8a1e211f4ac8206b07e38c654247e62f256ac6774bff55f2fd45053c7e2ba73 DIST firefox-bin_i686-78.6.1.tar.bz2 72953856 BLAKE2B 91ea8306ff1d1e5c8dfae4eef17f231189cebfb3f1f403bf08add20660c3b6200c829753e32ba555d263d3e54493e00559e42aef4967a8cd1072d6f153df4ecf SHA512 aeac79f8bceef15e1f05d95626f328f095b4bd8098b99da0d9991e9bc93c30fd2f7e331190174415aba58f3588b49a944b0dd0f4f3015b2e57c9cd286a5d7ad1 +DIST firefox-bin_i686-78.7.0.tar.bz2 73072387 BLAKE2B 6989b734629018a336880a94fc705b3cb0eb3e5d11eb35e9143c524223cef4d5222b4b525561d35aebd93777f58e4e1b9a766c065f30efbbf6dd31cc102b822d SHA512 1edcd2236f18688982868d2030c86ef6b82f25c1a4d5bbf4b821118fa86d1cc68d3ad1ec4fd5a74902563b7a0a00d481805498763bc045fdf56ea9c210801d9d DIST firefox-bin_i686-84.0.2.tar.bz2 78974119 BLAKE2B 21055c31675c4e4e819e0f430f68470f18d0df117e499db8fcc3b6d5cfc3c2d8ff1bb7e374d74c12a6399276c8c064aadff072434e093eafae14fc97c44e7a3e SHA512 08907992bcd2edad49a2a30b04b479efe799a4d7a8c1c0171e8be8f99f5b0999bd2ee4b45321867e2b40b4bec3df9cbda8a4cceb8dc1c14bdd8b232e0df408c7 +DIST firefox-bin_i686-85.0.tar.bz2 76717220 BLAKE2B 613f3c6b5e8fc6d63ef7f6cd082a3d2fbf8ebb415bd6a562641c12af1511b48931d617ed5aa9f8a79a1aa46624ff036ba3a7693516f009db20567be9b52487f5 SHA512 1dc6ca3b3753f5125878f546956e5b40718cdc7372830492aeccc2a5a5a589815b123738928238cf3223942e559934d24cb0ad80e6c84a9f078aebe57abfcb13 DIST firefox-bin_x86_64-78.6.1.tar.bz2 70889657 BLAKE2B b6f9e358e7bcca29b4ba08abac9efcc86687278934a43552fb47ec3a24029a43b29212f3e1c243ee7941e66ff6725af69fea927cb0e07f01a1c0700fcfd2bc8d SHA512 f53c653894691da5f6bd09085c454fd8c2791e7a903aa4ab8381b033a25a7e2630c90caef33d5ef51d7b54049ae4b83c52b59636ede2bb83060333504b600d08 +DIST firefox-bin_x86_64-78.7.0.tar.bz2 71107110 BLAKE2B 6f2582e1b516d2ac6c240a451631b0c182b6502b69b54894d1fb2ae5a3a1f131906c3f1b6cf2acea3e0d3e6946494b9efdfff5d9f7d24a4cb2a19cd2d25326e6 SHA512 e7344ece56411efb6dae77ecd04eab91b7717dec75f01f200ec413a7c9d7a3ebf0adf827b77f437f1c0a7a0191cbc122ac2be4432c840d59566b81dc3b69ef57 DIST firefox-bin_x86_64-84.0.2.tar.bz2 76303870 BLAKE2B 53419a4a7ddafb0fd88120da72ba1f316af629fd3b2dfa00b220459b4c1de821a02ecaa898927ee713061c6ec0073414a36e6ed16c51bc5f69de9c28ade52fcb SHA512 bcd3b11f5f96a9e9809a72e164f35c32664a9b624dd1c87017e0331693737b003d24ae887eb04963865ffbf2873a9a0f396840e6d825401be95ee0741690cddb +DIST firefox-bin_x86_64-85.0.tar.bz2 73677428 BLAKE2B 737600426eae8cd1ca0f1a46950c075099fbd6f399839a259f36227c7a863fa890701a2ca42a5d2c0450f1ee30820fccd3d2ca33a483009fd193fb5c9144e9be SHA512 56b5ddf6f0e1918c1f1d30e1c640f7f4c4ff92d2901e47074e8c88898599d2f12e13b9a4889c7ad044556b0e9da971014aedff423eb9b0177b914f1f67241e26 diff --git a/www-client/firefox-bin/firefox-bin-78.7.0.ebuild b/www-client/firefox-bin/firefox-bin-78.7.0.ebuild new file mode 100644 index 000000000000..ec5fd743a588 --- /dev/null +++ b/www-client/firefox-bin/firefox-bin-78.7.0.ebuild @@ -0,0 +1,411 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MOZ_ESR=yes + +MOZ_PV=${PV} +MOZ_PV_SUFFIX= +if [[ ${PV} =~ (_(alpha|beta|rc).*)$ ]] ; then + MOZ_PV_SUFFIX=${BASH_REMATCH[1]} + + # Convert the ebuild version to the upstream Mozilla version + MOZ_PV="${MOZ_PV/_alpha/a}" # Handle alpha for SRC_URI + MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI + MOZ_PV="${MOZ_PV%%_rc*}" # Handle rc for SRC_URI +fi + +if [[ -n ${MOZ_ESR} ]] ; then + # ESR releases have slightly different version numbers + MOZ_PV="${MOZ_PV}esr" +fi + +MOZ_PN="${PN%-bin}" +MOZ_P="${MOZ_PN}-${MOZ_PV}" +MOZ_PV_DISTFILES="${MOZ_PV}${MOZ_PV_SUFFIX}" +MOZ_P_DISTFILES="${MOZ_PN}-${MOZ_PV_DISTFILES}" + +inherit desktop pax-utils xdg + +MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" + +SRC_URI="amd64? ( ${MOZ_SRC_BASE_URI}/linux-x86_64/en-US/${MOZ_P}.tar.bz2 -> ${PN}_x86_64-${PV}.tar.bz2 ) + x86? ( ${MOZ_SRC_BASE_URI}/linux-i686/en-US/${MOZ_P}.tar.bz2 -> ${PN}_i686-${PV}.tar.bz2 )" + +DESCRIPTION="Firefox Web Browser" +HOMEPAGE="https://www.mozilla.com/firefox" + +KEYWORDS="-* amd64 x86" +SLOT="0/esr$(ver_cut 1)" +LICENSE="MPL-2.0 GPL-2 LGPL-2.1" +IUSE="+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux wayland" + +RESTRICT="strip" + +BDEPEND="app-arch/unzip + alsa? ( + !pulseaudio? ( + dev-util/patchelf + ) + )" + +CDEPEND="alsa? ( + !pulseaudio? ( + media-sound/apulse + ) + )" + +DEPEND="${CDEPEND}" + +RDEPEND="${CDEPEND} + dev-libs/atk + dev-libs/dbus-glib + >=dev-libs/glib-2.26:2 + media-libs/fontconfig + >=media-libs/freetype-2.4.10 + sys-apps/dbus + virtual/freedesktop-icon-theme + >=x11-libs/cairo-1.10[X] + x11-libs/gdk-pixbuf + >=x11-libs/gtk+-2.18:2 + >=x11-libs/gtk+-3.11:3[wayland?] + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXrender + x11-libs/libXt + >=x11-libs/pango-1.22.0 + ffmpeg? ( media-video/ffmpeg ) + pulseaudio? ( media-sound/pulseaudio ) + selinux? ( sec-policy/selinux-mozilla ) +" + +QA_PREBUILT="opt/${MOZ_PN}/*" + +# Allow MOZ_GMP_PLUGIN_LIST to be set in an eclass or +# overridden in the enviromnent (advanced hackers only) +if [[ -z "${MOZ_GMP_PLUGIN_LIST+set}" ]] ; then + MOZ_GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm ) +fi + +MOZ_LANGS=( + ach af an ar ast az be bg bn br bs ca-valencia ca cak cs cy + da de dsb el en-CA en-GB en-US eo es-AR es-CL es-ES es-MX et eu + fa ff fi fr fy-NL ga-IE gd gl gn gu-IN he hi-IN hr hsb hu hy-AM + ia id is it ja ka kab kk km kn ko lij lt lv mk mr ms my + nb-NO ne-NP nl nn-NO oc pa-IN pl pt-BR pt-PT rm ro ru + si sk sl son sq sr sv-SE ta te th tl tr trs uk ur uz vi + xh zh-CN zh-TW +) + +mozilla_set_globals() { + # https://bugs.gentoo.org/587334 + local MOZ_TOO_REGIONALIZED_FOR_L10N=( + fy-NL ga-IE gu-IN hi-IN hy-AM nb-NO ne-NP nn-NO pa-IN sv-SE + ) + + local lang xflag + for lang in "${MOZ_LANGS[@]}" ; do + # en and en_US are handled internally + if [[ ${lang} == en ]] || [[ ${lang} == en-US ]] ; then + continue + fi + + # strip region subtag if $lang is in the list + if has ${lang} "${MOZ_TOO_REGIONALIZED_FOR_L10N[@]}" ; then + xflag=${lang%%-*} + else + xflag=${lang} + fi + + SRC_URI+=" l10n_${xflag/[_@]/-}? (" + SRC_URI+=" ${MOZ_SRC_BASE_URI}/linux-x86_64/xpi/${lang}.xpi -> ${MOZ_P_DISTFILES}-${lang}.xpi" + SRC_URI+=" )" + IUSE+=" l10n_${xflag/[_@]/-}" + done +} +mozilla_set_globals + +moz_install_xpi() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 2 ]] ; then + die "${FUNCNAME} requires at least two arguments" + fi + + local DESTDIR=${1} + shift + + insinto "${DESTDIR}" + + local emid xpi_file xpi_tmp_dir + for xpi_file in "${@}" ; do + emid= + xpi_tmp_dir=$(mktemp -d --tmpdir="${T}") + + # Unpack XPI + unzip -qq "${xpi_file}" -d "${xpi_tmp_dir}" || die + + # Determine extension ID + if [[ -f "${xpi_tmp_dir}/install.rdf" ]] ; then + emid=$(sed -n -e '/install-manifest/,$ { /em:id/!d; s/.*[\">]\([^\"<>]*\)[\"<].*/\1/; p; q }' "${xpi_tmp_dir}/install.rdf") + [[ -z "${emid}" ]] && die "failed to determine extension id from install.rdf" + elif [[ -f "${xpi_tmp_dir}/manifest.json" ]] ; then + emid=$(sed -n -e 's/.*"id": "\([^"]*\)".*/\1/p' "${xpi_tmp_dir}/manifest.json") + [[ -z "${emid}" ]] && die "failed to determine extension id from manifest.json" + else + die "failed to determine extension id" + fi + + einfo "Installing ${emid}.xpi into ${ED}${DESTDIR} ..." + newins "${xpi_file}" "${emid}.xpi" + done +} + +src_unpack() { + local _lp_dir="${WORKDIR}/language_packs" + local _src_file + + mkdir "${S}" || die + + if [[ ! -d "${_lp_dir}" ]] ; then + mkdir "${_lp_dir}" || die + fi + + for _src_file in ${A} ; do + if [[ ${_src_file} == *.xpi ]]; then + cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" + else + MY_SRC_FILE=${_src_file} + fi + done +} + +src_install() { + # Set MOZILLA_FIVE_HOME + local MOZILLA_FIVE_HOME="/opt/${MOZ_PN}" + + dodir /opt + pushd "${ED}"/opt &>/dev/null || die + unpack "${MY_SRC_FILE}" + popd &>/dev/null || die + + pax-mark m \ + "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN} \ + "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN}-bin \ + "${ED}${MOZILLA_FIVE_HOME}"/plugin-container + + # Patch alsa support + local apulselib= + if use alsa && ! use pulseaudio ; then + apulselib="${EPREFIX}/usr/$(get_libdir)/apulse" + patchelf --set-rpath "${apulselib}" "${ED}${MOZILLA_FIVE_HOME}/libxul.so" || die + fi + + # Install policy (currently only used to disable application updates) + insinto "${MOZILLA_FIVE_HOME}/distribution" + newins "${FILESDIR}"/disable-auto-update.policy.json policies.json + + # Install system-wide preferences + local PREFS_DIR="${MOZILLA_FIVE_HOME}/browser/defaults/preferences" + insinto "${PREFS_DIR}" + newins "${FILESDIR}"/gentoo-default-prefs.js all-gentoo.js + + local GENTOO_PREFS="${ED}${PREFS_DIR}/all-gentoo.js" + + if ! use gmp-autoupdate ; then + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + einfo "Disabling auto-update for ${plugin} plugin ..." + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to disable autoupdate for ${plugin} media plugin" + pref("media.${plugin}.autoupdate", false); + EOF + done + fi + + # Install language packs + local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name '*.xpi') ) + if [[ -n "${langpacks}" ]] ; then + moz_install_xpi "${MOZILLA_FIVE_HOME}/distribution/extensions" "${langpacks[@]}" + fi + + # Install icons + local icon_srcdir="${ED}/${MOZILLA_FIVE_HOME}/browser/chrome/icons/default" + local icon_symbolic_file="${FILESDIR}/firefox-symbolic.svg" + + insinto /usr/share/icons/hicolor/symbolic/apps + newins "${icon_symbolic_file}" ${PN}-symbolic.svg + + local icon size + for icon in "${icon_srcdir}"/default*.png ; do + size=${icon%.png} + size=${size##*/default} + + if [[ ${size} -eq 48 ]] ; then + newicon "${icon}" ${PN}.png + fi + + newicon -s ${size} "${icon}" ${PN}.png + done + + # Install menus + local wrapper_wayland="${PN}-wayland.sh" + local wrapper_x11="${PN}-x11.sh" + local desktop_file="${FILESDIR}/${PN}-r2.desktop" + local display_protocols="auto X11" + local icon="${PN}" + local name="Mozilla ${MOZ_PN^} (bin)" + local use_wayland="false" + + if use wayland ; then + display_protocols+=" Wayland" + use_wayland="true" + fi + + local app_name desktop_filename display_protocol exec_command + for display_protocol in ${display_protocols} ; do + app_name="${name} on ${display_protocol}" + desktop_filename="${PN}-${display_protocol,,}.desktop" + + case ${display_protocol} in + Wayland) + exec_command="${PN}-wayland --name ${PN}-wayland" + newbin "${FILESDIR}/${wrapper_wayland}" ${PN}-wayland + ;; + X11) + if ! use wayland ; then + # Exit loop here because there's no choice so + # we don't need wrapper/.desktop file for X11. + continue + fi + + exec_command="${PN}-x11 --name ${PN}-x11" + newbin "${FILESDIR}/${wrapper_x11}" ${PN}-x11 + ;; + *) + app_name="${name}" + desktop_filename="${PN}.desktop" + exec_command="${PN}" + ;; + esac + + cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die + + sed -i \ + -e "s:@NAME@:${app_name}:" \ + -e "s:@EXEC@:${exec_command}:" \ + -e "s:@ICON@:${icon}:" \ + "${WORKDIR}/${PN}.desktop-template" \ + || die + + newmenu "${WORKDIR}/${PN}.desktop-template" "${desktop_filename}" + + rm "${WORKDIR}/${PN}.desktop-template" || die + done + + # Install generic wrapper script + [[ -f "${ED}/usr/bin/${PN}" ]] && rm "${ED}/usr/bin/${PN}" + newbin "${FILESDIR}/${PN}.sh" ${PN} + + # Update wrapper + local wrapper + for wrapper in \ + "${ED}/usr/bin/${PN}" \ + "${ED}/usr/bin/${PN}-x11" \ + "${ED}/usr/bin/${PN}-wayland" \ + ; do + [[ ! -f "${wrapper}" ]] && continue + + sed -i \ + -e "s:@PREFIX@:${EPREFIX}/usr:" \ + -e "s:@MOZ_FIVE_HOME@:${MOZILLA_FIVE_HOME}:" \ + -e "s:@APULSELIB_DIR@:${apulselib}:" \ + -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ + "${wrapper}" \ + || die + done +} + +pkg_postinst() { + xdg_pkg_postinst + + if ! use gmp-autoupdate ; then + elog "USE='-gmp-autoupdate' has disabled the following plugins from updating or" + elog "installing into new profiles:" + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + elog "\t ${plugin}" + done + elog + fi + + if ! has_version 'gnome-base/gconf' || ! has_version 'gnome-base/orbit' \ + || ! has_version 'net-misc/curl'; then + einfo + einfo "For using the crashreporter, you need gnome-base/gconf," + einfo "gnome-base/orbit and net-misc/curl emerged." + einfo + fi + + use ffmpeg || ewarn "USE=-ffmpeg : HTML5 video will not render without media-video/ffmpeg installed" + + local HAS_AUDIO=0 + if use alsa || use pulseaudio; then + HAS_AUDIO=1 + fi + + if [[ ${HAS_AUDIO} -eq 0 ]] ; then + ewarn "USE=-pulseaudio & USE=-alsa : For audio please either set USE=pulseaudio or USE=alsa!" + fi + + local show_doh_information show_normandy_information + + if [[ -z "${REPLACING_VERSIONS}" ]] ; then + # New install; Tell user that DoH is disabled by default + show_doh_information=yes + show_normandy_information=yes + else + local replacing_version + for replacing_version in ${REPLACING_VERSIONS} ; do + if ver_test "${replacing_version}" -lt 70 ; then + # Tell user only once about our DoH default + show_doh_information=yes + fi + + if ver_test "${replacing_version}" -lt 74.0-r2 ; then + # Tell user only once about our Normandy default + show_normandy_information=yes + fi + done + fi + + if [[ -n "${show_doh_information}" ]] ; then + elog + elog "Note regarding Trusted Recursive Resolver aka DNS-over-HTTPS (DoH):" + elog "Due to privacy concerns (encrypting DNS might be a good thing, sending all" + elog "DNS traffic to Cloudflare by default is not a good idea and applications" + elog "should respect OS configured settings), \"network.trr.mode\" was set to 5" + elog "(\"Off by choice\") by default." + elog "You can enable DNS-over-HTTPS in ${PN^}'s preferences." + fi + + # bug 713782 + if [[ -n "${show_normandy_information}" ]] ; then + elog + elog "Upstream operates a service named Normandy which allows Mozilla to" + elog "push changes for default settings or even install new add-ons remotely." + elog "While this can be useful to address problems like 'Armagadd-on 2.0' or" + elog "revert previous decisions to disable TLS 1.0/1.1, privacy and security" + elog "concerns prevail, which is why we have switched off the use of this" + elog "service by default." + elog + elog "To re-enable this service set" + elog + elog " app.normandy.enabled=true" + elog + elog "in about:config." + fi +} diff --git a/www-client/firefox-bin/firefox-bin-85.0.ebuild b/www-client/firefox-bin/firefox-bin-85.0.ebuild new file mode 100644 index 000000000000..811038b1e175 --- /dev/null +++ b/www-client/firefox-bin/firefox-bin-85.0.ebuild @@ -0,0 +1,411 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MOZ_ESR= + +MOZ_PV=${PV} +MOZ_PV_SUFFIX= +if [[ ${PV} =~ (_(alpha|beta|rc).*)$ ]] ; then + MOZ_PV_SUFFIX=${BASH_REMATCH[1]} + + # Convert the ebuild version to the upstream Mozilla version + MOZ_PV="${MOZ_PV/_alpha/a}" # Handle alpha for SRC_URI + MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI + MOZ_PV="${MOZ_PV%%_rc*}" # Handle rc for SRC_URI +fi + +if [[ -n ${MOZ_ESR} ]] ; then + # ESR releases have slightly different version numbers + MOZ_PV="${MOZ_PV}esr" +fi + +MOZ_PN="${PN%-bin}" +MOZ_P="${MOZ_PN}-${MOZ_PV}" +MOZ_PV_DISTFILES="${MOZ_PV}${MOZ_PV_SUFFIX}" +MOZ_P_DISTFILES="${MOZ_PN}-${MOZ_PV_DISTFILES}" + +inherit desktop pax-utils xdg + +MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" + +SRC_URI="amd64? ( ${MOZ_SRC_BASE_URI}/linux-x86_64/en-US/${MOZ_P}.tar.bz2 -> ${PN}_x86_64-${PV}.tar.bz2 ) + x86? ( ${MOZ_SRC_BASE_URI}/linux-i686/en-US/${MOZ_P}.tar.bz2 -> ${PN}_i686-${PV}.tar.bz2 )" + +DESCRIPTION="Firefox Web Browser" +HOMEPAGE="https://www.mozilla.com/firefox" + +KEYWORDS="-* amd64 x86" +SLOT="0/$(ver_cut 1)" +LICENSE="MPL-2.0 GPL-2 LGPL-2.1" +IUSE="+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux wayland" + +RESTRICT="strip" + +BDEPEND="app-arch/unzip + alsa? ( + !pulseaudio? ( + dev-util/patchelf + ) + )" + +CDEPEND="alsa? ( + !pulseaudio? ( + media-sound/apulse + ) + )" + +DEPEND="${CDEPEND}" + +RDEPEND="${CDEPEND} + dev-libs/atk + dev-libs/dbus-glib + >=dev-libs/glib-2.26:2 + media-libs/fontconfig + >=media-libs/freetype-2.4.10 + sys-apps/dbus + virtual/freedesktop-icon-theme + >=x11-libs/cairo-1.10[X] + x11-libs/gdk-pixbuf + >=x11-libs/gtk+-2.18:2 + >=x11-libs/gtk+-3.11:3[wayland?] + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXrender + x11-libs/libXt + >=x11-libs/pango-1.22.0 + ffmpeg? ( media-video/ffmpeg ) + pulseaudio? ( media-sound/pulseaudio ) + selinux? ( sec-policy/selinux-mozilla ) +" + +QA_PREBUILT="opt/${MOZ_PN}/*" + +# Allow MOZ_GMP_PLUGIN_LIST to be set in an eclass or +# overridden in the enviromnent (advanced hackers only) +if [[ -z "${MOZ_GMP_PLUGIN_LIST+set}" ]] ; then + MOZ_GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm ) +fi + +MOZ_LANGS=( + ach af an ar ast az be bg bn br bs ca-valencia ca cak cs cy + da de dsb el en-CA en-GB en-US eo es-AR es-CL es-ES es-MX et eu + fa ff fi fr fy-NL ga-IE gd gl gn gu-IN he hi-IN hr hsb hu hy-AM + ia id is it ja ka kab kk km kn ko lij lt lv mk mr ms my + nb-NO ne-NP nl nn-NO oc pa-IN pl pt-BR pt-PT rm ro ru + si sk sl son sq sr sv-SE ta te th tl tr trs uk ur uz vi + xh zh-CN zh-TW +) + +mozilla_set_globals() { + # https://bugs.gentoo.org/587334 + local MOZ_TOO_REGIONALIZED_FOR_L10N=( + fy-NL ga-IE gu-IN hi-IN hy-AM nb-NO ne-NP nn-NO pa-IN sv-SE + ) + + local lang xflag + for lang in "${MOZ_LANGS[@]}" ; do + # en and en_US are handled internally + if [[ ${lang} == en ]] || [[ ${lang} == en-US ]] ; then + continue + fi + + # strip region subtag if $lang is in the list + if has ${lang} "${MOZ_TOO_REGIONALIZED_FOR_L10N[@]}" ; then + xflag=${lang%%-*} + else + xflag=${lang} + fi + + SRC_URI+=" l10n_${xflag/[_@]/-}? (" + SRC_URI+=" ${MOZ_SRC_BASE_URI}/linux-x86_64/xpi/${lang}.xpi -> ${MOZ_P_DISTFILES}-${lang}.xpi" + SRC_URI+=" )" + IUSE+=" l10n_${xflag/[_@]/-}" + done +} +mozilla_set_globals + +moz_install_xpi() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 2 ]] ; then + die "${FUNCNAME} requires at least two arguments" + fi + + local DESTDIR=${1} + shift + + insinto "${DESTDIR}" + + local emid xpi_file xpi_tmp_dir + for xpi_file in "${@}" ; do + emid= + xpi_tmp_dir=$(mktemp -d --tmpdir="${T}") + + # Unpack XPI + unzip -qq "${xpi_file}" -d "${xpi_tmp_dir}" || die + + # Determine extension ID + if [[ -f "${xpi_tmp_dir}/install.rdf" ]] ; then + emid=$(sed -n -e '/install-manifest/,$ { /em:id/!d; s/.*[\">]\([^\"<>]*\)[\"<].*/\1/; p; q }' "${xpi_tmp_dir}/install.rdf") + [[ -z "${emid}" ]] && die "failed to determine extension id from install.rdf" + elif [[ -f "${xpi_tmp_dir}/manifest.json" ]] ; then + emid=$(sed -n -e 's/.*"id": "\([^"]*\)".*/\1/p' "${xpi_tmp_dir}/manifest.json") + [[ -z "${emid}" ]] && die "failed to determine extension id from manifest.json" + else + die "failed to determine extension id" + fi + + einfo "Installing ${emid}.xpi into ${ED}${DESTDIR} ..." + newins "${xpi_file}" "${emid}.xpi" + done +} + +src_unpack() { + local _lp_dir="${WORKDIR}/language_packs" + local _src_file + + mkdir "${S}" || die + + if [[ ! -d "${_lp_dir}" ]] ; then + mkdir "${_lp_dir}" || die + fi + + for _src_file in ${A} ; do + if [[ ${_src_file} == *.xpi ]]; then + cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" + else + MY_SRC_FILE=${_src_file} + fi + done +} + +src_install() { + # Set MOZILLA_FIVE_HOME + local MOZILLA_FIVE_HOME="/opt/${MOZ_PN}" + + dodir /opt + pushd "${ED}"/opt &>/dev/null || die + unpack "${MY_SRC_FILE}" + popd &>/dev/null || die + + pax-mark m \ + "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN} \ + "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN}-bin \ + "${ED}${MOZILLA_FIVE_HOME}"/plugin-container + + # Patch alsa support + local apulselib= + if use alsa && ! use pulseaudio ; then + apulselib="${EPREFIX}/usr/$(get_libdir)/apulse" + patchelf --set-rpath "${apulselib}" "${ED}${MOZILLA_FIVE_HOME}/libxul.so" || die + fi + + # Install policy (currently only used to disable application updates) + insinto "${MOZILLA_FIVE_HOME}/distribution" + newins "${FILESDIR}"/disable-auto-update.policy.json policies.json + + # Install system-wide preferences + local PREFS_DIR="${MOZILLA_FIVE_HOME}/browser/defaults/preferences" + insinto "${PREFS_DIR}" + newins "${FILESDIR}"/gentoo-default-prefs.js all-gentoo.js + + local GENTOO_PREFS="${ED}${PREFS_DIR}/all-gentoo.js" + + if ! use gmp-autoupdate ; then + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + einfo "Disabling auto-update for ${plugin} plugin ..." + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to disable autoupdate for ${plugin} media plugin" + pref("media.${plugin}.autoupdate", false); + EOF + done + fi + + # Install language packs + local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name '*.xpi') ) + if [[ -n "${langpacks}" ]] ; then + moz_install_xpi "${MOZILLA_FIVE_HOME}/distribution/extensions" "${langpacks[@]}" + fi + + # Install icons + local icon_srcdir="${ED}/${MOZILLA_FIVE_HOME}/browser/chrome/icons/default" + local icon_symbolic_file="${FILESDIR}/firefox-symbolic.svg" + + insinto /usr/share/icons/hicolor/symbolic/apps + newins "${icon_symbolic_file}" ${PN}-symbolic.svg + + local icon size + for icon in "${icon_srcdir}"/default*.png ; do + size=${icon%.png} + size=${size##*/default} + + if [[ ${size} -eq 48 ]] ; then + newicon "${icon}" ${PN}.png + fi + + newicon -s ${size} "${icon}" ${PN}.png + done + + # Install menus + local wrapper_wayland="${PN}-wayland.sh" + local wrapper_x11="${PN}-x11.sh" + local desktop_file="${FILESDIR}/${PN}-r2.desktop" + local display_protocols="auto X11" + local icon="${PN}" + local name="Mozilla ${MOZ_PN^} (bin)" + local use_wayland="false" + + if use wayland ; then + display_protocols+=" Wayland" + use_wayland="true" + fi + + local app_name desktop_filename display_protocol exec_command + for display_protocol in ${display_protocols} ; do + app_name="${name} on ${display_protocol}" + desktop_filename="${PN}-${display_protocol,,}.desktop" + + case ${display_protocol} in + Wayland) + exec_command="${PN}-wayland --name ${PN}-wayland" + newbin "${FILESDIR}/${wrapper_wayland}" ${PN}-wayland + ;; + X11) + if ! use wayland ; then + # Exit loop here because there's no choice so + # we don't need wrapper/.desktop file for X11. + continue + fi + + exec_command="${PN}-x11 --name ${PN}-x11" + newbin "${FILESDIR}/${wrapper_x11}" ${PN}-x11 + ;; + *) + app_name="${name}" + desktop_filename="${PN}.desktop" + exec_command="${PN}" + ;; + esac + + cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die + + sed -i \ + -e "s:@NAME@:${app_name}:" \ + -e "s:@EXEC@:${exec_command}:" \ + -e "s:@ICON@:${icon}:" \ + "${WORKDIR}/${PN}.desktop-template" \ + || die + + newmenu "${WORKDIR}/${PN}.desktop-template" "${desktop_filename}" + + rm "${WORKDIR}/${PN}.desktop-template" || die + done + + # Install generic wrapper script + [[ -f "${ED}/usr/bin/${PN}" ]] && rm "${ED}/usr/bin/${PN}" + newbin "${FILESDIR}/${PN}.sh" ${PN} + + # Update wrapper + local wrapper + for wrapper in \ + "${ED}/usr/bin/${PN}" \ + "${ED}/usr/bin/${PN}-x11" \ + "${ED}/usr/bin/${PN}-wayland" \ + ; do + [[ ! -f "${wrapper}" ]] && continue + + sed -i \ + -e "s:@PREFIX@:${EPREFIX}/usr:" \ + -e "s:@MOZ_FIVE_HOME@:${MOZILLA_FIVE_HOME}:" \ + -e "s:@APULSELIB_DIR@:${apulselib}:" \ + -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ + "${wrapper}" \ + || die + done +} + +pkg_postinst() { + xdg_pkg_postinst + + if ! use gmp-autoupdate ; then + elog "USE='-gmp-autoupdate' has disabled the following plugins from updating or" + elog "installing into new profiles:" + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + elog "\t ${plugin}" + done + elog + fi + + if ! has_version 'gnome-base/gconf' || ! has_version 'gnome-base/orbit' \ + || ! has_version 'net-misc/curl'; then + einfo + einfo "For using the crashreporter, you need gnome-base/gconf," + einfo "gnome-base/orbit and net-misc/curl emerged." + einfo + fi + + use ffmpeg || ewarn "USE=-ffmpeg : HTML5 video will not render without media-video/ffmpeg installed" + + local HAS_AUDIO=0 + if use alsa || use pulseaudio; then + HAS_AUDIO=1 + fi + + if [[ ${HAS_AUDIO} -eq 0 ]] ; then + ewarn "USE=-pulseaudio & USE=-alsa : For audio please either set USE=pulseaudio or USE=alsa!" + fi + + local show_doh_information show_normandy_information + + if [[ -z "${REPLACING_VERSIONS}" ]] ; then + # New install; Tell user that DoH is disabled by default + show_doh_information=yes + show_normandy_information=yes + else + local replacing_version + for replacing_version in ${REPLACING_VERSIONS} ; do + if ver_test "${replacing_version}" -lt 70 ; then + # Tell user only once about our DoH default + show_doh_information=yes + fi + + if ver_test "${replacing_version}" -lt 74.0-r2 ; then + # Tell user only once about our Normandy default + show_normandy_information=yes + fi + done + fi + + if [[ -n "${show_doh_information}" ]] ; then + elog + elog "Note regarding Trusted Recursive Resolver aka DNS-over-HTTPS (DoH):" + elog "Due to privacy concerns (encrypting DNS might be a good thing, sending all" + elog "DNS traffic to Cloudflare by default is not a good idea and applications" + elog "should respect OS configured settings), \"network.trr.mode\" was set to 5" + elog "(\"Off by choice\") by default." + elog "You can enable DNS-over-HTTPS in ${PN^}'s preferences." + fi + + # bug 713782 + if [[ -n "${show_normandy_information}" ]] ; then + elog + elog "Upstream operates a service named Normandy which allows Mozilla to" + elog "push changes for default settings or even install new add-ons remotely." + elog "While this can be useful to address problems like 'Armagadd-on 2.0' or" + elog "revert previous decisions to disable TLS 1.0/1.1, privacy and security" + elog "concerns prevail, which is why we have switched off the use of this" + elog "service by default." + elog + elog "To re-enable this service set" + elog + elog " app.normandy.enabled=true" + elog + elog "in about:config." + fi +} diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest index 4f43b8882ac1..7696a501bc2d 100644 --- a/www-client/firefox/Manifest +++ b/www-client/firefox/Manifest @@ -94,6 +94,102 @@ DIST firefox-78.6.1esr-xh.xpi 427828 BLAKE2B 3892fe73e5b19e0f0b14228ba181e678fd4 DIST firefox-78.6.1esr-zh-CN.xpi 564774 BLAKE2B 7fa27e4fe274e11758cbfc490918f634254cf8cfc2262b91f6eca2e2521de345450e41e05abfa51bbec7d4fa893c835ae23760a80d6335a6383de652a3ac78bc SHA512 ba768296eeeac68605c8919e920c57e23b7cd8595ba219ff11836f7d31aee76c7b0a03d2f5a701417965432aeeecdc8aa74255a17d89f4ddfcc75078daf105a7 DIST firefox-78.6.1esr-zh-TW.xpi 564710 BLAKE2B 844f0296fb078d84cb388cc4b76afd0eb1d534808d1e0693c642b7d32d7eba2f36e7d8c9aa93a6f805e00b76703cae09be96364e9eb7f32d310db998f2bf3120 SHA512 180fc430e3de57942f80477d97d83f9c4d3ba1b6d5b02b6ada97244b8aa5ac623dc88da3854a86f36103a8f0d1fba67d246fe4d7bef70fa8fcb5b0613440d9b9 DIST firefox-78.6.1esr.source.tar.xz 333378012 BLAKE2B 579b94c92e0323cfce77cfa724af352719d5bc669dd1dadad764bb2df95be3fbaf16fce75e1af5d9eed8b69b1ae07f4fda1f793487180939f6d3b05d2a6e5598 SHA512 ae6d99fab6e8d9343ad8b0e9e522f20b5c63064598356cd4b31fc02b3b20d62b30590dec42d956e77352559a642157924c2b1c3e887b496962ba305260ed84e7 +DIST firefox-78.7.0esr-ach.xpi 460304 BLAKE2B 0bf6789552f642486e117cb3f21e711182b43a8a687bce5f82c477baa7659c646daf70a47a1fed5ee7f497954658fd1d1daa48e0363c7c277d426656d6c5e93d SHA512 6f5bc3f83115c72a0aa0e07817069f8a249f9d38e0c82d3c9b2a4802fca514e3c02c7f581a4cadb0adde20615fd4cbc3775f566b627dbd21b1cb6d5a88a18461 +DIST firefox-78.7.0esr-af.xpi 428364 BLAKE2B 3bb94756335a5700b49f9e92a1d1b873fafe17318c28a5a7ce0446798370d256950d566351e3119870022c90ed36f1e4590bafc52b7fa1019e58e44e6d18219a SHA512 6ec382ba46210df6d94176121f2445e2c7a032e0bb6ad4066e0389e4d1e81f4daea057066740f026d61d7ca26d1a3d8c12edb1c9839d25ca3e8ccdf7e0af54cb +DIST firefox-78.7.0esr-an.xpi 508375 BLAKE2B 19084e4a2a2cf09565be3eebd88904cdbd3c59e5aaab6a86a8812b673d3a6474d69e1d5d42a9d5bb034ad8891ea05314783e64649ec4cebe78940a7f3e95c3a5 SHA512 88dd3f35650c15dd63c2584f50cc882d098c0bceca7416028b0e728a9696147054f3f84afadf738c3f51f6d2e22302c6558582bdf15fc76e2728e41cadda4a27 +DIST firefox-78.7.0esr-ar.xpi 560960 BLAKE2B 2c265fa689b1674f37186a96794bc9fcdbe66749d1cc3783b96e054fe66f891ac1f13de40b1f4c9d6f0f7e5e14f10d9991443393019feed7f5e27e3dd1296166 SHA512 ae28ff38ce6f6609f6fada98f53f020b43c0bac1e27bd2cb20e57f637489086ccb112d7d4e2cd3830533c1370ef26bcb1484518f273960c605985608ffc8cb84 +DIST firefox-78.7.0esr-ast.xpi 456397 BLAKE2B 0697a2fd082c0673e4b65d5722b36e4dea42a6224eb74896e93be97f3fe34a9d7eea621a3016f59d9695b53a8b92a863a97d82bbaffd71eb46474363dcee2983 SHA512 89cc70aaa20142d618bcc3781a0729f4d3efa44a3b7ff8e81a04d135750838dc6a5e893d3b7ed27ef85983e279c0bbc8922dc755563463eec36016867246808c +DIST firefox-78.7.0esr-az.xpi 497441 BLAKE2B 16b43b26f12c75682c97fbf3426934d4ea38f3f12972b60690a33f83f3e7b047aed06ac5909f0a1425c66a6467158b5af19c9142340559db875ebc78f61b4c23 SHA512 f491730930dd2746a467aaadb9779e88784512aea093dd7a8f424a96089ad532baef2a67a8206e4a15fa75edc588dcf0faaea3c2a11d5bc4102a0da9206ceca4 +DIST firefox-78.7.0esr-be.xpi 608652 BLAKE2B fd1f20bb87d3ffda99b4b04054747db3402ffc1bf64afa8442d3149546be01ff9ae442168689d44763f7d3b70d1548f1c4f41609e7218a0087599a76c51aff08 SHA512 ec53a3ca2e2c673fca330e989f7c38f408a88ce12a0e982416e715d3a10e2effba158bd7573d70012cf85463d9d47329d6a65e3b1704d50ae949361b82384e0b +DIST firefox-78.7.0esr-bg.xpi 553979 BLAKE2B 4b5117349f74de369c3865cc0453bf350170a8f0a52727a7b4a883e20bf667ab633664862186c36be4b6b0ffd59cb5115561d08a60815ab235760f76852ef7e2 SHA512 02cefec8bd5bc999d4225da2a0177085c17937d2ef5223f81c0e266c3f82bba49a4e66f5cd7966b9c622b3c10fcd41c8aeb89fee1b35803e6294c7fefa1610b9 +DIST firefox-78.7.0esr-bn.xpi 572627 BLAKE2B 4448d0b66317a7ca9796efd5c21cd3391df40f94e3fec8b12324b5e7ad0adc764a0a70582693fbedc10449f92b02c14b372913f46fb88a66b401f9a866298920 SHA512 ac6dbdaa8483585f6a06329b451aaf57ce1daa6cdbf15725cd758b842c1517475ce996a7b01d09cec80f114a9eab7c8148608b58987d3170a887d0500bdbb358 +DIST firefox-78.7.0esr-br.xpi 507126 BLAKE2B 1d6124a9165e0fdabdda1c9644548b7ee803027f14ac9f4dbb510aac4805361e628bed0593f33554b9737d591c875fa59c4c7433027d1e3e692621e7e8196233 SHA512 2800b314c7bbd575dd9c3859d07ee93e149eb300fcc65a002f50750e2d8425787f02991a9fe1466afff9d5cfc240dac15e701008f43253388450f6141368f17d +DIST firefox-78.7.0esr-bs.xpi 463815 BLAKE2B 81b068033d0d67e0f27ca37ab974b455ed85cf0577f4084c13b90f284d546667d51194f966092b2f7170d418062c5128c5cfac8775d5dc742ca1d204959431e8 SHA512 58e2d4aa6f7f874d20b5959426fa9abccf5f6ff23562ba871bd0e74f2f18dcd4ba88ba05229f0ba14de482ccdb6f5b95a507de3bdde7c1963d326c218dafbd4f +DIST firefox-78.7.0esr-ca-valencia.xpi 517180 BLAKE2B 7dd0807b53f1aec5f14842163bc5d78267bf7196e5f6050c59182abfd4f495a0a0ce295a0c6d7ab8b1d687c0926add9c261e25307c4f01b05046329ee6ac7b8b SHA512 cf844542ca663095a641e97e8e36324c6b0dbe8091fb23b645b04d89ace177a24be48b05f3df34a514fcf2fcaac92ad7578430a8ef0e3f03034afffbc18a687c +DIST firefox-78.7.0esr-ca.xpi 514183 BLAKE2B 9edf83e758945c21bf2b7270537545917eb1acbf324ae9d04f1688376d008b50533d799464a15a4bf58a0eac2db8fc7b2a0861303e1e7fc9777049acdcb459be SHA512 70b562e946cbe9b8e6623794bd2ca8eafa7db669347853b9e0736aa73420f768131dbb494934b39d5779e695b7e606c413f658169012e1d09698284b1ec86658 +DIST firefox-78.7.0esr-cak.xpi 551551 BLAKE2B 3c972e950bd6e4736708c3f33d54088aca6fcb56a25cb324ee383dfeac653dd8468b244603aee7e01b45d0eb891d776e1381aa7c2ab09eda4061b57f5e5ffd2b SHA512 8109c712d7eaff1aa16f87e1c7692b565b985c807e12d91e1a6a39628936d2d3004fdb17c17fe0fba2e32d006b6a6c57867747854f2699c5ff0306a26bcab3d0 +DIST firefox-78.7.0esr-cs.xpi 540317 BLAKE2B ce1299e2068aea64d2b4ddd46bbf07d8588a3d19cf992d1409e19aa5df4db7b2cc03dec0a5437e160f60c1ea976030fdad7d8263c78192568d970076f9c5c60c SHA512 86af1f3a2728bfcc6bb49177b991482e6aa907cb217ba81023e11e4e6d9a66728aaec62b92f434eab90bc3e2c207eec0ea60c636bd35fb1e6daae136e1de4582 +DIST firefox-78.7.0esr-cy.xpi 530698 BLAKE2B 797aeb79a56bf1e3515b3f286e376c30b7cd6aee75c54a0eb31f1b2e3bb0bda293564f4edc20c1574afa1b29c8d5b948d9482d8e3eef24b4a1883e88f2f3091d SHA512 2d024d0f5a344869a0623feadc48f124d361cf4eac9440e7dc9b00207760a428470a5ef0fc8c51043d27abcf3b0394678e29531803c2bc08ae6fa84aacb99fdf +DIST firefox-78.7.0esr-da.xpi 520267 BLAKE2B ca974fe0790680a74d5b65bd23d36d204296f13bcbddfe95d10eb29e263ddb2cd23aee634d9a2366e7cdb66df142896c46bec35245a96060dfffbe93d1abce89 SHA512 6bd294ec2ce3324032469de85a96993f255729b4499c72adc45c3dde18fe882f0fe87dbb227365504024b842ed94a249476e7d1598b9f0bf63ea8875eae7e63b +DIST firefox-78.7.0esr-de.xpi 542846 BLAKE2B f4a3a81b5f1a27e9114470c419cf0ce942a612c29b8907a52dd9fba08efead975c013dfeeb0c0166bbd507c2465a633f0d7a04066d48f9216ce9969452769068 SHA512 219d540f04ad7cf3bc73cf981c6c03849c4952ec243eae3266a3b046c860e91e7e291f3efd66a0bda8acb50c3e9a8d023f5b70abe5d7eb78e6e4e3a9cad248eb +DIST firefox-78.7.0esr-dsb.xpi 554276 BLAKE2B 9b4b62ee758b6f2af3cd2c2647aff3d3acc8b9ec6b833325b2174b24412c051c7368818c0e4de5f5da4b1a478daeb44fa2a76be2f46f470ea3482976679c7160 SHA512 54fefaa41f9f9491decf7c8def6c4931f5476e47ba3541f42ada8ae0c1e03dc660de52ac117c81f9581a4997ee65f2ed6a14f8d13c36a8232400becc12db5f00 +DIST firefox-78.7.0esr-el.xpi 626557 BLAKE2B 5b9d059351ee309eb0fb159e1832060b42c9660eba408e4804c208d6def426889ae63f76486773e9f536cf9d34df6c35edb58a0a0067716457ed53fea1771d70 SHA512 d3cecc371aac469917bf1be6ca5621584ed9c136e3157f670961ce02532a13b7bbe0ea70e14554054c5fd4925515b41f0bf6bfbdcce78b044268f1d00299e61f +DIST firefox-78.7.0esr-en-CA.xpi 497736 BLAKE2B 89000d7a2444b5f49088d10fd1ba1ed1fff5b34361425b65ac60a187b03b6375aa5bfd88fdb476e8a85dd7b0c85d0011a719d06d3d3e4e54d6afaf8d4e11fa2e SHA512 6fb03153f3739207d4c35ca66ab94fa29ca7e0898f862d04da08f8984d15639b51d5c40160c563f905b63e484e4c0c34eeeba2e2a7c8a81dcf78a08e6ffa5b61 +DIST firefox-78.7.0esr-en-GB.xpi 497584 BLAKE2B 5e0f057cc8cbbd9f1d29bdf6919ad22343a11e3b95d6bc3ae7432e81020e50f042eb84c640343920670a22d7f28524359d5e579a6f82255324d34ae791cc5b39 SHA512 06d32eedb0e762033ec8949d5fc77e8f5dd746b24c158e46cee0c8b5bd663f2c2fc3e6975e841a4cb19ded3e167d0649d905c05903f26f13857b39baf1df31c0 +DIST firefox-78.7.0esr-eo.xpi 525742 BLAKE2B 18c50ffcaa125b9cae26434223a2e4711c288c6e3245fa4bbef750efbfd64335c0cc1f21500ec718e29dd1a0ed27ca252ae1971e243613eae8773593024261d0 SHA512 3df657c5856dde60a89af2a9226e1fd98da85e1c29218672e2f8f31d61d876248789f9ddb0cf54566b5045dc744346d2beff06a2e7e917b5e5db611e5229e6cb +DIST firefox-78.7.0esr-es-AR.xpi 535814 BLAKE2B e5f38b4a24e46e09beb5b75ed78bab792007da18640bccc3ef927a81ad98a9bc6a5d40a6adf19972c9d0facd435edd9f58974c84a06539ac1290efaa9611c4bc SHA512 d9c73813ac3c81389190a8808bf62e1a6ec3208735a0cd890dcda7c577a6dcca3b6f66f00be3203c5c1536b5e0248e5291eb357f2939bd7d08f7a98f4dc05db5 +DIST firefox-78.7.0esr-es-CL.xpi 535370 BLAKE2B f93d5a4d96248fed8aa811bf40a6e7ce6aebd3df7e9bedaa060952fc2437f11856368123d2a8ec8a58d0dc78d8b3d0fd41b86e0ae6fc8cde3de5e326f4f0e707 SHA512 3d8cc3c4f3e1ca9c7f026196a637a1cc73dacad58101bdc87560e39550df4dba47ff4f316cd4d739fa9c5a24c6ff3149677640e68de892eda5c427245aa23af0 +DIST firefox-78.7.0esr-es-ES.xpi 522698 BLAKE2B a8098ce455be4fb1b71dfdd362de997e3e6af680ab34c968dc2d12053b89bdb55aaf94180383e8fb16d29bf7ec9d567887535441154da88a658cee3d48448980 SHA512 406de89907ba3a719f5ca165a966f5c59d5c7957e2ca688725a2a9bcbe2f08ca500bab4ec6e9936ffa7de9c59fd77f4c3a2608f9a0c90018429e99967411296a +DIST firefox-78.7.0esr-es-MX.xpi 532289 BLAKE2B bbdb45cdc0ca6d37748f64c9faee112dc9e2861db1a9f8962e4549408175d3949df5e6f90c8ae8680081b21492faf16fbe36ba4d0094d210d05249c89fc89590 SHA512 247d03d4761d137e3af3bc39c81c86c2ce7df63aa35785a9e0e72d66f7cd41ddda3b10fef17c4aa5b41f6f5feafb9abc24e22dfd2a1f70587cefd2fc63fec984 +DIST firefox-78.7.0esr-et.xpi 485258 BLAKE2B 01b7f7fea7ba58e92fb41b6c308c9ad32812aca6ca4f78795e4c2c3abb7efdafd1a0ac281d3fc2351d3f0fb9468d7512d8f18dd0233e97714c3b1903f73a225f SHA512 ac4ec560834a2271604e738015f3fa8d3986943ae333b07888877e29cb9529c3c79b3de97f213cd6af8b4daf6d2cea40b520efbbae0a3d63975a31eb701cf98e +DIST firefox-78.7.0esr-eu.xpi 505886 BLAKE2B 7762907b15e73eb9b497acf8090d3290e3a3c7e4c68fbf1a8074b649f5ce7d09dbec05c53f3e265e69b7cd669c30ea4565b9c26537f1d1712af4949b1e93a76b SHA512 d8cce5e303727f62729c9f39797727786ac381462c0d91f28bbe077ebcb25795735d2ece61311ccf9cb64412b952185aeff98c4b96c912bba689f5f0d1da425d +DIST firefox-78.7.0esr-fa.xpi 538919 BLAKE2B 5e55debbd578a33f4ec180878f99c30b9d1c0a5025e4f689b8694b811e091cde282f85233e14af1fdb9187434f33a6ba4d5a51d67cf5275ae384f37fc469817a SHA512 c8ade91a84432f71043e157b45a787f9d7d7e219685bf1679932a6e89db5a90b4d70eb4a09d78e1e845dee02dcd4db2eac4f55957df8990d46e85556fb7426c7 +DIST firefox-78.7.0esr-ff.xpi 481615 BLAKE2B dfed58777c472de6ffb63e0e7668338db5112bea9cd34d1c4ad95313227b212d59a77a51158450a0d7c35997ae5651c82c199717f5105442e7147cf64403d04a SHA512 19241f4c9552319049c9023337ed5275c2c32ce02e0e63a7ca6a4ff59962955a43b2cd160f043b6b7234f7a379c987f3eff831af0b7e1a3b2a69573eb31f6a1a +DIST firefox-78.7.0esr-fi.xpi 517926 BLAKE2B d3dacee7a352833d28935475d526dcf0cd9ad2ac18a2227c913ed8bc3c8f67026f1b11062e3ad83da768fa5faa0724876845a5023319bd737bad1b6c2a31cea8 SHA512 fd62bcb0338ec6f16a53cbaadaaf442b144c63ebb4cf62afb836b85b6b171d68da572892b7de2d0dd6ca21b43346f45df3ffc596ad57f892986f8e8acf72069e +DIST firefox-78.7.0esr-fr.xpi 545888 BLAKE2B 2b1aaade9ce08a092b9a519ddcca3087f686699ac6ece284854bd421bf3fa3a4067d1b667e3a3b836ec6549ac9c702099f0f24b9f2121982df98305ee180fa1b SHA512 abd417d0179275d26a2842a1423a6d69c6782926d64efebb023f0b4bdd751da7997d06460c00292db34f2e6c0b2597ce18bade876531bcadb9018b53d1623eab +DIST firefox-78.7.0esr-fy-NL.xpi 532493 BLAKE2B f48728fd7a21097a45a9a2a8d1c97965401868ddd911b44419cc81b83cd43b02e40933c559ed52a918c6db96e559069c66550b4af58300cb003b1646ec9006d6 SHA512 dc900aed0ba72b457cfccfebb8358c52b4af851db4e09f199c8d278f257d2d6b1021ba263a4a4f55c0fbfab034b2ca5127e68355036b950e2a4e491b6a7ca0e6 +DIST firefox-78.7.0esr-ga-IE.xpi 466887 BLAKE2B 64e395ce88023ac1f0af8bc7711ccbd266d21f6b2c030af1c6b2f5072863fb64f65a962cd3e5b5117501a2371c924f03f8448cbe3222b0f00a78991f03c28007 SHA512 14cf04556e418a57796cc582def0ea95048f8ed06396b91d51d30fb05847c0d02a613e674f5291b3c5e5fcd4b0cbf564cf6eeffb38a39bbdc9a68996dc4fdae2 +DIST firefox-78.7.0esr-gd.xpi 491876 BLAKE2B 0d382624a78caf57eb63a995cff7f6c1f2551f41276a84ebcd05375c31b69982f5a68ceddd512576560ebca084933c6e874b84dc5d296291074f6ffde04e345c SHA512 e14f40a654dd8d8f0143752e95e1982483841335ddcc17c479c3f544193a41f06cba388a9566d00e28328eb677e234968a091bb3d801c12c5755f7d99df12e52 +DIST firefox-78.7.0esr-gl.xpi 528428 BLAKE2B 2f865726aadd998023b0476d55d69f3c4c47446eb9fac5c229a1aabdbdc199865b5d213bbdf9c03efa93a53bf54008bce8a9429f8ce36dd36952d82148c546db SHA512 159fa6e6c7ed5cb406f4b004f800eae86cee0e1e6a7fb15ed6b8905a365cb925be2798cef947963ed264583f9993797ad3cd6d4ebc3bdde1e6b5baf8334f66f0 +DIST firefox-78.7.0esr-gn.xpi 546468 BLAKE2B 748aa85ba67537df55f6c6faf941ac12f6bff3cccc9cd6e14cb710f7987069973682bca1826e48dbada7c964d9e291d3385171c43e7b33cc2d6e404fecae5ff0 SHA512 36784f317e08a4d169a3fd5f38e24e4a9b644dfa0b510a2a5a65e26d4e945d256d953b9633f4aa5d1da2685bb64ee7221d98e02abc7302c43926bdf3fbe50313 +DIST firefox-78.7.0esr-gu-IN.xpi 541433 BLAKE2B 1d59c1593d5e2e0be3b992996e27d515ffd62d0b6a75e55d6039d7b07a72e778a721d30da71b6bac476e2e767eb043240572bc104b869415f9362b1426545075 SHA512 978eb326ce7f90d7734b6d69b6f63ca96ae47f8206d2221f7f54ed4517fc3b40f84f9590b2a8cfe067395722f1a7ff15394835c5caf49123785b5324fb9d824d +DIST firefox-78.7.0esr-he.xpi 545588 BLAKE2B c2038b9b2fe59b63e2a264ac3d77309a243c3b6dcdab975020dfc8aa286ff60191d6940070008b9c3a00848b4c1c2a48da83ec339561b9cfaa10b0ded63e2252 SHA512 93c82235c6860acad542f9ddae1e0f44cd821ab7fc72331aa12fe22e28ab06e91ef016618afe7328b572b6f5673b23397fba23920f178653add3fe0eef55bbd9 +DIST firefox-78.7.0esr-hi-IN.xpi 567865 BLAKE2B bf2919dcac079e688f5cd23b9faae9acf29daf289fa1f86a7673c47469881f3971db093ce4f63e6a12c2f1151272a309303e3646da7408943e26707ee6d881e9 SHA512 1cc7118b433e9a3790bc83de8764a29646c461bb4d895d094f9747adac1f5519c6c7251497678179e6cea29c8db7d1a5e12fe4e11bc6bb6d38c5e65c5042a2da +DIST firefox-78.7.0esr-hr.xpi 522681 BLAKE2B 5f2bf77749f969470248ef88518a952e0cae2c079f0c2b51e60ec19882de21f24a7e83ca3934341f51d551b740c3873458eb3f57b1c2ed7176401972327cddae SHA512 4bdbb20ba77b611f181f5a59221106708d1227fca94214276441d0157c796d054aff4bfbd9b6ae60e5eb057c090117559d60176504e4eef9e1d8414f6ccf3038 +DIST firefox-78.7.0esr-hsb.xpi 550674 BLAKE2B 3c5c0b3d5e14aafecd238410d86a0c83494cd913c08b446bcaea2cdbb4aafa1de7139e6ce5776bce36001500ec34daef753b42076e376a1eda568e0f25c0bdde SHA512 8910a369a21f742894c2a202709449908310a7080219678515b0dc1b5954f7a47667af4b69bbc7098388eea1c357559c7655de6ce5c46bf91e3bdeb37875a2e2 +DIST firefox-78.7.0esr-hu.xpi 554894 BLAKE2B 988a9486c823fb4f45994ed52843d4f6b6f13439fd50c3d6faf73aa968d6980f906e4945eef140ee17720615ceca78ce59cfe647f979a704387fc0e6f0ed6c4b SHA512 364566a5dbd87d878144675e6e0a55ed393ac802aed63b5ae261c68db4c0837242aa02315374db98ea3a0959069f2b1583a1148e9e46acc5cb71193fc696f848 +DIST firefox-78.7.0esr-hy-AM.xpi 588987 BLAKE2B 4c070b3f94ceb83df9bdbeaab4347b0693e5218d0def201a01dc8649f51b1d4fd4ec059250641b6cb71bd1af234639bf166f5c9015f7dc5d8e9fceb8d326dcc8 SHA512 602bc236156fc93efbc81e9f836ad33143a80db0e127250e54fcad33bf9818366fdcfb9d3110eb4977c4ddc048d655d73ad5ee4a7105ff8439606ebbde9df2c5 +DIST firefox-78.7.0esr-ia.xpi 518825 BLAKE2B 5480f2522b5f6eca861d4346c60e70857e5a4f9c0b8c8d0f9a30673476528d6d7e9a2f9f782016905dcf2471155e69ff1d83f3bbec2ef92afd774f3a84f6330c SHA512 6c67bba02020fe222585d5329dae5150d41a24df1e02179c1d7ef1abee75ae0cf991169978f8ff5678a1d9019a3e03a60786510f083afa459f5f95bb9d6bdec5 +DIST firefox-78.7.0esr-id.xpi 509576 BLAKE2B e43d7858c3a9fda0a89daab17d11d134e4d188b225ceb6bc503c818877302cf846f3863d6671f0aa6e3dc7970fb2e85906578c1a3206b284521b9c219337bb5a SHA512 3dec223f2be276cad21c859a7209ea932f8f80b327be86caf8e6846e5e8983aaf6e03ee34487cd49fc9d5b85a2b8c9a7a610050fd9aaf01fb92576ed1b1c56c6 +DIST firefox-78.7.0esr-is.xpi 477039 BLAKE2B f8279f7bf9e203b0b76d4c3c13416ce99a5b5940bc59e26325b2519877410df9fef307efa7957d832c9e0512410a4c18dcd4aec611b78bde639063c89f9ec175 SHA512 7be25dd09d80c9868f1a61559668d14b82acc329625d0419309654373d5a4528f1e2beb2f42431b3fba3d3c9377068eb4bb5bd0c97a0b99d93989fdfc53d5abf +DIST firefox-78.7.0esr-it.xpi 449798 BLAKE2B c41f39b1d18e5abae232361aa0b8632c30399546585c80c3e6d3644694247ce68083f383d75bbb159d2668695a6a2ec3b2cc897df642233c89ea479027046cab SHA512 1439a43083a0a5be8a10747f38bf3e10f4ba18791ceec70fbcb3da594b007a40057e98f5c80d0abe8f8019d78c5b59af44207798bfbdf3f055e2ec957a1c15e0 +DIST firefox-78.7.0esr-ja.xpi 578204 BLAKE2B e0a2255cd3a529d8abc047e89488c6e9b6d06b293c5ce72a02870469e99c1446cf0cdcbd530b6842881c72afd7c6b5414bf73b17591fb0b207a5aab46158504b SHA512 8eb7daf621fedf85231fe0b9683ecbfeb9d61bb1b80d44ba2602157a944c040c82cdf7289c86244e6423462c24dd78bfe8d94e74bcfe058b654d0a478d4c8cbc +DIST firefox-78.7.0esr-ka.xpi 579084 BLAKE2B c3a8443f0f922cbd44e8d860157e37c0385cf1173735f719aaa86b9325417e3dd4204b6a6ee1dfc65f468dbe787427cba3519f97c860fdd71fcbbc4ac11dab89 SHA512 e88c9ad99b3fd4b27d5cf74b06bd763bd1f6f6fd1fc8585182a48e8add3af1af944d54c0ebc6b499ea3ee42cce406fbce1b7fd7e0ff5aadfeecb483768ee55e2 +DIST firefox-78.7.0esr-kab.xpi 539731 BLAKE2B 4e5ef7d2f13c2fdc9f81ecf49607887c8eec32a9b68e1ef29ed3bf4ca926f79b9860a75973756b74ea3b65c663a92a92e3ced092342e8bb6be7d80468808c381 SHA512 b97496b1218c3d1f90b8f8918afb7b8fcf9180c7068d703391f95e0908205526ba100612f2e165595cfd42a689c1094e73d96172dd8f715bf838dd116ccb1941 +DIST firefox-78.7.0esr-kk.xpi 593251 BLAKE2B 2eed14dd8333a808e76894c24a0a22d42ae6a9df2a1d6f0d317df11b0cda3ea25cf23fd91d948ae0097a42584c5be190fdbdeee0af6003d93fc2f388b0b40d2c SHA512 8db00cf2264103b8a7a3704710cdbb61555fcddf4839de5cb6ed807ce9c08c705ef7f12d5b6890453353edf46e19345cb31ff415e953a7313b4648043a6a0f41 +DIST firefox-78.7.0esr-km.xpi 527370 BLAKE2B e6f9ad774865475152c229b778f6b25472bb4dddba6d0156572d2dc5264c52f5ab0ffc95dca20c61bed4ac53cf6210a64bfc47bee92cfa9456c5a18bc3dbcc3e SHA512 0d4a0befd8943bc5d883e4fd8002579f60514df84cc51ccd5f1afba0d3b886a7b7db4f3d081f390ecae46b8f11f7b731f88ec4ea575d9504f59435ae5358a2b5 +DIST firefox-78.7.0esr-kn.xpi 506747 BLAKE2B 4ff242de1fd87ca50082c93c99ba57bc06cb97fe12cbeb807711160b2c0ea43230ff8a751f18170cad71d68a4c1012e4b68e8ecd28e54393e5c5957004602c8c SHA512 36b14b3dd0060672d07f34a074dc2af4976b5cf1e500310a3f9c83c215bffc49f9a68a09d2c5904c75b26d1c9393b044b0e2843a658c3880c82ff4e34ac1579c +DIST firefox-78.7.0esr-ko.xpi 567532 BLAKE2B 5d7dcfc2c795f234ea071eaee6627a91ea7a4332decc40498d98ba6cf86201b565ae634a8aad10f857690f0ebf923caa943f88ea2b4f1182f9a3149bc8c8ecb9 SHA512 c5c3e60b1c66d17b254673c44ae468c39b1ece1c327a017f1f47872c7468dd9d1c93232239ae1e64e329473643b1f92d7acc200a2f96df981d63362a18060d5b +DIST firefox-78.7.0esr-lij.xpi 475245 BLAKE2B 48765a1ac5b0d495dcc85bc1442b49d45e3337d7fbcfadbfd147ce605e5e955303efb05d26cb504d4577430f9fce71bce2877ab6eccd0e61b48cc1c664592acc SHA512 784bb9d9011d37facaf289e001d7dd68e673ac69e33827c4228da66b0fb0534015b38ee36c1378ed91f0eec6cf3979c64599f5427b86929dd8026d9741eca7e9 +DIST firefox-78.7.0esr-lt.xpi 540702 BLAKE2B 3e5305095ade41e074a78a37cec659630095962549e2c2627f93dfffc01d97cba6950f4e844a146c4d2a9689453e8ecad053742c6f8e9852e48a5ef9f0c0680b SHA512 351af9b5f4bbf99cd75210a9d11476922c63a7a71a9159da521af6d205a9c8aaa0b269f22ce0719871ad0a1cb00c175136958e8101edfed852ef73f3af307e9a +DIST firefox-78.7.0esr-lv.xpi 467460 BLAKE2B 623bfcba62c725d426c64612f71c199264a219bbc1c4511cb4e9c991dbdb55b4539807e27bab2bc391208b94495d38b63add419df987127feacb5debf5cb7473 SHA512 f0c81c17a7602b0a577deafd4d09caf53661a4a017f04e6955770d670da7d51d328a190f154c567ff980081615713fa39af559160b58c0413533cec356bd6797 +DIST firefox-78.7.0esr-mk.xpi 460027 BLAKE2B f0f0a3b8f18544dfc932a24a4848d74d9e1b0ac3e44a4d289e54785cecf066013338b4688bbca5fcb151baefc279bb7200f76e099cc637eb876ec3506c1654d2 SHA512 ff0d0afec0e1873fb2ce7e22ab18ab33bce30bf44e93b8e0436456994a7bacb9ba37d495dda114653c472673884461ed5d45d2ed8854ea4b1961991094800683 +DIST firefox-78.7.0esr-mr.xpi 541575 BLAKE2B ee02af9b5bc53758a9841e376b564863338c8021f5b37e9675e2f05b101e01f1b59929acfa9d504a47adb775b6067efd99cd89ba6e90d0561dc65b11d9001c36 SHA512 1630148cf7112d85866cf8d7eeb2fa9c9bf260636e89021529c9df8b987abd7aecf32f48c1ee4a069605bef142221aa320688c06e812044afa5ef4af2061c29a +DIST firefox-78.7.0esr-ms.xpi 453059 BLAKE2B 38d5479bbb9d4c0e22a961bb60d25c32914f40b6e2863cc3f3e75ab25958a70514cd3f66dceadd64dbbf5da4e628907b16fd79d71a8a1a7b1fde84120e9a0952 SHA512 c7f2ce7ef940b9431f4c4cd2841dd1dca17fd0a8a17def6528bc763bdd714a455b3b84a16a1a08ff546c8e832263a9b561a86c5c362c2b0d22eac150e6614a91 +DIST firefox-78.7.0esr-my.xpi 526326 BLAKE2B ccc2328f217baf6bc8608eb7fff8e835a70a01f5f84f42b028bef4cf868b40c31f61b89972136539af230f4d767212a1b67ac7d62f836e217ffd5d855d325977 SHA512 fe4e3ff27224499bfdb6ed2db8bef646f802a2554d33ae859ddcce07ac0221bed51e3c5b91966f1c6fa4e12df52ffbc465b7b6c80a4e0bb1df7ad6216cb594f4 +DIST firefox-78.7.0esr-nb-NO.xpi 518517 BLAKE2B 4cb065864384056f3ba5b07dafa0d4082ef7edfd6547ea504849c983bec12ef773f50652e4c62834a08d77d8057f7f9e01c4d8c3adb6b17221f3d06f5a7c4ec0 SHA512 b08d562ed1798d82930a8cb257d6fec05152850fc80ec9382c9e764f2c456d82defb9d8c9448c5d193fb2b5be3c569ca5261940e34c1f9217fb96cae087be9a8 +DIST firefox-78.7.0esr-ne-NP.xpi 483394 BLAKE2B c257741e59941423396813a0e0dd4ec9fcc657eb095f14bf65b6d0e6042df7f5ca741804e8420e1e119fd608fe68297f868ce51f7b3a997ad6b8bbdee5dca091 SHA512 e35f505623cd94be52f7e5e4e415e607e7e441e9fe849fb086174795f23f675c93d529d45eae24cf39fa82e867c57c2382b0cb298ee2f5ea09752498685d68fa +DIST firefox-78.7.0esr-nl.xpi 526197 BLAKE2B f100d0a4dbce836bb60ab2879be870a893c037b61d16aa997aa2524a618379e0835653f07f334cbd0480eeaff4ecb5ef30ecfd2ae51701d20bb16cb3f8b022b8 SHA512 e66738faf8d9f46d0b60ce50c422fa9199c73dfd40f8cf65698c3fc16baed4d713d4aae0c6a224309ff2e0fc65cb8870d4f338da8b0ebc94ccccc71416fee616 +DIST firefox-78.7.0esr-nn-NO.xpi 520147 BLAKE2B be34641f6e67bf41b98d9617b677a2a6b1aa06747687f0d6d0b325f07ddb8d58a907de5f9e72289253c5b8160360389e2a16f6f44aa132340554c60addb48b36 SHA512 7d918705fc8b3664c9c0385f82e18367d4d882c54332bdc39516fe8a3ecf31c3facb6cca5cfa988cdcf9b4ce8b5e64a029ced776beab4d477b2774e968c0dd91 +DIST firefox-78.7.0esr-oc.xpi 542150 BLAKE2B ca9346799b45d3056ecfed65e357f71c30b34f5912382642ca28f49a63690d6a4220931254de0bcdc3328f03e9a6e9636e45915082a3578bcc36f92ab20b2b51 SHA512 64bfb4a753b44875d21ab9ac712906094dd21c38c11acb6d8d1fd03f8929810e81b469e37d939257bd777903bb37b5ea2d1dfdb6c31560bfca11ad168bf7c23b +DIST firefox-78.7.0esr-pa-IN.xpi 580359 BLAKE2B 00c018c83e55463006f06b7ce5c2df2bd0f4ff8877ac3a779d2ca130ba4a1315fcd328725297d38c2c95af2b300bf9ca122c94b05f112a79d6013a185ea9523a SHA512 495bbc4ce39b39c1c6847e9f26e09f52cdfc820d548501c87538e26f54bfa93f9328464c0baf59b09db417c610a7a0e922ac552a30adc211e54feb724998290c +DIST firefox-78.7.0esr-pl.xpi 545612 BLAKE2B 7dd50d120b659b8328550fc92760e6445e3071ba7774691464d24e4bf9868622329ed76690a6b60d9b5be7f60f76f9cb80df4306d739e0f4bd7a423d424dfa1d SHA512 44baee533008916e10ac4caf5c174b730e73cdb837930081c00a3f1da23d64129dd46183894246bcb562d6175f6dc8ead27cec49a6569a5fcc46d09bf0d461b2 +DIST firefox-78.7.0esr-pt-BR.xpi 527579 BLAKE2B 869ce060e6e133a28ee54480d4ad02208fabbd9276fc9cc234710c669a504f3e093e9a3b8bac30d52975c1c27f806031c5c563bfe37be37384abd58ac1744a14 SHA512 d1bc121b7aa8d1225f6dde1d6c45b0bc4eaa7033e5d7f82d94af820d76080de91945bb6da1ead062d9af203694957273746fd032f62d625e1667c04136401e80 +DIST firefox-78.7.0esr-pt-PT.xpi 532059 BLAKE2B 9683257bfe2d305de553bc74d0eb8a9c63abdada829e752244ef25ea3047ec28e465a8335bd8781d61147de1d2f6748c93051b5e80e391be40194ab3482a4b42 SHA512 a6dc7147bef56e8b603b34d65434fcbd43315476ade1addfd91ff7fb4e8ee826b88967e361251a8a2f652389d57b65a216421f51fed70ab14f72fffbb5528ceb +DIST firefox-78.7.0esr-rm.xpi 526728 BLAKE2B abab9f49af1f8b92e3eef1dd311620bc603efb33fe31d0e2d0950a678385a99b4888ff3749bdfb303db6113b0d64841ebf5137de353dd68e76962eb40183f41e SHA512 edd8ba2da2f3620784a9e9a9ba604dfebf832fc06fdf22ba0558316fba8385d04889728ecbf069359fd0a1f97159d91c66151ba57b83b59e3927a11020d7e7cc +DIST firefox-78.7.0esr-ro.xpi 535579 BLAKE2B 90f03fb293c16ca0ff012174c684557550b698d6a13eadf003f3903b14da6ccbfe92d4684c53abdaa7a74171b7a971cb49b93a20db38cc1ddc13750823f6c540 SHA512 0f4803b29b20aacd5a8bec7748452ac43aa6d981202b975bdcb598df8e088867088a20d35c1faba914f613435a1629d48b90b4349749e2e256a84ce42a4c05ee +DIST firefox-78.7.0esr-ru.xpi 614594 BLAKE2B fbdb097dae54d7e1026c32bcd251ccb8a63be9f5697fcc3a9c989d50e25637cca49a5e7e96d4c1b9ea939a805944153dfd82569ee410abcf3470b6a219d9f02c SHA512 1ae0327c50e8a81e63945617f060bf3cf687b88b4d71980621ab41799983e50458197e63ae4f1cf3e59d69c51e9434c559e49fdcc7ce9093f678951b0c855ef7 +DIST firefox-78.7.0esr-si.xpi 492534 BLAKE2B 38d92c08a606647acf26f7e8d91b3d671bd658ca76ce13cb992cca19475efeb7dc91c38bd5b50a86b0880ab392f10cb3c861e34088479f34df9bfdf3aada993b SHA512 ef84b1e079dbeed00a6cf5da61db1bd0818d7457e67bad686356d3e1c2f06e067938b0b54c4c705adb391cd6909196f3a77b2b469fabff09c2eb4d77c2dd6e5f +DIST firefox-78.7.0esr-sk.xpi 534235 BLAKE2B 31be847d0f46aed3284806be2bda188e82809ad4303f2c7a0d3d574650e894ea7749490cddce13ae76252a2ab8301df590ddaf349bc082a49b3c3ff24f5cbe18 SHA512 23b57674fdc27c7df96270ffbaa5b1e37ad1ebb25ac66220c6bf4ccb969298e92ca159d2353b16d102fbd1d7806028a30c8a60a7ea75070547ce08d937dff78b +DIST firefox-78.7.0esr-sl.xpi 520948 BLAKE2B 0118a77bc9a59efbf9aed9e7871bff852a7d2d58507da68f8019a45f5461d4cbdce000e9a9eda0d8466ff21470361033a86952d2a1c2341a9d184ae406b0888d SHA512 de77564097e67ee83d52221a3b0588dd05a3b40d00faf976ab551a43f7fdd056573864fbe198d6865e5313f66575a021c163d8e19d8ffa104639bae99b130d73 +DIST firefox-78.7.0esr-son.xpi 424585 BLAKE2B 601f415d62262fd9be218eaac7dfdf51f86672708ea6053988bde5edfb0e2708d70bd34c4918575741c839cf23aa73a9eaab0873bba81413d67149480ebc05c3 SHA512 64bbece7454a68af424ed7a7d87ea0a07cb6dffd0a20ea8bf478f57347a935def993886f5a885c45c289f0e73d80e4c15eae2b816cc78c51c7b1833e8ca238f1 +DIST firefox-78.7.0esr-sq.xpi 544898 BLAKE2B fc2482ebe7a9edcac9e4b61f65d7ad9db617b14c6b9b097d455984e911efc19f092be9e957428973dbb3ba61e2c9423b380e5cb3954b52b65a169f7dc6655af1 SHA512 e5806bf5f6e939b0ddc03a9d2ecad134b99661e4d383f1c7b2d418700211d1e1a40ef2ba47ec76c53be26c656eedc11bf8c98b5a3548b5ab029510a90774fd0a +DIST firefox-78.7.0esr-sr.xpi 561396 BLAKE2B 7d444e936d876cc16c3a775c56ded5e927315f30c0657006155df8420e2e4d960e816a818eb6a62686a0521a57ee8529628e02ddcb19f869199c82f77cdf37c5 SHA512 9e4d79b01c0037c32fc82bb77cd1dcd115f28fdbc86afb49504a94c7fd7ef54e292308ff53415e18ddd87acf591a22c24f8127723e37ca40e9444b51cd7c8fe2 +DIST firefox-78.7.0esr-sv-SE.xpi 529708 BLAKE2B ddd719ec3109f6055dcfa2e2a2901d2176a9dd1f0b472686ac5f69b980f21ea376202686f1d9c2b1fffc0a3e6a96c7d83c2e6f4951d8d7e2aaca8587d2551889 SHA512 46cd125d9f07fc0d17f86e49a185bc2bd0fb8162fea43bda8547bffd35b47957949b998af90eecdc006b957d650ffb409941581cdbe8f917a505cfba852ddd1a +DIST firefox-78.7.0esr-ta.xpi 521532 BLAKE2B 81cbc4098f797dae45c8dc9fd82ac600c913c7320c673022bdf86996d69b4d63f48343daa670e34d054f911dd18191fee3a8f16c31bc784ed549bcc8f01cd6ab SHA512 fd4dc15f88785553c502a9428624299269d78978d82e577265318b78359f392f3d46d6d82c2be16d68efde84189a3bfe0d9a00f9441789c8e828ea02df134cbb +DIST firefox-78.7.0esr-te.xpi 558402 BLAKE2B 01e87da1a2f41df9bdcbf48d933db7110613c5d3f4b1c10185ca9b6f5c684fa21378259b285d6a97c9003642f3e736be629a895d02354a4ee196670ac89f2710 SHA512 205830d00a8cea5490505503c5cdb7875bf812b8b43dc9f16433f7d98b41c66abf0b7e25f1a1a3edf0c84c1edc1bebda2af2fd75924ef8c6767102bf401cdc6c +DIST firefox-78.7.0esr-th.xpi 592238 BLAKE2B 8c6d27be5ed523cbdb7e1b62bd6e351f932d15fd94cb62bec7d16669cb1875a787517dda658e24ed5c700685c5702418d8f9f82cc6410c9dda69a7ddca0fb61f SHA512 79ab254586435c5dee81c080b0ee8d235bdfa915bebef671b0cbc9fccbee6921db0ca33c22ba12202f98bf6b7f3f542124531fa203eebae72917174cd2b13c4a +DIST firefox-78.7.0esr-tl.xpi 521115 BLAKE2B cd20cad7b413c9be359db796569194a5255df859b992077dcb1f8e0e36e32cdb037aa3cab83dcc559437cd99dea0567577cd34e6cc28e49397612a4bc056a973 SHA512 6af44f07243724a5bd431ad4de15d6aa18fb673f808b4f7adeef898268bf46be7e77c61f23c9f40c6e356778d287b1e7dda0451688b676ad06261bdf06a9e557 +DIST firefox-78.7.0esr-tr.xpi 539880 BLAKE2B 6bd42340f8013edfd183b822f34bda69d658bf540fbba3295270e14c1908f2059bd276a6b413ec2423b61721ff229221f12040f0e7f06f8339a3da07cf44349d SHA512 784df6aff154d1c679784299a4d415e5938657403fda259332ed8bbdb12dc3d0fc0976705c30244cf5d2ee3a33cd716415cebad756f4c2f1eb9801343f8e5317 +DIST firefox-78.7.0esr-trs.xpi 501223 BLAKE2B 63293ce37235f9bd8626e55eb844daf0eebda72dad646d79b6a2c7ac970e33ab4baf877395221491ff0756e4150b033a09d79d19d53361176d6b7e8b45c0cad7 SHA512 98aebedc4f47f410d5f5bc023e78b6026781b02042dd73a39c43546089bffeaddee73bc9dd40760ad7c47f570c382d3f2bcfcd0ecc11cc53aed3f5a52d2ef665 +DIST firefox-78.7.0esr-uk.xpi 608599 BLAKE2B 23c1e27e21c8616ed2c5e2d95dd4310af08fdb56ef745ede88a5fcd95072ff9f8ec0429f468c0b1c5ede205ab18bf34a93224bdb046d419f7e8c05b059b6dd29 SHA512 4b81d234e0c175232630e72735b65abcbec336d82260b790fc5f57c9aaf665db72fb30899d9cfcf0501c2bb7383f6847fa028f128bddd16edb264fe155c897d8 +DIST firefox-78.7.0esr-ur.xpi 557957 BLAKE2B f42abc403a41deceb9ee3ae01c559aa9afda819cc00b9967667680e4f9f2fe9fd2ad8adc341dd9c931ba6540c57140ec33098d9dd52c7f89bcbcad64fdab7b86 SHA512 203b37437803dcf80b23d02ecc68e5bddc731c57275089ffdf3d80101a6b03ab315b0ce4b0695da8c07fca713d4b1943346159a68afe53b1103fd094bbc01b62 +DIST firefox-78.7.0esr-uz.xpi 477566 BLAKE2B 47163bf321b2661801ce4453ab85ca7ab93923af7306e6114c2f919438b1b406e31236c21904abb3395fb721ab29aa14a4c7e5379b7e5f799257a1825f3bdbb4 SHA512 398bad7171e2d88a1d70f317e549c15860eecc2bb2d4083d716722522540abc1801df47e129c174754a5c26e28a9c6738bc8d7b4c4479526e08abb7aa5847612 +DIST firefox-78.7.0esr-vi.xpi 562858 BLAKE2B 9c5e4625800594076fe8dba53585146e5afa0045f57abd6e1b3f0d5b2149c9f7a1d9ca5f00f365935d09c15d72d0a51c7eecff0ff57ff0419cfa556502a1ed01 SHA512 81894283abbd36ac0e14462626588f99a34d11b01a01e9883c9333f6c4b94a1523e9add82905801222f7fcb814d538e14686c05671f2b82fed80af3f43dc0e74 +DIST firefox-78.7.0esr-xh.xpi 427839 BLAKE2B baf565d5ba59db99bf340be6066a8b4b7ac45096dc6ef6e0f072f743b429ef24e6e5e6a3ff9d5cbb99544e3940877d9068664f5da43b62e9b684a45645945f76 SHA512 a4e4903db21356bcecf19ae3528bc4db699bd4811267b6fd3f2b5c3ce6d6a22fd30b8034b786b8c616a25671af2c4251dea3ff6af346edf13209fe09bd7a47f5 +DIST firefox-78.7.0esr-zh-CN.xpi 564772 BLAKE2B 94633d16a271194dc7e0560419dfe69aee2a6d884739388f2157e998bb47f53b71343fa52d05df37fe3c6dac0e1686cf096e04455d792bda18f9725e458b9509 SHA512 59c3b040665af760ae6d773c64e1cbce974a022ed47a462461bf7a09cb226bb65b105d714c66f898e3d30066a0f7ef19949e35044a416146c542fd8bd8ea4847 +DIST firefox-78.7.0esr-zh-TW.xpi 564734 BLAKE2B 4484dda1ec861e9f38a465b2fb43c5ef96f2f688350c86a84825dbf6e3656a03391584bcd0f7cff532b77ac5cf6605e59b85b073af801038fe23c0f9e3ff6aa3 SHA512 852481db2a47a48c0c29153aef337e91d70aa0c25854026c76fbb47775d87e96b657555776c3f09f75925044e6ce90f99a419d43c6b4f9e9665b59f0ef49a6e2 +DIST firefox-78.7.0esr.source.tar.xz 332849732 BLAKE2B 66e224021cbd15b6b625da3c0a98b05026f4f284afbef5299368a218c16da24cd05431ab82c52859b835baf63298ec832681fbc58b3bfe833e68dea1737c6dcb SHA512 afa37d2f6bbe04715d84a8964f75139042364501c358da98771115d7fe7d23788e95b6ff29d77c064a9cfcd208c1424924017ef2a72cbb79dbb45d6f365f030c DIST firefox-78esr-patches-07.tar.xz 66156 BLAKE2B 8f69883432dcbd484b1fb15e3fde1630b1424e502ba78d9ec3cbe70cb2676a6876853d3477c8bfe35e92bca91b200e2d14543de1778d895676a52d2608109af2 SHA512 b4a01d3499002bd33a7fb45a1a80e9e73ba27a0986b6bfa43b3482dd8d82a686a14ae0c5e013402c8c8f359a642632a40bf4c362a0e83a1f53b453914f42e3a7 DIST firefox-84-patches-02.tar.xz 89512 BLAKE2B e1fbdfd2f2a0a128f4107d2db67e4abb1781c35704c1364c5f5527f8100c9063648b5cfc69086923b3c204fb883570ed901268cbb3fda2880ce923eaf7b2dbaa SHA512 ba96ab662c6b19be7ab99870363816b6a10da29d4743a2196e39c1b5ae2f20de28d652249484a3dc2ea259e0e9393b034300b84fd42f28755610550ba29db7f2 DIST firefox-84.0.2-ach.xpi 461779 BLAKE2B 09ca96b1583846c454cfc3378fda6a60b5fac543fcfc69b0579535af30020272435062f18b56f5437f05b9c3b564717e3c2bf5515d66c1e89e4ca6e8598c4656 SHA512 be1302e69f7f0ded255cb348f74d395a80567b449ba731fbea2a0332df58625dd30445c01b97a2a753719af3d123d6bcbe05fa2390aba94a5c88b6644abccc33 @@ -192,100 +288,100 @@ DIST firefox-84.0.2-xh.xpi 427838 BLAKE2B 3e233c26a53320328ed8557a37ec25a3950c87 DIST firefox-84.0.2-zh-CN.xpi 562152 BLAKE2B 282156975c144ce18291a1a641f6497ff939b3fbb4fdf101663220134ce65cd32692c423fbcb34f2d60d4ef64439daa4d8ad1b3880d60c041f1ea6e6359e715b SHA512 f090ccb51e3f9f231c175be4b892bf7ccc89f943165fec99b5b7d5d79d3ed7e0f7955bad0e0a5590b7c1028efcf9ab7eb39b0f08e6ba4f9215f9d19788f4694c DIST firefox-84.0.2-zh-TW.xpi 562090 BLAKE2B bfd8e042d9e5a5b0c9ce39aba96e3d81a4082eaae0302ce346a4d44ab3417580d54805cbe272efca50c0eb0713c84bd79157c658d1a0f6d1d5670f47ee6cc8df SHA512 a06ac452846c183a90a53a43793f26271b051e0ff6379aeac6e2aa384c18ce7ebb0a2d1a4dcd4b37a7bc5357956766e5b0716951ff58d80ab07ca7b3cb33621d DIST firefox-84.0.2.source.tar.xz 363415420 BLAKE2B 94bafdedebb2d238e471e5f446b8e1ae1739a8f7e76544ec7cffa920b83db25722be5375899a10e871cc2fbbc136b3175b4e10ded8d428fd9625b28552d50020 SHA512 3fd4c9a5ec2409f23507b38c809e71a35aa674779dc5a7a2e3ff82841e0b65ead29d38ac4d5b17f7108479ed7338b3d2b40cbcfa9c51e01696634166d92edf99 -DIST firefox-85-patches-01.tar.xz 22564 BLAKE2B c1d53874e51b9d5bee98584eb5a35a18b36d6891fe5f51e497cb9b16d766e168d64843f72f1bc3d3c46e92b314cbd3cb7639378ee7032146ea90b2daa299f183 SHA512 8ba6a20389db94fd6b9f5f5a04bb7fd81e42b7009cb09fdc681794961c87edbddba6d0d20fa79fe120376eb722e374c48e49d9612fedd19cbd9078f81a66bb10 -DIST firefox-85.0_rc1-ach.xpi 461933 BLAKE2B d1f93af47591ee08750afc8bf85ab00eb5ef635bb9d42958db8f0895ed364c911eccc49a17c7e9d49011c1e8c3b8c09538aef85e204f0aa7f20f68f458a61464 SHA512 4b77fa937f9533651575a0deadf2be2973b1b472a21490483e2742455bedeabb6de287e1fb4d6cbfb37717dcba73c18628663839c0f6c45281f954a30b8d5dc8 -DIST firefox-85.0_rc1-af.xpi 427614 BLAKE2B 66e9b75a14ad91cbc0658db0b7675851633e98341d821fb0cf38d65c403939ae59ece86abb4b669cf8900122ef3f7b6b165738317f0b9dc077456823740d5771 SHA512 90d1450f0c0dcdd77e99a661f8b9129c6dc385dd016099f44a94434fb92217dfe270cd982d01e095160cb2bd5870e16954b6b28160ae61379d94eaf400ce78a2 -DIST firefox-85.0_rc1-an.xpi 509100 BLAKE2B 42387657828f41570e02dce8b0a57487d1ebc06d10a99c7c773c7384ae5ec9664002390fcee642da09d4f4b6b9b78dd4f096e52b19cb173e2fa3f0ef4ca29139 SHA512 cd9ada8fe64c13ebb12c0932500cc88ac49b2e4ff42ca39a8373d9494f41d7beb8a00c127ba03fa820dc05dee086f8f9f1b45f4e68741689fd5af8a09f975507 -DIST firefox-85.0_rc1-ar.xpi 560013 BLAKE2B 3889d56153fefb34c920a15677f2b275c6570e16392745c9143360d028c9b6d17b8766c7a25c4d9bf9f3fdeb8b81e55f1cb79958ab5ee3b7795b990b511ddf65 SHA512 e5639bacea266e1286c3a248df63892357b2c77833415e0091bc8b405810bf78f1fdd8f8380baea361056057f0fd02fe9f0d27a1cd71c9f09bd619ed2fb4d13f -DIST firefox-85.0_rc1-ast.xpi 456389 BLAKE2B e73e9cf84fa3da6934cf5c349fcddb53066400e6da1c320bd0a314f2527a70bdc49325710f2d14bb9b8cdbfba0aa35c0fbfe226cb75697b028c3b20a5dc0b83d SHA512 f81afeff5fbd6cc87c0092e69b810ceeed9435fbc856b8b366fd2a45b5f2c097123dbaa1ea283196d6b65a0a626cc7780ffa70f4e36714bfb3e678263a4b6fd3 -DIST firefox-85.0_rc1-az.xpi 498340 BLAKE2B eac41a2097beb1d390f2784e180a8d6fb11e0432b5fc5223b855cbd08ac3612c8daf0b9685be83602363ba202d94d951e77480bf9064b21a371667ea8fd16c8c SHA512 471f2e00bb187e233ebdc76dc0ec2374d2adfeb3f3eb8209ebd7d94b2dcd553770113cf5dba5d5648dd29c52e228d4dd57a1348375f669f04d0434438e6d4389 -DIST firefox-85.0_rc1-be.xpi 608193 BLAKE2B 7cc0ae3a712054d97678e020bc3cccdb2abe9cba14930fa1763a4fe6276e4498b321bd0343332dab4f34c0e86af69336e704264c6a7406c8a4b713aa6516a872 SHA512 05a78e6b22bace042c3328ec842484b83d21dbdcdc0eac7fefd51326faa73be01fa399ffc67cb1d712a02e28a4c2ff13ca427e6312e243b66e3e7750d8daa6fe -DIST firefox-85.0_rc1-bg.xpi 556201 BLAKE2B 9412d1a27360aed6eca6f6c07abce6f2fe9acd8cfb5ffeb8a09f36c9ce6d577b83130ef70247f19a890189b5ad3ed2c2281ce0299d3c21d7e27e10a90196dc46 SHA512 a1adf3c24970ba70e915652870454974e1c77e7bc15e8ae715bce01418be6091a58d8266adce2a4fd51ea78b16b306a5d24f7fc38e6ac4746beb7aa717f7a470 -DIST firefox-85.0_rc1-bn.xpi 573119 BLAKE2B 4289988a494b287a695b2230c4464dc29c917016f58549b7bf1a97e487695182c004765df85501b24d92a82c4fe99949c710d388394a9d6adaaa71a9b9e42242 SHA512 d1c0c6739e9b4b327203968c5fd6474c6618765eff230df67e24fb05c16e09cc99b85c3d0ff223f59a8a70b1eb254387b182d0a0a8df8495a11e8a9d53bd23ac -DIST firefox-85.0_rc1-br.xpi 513260 BLAKE2B 2c323c8c37a24d7d455a483502bcacf0b47f15197a89b5f83a3f02ce5daefa7b0598291a3afa2ee8d004554a50209f6d08b51f310738dc3cae45580f52da1ae9 SHA512 f171033515aa19d097ef78b73ad3a4f2c4c5b423a902c500c0747616f9387736204b28563e38462a40c8a8b62359a9597e103854473626ccab4ed1f5a5d835ca -DIST firefox-85.0_rc1-bs.xpi 465162 BLAKE2B 74ddc93d5a98ba5bcec84e48aae0abf19dc7c1850ea963016df80540e502236b8bea068fb1d99c29778bd7eefedce10e3c5f322660470f51857c3e9f6f4c12ce SHA512 bf60c52aad97258400bb9d1e05e29fd4ff0a1dceb98fec208bcb7cf2552aa5aa2c391bff582f97d335a70fb08ba49c97aac4a7262b82872e75820b8bea84fdf1 -DIST firefox-85.0_rc1-ca-valencia.xpi 526000 BLAKE2B f8abd2f090cd76282930b2a62f4b643e9aa7d796518acdc4e6e0349e8d0b3ec2cb1d636c996adef601e54455e4c42ce40e5ac2b059763e7aafe0afb62eb1e216 SHA512 b1ef2e57ec1dccef4e391d36ad177324df980d4d3c7022fd2465f3456b734f4fbeb36a591d50d5eee6888d693b133e99c25a46153b8af1dcf795921d9e53c41b -DIST firefox-85.0_rc1-ca.xpi 518602 BLAKE2B f77a4014018baf6ed3ae6fe5c38aa62d2537548d85655792e7144af32adaeb1329120d2f913ab857acda5633d9da8ff61fb8e0df32f7ccbe4744ee9e09f8e90c SHA512 52ec976fa318e8525710037f8c8906afa9418f72d093bf36f21819fd9d361b952c286f916c8de9c3c4b0905067d6a3080a4fe26a2bfc82704bf7f995df180ea9 -DIST firefox-85.0_rc1-cak.xpi 550451 BLAKE2B 5e4ab366a8231dadcf93a4c61c15c7f2da924428bc1c7fbd471f1b861c3550c7d08676931905b1bd3dff189f0f1b5f7e50fe0b54a59c7bf5b391648dce1facc3 SHA512 33a1a10db234bb95ebded6a57e40ac7ae472519a92e4b507fdce156b3c4de46cb01630458078cea49d367af3b3c6b224311a1a6b8e8836be2173194501008c52 -DIST firefox-85.0_rc1-cs.xpi 546377 BLAKE2B 9aa86b30dbfc0208204a9b5770fa43371855c1025b2fe70cbf4ee71287f48ba204eb10e903b901bee892ae68ae4bd9f132b4d491b67b55a5db65a0e2bc90bdab SHA512 cef60b20b77d9b32dbe041c0cd089950be0b4e30b060f19eadda7f342ca9d82584ca7262084a41ff13ab0f26ff1db832a6fbbd6a73449aba7135fa80c29fe5d5 -DIST firefox-85.0_rc1-cy.xpi 530145 BLAKE2B e24a0334bca415c30cfb69df838ccb1f2cc09720d435dd64382047e43d9bddd6c5e17b51d69ebd38d71e4f2717073ef0ba62c9559c7ea310bb6b2aaf1baf4c4a SHA512 e2c98f2a8bcb38a9bfe684234bdcc58a22f97175f55b5e64633787e3a2d606532c860f3c3ded7ba1916852cbbf6912bb87a6d673f911bf55ee56f9eda6890e84 -DIST firefox-85.0_rc1-da.xpi 522999 BLAKE2B a460f37876db5271dba54a7d58349e329ed1aa3e8ab324c423b436d3180caa8bd85428cba29616fde8f4378b72f851b59c68f83783b3d69a092c5c476ef5d289 SHA512 849f8a72701ceac3c2a83bbe36792a4f46f8ff12ec5534a1ac44dce7b7f0cf9d5946b09087263bac0df963eff1b0a5ac14a8397f16f49836d40a8a36e8ddd6bb -DIST firefox-85.0_rc1-de.xpi 542064 BLAKE2B 02a8d3a048bcff162c257ec794870f055df9db511356907baad7a5dcd7b589e312124cbb1f4b4a83ca9b7d7ddef8a93f78330900dd14f6e8796cd383700975b6 SHA512 797773ba21c6bd8c525ea856aac1adb1cafcfc35650caaac87b1c04f8641b1e750ee40e9b24783c3b532c2c7448bf8ec367e1d0aa3e297c5e3e3e2aadbac8e83 -DIST firefox-85.0_rc1-dsb.xpi 553450 BLAKE2B 6ad3fb40c4fc6d266dba237560fd5eb8940bb119b6580452c5fbdb172578f534c66e8f424e1a90b353927821bf20e38ec9c46f93b5b3b854f232b6db8283f3a4 SHA512 b861fac004a04ffad9a8e2c517dc9637f101e809dfd2ed055e8b6b570286c6c4b7e81550a46321118e9414368b92219ca80d299c92bc9471928d35fbf9ecb36e -DIST firefox-85.0_rc1-el.xpi 624869 BLAKE2B a505f69821f5af30aeb74d4be1637599d204d7ac1ea977b78b3aa31b55584b051d0ea341a6677eb93f03db15b9d3b9958d2d0454f30d91dd086c22cabe18deaa SHA512 783602bbffbeb9858556a2f8f66604b40bc8e307f4fe2bc4e7bba00b0c3b67a77a14f41c090734cc67cbb910c533327f54a82017ff03f53179787d9a881197e1 -DIST firefox-85.0_rc1-en-CA.xpi 494923 BLAKE2B 742ace1f202ab7a5c5fa0c494969276c448324e05e1b88f1c85bcc035fba44ad74717734e69439f0f2a744d272731e1d932b3b23ebf5c722ecaa66e42a5be5b8 SHA512 5e7b29de2e6f7e406033fa4962f9dd41b4e9a9fe5835cdc6c885e7959e90b2cf343d53f404451338704bb0ea5dc2b7ec6c05cbeeccb5a007b2ee6b7e53cdeab6 -DIST firefox-85.0_rc1-en-GB.xpi 499617 BLAKE2B d3269060af5b04fd78bd23ba48bb0a5e6d5bf6446c9aeaff08c307b074ad47eddf859c78a67babdf76a517540e61601da58f2f0ca05424fa8e2a0bab56fa15a8 SHA512 15248fa28e91adb7b7741ccdf05ca445da7c9876c9a25322416fde2bf5d350d2ddf8d69a733febfb2c2a85fbd95c69f132899d60c4413f0c89d7d01353cdb93f -DIST firefox-85.0_rc1-eo.xpi 523960 BLAKE2B 4d7002b9c7e2e8fd280da46268bd0642473367f309fe6cd1efd02ec95ebae46c1df7028d1b8d3d399580ba43198dc3070ca510694e5959c36c454b57b6e66ae4 SHA512 d626b6846a15df99d71a237b6eee13e076fdb780876082864cb34d008722ea91c529273f4ec80ede31a85cd66b7eeafcb77e6997212c139a70a231ca9bdd8eb4 -DIST firefox-85.0_rc1-es-AR.xpi 534745 BLAKE2B fdf355b50c601848acf97bfae5014b26840d81cc062667779efeb54b0aad931e88d3fd773d85f421ba51b9d52a9130983f922b20446eb009b1a010df6ee7b1b2 SHA512 15cd9781859d129b56006db48a29e52d3297ceb43c93039de3b0db837d5344dd8f57369c4d01701ce6b446d668915222006079daf6b5cfdad6adfd40f6edc730 -DIST firefox-85.0_rc1-es-CL.xpi 534349 BLAKE2B b248d6dcfd2daa4aefad4d3f6656996660bf3258a4924e50e08ee4f4b46dc5e253270d2c35e3c149c2c507280197c99a7799d7a3d5a7161a646b4822548be2ae SHA512 638eae49da4f8670c2594985ea997220bc24d71585203cbd018436303c051be8fce27564f51048a59b323c73b2945aea66d1c761f97d00c070bb0ec603ea9c7e -DIST firefox-85.0_rc1-es-ES.xpi 524309 BLAKE2B 0095ddb66ddda9d33d41005d0a1ca9c5371297b3ef4919cee1b7ae36b1b86373802f0b27297bcff7e0683531dde23ddde08384ac19298d9383f094db17b78827 SHA512 838709fff7f452ea805774d7f1b13ad0a49c394623317d8990bb7699e24d4815d37c29ae4afdd6669a890b93683727fb56618810d98c2bf25731a0f549850645 -DIST firefox-85.0_rc1-es-MX.xpi 538264 BLAKE2B a059be257f0197645400e3fb27b1bc5c9c1ac24aefc678f4d379562f8536b4736394d60266eb1e159bf1dbdc78d57ba9d3558b1c4dc835945656a394e0af0595 SHA512 104e76074609759fb290595c2e4b54e329fd4c4d65323f7a5a5c10d1d63d6bb8e772cff0b23b2a0efcde3d2f027d26a657f5346faefcc0597ca0b3c4e7679408 -DIST firefox-85.0_rc1-et.xpi 489794 BLAKE2B 39192284d88f19072eae940ae0a28649dd85bd81dcd99b6c994418aa5f0fa423d33053cee790629a37429ad570e2117eaf005c8de2202d44915b38fa8e50fd53 SHA512 ec929143cf7cd7ac36563f6677191190bb30767e14b08a630f45890902ed9fa56fbd7492c212196e773f4d937bd4e2cb90181ad4c72081bf7406a11fdd22b2b1 -DIST firefox-85.0_rc1-eu.xpi 515959 BLAKE2B 837c2443d5317ef80cf25351666aabd7a21d2e602c698435b0abcf1b143585c65cac42eafdac6b54aecca9875805953cfb0b47870910a43c1f1b1fcbff94a616 SHA512 a81cf3ea6791356c1ca40295d8f04bd8087710c0e621452c52df3b61da88cc9314daa146bc1eeba58cd27253d138deec931c8da941eaba534970994fe156283a -DIST firefox-85.0_rc1-fa.xpi 539457 BLAKE2B b1fb8f2dd2b863d6bc660a4c993a537d16ee9bb34f221e6a3163143016179b1e9e589af73a12907e6deeba73db9182d06b55cb562239c1316caea2fbe0687ee3 SHA512 971baffb397712a1790cec02e26b548559f977f153975274fb81f48ed959f3ae02780bd65e8988c3c4069797a236689c598e9c738094aec34a39aa9e7660c00f -DIST firefox-85.0_rc1-ff.xpi 483060 BLAKE2B 683bc89133a4acad83b58f8181cbfc53873a40d129f0004b4e756d1d86755075f6feb848ec09f883b29a4ddc06dc129aafb8347b6ae66ec7c449907ce074f8df SHA512 6e7a6b32582b7dc9c53e5c1c6434ab265e458ae4ed374f5af16da115bcc924c70c562790313e745d6c658dcb125be1c76441f5cb5266718d60fafe02c3b18e37 -DIST firefox-85.0_rc1-fi.xpi 521320 BLAKE2B 0318da7b3dfe12c925dd5c4d89400860921da4ff3eab34768377034a3d22efeea89ca961676c33a64b88ee8f01012c4ebe970b106e9ccbd0d8f4b5b2425230bb SHA512 78bd2d8ad77b778256cb9de2b0934d4d1d0636e59da1378207b7e832b263c2b69f295bfd2e8004fdef7ec62bca0acedd0d96b9f137d08d6e3ef1c0baa4a32941 -DIST firefox-85.0_rc1-fr.xpi 545681 BLAKE2B d71b2a254c38cab7d799cb354260968493b09750e8af9a0334b352e0405c7a52f82fa2c00a59abc89796cf4bc653a7c4c1abd01b99d94f2f18d14d5d486b0c5f SHA512 6e461df03c5af731622b85d87d90c6836347fbdec4e55649b15708566800a3438f3120d2e229056b042780e9412633afc671978a0b2d1a8be820b6c67b57d4a4 -DIST firefox-85.0_rc1-fy-NL.xpi 531413 BLAKE2B 69e64dee7033e281b78bdd96fec3e3828b5e62bf8b22f925d106d5b38bbf71e0f2dd239114db9bb5abc2fa5ae1dcae55eb88973535eab8c0afef44d5f4826840 SHA512 b2c6328126b67ed1a8f8bfddc743f5a9efb81a8ef6f2a4e3d77e1062334112c70fd74689405d9f9e660f35d80cd57024f3904524bb7845174e0ceeec84224988 -DIST firefox-85.0_rc1-ga-IE.xpi 466795 BLAKE2B 84acdd8185bccee04b0d13b7570d93c7c585f5413c5b030b923a338fa6e7b2e61a772690aba58f51f1d8f150f8207ad9ca787a3c31f49c5806f9e5b8f006db12 SHA512 166a0a891862a0d99cbadc1a137a959152756d3810f80add06982ace738f8e44a7fe3baf9c364789c9581255722ac06f570a5a6ab0dc19b125e7e51108bf25c7 -DIST firefox-85.0_rc1-gd.xpi 493280 BLAKE2B 56e30e66ca5d6e90dc0c49d5f066422c6972a1c8a53c0a972eab8f2ec7a7f6cd0111c9f832354d366d2b04a4d59716bd1389fe802fcb6e4d2080621e3d1665f4 SHA512 e6487baa214f155a68a5b3851ffa064ba893e616b2b0d4bda734be14f64df9fdc04b4f6ee2b864ae037d545ee0f66791532812ef2b3809c27efcd0cc4cde65f5 -DIST firefox-85.0_rc1-gl.xpi 529929 BLAKE2B 43496663eb96871fdb6aca530cd0719accbd98b4858ac1f946a55c96a1368159b2b07d4127ba3fb6dd0608d5da70b555237f5beafb163aa9f509c3f7b179bc30 SHA512 10824271e5fb871f62c871ee4a53d8b66d613eec50a41c8062ecedb48ff253bd2f5fbb8355e4f64c5a29fd58c0b53cd4bf1e8ee5aca4f11e707c5a03f75500af -DIST firefox-85.0_rc1-gn.xpi 545326 BLAKE2B 83a69bfd0229d201b72e6c217d9414934f3be7dee6b96e6d0df2c0cd86ddb107fe48fbe5a5a3fb54ff8eadbf4610032505bd05c55d0447f03a94a9d9f607d46f SHA512 eb4a3a5272404fc9e9385e976d4d724281b722dcedc6b5af3d76b3aa7dd3ec40da3c80778eb91a47c29057b9d608d46790e8bdcdd12889e523554697bd495271 -DIST firefox-85.0_rc1-gu-IN.xpi 541803 BLAKE2B eb021f35b4ca4bb4eadc29b8287a44de4bc7b2631a2721c83c794c51614012f4dba28615587acfde67b8d76eca422f2f67613a7b16367a492e89e935dc1d1465 SHA512 8e0b3740525a631e703698e85311ad62a27af271f0fc18a2919d5bde91219ab34ab1a72c61e6cf6ce565b0bf70eb8f6161f55347d9488940bb3f00b0c758fd02 -DIST firefox-85.0_rc1-he.xpi 546611 BLAKE2B 026cb54ec9e80546a74aff1819106f4834be99579f51891dfb878956d835d1f48e7734aa2781dcf1cd0e217ea236c810a7261c0a67ccaa2786a8eb4eaf6b531a SHA512 8432928a249f34c6d0928965dbeba0fbf75bb99e1a8888b02fb867490495630544eef9799cc31ee64842853c2d0251eebc4ae4ed50722d6e32f9ac6399b96a38 -DIST firefox-85.0_rc1-hi-IN.xpi 567420 BLAKE2B 671f72205c873cd3a1fc23d76bf18bbb1db431136ec5125e2174fc2cd3857f952865165a5a54b56663c2f27aa3445b3e2601ceee077ac02e6a9011d335cdc8dc SHA512 b73439d3b8cf4c27ea162cd44153627b2868334393c13656f2f97d35383178fa1c3aad317fc39b7cb75b952852931232e2770838e016ee2489df602d46b274f9 -DIST firefox-85.0_rc1-hr.xpi 528008 BLAKE2B 46008c6f437635ef8e59b3c8c202457957d95a119d201d0dd35497b6b6496abd5e55227c11b9507a99127f24cbc66985214785ae505f98491c9a9d7dc0cd365a SHA512 29c86d7b76a9b0499685302436b8c1a8b89ca32a4a1a431235cff67c3d8597af1bc590b092a1f48f77ffd312acf647137c5d9d73f217d7e38c9ca9027d641a90 -DIST firefox-85.0_rc1-hsb.xpi 550091 BLAKE2B 694cb0c88b502d849dd01460f8bf2fd0384b200aef12692c6eea283ae68d36e15c1fa715818056fac7361dc6ca6052058878fe4d4cae3328a3d104f0a375bb51 SHA512 e7d381f69730e92ea1c5381140df1f854c9f14410df99f7a9d769d7ca1be2a6170d1dabcb5d7263019b1a7e8dc4af0aefd7884c539ced0cb229e0a8e83416057 -DIST firefox-85.0_rc1-hu.xpi 553365 BLAKE2B fe10f7843dca913fc56efb052377bd16ab99d39b764f6372f5bd881a465500b873b0d24a4d70bc040f8e0751bd5187ed3599c2e6e00b9a5734595c0a64a6b242 SHA512 c9529c266082f66270ad5b8086cd1044890c5996fa2e8c658764623ff53d9373ecdbb542e9e2cc69fb4371edcd33a19c93b4774d16587cb824dde1b54437efa9 -DIST firefox-85.0_rc1-hy-AM.xpi 588299 BLAKE2B e5b35d248751b8acf2f6f4086775412806f28c93c0bbdcfcd0f57036687fa4adbcf7a65cb339b94a3af62fdff4576ee01ef8327b3aa86ab059d7472af1aaf047 SHA512 d32b8970bde8d88d52e1636aa96b6da40cac550a5b65f9611a22a0ab4fd76b04d926144f348c559b68792a27daaa4ad468596492b7a308333883fce14896e2c2 -DIST firefox-85.0_rc1-ia.xpi 520736 BLAKE2B b1b809dcd2ee64a2a9af5c5fd6df1d2390a22d49d93d91db01fbadf8fdfbc03f6ebfcd71901d4d239bf4fb03da393f5913ea584d595c8931befba8be72c11719 SHA512 b46a60d30070a81385d83da8eef0b7ed51a95fa75daba742a6e901a6bc1699cef2c0f030e3f0f8493074572ffcfe23141a8a62b19ca66bc1197e96e04b952f39 -DIST firefox-85.0_rc1-id.xpi 508468 BLAKE2B 37101701607e459f11080ecdbfc92bfd005dfb973bf213fdceae2b20feb1c3c96413263cf4f43269a3e79c1e32d8a414fa91487b152a166a9db1b17ba421901f SHA512 50e35e400898c189d863160bc00251d4319a4caf85c2358618fa35114351164fd4e133939de835a09fe6034a2c1ce77ddd5ba69e87b4d123f9c1ec748761b475 -DIST firefox-85.0_rc1-is.xpi 478565 BLAKE2B 80a3fa6db94ccf7f7069bb3cc155f1aede98340f6f1ff541154cde14ba39e164539adf70f97feef18f45d60738f58b1bf1ffabd39db675a53763f72a69274e6f SHA512 51681c774ff6272cb44b0e5202cf7a793213712307abb06b09b9a1977b3bfbad792e22380db3c928f87745ec1a0cfcb040dfa2ae94d1b60d6ae85929c4fd693b -DIST firefox-85.0_rc1-it.xpi 449085 BLAKE2B 5dd0e08cbb940ba965cdf4617b65f579e4204154e7e47f8b4e36f18ce768d3cf961b75897467d350ee78bf9ff3a263cf71b8094896a780cf32e6a568095169a8 SHA512 a54882253b46dad64cc4368ae08cd2beb5413820f7353cb6e50d9f8bd1b46e128dd70fabe29d209db5f752ce3e9f4efd229806454fb0ca9dd8c8c9dfde5a9d35 -DIST firefox-85.0_rc1-ja.xpi 579681 BLAKE2B 3bc18067b491ae726816b8554827e2e906dd35c9a06e255b398ca19d7c0fe713c11b5a109f4505425ef12edf9e5cf5036f9a626eb2a7a75277d1794a5486478d SHA512 c6890c4ee983e1bb05c4cbc5973554a16181ae5ebf131fdcc545f7c52d1a61cf226c7fa09269c24cb772b1a817230b48da7dc63a425fdadf052cf53b51fb7608 -DIST firefox-85.0_rc1-ka.xpi 580365 BLAKE2B a15e44007feaf0be57f597a0da56e77c9107e0104f81a266d7afa7a1e19d56d758920bad6cf1689e41a3f9d701f7409e6f75823f93a50b12645156158c2c255e SHA512 a774161eed3dae5b9029de32ece7e2c371550ac1731a40453538135ae6eb450c1a1fd2b1dd161073583ceed9fec4de6106dac6349d85a4f7066164d4048aae27 -DIST firefox-85.0_rc1-kab.xpi 539953 BLAKE2B da98f727cce0f235a1a021441773470601b5dd1d677c1d58a87ee9014827468e2f0ed422fb2550dbaa334638352d0da7e4bef4a645e5859bb481a6c1c7eddc61 SHA512 14ae839e05710c3646d53bb126d17a9ac233e0d810b2b18abbda5bfe1195a8155d1c39e03554c08211280903cdc38a80806c692be18c705b58bc91643321e4c8 -DIST firefox-85.0_rc1-kk.xpi 591588 BLAKE2B 5e3e15c20bfb5e12e939b00529652fb8fd7bcdf102c9fc25cbc2ccf0eb08496a057a9d17d7c3879f5268c17d08a84ccaf15ead9923525399428363210a52294c SHA512 f9b7ba5e143946c113ac7e7ab07b8d2cdebc32605bf570d58915bc9e82b3ed511d9676fa0a108cea6d3925f5e394a56f8ab02477f581e7b2bec254d9a1229cbb -DIST firefox-85.0_rc1-km.xpi 527195 BLAKE2B 1cf3afd58e8a702c71fa07cef881e20ac490f2f4d5f846887e44bc0d07c88e9afcc9b69749bff4dfbbcc76ed46c24e80a3abed6626cb2e7891aa02429c8d75d4 SHA512 9504379b9fc938df54ccb599e715bdb869f81dd0bc62ccb7c2780f66a92bd88f20783daddc375a2a720ce70ed4255884d42a455884f829978ac881fc729ad41a -DIST firefox-85.0_rc1-kn.xpi 505553 BLAKE2B d6ea1ed1175c8cfc836605a2c5ce93bb8cc8e5954e652fb07d1a578c46ae4a5cb435b7d6f9ee2cdea7384042bab5ef62dc5a139b8c4b201832b52913498b8de8 SHA512 e73dc38c1e3bb5571960d2959e3ec25757028b12aa489edf8e6ad0d6dd48813aa471cf12a2658c2f0e13ff6297a605ff0d520af0232081d519e57bc984de8502 -DIST firefox-85.0_rc1-ko.xpi 565816 BLAKE2B 6f71032498f3eef34db86f4721263e5bbd3c8466e37b6c716650fbbaa5211530db4ef13db04080b0754aa025b34a62656ad78cc6d4505df8c5fb09dfaf8c9fd7 SHA512 ca0c85b1d02c0c6aa15a8c66195c49c8f9d3d7bf6c5f11bfb71b1eda3381aa4f44ff3f8ae28c68702cca2b008a3a553fea87e66e4b646c4b39f582b1bf213a7c -DIST firefox-85.0_rc1-lij.xpi 476943 BLAKE2B 4de7cb46af3d03a342cf4ff5b34abd20ddd59c46db8cf0aed8094ea484e8d120f2f08b7816678024fe8b3545a51095c80168280a98559899b397ea370dc24000 SHA512 6792da8f0ba9619802d6e34bda8f8a5c689ceca007223ac75af3c6908234daa49b9c9de6377248f5208f9bb95788b576283af12bd6e40bcd8e680d133ab318ac -DIST firefox-85.0_rc1-lt.xpi 548690 BLAKE2B a638b1c96b84c7da39a67aecd9d6296ff7fca6b405382ec821c5ff894f1daae7c18d4c5cb95242f9b66ea1dea4f70ade8d40364f437479ccf94d0788704549a7 SHA512 b0a7f9676985577dad8a939bd1c913d094b0ea1800d066eb431300847944b5ec16f8c652c8a8d71f4907bdd45312bf6dc25c1e25af85ceb01c6a42ec326c2a49 -DIST firefox-85.0_rc1-lv.xpi 470594 BLAKE2B fbf52f802ef81efa7276bda30ac53e43bb86b592b9851993fbcd165fec08993d22c884bc7b764876a2671ac80de6ae3e764bd1da181c2f75369d6c207f9f5ebb SHA512 2e1f406fe2b515c8beac4aa228ea18a13551d4b7b869df1457bdb03d70ab4d100e01783438ad1afa9508773f81ad4ac66c368703bc2b729660709cc086315f59 -DIST firefox-85.0_rc1-mk.xpi 458755 BLAKE2B 50cd592aa8e373ec70ee4204c2f4327ce8a9fc947bd5d80535a477c7bef94a42b8da0954bebb1ad570d238c190bc30c27763d3eccc2f2b82ad0224a7f10b9a3b SHA512 37d0b35f82b812c35d594163e72bd0303a30e317bda58cdefab55308c85f8e87696df0e63a1aa97d0035618f7a392f4c779eeee7fde3c39e4d19d9cf0dcdcf42 -DIST firefox-85.0_rc1-mr.xpi 541702 BLAKE2B ba45eb55b77b6013540263492c6ffa3bd9d8033020ff1a84ade2f308907ca364312dff27de317b0ce9d39516977317a16ee0f6e8e3d584c35c37897098d789e1 SHA512 ccd49254580468bf18eec2649b53baccb0aaadc6ee549d4b5c8808b4ebcca204d62531d88ca819b816ce64a2b91e704b62d708b3f5021c94245353277f2ef8af -DIST firefox-85.0_rc1-ms.xpi 454619 BLAKE2B 09c49b0dbe555615fce54b518b48545ff1cd2a9cd4af107f14a06ba31f8ac76d1f5a4bb20675beb368c62982d890ea8cc681d33c89acde7e4a545b22a1a8b9a7 SHA512 6ad069b8c7cafd3cee70e1529c86a0f91593c6b3c47fa78de70e927913d784d71aacd35ea7286ba03fc9382ba7dabf86b1d579a8f359fa21522349d697f5dc2b -DIST firefox-85.0_rc1-my.xpi 525376 BLAKE2B 027f463e914c1c950d7a343a258d0be64f1c1b4b5c20efeeeba34fa209cfd22a68e40596db314fdff89a264553cfe5a34a5ed73cc2cf8bea38160698fbe9b94b SHA512 65461bd07e7117edab0f6e603c9dafe58716a8b340f6e8db6430fbc5045584c49beea5b06ef02bf1a90d30440ff75596e0538506a6136d368116838224ccbb23 -DIST firefox-85.0_rc1-nb-NO.xpi 517675 BLAKE2B 9a3d3e9fa5decf6cb65483303d87842910e111579867b3c6fdb47184880ca9bc92c001e10d672c8744a494dd1d7d9cd36a45d5db5864eae6523a189b98370c5c SHA512 052088087a8decba9d256af74d5519344be41a81e6c103f3a44923f943bce41ee0220a6a9b506bc2611df3f945d9c7200152ddda3b8fdfb08db1093bf675c557 -DIST firefox-85.0_rc1-ne-NP.xpi 482299 BLAKE2B 7c1e97eecac8817529fbd729387b3d00bb594e878d1bf4c81c3b9e09c459fb307ecc9dfe815627eb4901cce3c66eac749351e20fb8e82ac9a0eb85299e726908 SHA512 3b62455320af12d8c30380ee21374ac8e72d4a76896538f10452e8a0757d7c7f2ee64a4cb54ff0a8b553d5a08a29b12f4ccea07a600c910271c4963a9c1758bc -DIST firefox-85.0_rc1-nl.xpi 525217 BLAKE2B a9406856cdc4a5b4a07d9e5721b046b2724a4f23cbf2771d43803fb57c4073a801459642544ac4042ab05e8d895e40dc8c93b6992cb5e3355a145a03ef9dae69 SHA512 5aaed37f8374cc874ae60ddfd8ff37ae4df8595d66ce8ef792eb5a308e9edacca3d4c3c85be8e28335a6aa5c818285c1d06ec331ea6a80767af2a9dd2faaaa07 -DIST firefox-85.0_rc1-nn-NO.xpi 517429 BLAKE2B 5905d11ee1b824646a87e0e1954551de038101f76eba19ca71a91831306eb67f35f926c18642caf768515cab2e86db8d1fffd6dc3847004bee102d6ad26f5579 SHA512 90bccb9a274d087b9e3507bc4c87e4f350f98281dc9086d35a68659ba2363c950c50a6297de3a4d7adcba14f2a08047a24626ba6cbdd1f62d5bdfe27238e3243 -DIST firefox-85.0_rc1-oc.xpi 541157 BLAKE2B 2ad3b8ab37495406ad0de5e652376f3db7bb8efe61f82b48ce2f59a8c6553d912b1a9056f8f4688303fc9d29108521a40abc5a89cd248cfa17754c9cf4d4cd2f SHA512 d11499da6e10b7ecf30100918a305c736374d51f388c4f7b48e363b92c9e8f75a5f72d10ceb9f758641a3a05da153559ba7736b18b8f7d8299dbb69712aedb0b -DIST firefox-85.0_rc1-pa-IN.xpi 587114 BLAKE2B e0af79edb653a12d8047d2fec88ded28a04be11eab061a4ccecce5ed0a0d7c1f94bc0d7dda900f317e6ae8816061b3701f3ec8956248e1aaffd8057d67b5b8f3 SHA512 6a4680ab8d6ea99e98b331b7fd5397b03cc950c6512f9691c889d45ac5ae8c771ccee4df7ade62a65fc4cb0a14b6e5354f4a0a6b5658084ba28964979ed9ec29 -DIST firefox-85.0_rc1-pl.xpi 544480 BLAKE2B cfcae877b80fedc37b6c8b225044c25a496a2073c6c2b372e165cffc102128312d4b412eb6f0e859bdc7dffe638d93ed32104d72dd5d53fea4f024d75d99fc36 SHA512 a868c627fb425890d9fc56f3ffc8df64c967b17b8e37c6ee27a72f1f3edf7c40f7cc9b8fc220714304584f4d5db3b34f4d33f141b4ef9457ce0b3ba3618b2cfe -DIST firefox-85.0_rc1-pt-BR.xpi 528210 BLAKE2B fdf51f54dd396c8d462f65fcf5159573fe2b5100c6bc4e18ff9446da5586e6e85f697c9c45a6ca1a6522fba7afc05b170cba923b179845cbe522fa14c750081b SHA512 1a9323b9cbc63c9344e47d1c5fd815e2e35acfee067c1f552247f5620f3eb386c4d80187390900683b616a542af40b0187599070aa4123eb1241a41fa782dfb0 -DIST firefox-85.0_rc1-pt-PT.xpi 534510 BLAKE2B 946c68118a8f3886e156c26cc4fb621af53e65a3191711a75acaa0340b883bb65803e5754b262a1c044c2b3945834aeb70577a0ba986225dfd1c6ee0665fba46 SHA512 add8647fbaad86f60facf75d75fc14c40147fe0aa1d4dd597cc59a30396efe5e346f404995fd7a910049cbad59d52e4766c64bea3e3474fa163bfae51ffba76e -DIST firefox-85.0_rc1-rm.xpi 525922 BLAKE2B 42d6fae51d3af1f0da07f20a4dc75a197a9872074538e22cdb326b772f5addd09c70deb30fad5f01ccd048bf3540d60f56284cdfb941ac46a8b720c723c3c614 SHA512 35638b188269b6b99978b3100f79e905976fc290e8b3ccfdf6608ded90813907c78b26732e89ddf7baba0e9a85b977c332d7218d10568e3abff6b711a5156584 -DIST firefox-85.0_rc1-ro.xpi 532837 BLAKE2B 2d9000e156b153273996f530dd7f3408d663716d66064075ba667eaecaf7a2c721aff82569a63d9c5500961eddf9b9df2c1b42b8b87affc25c63237d1064a9c9 SHA512 1b93107e760e0f0795fb2b70fd828119b427b44a1c485dbcf6c37fdb762d423e83bf06f5628813329b5df3d9b0d985e4210815aa99503f6dd203c33935d38504 -DIST firefox-85.0_rc1-ru.xpi 613677 BLAKE2B 874ff1efec06286d384972b509e0d54450e90c0f87571980489c37f07ddd66ee2cf2a8622f57dfc1021e34b3562588f369925573c22d1dd997a52ea1e041958a SHA512 a467bc92572128dc61d2ec40034fa17e3cbd6f800ecd54fe23d4b82830e75bea74043eb5b05e55880977eafc92ea4c7ef6975a5e76830f8b928d68ca9c9ebd46 -DIST firefox-85.0_rc1-si.xpi 491873 BLAKE2B 51910d2c2cf22cdd8140b5ad055bde311a2dc52098524ffba84ce3acb00d0b4cd8eafdf6c2bf150bf883137a39e42b34bdd3a14deacaa87ea850fa322ccfbaf8 SHA512 132fd189994683ed72722d32c1b8f2bddde7f3065b3a307a7161ba0f4568618a613a70a07033bd2f7647c2f4482c8341141304aa303ef28ddda8e3756db000a6 -DIST firefox-85.0_rc1-sk.xpi 540855 BLAKE2B b0259b4179c9d9babfd6898c59ae17e90b37e6e420877551b9ebad88564b0b8ef47a5a5657c11b907ed880621763639b782471c2eb0720974c980e4f168ee6dd SHA512 452630f324f6191f42e354fac7dd392f896266ec6d7d9e3eae157b9ee775ae03c1c03399b097f22349386d12527a33c17633ddfa5f615c2d27092655c3308ef0 -DIST firefox-85.0_rc1-sl.xpi 522716 BLAKE2B 9a02c647cffb82bde3872b5189b5913bf188c3d6c37f446e1bad0b31cf0b141d4aa58bb797996f8c667ddaf75bb7c4ebad5b1d27e3c644e1405e49c865015f56 SHA512 67a30de17626ecc98bcd081e2ff1500bfd4d4ccbe39a1f6699acacfad989b5c7a5e49516ba07e33cc03068db5eb304a6f5a4900ce53086cad21e6a04ca3b29f1 -DIST firefox-85.0_rc1-son.xpi 424307 BLAKE2B 9d648b9e56cd89ada26761e2fa7a010a3581cce7a26295e6b73d7566a27d73de66ba78010d228f7587a39b866a518d7b0e5ebccdd2796a5e8700ab513aa80ceb SHA512 d5461bed66690e8fc9bae22c6f15f3e70dc3b7b754dcfbcf010e3c359b1c7d4993dfcca7363e83f5b153137227b91c6e7ac95615870c2723292fd3f2a387e246 -DIST firefox-85.0_rc1-sq.xpi 542615 BLAKE2B 738d9c6b69b63d99168253da0090e8de95db7086f51855f666865b45c39cab9ad19ffc1e50aeb60217964d99795f300d8ba737e6b979cc4ae2ae109ac2e44386 SHA512 5760d7084482aae6d858886937332b0efa333111dc60fe2af2a931e69bd98b9f5d9cac4d0ffa23601584c453aee0810188020308c47ab3a6f340f5720758caac -DIST firefox-85.0_rc1-sr.xpi 570456 BLAKE2B 87c08aca9bfbd1ee70ffa015136226b7ce688df9033e8106ade187de43c5497a232ddcfc20e5f8296049800afa917b3497beb7a5049d95ba5f41dda878ec0a55 SHA512 f9954bdc98d0235580a08d69f075dc8f8a6294dbf7cb7ccdab4da72ea8845d5dd4d1beda5c9f4829151d9445d61e1949b6e89f1497fc1d277ca6e816ef165466 -DIST firefox-85.0_rc1-sv-SE.xpi 528662 BLAKE2B c1c10626ba6e3ede6a97ad0113bfc98a1a14fcfaf25c4e97ba566f0b6d210104f98a8c364ff594ff786ddf4d2894d72b3c7b3d3f06b22af2381e2da38a2e752f SHA512 99e89d17105dcfb92952e08a78d1d7482641b6086a3cc19b3aef6888114e5432f9927f60562f9deb2a0d0a55ebbd9b373621cc16b4b8aae4e903dfdf515e0f09 -DIST firefox-85.0_rc1-ta.xpi 521337 BLAKE2B 613e05d61887b72273c0c05191c9bac72e96f52ad99c83a83ce6decf7ef6908fe67a7fb49157aae982ed0c49c161df2d2f3d643ebe62ca96668b64343c4b99da SHA512 063148bdbb8771470859075c35d7742497c0a99faee5a6eebe249a2b7b92a2beb04d7fe4e29767b8f2b04a4556d09467a6bb0420786f8638c3ec22dd8ce0b6ee -DIST firefox-85.0_rc1-te.xpi 558654 BLAKE2B a8545af0b997bbe0a116f6842530be7710395a1a138fb0b445e0942db712ddd6eacb43e655172d5aed996993c7af578637c6b441116188dd1ed1718fd3dab14a SHA512 7d0759dd99b06d92eec16a5c4e3160a0db449c0073830e9a0169dc49b15259ae2ccbfda1c7d8a5eded33b1e82b80bbf8cacfb3e0f7a551d19e4632039db20523 -DIST firefox-85.0_rc1-th.xpi 593146 BLAKE2B 6181084554784b28a7c2f1e65bf207b62eee17802f4b35a988be83807558f4eff351633b072d0d9476905782a06d3c97661108476e5f1d3d15661abad5867a3b SHA512 efec2e911595580c3583ddfcdbfb99863500e8a739d89a684876256215febb5a9ae062a5dd58aa082848c4df5651cec1a33fc6854ffec3755b56a85ed34d864f -DIST firefox-85.0_rc1-tl.xpi 518995 BLAKE2B 7d2452239d651e08414642b1e6d7609e297715f7955c22b92655c869c361809c24d8706cc7cfb439835616751ec9f899ebce55efa916959b5c6ea69666b8ac38 SHA512 54a538432264829c4446e1b12f2a5217bc7a85812b41ecf10ebcb47308a124893ac0e41bbde9fe32de2b999524341fc0bef82766e2b9707dbe34c421ec068e4c -DIST firefox-85.0_rc1-tr.xpi 538940 BLAKE2B e29061ee14a90c9f981842f599d392b09265d99667134d4659d2c8f8ae0b892e93d02351e8516b6d486d8c8d022a819e234a5274bb0104d258799674536c6b94 SHA512 435b2c72900aa9375b1ce5d47ce18c8984996faf3d64e408d61a77c37f9dc0b3944298e5a3faf1e0b9c3a3182f656289cd449cd689f912ee83d8c07a6ad05b0d -DIST firefox-85.0_rc1-trs.xpi 500683 BLAKE2B d2039e6e0a9229693848e292e31077549ba54da7d0d73cff2308503b82db77d19231d17521f4479fff4de454aff8da811973d4f0145b4c87e83a4be5fc05b298 SHA512 237697164d19d0220223a0f53a298266d07a55ba715c9aacc17b365dbb0a9e8584a074be63d07b5aa481554e2f4a51b905c241c5737e531dd3d7f63604997d6f -DIST firefox-85.0_rc1-uk.xpi 607237 BLAKE2B ec7992cd261a85984c7c5a8b0728eed3732dbe3e23e6c0cc603946b7086ab050733ac92bac270f78952454d47f921594091727f28c7fed42fc4402b99ef0c7ed SHA512 1b9da0099e5f0e5a595f2f0eca975371e70da4709661aef48cb91f842892124b6d13e31dcab991ce5ed9afb3a60c84ff3beffc162aab788dfd4ad1f746d91682 -DIST firefox-85.0_rc1-ur.xpi 562130 BLAKE2B e1ad66ed73f189c89b0d7255c9559db8d9b6b0234244c5d381f64dd6431498e03388b984dd99e4b8456fa290b4b69bc52c54304f2accb2a2f3a2d12db74f19eb SHA512 9351dc155699842b4e1d3beb0ca9bf838bb4db01144bc8455e52c237ed889dc9b452bf2e06f4e8008f81fe0204d30aae19955b2359ee19a734eaaee7984aa2c9 -DIST firefox-85.0_rc1-uz.xpi 477244 BLAKE2B bc400dcb87548d62650b30478c9a0e6657a02e43b8eff88be13a15ce3e79b2bb2b4499e530c46373333615e9da4d597d8dfa9440f47ef12ec4846402061c6fb9 SHA512 c35cbaae6d77d66814886e1029c009f8e15149de8cd1220cb3cef9f7061614da75a40444c01770f6b985a7fd9ad5a4efcbc8c8fe586e797b8c80c82af910dce0 -DIST firefox-85.0_rc1-vi.xpi 562148 BLAKE2B 737c4770ff20395ba6f34b570662d0f576f4d420c9fcdac5a0c0696fd105a7fb8ee0f8a96152e4f2f6c41de0994dfcfc21bcb63bf1350c949c473f98154c5755 SHA512 de507a837dcdbf546722d821de816819bf22d2ce99c84850b327857c9cbd58d5cc3fca1aee1d189bd284f852d129a8ff1f16aa8e64faa1c5ee317c85cfaadb4a -DIST firefox-85.0_rc1-xh.xpi 426481 BLAKE2B 27ecada17b6c97f5733de5f13afb504fe0c5b29e51504ecbf77e999c6fe1f1d63771bcc5ce11a03ba4f89bb3d0528dfed92e66e7a2053344280c8553d8876032 SHA512 330a2b8740747ed8f1e89a6ba179a938d21c5683e923b62c32adad23ececebeeaff31a64d2a407ce806c93f73ad40236864da621cf4129dfe48264689bcb2576 -DIST firefox-85.0_rc1-zh-CN.xpi 563314 BLAKE2B a42dd3dbf51d3afc89044b65af505073c83436616ae1b7d2cc2c56499863b808a021044b707a625cc38288f6fd783cb09e78d5c62a101e38fc8c28f395803862 SHA512 2d1a31867823982e967339cce69f3d95916eabf25af4417d9b2fbd92bc7db16bd9b988e6e50d1b7990cb205a08761bf8023bce686a74cecf5b4d458f8845892b -DIST firefox-85.0_rc1-zh-TW.xpi 563119 BLAKE2B 25fd2e8d62ff8302df955201ff7823dec6b8f1f2201c38545673e62943f05ccc27bcb68b719830a4b7970c8063cf5d6ef6b693cccfa6057cdf202c6626817e43 SHA512 a982be2de34d8d417dc7043c6066d5ebcfe72381902a0dd9d4bc7240ace75c00f8a1e211f4ac8206b07e38c654247e62f256ac6774bff55f2fd45053c7e2ba73 -DIST firefox-85.0_rc1.source.tar.xz 378300292 BLAKE2B a40cb2741bde008463b0fafbe40889857b9c11adec5f4f3d8918013cd4eab87dd45789d67aa66bf9b3a8fc2b9cf6c458fe446a49bb20a2e6b29ca03d47a5dd06 SHA512 a88472e66baab32d98cb9d13d7dd3c41b47a697ce2a42209612d2342bd6c1c26cd80cdd8905a4cecc72895f155df09762735e8af24bc6156663b7a14e890be4e +DIST firefox-85-patches-01.tar.xz 23068 BLAKE2B 4e9532470c250ba05289ec215057162a780212d944046f01ab907eb6c0e3941b8016b1a2b81e1971dec52d84383fb103613629eb333d25072c6a76cdca56c8d9 SHA512 a995fda3e38238643270d126f96086c64bca6d8c96f7a3a5ef620730cf449613f2e0d8cc3e918d4f9daa996c25b252452de8e0219041f14bd52835ecf88018e1 +DIST firefox-85.0-ach.xpi 461933 BLAKE2B d1f93af47591ee08750afc8bf85ab00eb5ef635bb9d42958db8f0895ed364c911eccc49a17c7e9d49011c1e8c3b8c09538aef85e204f0aa7f20f68f458a61464 SHA512 4b77fa937f9533651575a0deadf2be2973b1b472a21490483e2742455bedeabb6de287e1fb4d6cbfb37717dcba73c18628663839c0f6c45281f954a30b8d5dc8 +DIST firefox-85.0-af.xpi 427614 BLAKE2B 66e9b75a14ad91cbc0658db0b7675851633e98341d821fb0cf38d65c403939ae59ece86abb4b669cf8900122ef3f7b6b165738317f0b9dc077456823740d5771 SHA512 90d1450f0c0dcdd77e99a661f8b9129c6dc385dd016099f44a94434fb92217dfe270cd982d01e095160cb2bd5870e16954b6b28160ae61379d94eaf400ce78a2 +DIST firefox-85.0-an.xpi 509100 BLAKE2B 42387657828f41570e02dce8b0a57487d1ebc06d10a99c7c773c7384ae5ec9664002390fcee642da09d4f4b6b9b78dd4f096e52b19cb173e2fa3f0ef4ca29139 SHA512 cd9ada8fe64c13ebb12c0932500cc88ac49b2e4ff42ca39a8373d9494f41d7beb8a00c127ba03fa820dc05dee086f8f9f1b45f4e68741689fd5af8a09f975507 +DIST firefox-85.0-ar.xpi 560013 BLAKE2B 3889d56153fefb34c920a15677f2b275c6570e16392745c9143360d028c9b6d17b8766c7a25c4d9bf9f3fdeb8b81e55f1cb79958ab5ee3b7795b990b511ddf65 SHA512 e5639bacea266e1286c3a248df63892357b2c77833415e0091bc8b405810bf78f1fdd8f8380baea361056057f0fd02fe9f0d27a1cd71c9f09bd619ed2fb4d13f +DIST firefox-85.0-ast.xpi 456389 BLAKE2B e73e9cf84fa3da6934cf5c349fcddb53066400e6da1c320bd0a314f2527a70bdc49325710f2d14bb9b8cdbfba0aa35c0fbfe226cb75697b028c3b20a5dc0b83d SHA512 f81afeff5fbd6cc87c0092e69b810ceeed9435fbc856b8b366fd2a45b5f2c097123dbaa1ea283196d6b65a0a626cc7780ffa70f4e36714bfb3e678263a4b6fd3 +DIST firefox-85.0-az.xpi 498340 BLAKE2B eac41a2097beb1d390f2784e180a8d6fb11e0432b5fc5223b855cbd08ac3612c8daf0b9685be83602363ba202d94d951e77480bf9064b21a371667ea8fd16c8c SHA512 471f2e00bb187e233ebdc76dc0ec2374d2adfeb3f3eb8209ebd7d94b2dcd553770113cf5dba5d5648dd29c52e228d4dd57a1348375f669f04d0434438e6d4389 +DIST firefox-85.0-be.xpi 608193 BLAKE2B 7cc0ae3a712054d97678e020bc3cccdb2abe9cba14930fa1763a4fe6276e4498b321bd0343332dab4f34c0e86af69336e704264c6a7406c8a4b713aa6516a872 SHA512 05a78e6b22bace042c3328ec842484b83d21dbdcdc0eac7fefd51326faa73be01fa399ffc67cb1d712a02e28a4c2ff13ca427e6312e243b66e3e7750d8daa6fe +DIST firefox-85.0-bg.xpi 556201 BLAKE2B 9412d1a27360aed6eca6f6c07abce6f2fe9acd8cfb5ffeb8a09f36c9ce6d577b83130ef70247f19a890189b5ad3ed2c2281ce0299d3c21d7e27e10a90196dc46 SHA512 a1adf3c24970ba70e915652870454974e1c77e7bc15e8ae715bce01418be6091a58d8266adce2a4fd51ea78b16b306a5d24f7fc38e6ac4746beb7aa717f7a470 +DIST firefox-85.0-bn.xpi 573119 BLAKE2B 4289988a494b287a695b2230c4464dc29c917016f58549b7bf1a97e487695182c004765df85501b24d92a82c4fe99949c710d388394a9d6adaaa71a9b9e42242 SHA512 d1c0c6739e9b4b327203968c5fd6474c6618765eff230df67e24fb05c16e09cc99b85c3d0ff223f59a8a70b1eb254387b182d0a0a8df8495a11e8a9d53bd23ac +DIST firefox-85.0-br.xpi 513260 BLAKE2B 2c323c8c37a24d7d455a483502bcacf0b47f15197a89b5f83a3f02ce5daefa7b0598291a3afa2ee8d004554a50209f6d08b51f310738dc3cae45580f52da1ae9 SHA512 f171033515aa19d097ef78b73ad3a4f2c4c5b423a902c500c0747616f9387736204b28563e38462a40c8a8b62359a9597e103854473626ccab4ed1f5a5d835ca +DIST firefox-85.0-bs.xpi 465162 BLAKE2B 74ddc93d5a98ba5bcec84e48aae0abf19dc7c1850ea963016df80540e502236b8bea068fb1d99c29778bd7eefedce10e3c5f322660470f51857c3e9f6f4c12ce SHA512 bf60c52aad97258400bb9d1e05e29fd4ff0a1dceb98fec208bcb7cf2552aa5aa2c391bff582f97d335a70fb08ba49c97aac4a7262b82872e75820b8bea84fdf1 +DIST firefox-85.0-ca-valencia.xpi 526000 BLAKE2B f8abd2f090cd76282930b2a62f4b643e9aa7d796518acdc4e6e0349e8d0b3ec2cb1d636c996adef601e54455e4c42ce40e5ac2b059763e7aafe0afb62eb1e216 SHA512 b1ef2e57ec1dccef4e391d36ad177324df980d4d3c7022fd2465f3456b734f4fbeb36a591d50d5eee6888d693b133e99c25a46153b8af1dcf795921d9e53c41b +DIST firefox-85.0-ca.xpi 518602 BLAKE2B f77a4014018baf6ed3ae6fe5c38aa62d2537548d85655792e7144af32adaeb1329120d2f913ab857acda5633d9da8ff61fb8e0df32f7ccbe4744ee9e09f8e90c SHA512 52ec976fa318e8525710037f8c8906afa9418f72d093bf36f21819fd9d361b952c286f916c8de9c3c4b0905067d6a3080a4fe26a2bfc82704bf7f995df180ea9 +DIST firefox-85.0-cak.xpi 550451 BLAKE2B 5e4ab366a8231dadcf93a4c61c15c7f2da924428bc1c7fbd471f1b861c3550c7d08676931905b1bd3dff189f0f1b5f7e50fe0b54a59c7bf5b391648dce1facc3 SHA512 33a1a10db234bb95ebded6a57e40ac7ae472519a92e4b507fdce156b3c4de46cb01630458078cea49d367af3b3c6b224311a1a6b8e8836be2173194501008c52 +DIST firefox-85.0-cs.xpi 546377 BLAKE2B 9aa86b30dbfc0208204a9b5770fa43371855c1025b2fe70cbf4ee71287f48ba204eb10e903b901bee892ae68ae4bd9f132b4d491b67b55a5db65a0e2bc90bdab SHA512 cef60b20b77d9b32dbe041c0cd089950be0b4e30b060f19eadda7f342ca9d82584ca7262084a41ff13ab0f26ff1db832a6fbbd6a73449aba7135fa80c29fe5d5 +DIST firefox-85.0-cy.xpi 530145 BLAKE2B e24a0334bca415c30cfb69df838ccb1f2cc09720d435dd64382047e43d9bddd6c5e17b51d69ebd38d71e4f2717073ef0ba62c9559c7ea310bb6b2aaf1baf4c4a SHA512 e2c98f2a8bcb38a9bfe684234bdcc58a22f97175f55b5e64633787e3a2d606532c860f3c3ded7ba1916852cbbf6912bb87a6d673f911bf55ee56f9eda6890e84 +DIST firefox-85.0-da.xpi 522999 BLAKE2B a460f37876db5271dba54a7d58349e329ed1aa3e8ab324c423b436d3180caa8bd85428cba29616fde8f4378b72f851b59c68f83783b3d69a092c5c476ef5d289 SHA512 849f8a72701ceac3c2a83bbe36792a4f46f8ff12ec5534a1ac44dce7b7f0cf9d5946b09087263bac0df963eff1b0a5ac14a8397f16f49836d40a8a36e8ddd6bb +DIST firefox-85.0-de.xpi 542064 BLAKE2B 02a8d3a048bcff162c257ec794870f055df9db511356907baad7a5dcd7b589e312124cbb1f4b4a83ca9b7d7ddef8a93f78330900dd14f6e8796cd383700975b6 SHA512 797773ba21c6bd8c525ea856aac1adb1cafcfc35650caaac87b1c04f8641b1e750ee40e9b24783c3b532c2c7448bf8ec367e1d0aa3e297c5e3e3e2aadbac8e83 +DIST firefox-85.0-dsb.xpi 553450 BLAKE2B 6ad3fb40c4fc6d266dba237560fd5eb8940bb119b6580452c5fbdb172578f534c66e8f424e1a90b353927821bf20e38ec9c46f93b5b3b854f232b6db8283f3a4 SHA512 b861fac004a04ffad9a8e2c517dc9637f101e809dfd2ed055e8b6b570286c6c4b7e81550a46321118e9414368b92219ca80d299c92bc9471928d35fbf9ecb36e +DIST firefox-85.0-el.xpi 624869 BLAKE2B a505f69821f5af30aeb74d4be1637599d204d7ac1ea977b78b3aa31b55584b051d0ea341a6677eb93f03db15b9d3b9958d2d0454f30d91dd086c22cabe18deaa SHA512 783602bbffbeb9858556a2f8f66604b40bc8e307f4fe2bc4e7bba00b0c3b67a77a14f41c090734cc67cbb910c533327f54a82017ff03f53179787d9a881197e1 +DIST firefox-85.0-en-CA.xpi 494923 BLAKE2B 742ace1f202ab7a5c5fa0c494969276c448324e05e1b88f1c85bcc035fba44ad74717734e69439f0f2a744d272731e1d932b3b23ebf5c722ecaa66e42a5be5b8 SHA512 5e7b29de2e6f7e406033fa4962f9dd41b4e9a9fe5835cdc6c885e7959e90b2cf343d53f404451338704bb0ea5dc2b7ec6c05cbeeccb5a007b2ee6b7e53cdeab6 +DIST firefox-85.0-en-GB.xpi 499617 BLAKE2B d3269060af5b04fd78bd23ba48bb0a5e6d5bf6446c9aeaff08c307b074ad47eddf859c78a67babdf76a517540e61601da58f2f0ca05424fa8e2a0bab56fa15a8 SHA512 15248fa28e91adb7b7741ccdf05ca445da7c9876c9a25322416fde2bf5d350d2ddf8d69a733febfb2c2a85fbd95c69f132899d60c4413f0c89d7d01353cdb93f +DIST firefox-85.0-eo.xpi 523960 BLAKE2B 4d7002b9c7e2e8fd280da46268bd0642473367f309fe6cd1efd02ec95ebae46c1df7028d1b8d3d399580ba43198dc3070ca510694e5959c36c454b57b6e66ae4 SHA512 d626b6846a15df99d71a237b6eee13e076fdb780876082864cb34d008722ea91c529273f4ec80ede31a85cd66b7eeafcb77e6997212c139a70a231ca9bdd8eb4 +DIST firefox-85.0-es-AR.xpi 534745 BLAKE2B fdf355b50c601848acf97bfae5014b26840d81cc062667779efeb54b0aad931e88d3fd773d85f421ba51b9d52a9130983f922b20446eb009b1a010df6ee7b1b2 SHA512 15cd9781859d129b56006db48a29e52d3297ceb43c93039de3b0db837d5344dd8f57369c4d01701ce6b446d668915222006079daf6b5cfdad6adfd40f6edc730 +DIST firefox-85.0-es-CL.xpi 534349 BLAKE2B b248d6dcfd2daa4aefad4d3f6656996660bf3258a4924e50e08ee4f4b46dc5e253270d2c35e3c149c2c507280197c99a7799d7a3d5a7161a646b4822548be2ae SHA512 638eae49da4f8670c2594985ea997220bc24d71585203cbd018436303c051be8fce27564f51048a59b323c73b2945aea66d1c761f97d00c070bb0ec603ea9c7e +DIST firefox-85.0-es-ES.xpi 524309 BLAKE2B 0095ddb66ddda9d33d41005d0a1ca9c5371297b3ef4919cee1b7ae36b1b86373802f0b27297bcff7e0683531dde23ddde08384ac19298d9383f094db17b78827 SHA512 838709fff7f452ea805774d7f1b13ad0a49c394623317d8990bb7699e24d4815d37c29ae4afdd6669a890b93683727fb56618810d98c2bf25731a0f549850645 +DIST firefox-85.0-es-MX.xpi 538264 BLAKE2B a059be257f0197645400e3fb27b1bc5c9c1ac24aefc678f4d379562f8536b4736394d60266eb1e159bf1dbdc78d57ba9d3558b1c4dc835945656a394e0af0595 SHA512 104e76074609759fb290595c2e4b54e329fd4c4d65323f7a5a5c10d1d63d6bb8e772cff0b23b2a0efcde3d2f027d26a657f5346faefcc0597ca0b3c4e7679408 +DIST firefox-85.0-et.xpi 489794 BLAKE2B 39192284d88f19072eae940ae0a28649dd85bd81dcd99b6c994418aa5f0fa423d33053cee790629a37429ad570e2117eaf005c8de2202d44915b38fa8e50fd53 SHA512 ec929143cf7cd7ac36563f6677191190bb30767e14b08a630f45890902ed9fa56fbd7492c212196e773f4d937bd4e2cb90181ad4c72081bf7406a11fdd22b2b1 +DIST firefox-85.0-eu.xpi 515959 BLAKE2B 837c2443d5317ef80cf25351666aabd7a21d2e602c698435b0abcf1b143585c65cac42eafdac6b54aecca9875805953cfb0b47870910a43c1f1b1fcbff94a616 SHA512 a81cf3ea6791356c1ca40295d8f04bd8087710c0e621452c52df3b61da88cc9314daa146bc1eeba58cd27253d138deec931c8da941eaba534970994fe156283a +DIST firefox-85.0-fa.xpi 539457 BLAKE2B b1fb8f2dd2b863d6bc660a4c993a537d16ee9bb34f221e6a3163143016179b1e9e589af73a12907e6deeba73db9182d06b55cb562239c1316caea2fbe0687ee3 SHA512 971baffb397712a1790cec02e26b548559f977f153975274fb81f48ed959f3ae02780bd65e8988c3c4069797a236689c598e9c738094aec34a39aa9e7660c00f +DIST firefox-85.0-ff.xpi 483060 BLAKE2B 683bc89133a4acad83b58f8181cbfc53873a40d129f0004b4e756d1d86755075f6feb848ec09f883b29a4ddc06dc129aafb8347b6ae66ec7c449907ce074f8df SHA512 6e7a6b32582b7dc9c53e5c1c6434ab265e458ae4ed374f5af16da115bcc924c70c562790313e745d6c658dcb125be1c76441f5cb5266718d60fafe02c3b18e37 +DIST firefox-85.0-fi.xpi 521320 BLAKE2B 0318da7b3dfe12c925dd5c4d89400860921da4ff3eab34768377034a3d22efeea89ca961676c33a64b88ee8f01012c4ebe970b106e9ccbd0d8f4b5b2425230bb SHA512 78bd2d8ad77b778256cb9de2b0934d4d1d0636e59da1378207b7e832b263c2b69f295bfd2e8004fdef7ec62bca0acedd0d96b9f137d08d6e3ef1c0baa4a32941 +DIST firefox-85.0-fr.xpi 545681 BLAKE2B d71b2a254c38cab7d799cb354260968493b09750e8af9a0334b352e0405c7a52f82fa2c00a59abc89796cf4bc653a7c4c1abd01b99d94f2f18d14d5d486b0c5f SHA512 6e461df03c5af731622b85d87d90c6836347fbdec4e55649b15708566800a3438f3120d2e229056b042780e9412633afc671978a0b2d1a8be820b6c67b57d4a4 +DIST firefox-85.0-fy-NL.xpi 531413 BLAKE2B 69e64dee7033e281b78bdd96fec3e3828b5e62bf8b22f925d106d5b38bbf71e0f2dd239114db9bb5abc2fa5ae1dcae55eb88973535eab8c0afef44d5f4826840 SHA512 b2c6328126b67ed1a8f8bfddc743f5a9efb81a8ef6f2a4e3d77e1062334112c70fd74689405d9f9e660f35d80cd57024f3904524bb7845174e0ceeec84224988 +DIST firefox-85.0-ga-IE.xpi 466795 BLAKE2B 84acdd8185bccee04b0d13b7570d93c7c585f5413c5b030b923a338fa6e7b2e61a772690aba58f51f1d8f150f8207ad9ca787a3c31f49c5806f9e5b8f006db12 SHA512 166a0a891862a0d99cbadc1a137a959152756d3810f80add06982ace738f8e44a7fe3baf9c364789c9581255722ac06f570a5a6ab0dc19b125e7e51108bf25c7 +DIST firefox-85.0-gd.xpi 493280 BLAKE2B 56e30e66ca5d6e90dc0c49d5f066422c6972a1c8a53c0a972eab8f2ec7a7f6cd0111c9f832354d366d2b04a4d59716bd1389fe802fcb6e4d2080621e3d1665f4 SHA512 e6487baa214f155a68a5b3851ffa064ba893e616b2b0d4bda734be14f64df9fdc04b4f6ee2b864ae037d545ee0f66791532812ef2b3809c27efcd0cc4cde65f5 +DIST firefox-85.0-gl.xpi 529929 BLAKE2B 43496663eb96871fdb6aca530cd0719accbd98b4858ac1f946a55c96a1368159b2b07d4127ba3fb6dd0608d5da70b555237f5beafb163aa9f509c3f7b179bc30 SHA512 10824271e5fb871f62c871ee4a53d8b66d613eec50a41c8062ecedb48ff253bd2f5fbb8355e4f64c5a29fd58c0b53cd4bf1e8ee5aca4f11e707c5a03f75500af +DIST firefox-85.0-gn.xpi 545326 BLAKE2B 83a69bfd0229d201b72e6c217d9414934f3be7dee6b96e6d0df2c0cd86ddb107fe48fbe5a5a3fb54ff8eadbf4610032505bd05c55d0447f03a94a9d9f607d46f SHA512 eb4a3a5272404fc9e9385e976d4d724281b722dcedc6b5af3d76b3aa7dd3ec40da3c80778eb91a47c29057b9d608d46790e8bdcdd12889e523554697bd495271 +DIST firefox-85.0-gu-IN.xpi 541803 BLAKE2B eb021f35b4ca4bb4eadc29b8287a44de4bc7b2631a2721c83c794c51614012f4dba28615587acfde67b8d76eca422f2f67613a7b16367a492e89e935dc1d1465 SHA512 8e0b3740525a631e703698e85311ad62a27af271f0fc18a2919d5bde91219ab34ab1a72c61e6cf6ce565b0bf70eb8f6161f55347d9488940bb3f00b0c758fd02 +DIST firefox-85.0-he.xpi 546611 BLAKE2B 026cb54ec9e80546a74aff1819106f4834be99579f51891dfb878956d835d1f48e7734aa2781dcf1cd0e217ea236c810a7261c0a67ccaa2786a8eb4eaf6b531a SHA512 8432928a249f34c6d0928965dbeba0fbf75bb99e1a8888b02fb867490495630544eef9799cc31ee64842853c2d0251eebc4ae4ed50722d6e32f9ac6399b96a38 +DIST firefox-85.0-hi-IN.xpi 567420 BLAKE2B 671f72205c873cd3a1fc23d76bf18bbb1db431136ec5125e2174fc2cd3857f952865165a5a54b56663c2f27aa3445b3e2601ceee077ac02e6a9011d335cdc8dc SHA512 b73439d3b8cf4c27ea162cd44153627b2868334393c13656f2f97d35383178fa1c3aad317fc39b7cb75b952852931232e2770838e016ee2489df602d46b274f9 +DIST firefox-85.0-hr.xpi 528008 BLAKE2B 46008c6f437635ef8e59b3c8c202457957d95a119d201d0dd35497b6b6496abd5e55227c11b9507a99127f24cbc66985214785ae505f98491c9a9d7dc0cd365a SHA512 29c86d7b76a9b0499685302436b8c1a8b89ca32a4a1a431235cff67c3d8597af1bc590b092a1f48f77ffd312acf647137c5d9d73f217d7e38c9ca9027d641a90 +DIST firefox-85.0-hsb.xpi 550091 BLAKE2B 694cb0c88b502d849dd01460f8bf2fd0384b200aef12692c6eea283ae68d36e15c1fa715818056fac7361dc6ca6052058878fe4d4cae3328a3d104f0a375bb51 SHA512 e7d381f69730e92ea1c5381140df1f854c9f14410df99f7a9d769d7ca1be2a6170d1dabcb5d7263019b1a7e8dc4af0aefd7884c539ced0cb229e0a8e83416057 +DIST firefox-85.0-hu.xpi 553365 BLAKE2B fe10f7843dca913fc56efb052377bd16ab99d39b764f6372f5bd881a465500b873b0d24a4d70bc040f8e0751bd5187ed3599c2e6e00b9a5734595c0a64a6b242 SHA512 c9529c266082f66270ad5b8086cd1044890c5996fa2e8c658764623ff53d9373ecdbb542e9e2cc69fb4371edcd33a19c93b4774d16587cb824dde1b54437efa9 +DIST firefox-85.0-hy-AM.xpi 588299 BLAKE2B e5b35d248751b8acf2f6f4086775412806f28c93c0bbdcfcd0f57036687fa4adbcf7a65cb339b94a3af62fdff4576ee01ef8327b3aa86ab059d7472af1aaf047 SHA512 d32b8970bde8d88d52e1636aa96b6da40cac550a5b65f9611a22a0ab4fd76b04d926144f348c559b68792a27daaa4ad468596492b7a308333883fce14896e2c2 +DIST firefox-85.0-ia.xpi 520736 BLAKE2B b1b809dcd2ee64a2a9af5c5fd6df1d2390a22d49d93d91db01fbadf8fdfbc03f6ebfcd71901d4d239bf4fb03da393f5913ea584d595c8931befba8be72c11719 SHA512 b46a60d30070a81385d83da8eef0b7ed51a95fa75daba742a6e901a6bc1699cef2c0f030e3f0f8493074572ffcfe23141a8a62b19ca66bc1197e96e04b952f39 +DIST firefox-85.0-id.xpi 508468 BLAKE2B 37101701607e459f11080ecdbfc92bfd005dfb973bf213fdceae2b20feb1c3c96413263cf4f43269a3e79c1e32d8a414fa91487b152a166a9db1b17ba421901f SHA512 50e35e400898c189d863160bc00251d4319a4caf85c2358618fa35114351164fd4e133939de835a09fe6034a2c1ce77ddd5ba69e87b4d123f9c1ec748761b475 +DIST firefox-85.0-is.xpi 478565 BLAKE2B 80a3fa6db94ccf7f7069bb3cc155f1aede98340f6f1ff541154cde14ba39e164539adf70f97feef18f45d60738f58b1bf1ffabd39db675a53763f72a69274e6f SHA512 51681c774ff6272cb44b0e5202cf7a793213712307abb06b09b9a1977b3bfbad792e22380db3c928f87745ec1a0cfcb040dfa2ae94d1b60d6ae85929c4fd693b +DIST firefox-85.0-it.xpi 449085 BLAKE2B 5dd0e08cbb940ba965cdf4617b65f579e4204154e7e47f8b4e36f18ce768d3cf961b75897467d350ee78bf9ff3a263cf71b8094896a780cf32e6a568095169a8 SHA512 a54882253b46dad64cc4368ae08cd2beb5413820f7353cb6e50d9f8bd1b46e128dd70fabe29d209db5f752ce3e9f4efd229806454fb0ca9dd8c8c9dfde5a9d35 +DIST firefox-85.0-ja.xpi 579681 BLAKE2B 3bc18067b491ae726816b8554827e2e906dd35c9a06e255b398ca19d7c0fe713c11b5a109f4505425ef12edf9e5cf5036f9a626eb2a7a75277d1794a5486478d SHA512 c6890c4ee983e1bb05c4cbc5973554a16181ae5ebf131fdcc545f7c52d1a61cf226c7fa09269c24cb772b1a817230b48da7dc63a425fdadf052cf53b51fb7608 +DIST firefox-85.0-ka.xpi 580365 BLAKE2B a15e44007feaf0be57f597a0da56e77c9107e0104f81a266d7afa7a1e19d56d758920bad6cf1689e41a3f9d701f7409e6f75823f93a50b12645156158c2c255e SHA512 a774161eed3dae5b9029de32ece7e2c371550ac1731a40453538135ae6eb450c1a1fd2b1dd161073583ceed9fec4de6106dac6349d85a4f7066164d4048aae27 +DIST firefox-85.0-kab.xpi 539953 BLAKE2B da98f727cce0f235a1a021441773470601b5dd1d677c1d58a87ee9014827468e2f0ed422fb2550dbaa334638352d0da7e4bef4a645e5859bb481a6c1c7eddc61 SHA512 14ae839e05710c3646d53bb126d17a9ac233e0d810b2b18abbda5bfe1195a8155d1c39e03554c08211280903cdc38a80806c692be18c705b58bc91643321e4c8 +DIST firefox-85.0-kk.xpi 591588 BLAKE2B 5e3e15c20bfb5e12e939b00529652fb8fd7bcdf102c9fc25cbc2ccf0eb08496a057a9d17d7c3879f5268c17d08a84ccaf15ead9923525399428363210a52294c SHA512 f9b7ba5e143946c113ac7e7ab07b8d2cdebc32605bf570d58915bc9e82b3ed511d9676fa0a108cea6d3925f5e394a56f8ab02477f581e7b2bec254d9a1229cbb +DIST firefox-85.0-km.xpi 527195 BLAKE2B 1cf3afd58e8a702c71fa07cef881e20ac490f2f4d5f846887e44bc0d07c88e9afcc9b69749bff4dfbbcc76ed46c24e80a3abed6626cb2e7891aa02429c8d75d4 SHA512 9504379b9fc938df54ccb599e715bdb869f81dd0bc62ccb7c2780f66a92bd88f20783daddc375a2a720ce70ed4255884d42a455884f829978ac881fc729ad41a +DIST firefox-85.0-kn.xpi 505553 BLAKE2B d6ea1ed1175c8cfc836605a2c5ce93bb8cc8e5954e652fb07d1a578c46ae4a5cb435b7d6f9ee2cdea7384042bab5ef62dc5a139b8c4b201832b52913498b8de8 SHA512 e73dc38c1e3bb5571960d2959e3ec25757028b12aa489edf8e6ad0d6dd48813aa471cf12a2658c2f0e13ff6297a605ff0d520af0232081d519e57bc984de8502 +DIST firefox-85.0-ko.xpi 565816 BLAKE2B 6f71032498f3eef34db86f4721263e5bbd3c8466e37b6c716650fbbaa5211530db4ef13db04080b0754aa025b34a62656ad78cc6d4505df8c5fb09dfaf8c9fd7 SHA512 ca0c85b1d02c0c6aa15a8c66195c49c8f9d3d7bf6c5f11bfb71b1eda3381aa4f44ff3f8ae28c68702cca2b008a3a553fea87e66e4b646c4b39f582b1bf213a7c +DIST firefox-85.0-lij.xpi 476943 BLAKE2B 4de7cb46af3d03a342cf4ff5b34abd20ddd59c46db8cf0aed8094ea484e8d120f2f08b7816678024fe8b3545a51095c80168280a98559899b397ea370dc24000 SHA512 6792da8f0ba9619802d6e34bda8f8a5c689ceca007223ac75af3c6908234daa49b9c9de6377248f5208f9bb95788b576283af12bd6e40bcd8e680d133ab318ac +DIST firefox-85.0-lt.xpi 548690 BLAKE2B a638b1c96b84c7da39a67aecd9d6296ff7fca6b405382ec821c5ff894f1daae7c18d4c5cb95242f9b66ea1dea4f70ade8d40364f437479ccf94d0788704549a7 SHA512 b0a7f9676985577dad8a939bd1c913d094b0ea1800d066eb431300847944b5ec16f8c652c8a8d71f4907bdd45312bf6dc25c1e25af85ceb01c6a42ec326c2a49 +DIST firefox-85.0-lv.xpi 470594 BLAKE2B fbf52f802ef81efa7276bda30ac53e43bb86b592b9851993fbcd165fec08993d22c884bc7b764876a2671ac80de6ae3e764bd1da181c2f75369d6c207f9f5ebb SHA512 2e1f406fe2b515c8beac4aa228ea18a13551d4b7b869df1457bdb03d70ab4d100e01783438ad1afa9508773f81ad4ac66c368703bc2b729660709cc086315f59 +DIST firefox-85.0-mk.xpi 458755 BLAKE2B 50cd592aa8e373ec70ee4204c2f4327ce8a9fc947bd5d80535a477c7bef94a42b8da0954bebb1ad570d238c190bc30c27763d3eccc2f2b82ad0224a7f10b9a3b SHA512 37d0b35f82b812c35d594163e72bd0303a30e317bda58cdefab55308c85f8e87696df0e63a1aa97d0035618f7a392f4c779eeee7fde3c39e4d19d9cf0dcdcf42 +DIST firefox-85.0-mr.xpi 541702 BLAKE2B ba45eb55b77b6013540263492c6ffa3bd9d8033020ff1a84ade2f308907ca364312dff27de317b0ce9d39516977317a16ee0f6e8e3d584c35c37897098d789e1 SHA512 ccd49254580468bf18eec2649b53baccb0aaadc6ee549d4b5c8808b4ebcca204d62531d88ca819b816ce64a2b91e704b62d708b3f5021c94245353277f2ef8af +DIST firefox-85.0-ms.xpi 454619 BLAKE2B 09c49b0dbe555615fce54b518b48545ff1cd2a9cd4af107f14a06ba31f8ac76d1f5a4bb20675beb368c62982d890ea8cc681d33c89acde7e4a545b22a1a8b9a7 SHA512 6ad069b8c7cafd3cee70e1529c86a0f91593c6b3c47fa78de70e927913d784d71aacd35ea7286ba03fc9382ba7dabf86b1d579a8f359fa21522349d697f5dc2b +DIST firefox-85.0-my.xpi 525376 BLAKE2B 027f463e914c1c950d7a343a258d0be64f1c1b4b5c20efeeeba34fa209cfd22a68e40596db314fdff89a264553cfe5a34a5ed73cc2cf8bea38160698fbe9b94b SHA512 65461bd07e7117edab0f6e603c9dafe58716a8b340f6e8db6430fbc5045584c49beea5b06ef02bf1a90d30440ff75596e0538506a6136d368116838224ccbb23 +DIST firefox-85.0-nb-NO.xpi 517675 BLAKE2B 9a3d3e9fa5decf6cb65483303d87842910e111579867b3c6fdb47184880ca9bc92c001e10d672c8744a494dd1d7d9cd36a45d5db5864eae6523a189b98370c5c SHA512 052088087a8decba9d256af74d5519344be41a81e6c103f3a44923f943bce41ee0220a6a9b506bc2611df3f945d9c7200152ddda3b8fdfb08db1093bf675c557 +DIST firefox-85.0-ne-NP.xpi 482299 BLAKE2B 7c1e97eecac8817529fbd729387b3d00bb594e878d1bf4c81c3b9e09c459fb307ecc9dfe815627eb4901cce3c66eac749351e20fb8e82ac9a0eb85299e726908 SHA512 3b62455320af12d8c30380ee21374ac8e72d4a76896538f10452e8a0757d7c7f2ee64a4cb54ff0a8b553d5a08a29b12f4ccea07a600c910271c4963a9c1758bc +DIST firefox-85.0-nl.xpi 525217 BLAKE2B a9406856cdc4a5b4a07d9e5721b046b2724a4f23cbf2771d43803fb57c4073a801459642544ac4042ab05e8d895e40dc8c93b6992cb5e3355a145a03ef9dae69 SHA512 5aaed37f8374cc874ae60ddfd8ff37ae4df8595d66ce8ef792eb5a308e9edacca3d4c3c85be8e28335a6aa5c818285c1d06ec331ea6a80767af2a9dd2faaaa07 +DIST firefox-85.0-nn-NO.xpi 517429 BLAKE2B 5905d11ee1b824646a87e0e1954551de038101f76eba19ca71a91831306eb67f35f926c18642caf768515cab2e86db8d1fffd6dc3847004bee102d6ad26f5579 SHA512 90bccb9a274d087b9e3507bc4c87e4f350f98281dc9086d35a68659ba2363c950c50a6297de3a4d7adcba14f2a08047a24626ba6cbdd1f62d5bdfe27238e3243 +DIST firefox-85.0-oc.xpi 541157 BLAKE2B 2ad3b8ab37495406ad0de5e652376f3db7bb8efe61f82b48ce2f59a8c6553d912b1a9056f8f4688303fc9d29108521a40abc5a89cd248cfa17754c9cf4d4cd2f SHA512 d11499da6e10b7ecf30100918a305c736374d51f388c4f7b48e363b92c9e8f75a5f72d10ceb9f758641a3a05da153559ba7736b18b8f7d8299dbb69712aedb0b +DIST firefox-85.0-pa-IN.xpi 587114 BLAKE2B e0af79edb653a12d8047d2fec88ded28a04be11eab061a4ccecce5ed0a0d7c1f94bc0d7dda900f317e6ae8816061b3701f3ec8956248e1aaffd8057d67b5b8f3 SHA512 6a4680ab8d6ea99e98b331b7fd5397b03cc950c6512f9691c889d45ac5ae8c771ccee4df7ade62a65fc4cb0a14b6e5354f4a0a6b5658084ba28964979ed9ec29 +DIST firefox-85.0-pl.xpi 544480 BLAKE2B cfcae877b80fedc37b6c8b225044c25a496a2073c6c2b372e165cffc102128312d4b412eb6f0e859bdc7dffe638d93ed32104d72dd5d53fea4f024d75d99fc36 SHA512 a868c627fb425890d9fc56f3ffc8df64c967b17b8e37c6ee27a72f1f3edf7c40f7cc9b8fc220714304584f4d5db3b34f4d33f141b4ef9457ce0b3ba3618b2cfe +DIST firefox-85.0-pt-BR.xpi 528210 BLAKE2B fdf51f54dd396c8d462f65fcf5159573fe2b5100c6bc4e18ff9446da5586e6e85f697c9c45a6ca1a6522fba7afc05b170cba923b179845cbe522fa14c750081b SHA512 1a9323b9cbc63c9344e47d1c5fd815e2e35acfee067c1f552247f5620f3eb386c4d80187390900683b616a542af40b0187599070aa4123eb1241a41fa782dfb0 +DIST firefox-85.0-pt-PT.xpi 534510 BLAKE2B 946c68118a8f3886e156c26cc4fb621af53e65a3191711a75acaa0340b883bb65803e5754b262a1c044c2b3945834aeb70577a0ba986225dfd1c6ee0665fba46 SHA512 add8647fbaad86f60facf75d75fc14c40147fe0aa1d4dd597cc59a30396efe5e346f404995fd7a910049cbad59d52e4766c64bea3e3474fa163bfae51ffba76e +DIST firefox-85.0-rm.xpi 525922 BLAKE2B 42d6fae51d3af1f0da07f20a4dc75a197a9872074538e22cdb326b772f5addd09c70deb30fad5f01ccd048bf3540d60f56284cdfb941ac46a8b720c723c3c614 SHA512 35638b188269b6b99978b3100f79e905976fc290e8b3ccfdf6608ded90813907c78b26732e89ddf7baba0e9a85b977c332d7218d10568e3abff6b711a5156584 +DIST firefox-85.0-ro.xpi 532837 BLAKE2B 2d9000e156b153273996f530dd7f3408d663716d66064075ba667eaecaf7a2c721aff82569a63d9c5500961eddf9b9df2c1b42b8b87affc25c63237d1064a9c9 SHA512 1b93107e760e0f0795fb2b70fd828119b427b44a1c485dbcf6c37fdb762d423e83bf06f5628813329b5df3d9b0d985e4210815aa99503f6dd203c33935d38504 +DIST firefox-85.0-ru.xpi 613677 BLAKE2B 874ff1efec06286d384972b509e0d54450e90c0f87571980489c37f07ddd66ee2cf2a8622f57dfc1021e34b3562588f369925573c22d1dd997a52ea1e041958a SHA512 a467bc92572128dc61d2ec40034fa17e3cbd6f800ecd54fe23d4b82830e75bea74043eb5b05e55880977eafc92ea4c7ef6975a5e76830f8b928d68ca9c9ebd46 +DIST firefox-85.0-si.xpi 491873 BLAKE2B 51910d2c2cf22cdd8140b5ad055bde311a2dc52098524ffba84ce3acb00d0b4cd8eafdf6c2bf150bf883137a39e42b34bdd3a14deacaa87ea850fa322ccfbaf8 SHA512 132fd189994683ed72722d32c1b8f2bddde7f3065b3a307a7161ba0f4568618a613a70a07033bd2f7647c2f4482c8341141304aa303ef28ddda8e3756db000a6 +DIST firefox-85.0-sk.xpi 540855 BLAKE2B b0259b4179c9d9babfd6898c59ae17e90b37e6e420877551b9ebad88564b0b8ef47a5a5657c11b907ed880621763639b782471c2eb0720974c980e4f168ee6dd SHA512 452630f324f6191f42e354fac7dd392f896266ec6d7d9e3eae157b9ee775ae03c1c03399b097f22349386d12527a33c17633ddfa5f615c2d27092655c3308ef0 +DIST firefox-85.0-sl.xpi 522716 BLAKE2B 9a02c647cffb82bde3872b5189b5913bf188c3d6c37f446e1bad0b31cf0b141d4aa58bb797996f8c667ddaf75bb7c4ebad5b1d27e3c644e1405e49c865015f56 SHA512 67a30de17626ecc98bcd081e2ff1500bfd4d4ccbe39a1f6699acacfad989b5c7a5e49516ba07e33cc03068db5eb304a6f5a4900ce53086cad21e6a04ca3b29f1 +DIST firefox-85.0-son.xpi 424307 BLAKE2B 9d648b9e56cd89ada26761e2fa7a010a3581cce7a26295e6b73d7566a27d73de66ba78010d228f7587a39b866a518d7b0e5ebccdd2796a5e8700ab513aa80ceb SHA512 d5461bed66690e8fc9bae22c6f15f3e70dc3b7b754dcfbcf010e3c359b1c7d4993dfcca7363e83f5b153137227b91c6e7ac95615870c2723292fd3f2a387e246 +DIST firefox-85.0-sq.xpi 542615 BLAKE2B 738d9c6b69b63d99168253da0090e8de95db7086f51855f666865b45c39cab9ad19ffc1e50aeb60217964d99795f300d8ba737e6b979cc4ae2ae109ac2e44386 SHA512 5760d7084482aae6d858886937332b0efa333111dc60fe2af2a931e69bd98b9f5d9cac4d0ffa23601584c453aee0810188020308c47ab3a6f340f5720758caac +DIST firefox-85.0-sr.xpi 570456 BLAKE2B 87c08aca9bfbd1ee70ffa015136226b7ce688df9033e8106ade187de43c5497a232ddcfc20e5f8296049800afa917b3497beb7a5049d95ba5f41dda878ec0a55 SHA512 f9954bdc98d0235580a08d69f075dc8f8a6294dbf7cb7ccdab4da72ea8845d5dd4d1beda5c9f4829151d9445d61e1949b6e89f1497fc1d277ca6e816ef165466 +DIST firefox-85.0-sv-SE.xpi 528662 BLAKE2B c1c10626ba6e3ede6a97ad0113bfc98a1a14fcfaf25c4e97ba566f0b6d210104f98a8c364ff594ff786ddf4d2894d72b3c7b3d3f06b22af2381e2da38a2e752f SHA512 99e89d17105dcfb92952e08a78d1d7482641b6086a3cc19b3aef6888114e5432f9927f60562f9deb2a0d0a55ebbd9b373621cc16b4b8aae4e903dfdf515e0f09 +DIST firefox-85.0-ta.xpi 521337 BLAKE2B 613e05d61887b72273c0c05191c9bac72e96f52ad99c83a83ce6decf7ef6908fe67a7fb49157aae982ed0c49c161df2d2f3d643ebe62ca96668b64343c4b99da SHA512 063148bdbb8771470859075c35d7742497c0a99faee5a6eebe249a2b7b92a2beb04d7fe4e29767b8f2b04a4556d09467a6bb0420786f8638c3ec22dd8ce0b6ee +DIST firefox-85.0-te.xpi 558654 BLAKE2B a8545af0b997bbe0a116f6842530be7710395a1a138fb0b445e0942db712ddd6eacb43e655172d5aed996993c7af578637c6b441116188dd1ed1718fd3dab14a SHA512 7d0759dd99b06d92eec16a5c4e3160a0db449c0073830e9a0169dc49b15259ae2ccbfda1c7d8a5eded33b1e82b80bbf8cacfb3e0f7a551d19e4632039db20523 +DIST firefox-85.0-th.xpi 593146 BLAKE2B 6181084554784b28a7c2f1e65bf207b62eee17802f4b35a988be83807558f4eff351633b072d0d9476905782a06d3c97661108476e5f1d3d15661abad5867a3b SHA512 efec2e911595580c3583ddfcdbfb99863500e8a739d89a684876256215febb5a9ae062a5dd58aa082848c4df5651cec1a33fc6854ffec3755b56a85ed34d864f +DIST firefox-85.0-tl.xpi 518995 BLAKE2B 7d2452239d651e08414642b1e6d7609e297715f7955c22b92655c869c361809c24d8706cc7cfb439835616751ec9f899ebce55efa916959b5c6ea69666b8ac38 SHA512 54a538432264829c4446e1b12f2a5217bc7a85812b41ecf10ebcb47308a124893ac0e41bbde9fe32de2b999524341fc0bef82766e2b9707dbe34c421ec068e4c +DIST firefox-85.0-tr.xpi 538940 BLAKE2B e29061ee14a90c9f981842f599d392b09265d99667134d4659d2c8f8ae0b892e93d02351e8516b6d486d8c8d022a819e234a5274bb0104d258799674536c6b94 SHA512 435b2c72900aa9375b1ce5d47ce18c8984996faf3d64e408d61a77c37f9dc0b3944298e5a3faf1e0b9c3a3182f656289cd449cd689f912ee83d8c07a6ad05b0d +DIST firefox-85.0-trs.xpi 500683 BLAKE2B d2039e6e0a9229693848e292e31077549ba54da7d0d73cff2308503b82db77d19231d17521f4479fff4de454aff8da811973d4f0145b4c87e83a4be5fc05b298 SHA512 237697164d19d0220223a0f53a298266d07a55ba715c9aacc17b365dbb0a9e8584a074be63d07b5aa481554e2f4a51b905c241c5737e531dd3d7f63604997d6f +DIST firefox-85.0-uk.xpi 607237 BLAKE2B ec7992cd261a85984c7c5a8b0728eed3732dbe3e23e6c0cc603946b7086ab050733ac92bac270f78952454d47f921594091727f28c7fed42fc4402b99ef0c7ed SHA512 1b9da0099e5f0e5a595f2f0eca975371e70da4709661aef48cb91f842892124b6d13e31dcab991ce5ed9afb3a60c84ff3beffc162aab788dfd4ad1f746d91682 +DIST firefox-85.0-ur.xpi 562130 BLAKE2B e1ad66ed73f189c89b0d7255c9559db8d9b6b0234244c5d381f64dd6431498e03388b984dd99e4b8456fa290b4b69bc52c54304f2accb2a2f3a2d12db74f19eb SHA512 9351dc155699842b4e1d3beb0ca9bf838bb4db01144bc8455e52c237ed889dc9b452bf2e06f4e8008f81fe0204d30aae19955b2359ee19a734eaaee7984aa2c9 +DIST firefox-85.0-uz.xpi 477244 BLAKE2B bc400dcb87548d62650b30478c9a0e6657a02e43b8eff88be13a15ce3e79b2bb2b4499e530c46373333615e9da4d597d8dfa9440f47ef12ec4846402061c6fb9 SHA512 c35cbaae6d77d66814886e1029c009f8e15149de8cd1220cb3cef9f7061614da75a40444c01770f6b985a7fd9ad5a4efcbc8c8fe586e797b8c80c82af910dce0 +DIST firefox-85.0-vi.xpi 562148 BLAKE2B 737c4770ff20395ba6f34b570662d0f576f4d420c9fcdac5a0c0696fd105a7fb8ee0f8a96152e4f2f6c41de0994dfcfc21bcb63bf1350c949c473f98154c5755 SHA512 de507a837dcdbf546722d821de816819bf22d2ce99c84850b327857c9cbd58d5cc3fca1aee1d189bd284f852d129a8ff1f16aa8e64faa1c5ee317c85cfaadb4a +DIST firefox-85.0-xh.xpi 426481 BLAKE2B 27ecada17b6c97f5733de5f13afb504fe0c5b29e51504ecbf77e999c6fe1f1d63771bcc5ce11a03ba4f89bb3d0528dfed92e66e7a2053344280c8553d8876032 SHA512 330a2b8740747ed8f1e89a6ba179a938d21c5683e923b62c32adad23ececebeeaff31a64d2a407ce806c93f73ad40236864da621cf4129dfe48264689bcb2576 +DIST firefox-85.0-zh-CN.xpi 563314 BLAKE2B a42dd3dbf51d3afc89044b65af505073c83436616ae1b7d2cc2c56499863b808a021044b707a625cc38288f6fd783cb09e78d5c62a101e38fc8c28f395803862 SHA512 2d1a31867823982e967339cce69f3d95916eabf25af4417d9b2fbd92bc7db16bd9b988e6e50d1b7990cb205a08761bf8023bce686a74cecf5b4d458f8845892b +DIST firefox-85.0-zh-TW.xpi 563119 BLAKE2B 25fd2e8d62ff8302df955201ff7823dec6b8f1f2201c38545673e62943f05ccc27bcb68b719830a4b7970c8063cf5d6ef6b693cccfa6057cdf202c6626817e43 SHA512 a982be2de34d8d417dc7043c6066d5ebcfe72381902a0dd9d4bc7240ace75c00f8a1e211f4ac8206b07e38c654247e62f256ac6774bff55f2fd45053c7e2ba73 +DIST firefox-85.0.source.tar.xz 378300292 BLAKE2B a40cb2741bde008463b0fafbe40889857b9c11adec5f4f3d8918013cd4eab87dd45789d67aa66bf9b3a8fc2b9cf6c458fe446a49bb20a2e6b29ca03d47a5dd06 SHA512 a88472e66baab32d98cb9d13d7dd3c41b47a697ce2a42209612d2342bd6c1c26cd80cdd8905a4cecc72895f155df09762735e8af24bc6156663b7a14e890be4e diff --git a/www-client/firefox/firefox-78.7.0.ebuild b/www-client/firefox/firefox-78.7.0.ebuild new file mode 100644 index 000000000000..8130568e96b6 --- /dev/null +++ b/www-client/firefox/firefox-78.7.0.ebuild @@ -0,0 +1,1130 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +FIREFOX_PATCHSET="firefox-78esr-patches-07.tar.xz" + +LLVM_MAX_SLOT=11 + +PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_REQ_USE="ncurses,sqlite,ssl" + +WANT_AUTOCONF="2.1" + +VIRTUALX_REQUIRED="pgo" + +MOZ_ESR=yes + +MOZ_PV=${PV} +MOZ_PV_SUFFIX= +if [[ ${PV} =~ (_(alpha|beta|rc).*)$ ]] ; then + MOZ_PV_SUFFIX=${BASH_REMATCH[1]} + + # Convert the ebuild version to the upstream Mozilla version + MOZ_PV="${MOZ_PV/_alpha/a}" # Handle alpha for SRC_URI + MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI + MOZ_PV="${MOZ_PV%%_rc*}" # Handle rc for SRC_URI +fi + +if [[ -n ${MOZ_ESR} ]] ; then + # ESR releases have slightly different version numbers + MOZ_PV="${MOZ_PV}esr" +fi + +MOZ_PN="${PN%-bin}" +MOZ_P="${MOZ_PN}-${MOZ_PV}" +MOZ_PV_DISTFILES="${MOZ_PV}${MOZ_PV_SUFFIX}" +MOZ_P_DISTFILES="${MOZ_PN}-${MOZ_PV_DISTFILES}" + +inherit autotools check-reqs desktop flag-o-matic gnome2-utils llvm \ + multiprocessing pax-utils python-any-r1 toolchain-funcs \ + virtualx xdg + +MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" + +if [[ ${PV} == *_rc* ]] ; then + MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/candidates/${MOZ_PV}-candidates/build${PV##*_rc}" +fi + +PATCH_URIS=( + https://dev.gentoo.org/~{axs,polynomial-c,whissi}/mozilla/patchsets/${FIREFOX_PATCHSET} +) + +SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES}.source.tar.xz + ${PATCH_URIS[@]}" + +DESCRIPTION="Firefox Web Browser" +HOMEPAGE="https://www.mozilla.com/firefox" + +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + +SLOT="0/esr$(ver_cut 1)" +LICENSE="MPL-2.0 GPL-2 LGPL-2.1" +IUSE="+clang cpu_flags_arm_neon dbus debug eme-free geckodriver +gmp-autoupdate + hardened hwaccel jack lto +openh264 pgo pulseaudio screencast selinux + +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent + +system-libvpx +system-webp wayland wifi" + +REQUIRED_USE="debug? ( !system-av1 ) + screencast? ( wayland ) + wifi? ( dbus )" + +BDEPEND="${PYTHON_DEPS} + app-arch/unzip + app-arch/zip + >=dev-util/cbindgen-0.14.3 + >=net-libs/nodejs-10.21.0 + virtual/pkgconfig + >=virtual/rust-1.41.0 + || ( + ( + sys-devel/clang:11 + sys-devel/llvm:11 + clang? ( + =sys-devel/lld-11* + pgo? ( =sys-libs/compiler-rt-sanitizers-11*[profile] ) + ) + ) + ( + sys-devel/clang:10 + sys-devel/llvm:10 + clang? ( + =sys-devel/lld-10* + pgo? ( =sys-libs/compiler-rt-sanitizers-10*[profile] ) + ) + ) + ( + sys-devel/clang:9 + sys-devel/llvm:9 + clang? ( + =sys-devel/lld-9* + pgo? ( =sys-libs/compiler-rt-sanitizers-9*[profile] ) + ) + ) + ) + lto? ( + !clang? ( sys-devel/binutils[gold] ) + ) + amd64? ( >=dev-lang/yasm-1.1 ) + x86? ( >=dev-lang/yasm-1.1 ) + !system-av1? ( + amd64? ( >=dev-lang/nasm-2.13 ) + x86? ( >=dev-lang/nasm-2.13 ) + )" + +CDEPEND=" + >=dev-libs/nss-3.53.1 + >=dev-libs/nspr-4.25 + dev-libs/atk + dev-libs/expat + >=x11-libs/cairo-1.10[X] + >=x11-libs/gtk+-2.18:2 + >=x11-libs/gtk+-3.4.0:3[X] + x11-libs/gdk-pixbuf + >=x11-libs/pango-1.22.0 + >=media-libs/libpng-1.6.35:0=[apng] + >=media-libs/mesa-10.2:* + media-libs/fontconfig + >=media-libs/freetype-2.4.10 + kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) + virtual/freedesktop-icon-theme + >=x11-libs/pixman-0.19.2 + >=dev-libs/glib-2.26:2 + >=sys-libs/zlib-1.2.3 + >=dev-libs/libffi-3.0.10:= + media-video/ffmpeg + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXrender + x11-libs/libXt + dbus? ( + sys-apps/dbus + dev-libs/dbus-glib + ) + screencast? ( media-video/pipewire:0/0.3 ) + system-av1? ( + >=media-libs/dav1d-0.3.0:= + >=media-libs/libaom-1.0.0:= + ) + system-harfbuzz? ( + >=media-libs/harfbuzz-2.6.8:0= + >=media-gfx/graphite2-1.3.13 + ) + system-icu? ( >=dev-libs/icu-67.1:= ) + system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) + system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) + system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) + system-webp? ( >=media-libs/libwebp-1.1.0:0= ) + wifi? ( + kernel_linux? ( + sys-apps/dbus + dev-libs/dbus-glib + net-misc/networkmanager + ) + ) + jack? ( virtual/jack ) + selinux? ( sec-policy/selinux-mozilla )" + +RDEPEND="${CDEPEND} + jack? ( virtual/jack ) + openh264? ( media-libs/openh264:*[plugin] ) + pulseaudio? ( + || ( + media-sound/pulseaudio + >=media-sound/apulse-0.1.12-r4 + ) + ) + selinux? ( sec-policy/selinux-mozilla )" + +DEPEND="${CDEPEND} + pulseaudio? ( + || ( + media-sound/pulseaudio + >=media-sound/apulse-0.1.12-r4[sdk] + ) + ) + wayland? ( >=x11-libs/gtk+-3.11:3[wayland] ) + amd64? ( virtual/opengl ) + x86? ( virtual/opengl )" + +S="${WORKDIR}/${PN}-${PV%_*}" + +# Allow MOZ_GMP_PLUGIN_LIST to be set in an eclass or +# overridden in the enviromnent (advanced hackers only) +if [[ -z "${MOZ_GMP_PLUGIN_LIST+set}" ]] ; then + MOZ_GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm ) +fi + +llvm_check_deps() { + if ! has_version -b "sys-devel/clang:${LLVM_SLOT}" ; then + ewarn "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + return 1 + fi + + if use clang ; then + if ! has_version -b "=sys-devel/lld-${LLVM_SLOT}*" ; then + ewarn "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + return 1 + fi + + if use pgo ; then + if ! has_version -b "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}*" ; then + ewarn "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + return 1 + fi + fi + fi + + einfo "Using LLVM slot ${LLVM_SLOT} to build" >&2 +} + +MOZ_LANGS=( + ach af an ar ast az be bg bn br bs ca-valencia ca cak cs cy + da de dsb el en-CA en-GB en-US eo es-AR es-CL es-ES es-MX et eu + fa ff fi fr fy-NL ga-IE gd gl gn gu-IN he hi-IN hr hsb hu hy-AM + ia id is it ja ka kab kk km kn ko lij lt lv mk mr ms my + nb-NO ne-NP nl nn-NO oc pa-IN pl pt-BR pt-PT rm ro ru + si sk sl son sq sr sv-SE ta te th tl tr trs uk ur uz vi + xh zh-CN zh-TW +) + +mozilla_set_globals() { + # https://bugs.gentoo.org/587334 + local MOZ_TOO_REGIONALIZED_FOR_L10N=( + fy-NL ga-IE gu-IN hi-IN hy-AM nb-NO ne-NP nn-NO pa-IN sv-SE + ) + + local lang xflag + for lang in "${MOZ_LANGS[@]}" ; do + # en and en_US are handled internally + if [[ ${lang} == en ]] || [[ ${lang} == en-US ]] ; then + continue + fi + + # strip region subtag if $lang is in the list + if has ${lang} "${MOZ_TOO_REGIONALIZED_FOR_L10N[@]}" ; then + xflag=${lang%%-*} + else + xflag=${lang} + fi + + SRC_URI+=" l10n_${xflag/[_@]/-}? (" + SRC_URI+=" ${MOZ_SRC_BASE_URI}/linux-x86_64/xpi/${lang}.xpi -> ${MOZ_P_DISTFILES}-${lang}.xpi" + SRC_URI+=" )" + IUSE+=" l10n_${xflag/[_@]/-}" + done +} +mozilla_set_globals + +moz_clear_vendor_checksums() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -ne 1 ]] ; then + die "${FUNCNAME} requires exact one argument" + fi + + einfo "Clearing cargo checksums for ${1} ..." + + sed -i \ + -e 's/\("files":{\)[^}]*/\1/' \ + "${S}"/third_party/rust/${1}/.cargo-checksum.json \ + || die +} + +moz_install_xpi() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 2 ]] ; then + die "${FUNCNAME} requires at least two arguments" + fi + + local DESTDIR=${1} + shift + + insinto "${DESTDIR}" + + local emid xpi_file xpi_tmp_dir + for xpi_file in "${@}" ; do + emid= + xpi_tmp_dir=$(mktemp -d --tmpdir="${T}") + + # Unpack XPI + unzip -qq "${xpi_file}" -d "${xpi_tmp_dir}" || die + + # Determine extension ID + if [[ -f "${xpi_tmp_dir}/install.rdf" ]] ; then + emid=$(sed -n -e '/install-manifest/,$ { /em:id/!d; s/.*[\">]\([^\"<>]*\)[\"<].*/\1/; p; q }' "${xpi_tmp_dir}/install.rdf") + [[ -z "${emid}" ]] && die "failed to determine extension id from install.rdf" + elif [[ -f "${xpi_tmp_dir}/manifest.json" ]] ; then + emid=$(sed -n -e 's/.*"id": "\([^"]*\)".*/\1/p' "${xpi_tmp_dir}/manifest.json") + [[ -z "${emid}" ]] && die "failed to determine extension id from manifest.json" + else + die "failed to determine extension id" + fi + + einfo "Installing ${emid}.xpi into ${ED}${DESTDIR} ..." + newins "${xpi_file}" "${emid}.xpi" + done +} + +mozconfig_add_options_ac() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 2 ]] ; then + die "${FUNCNAME} requires at least two arguments" + fi + + local reason=${1} + shift + + local option + for option in ${@} ; do + echo "ac_add_options ${option} # ${reason}" >>${MOZCONFIG} + done +} + +mozconfig_add_options_mk() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 2 ]] ; then + die "${FUNCNAME} requires at least two arguments" + fi + + local reason=${1} + shift + + local option + for option in ${@} ; do + echo "mk_add_options ${option} # ${reason}" >>${MOZCONFIG} + done +} + +mozconfig_use_enable() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 1 ]] ; then + die "${FUNCNAME} requires at least one arguments" + fi + + local flag=$(use_enable "${@}") + mozconfig_add_options_ac "$(use ${1} && echo +${1} || echo -${1})" "${flag}" +} + +mozconfig_use_with() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 1 ]] ; then + die "${FUNCNAME} requires at least one arguments" + fi + + local flag=$(use_with "${@}") + mozconfig_add_options_ac "$(use ${1} && echo +${1} || echo -${1})" "${flag}" +} + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]] ; then + if use pgo ; then + if ! has usersandbox $FEATURES ; then + die "You must enable usersandbox as X server can not run as root!" + fi + fi + + # Ensure we have enough disk space to compile + if use pgo || use lto || use debug ; then + CHECKREQS_DISK_BUILD="13500M" + else + CHECKREQS_DISK_BUILD="6400M" + fi + + check-reqs_pkg_pretend + fi +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]] ; then + if use pgo ; then + if ! has userpriv ${FEATURES} ; then + eerror "Building ${PN} with USE=pgo and FEATURES=-userpriv is not supported!" + fi + fi + + # Ensure we have enough disk space to compile + if use pgo || use lto || use debug ; then + CHECKREQS_DISK_BUILD="13500M" + else + CHECKREQS_DISK_BUILD="6400M" + fi + + check-reqs_pkg_setup + + llvm_pkg_setup + + if use clang && use lto ; then + local version_lld=$(ld.lld --version 2>/dev/null | awk '{ print $2 }') + [[ -n ${version_lld} ]] && version_lld=$(ver_cut 1 "${version_lld}") + [[ -z ${version_lld} ]] && die "Failed to read ld.lld version!" + + local version_llvm_rust=$(rustc -Vv 2>/dev/null | grep -F -- 'LLVM version:' | awk '{ print $3 }') + [[ -n ${version_llvm_rust} ]] && version_llvm_rust=$(ver_cut 1 "${version_llvm_rust}") + [[ -z ${version_llvm_rust} ]] && die "Failed to read used LLVM version from rustc!" + + if ver_test "${version_lld}" -ne "${version_llvm_rust}" ; then + eerror "Rust is using LLVM version ${version_llvm_rust} but ld.lld version belongs to LLVM version ${version_lld}." + eerror "You will be unable to link ${CATEGORY}/${PN}. To proceed you have the following options:" + eerror " - Manually switch rust version using 'eselect rust' to match used LLVM version" + eerror " - Switch to dev-lang/rust[system-llvm] which will guarantee matching version" + eerror " - Build ${CATEGORY}/${PN} without USE=lto" + die "LLVM version used by Rust (${version_llvm_rust}) does not match with ld.lld version (${version_lld})!" + fi + fi + + python-any-r1_pkg_setup + + # Avoid PGO profiling problems due to enviroment leakage + # These should *always* be cleaned up anyway + unset \ + DBUS_SESSION_BUS_ADDRESS \ + DISPLAY \ + ORBIT_SOCKETDIR \ + SESSION_MANAGER \ + XAUTHORITY \ + XDG_CACHE_HOME \ + XDG_SESSION_COOKIE + + # Build system is using /proc/self/oom_score_adj, bug #604394 + addpredict /proc/self/oom_score_adj + + if ! mountpoint -q /dev/shm ; then + # If /dev/shm is not available, configure is known to fail with + # a traceback report referencing /usr/lib/pythonN.N/multiprocessing/synchronize.py + ewarn "/dev/shm is not mounted -- expect build failures!" + fi + + # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys) + # Note: These are for Gentoo Linux use ONLY. For your own distribution, please + # get your own set of keys. + if [[ -z "${MOZ_API_KEY_GOOGLE+set}" ]] ; then + MOZ_API_KEY_GOOGLE="AIzaSyDEAOvatFogGaPi0eTgsV_ZlEzx0ObmepsMzfAc" + fi + + # Ensure we use C locale when building, bug #746215 + export LC_ALL=C + fi +} + +src_unpack() { + local _lp_dir="${WORKDIR}/language_packs" + local _src_file + + if [[ ! -d "${_lp_dir}" ]] ; then + mkdir "${_lp_dir}" || die + fi + + for _src_file in ${A} ; do + if [[ ${_src_file} == *.xpi ]]; then + cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" + else + unpack ${_src_file} + fi + done +} + +src_prepare() { + use lto && rm -v "${WORKDIR}"/firefox-patches/*-LTO-Only-enable-LTO-*.patch + eapply "${WORKDIR}/firefox-patches" + + # Allow user to apply any additional patches without modifing ebuild + eapply_user + + # Make LTO respect MAKEOPTS + sed -i \ + -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ + "${S}"/build/moz.configure/lto-pgo.configure \ + || die "sed failed to set num_cores" + + # Make ICU respect MAKEOPTS + sed -i \ + -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ + "${S}"/intl/icu_sources_data.py \ + || die "sed failed to set num_cores" + + # sed-in toolchain prefix + sed -i \ + -e "s/objdump/${CHOST}-objdump/" \ + "${S}"/python/mozbuild/mozbuild/configure/check_debug_ranges.py \ + || die "sed failed to set toolchain prefix" + + sed -i \ + -e 's/ccache_stats = None/return None/' \ + "${S}"/python/mozbuild/mozbuild/controller/building.py \ + || die "sed failed to disable ccache stats call" + + einfo "Removing pre-built binaries ..." + find "${S}"/third_party -type f \( -name '*.so' -o -name '*.o' \) -print -delete || die + + # Clearing checksums where we have applied patches + moz_clear_vendor_checksums target-lexicon-0.9.0 + + # Create build dir + BUILD_DIR="${WORKDIR}/${PN}_build" + mkdir -p "${BUILD_DIR}" || die + + # Write API keys to disk + echo -n "${MOZ_API_KEY_GOOGLE//gGaPi/}" > "${S}"/api-google.key || die + + xdg_src_prepare +} + +src_configure() { + # Show flags set at the beginning + einfo "Current CFLAGS: ${CFLAGS}" + einfo "Current CXXFLAGS: ${CXXFLAGS}" + einfo "Current LDFLAGS: ${LDFLAGS}" + einfo "Current RUSTFLAGS: ${RUSTFLAGS}" + + local have_switched_compiler= + if use clang && ! tc-is-clang ; then + # Force clang + einfo "Enforcing the use of clang due to USE=clang ..." + have_switched_compiler=yes + AR=llvm-ar + CC=${CHOST}-clang + CXX=${CHOST}-clang++ + NM=llvm-nm + RANLIB=llvm-ranlib + elif ! use clang && ! tc-is-gcc ; then + # Force gcc + have_switched_compiler=yes + einfo "Enforcing the use of gcc due to USE=-clang ..." + AR=gcc-ar + CC=${CHOST}-gcc + CXX=${CHOST}-g++ + NM=gcc-nm + RANLIB=gcc-ranlib + fi + + if [[ -n "${have_switched_compiler}" ]] ; then + # Because we switched active compiler we have to ensure + # that no unsupported flags are set + strip-unsupported-flags + fi + + # Ensure we use correct toolchain + export HOST_CC="$(tc-getBUILD_CC)" + export HOST_CXX="$(tc-getBUILD_CXX)" + tc-export CC CXX LD AR NM OBJDUMP RANLIB PKG_CONFIG + + # Set MOZILLA_FIVE_HOME + export MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" + + # python/mach/mach/mixin/process.py fails to detect SHELL + export SHELL="${EPREFIX}/bin/bash" + + # Set MOZCONFIG + export MOZCONFIG="${S}/.mozconfig" + + # Initialize MOZCONFIG + mozconfig_add_options_ac '' --enable-application=browser + + # Set Gentoo defaults + export MOZILLA_OFFICIAL=1 + + mozconfig_add_options_ac 'Gentoo default' \ + --allow-addon-sideload \ + --disable-cargo-incremental \ + --disable-crashreporter \ + --disable-install-strip \ + --disable-strip \ + --disable-updater \ + --enable-official-branding \ + --enable-release \ + --enable-system-ffi \ + --enable-system-pixman \ + --host="${CBUILD:-${CHOST}}" \ + --libdir="${EPREFIX}/usr/$(get_libdir)" \ + --prefix="${EPREFIX}/usr" \ + --target="${CHOST}" \ + --without-ccache \ + --with-intl-api \ + --with-libclang-path="$(llvm-config --libdir)" \ + --with-system-nspr \ + --with-system-nss \ + --with-system-png \ + --with-system-zlib \ + --with-toolchain-prefix="${CHOST}-" \ + --with-unsigned-addon-scopes=app,system \ + --x-includes="${SYSROOT}${EPREFIX}/usr/include" \ + --x-libraries="${SYSROOT}${EPREFIX}/usr/$(get_libdir)" + + # Set update channel + local update_channel=release + [[ -n ${MOZ_ESR} ]] && update_channel=esr + mozconfig_add_options_ac '' --update-channel=${update_channel} + + if ! use x86 && [[ ${CHOST} != armv*h* ]] ; then + mozconfig_add_options_ac '' --enable-rust-simd + fi + + if [[ -s "${S}/api-google.key" ]] ; then + local key_origin="Gentoo default" + if [[ $(cat "${S}/api-google.key" | md5sum | awk '{ print $1 }') != 709560c02f94b41f9ad2c49207be6c54 ]] ; then + key_origin="User value" + fi + + mozconfig_add_options_ac "${key_origin}" \ + --with-google-location-service-api-keyfile="${S}/api-google.key" \ + --with-google-safebrowsing-api-keyfile="${S}/api-google.key" + else + einfo "Building without Google API key ..." + fi + + mozconfig_use_with system-av1 + mozconfig_use_with system-harfbuzz + mozconfig_use_with system-harfbuzz system-graphite2 + mozconfig_use_with system-icu + mozconfig_use_with system-jpeg + mozconfig_use_with system-libevent system-libevent "${SYSROOT}${EPREFIX}/usr" + mozconfig_use_with system-libvpx + mozconfig_use_with system-webp + + mozconfig_use_enable dbus + + use eme-free && mozconfig_add_options_ac '+eme-free' --disable-eme + + mozconfig_use_enable geckodriver + + if use hardened ; then + mozconfig_add_options_ac "+hardened" --enable-hardening + append-ldflags "-Wl,-z,relro -Wl,-z,now" + fi + + mozconfig_use_enable jack + + mozconfig_use_enable pulseaudio + # force the deprecated alsa sound code if pulseaudio is disabled + if use kernel_linux && ! use pulseaudio ; then + mozconfig_add_options_ac '-pulseaudio' --enable-alsa + fi + + mozconfig_use_enable screencast pipewire + + mozconfig_use_enable wifi necko-wifi + + if use wayland ; then + mozconfig_add_options_ac '+wayland' --enable-default-toolkit=cairo-gtk3-wayland + else + mozconfig_add_options_ac '' --enable-default-toolkit=cairo-gtk3 + fi + + if use lto ; then + if use clang ; then + # Upstream only supports lld when using clang + mozconfig_add_options_ac "forcing ld=lld due to USE=clang and USE=lto" --enable-linker=lld + + mozconfig_add_options_ac '+lto' --enable-lto=cross + else + # Linking only works when using ld.gold when LTO is enabled + mozconfig_add_options_ac "forcing ld=gold due to USE=lto" --enable-linker=gold + + # ThinLTO is currently broken, see bmo#1644409 + mozconfig_add_options_ac '+lto' --enable-lto=full + fi + + if use pgo ; then + mozconfig_add_options_ac '+pgo' MOZ_PGO=1 + + if use clang ; then + # Used in build/pgo/profileserver.py + export LLVM_PROFDATA="llvm-profdata" + fi + fi + else + # Avoid auto-magic on linker + if use clang ; then + # This is upstream's default + mozconfig_add_options_ac "forcing ld=lld due to USE=clang" --enable-linker=lld + elif tc-ld-is-gold ; then + mozconfig_add_options_ac "linker is set to gold" --enable-linker=gold + else + mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd + fi + fi + + # LTO flag was handled via configure + filter-flags '-flto*' + + mozconfig_use_enable debug + if use debug ; then + mozconfig_add_options_ac '+debug' --disable-optimize + else + if is-flag '-g*' ; then + if use clang ; then + mozconfig_add_options_ac 'from CFLAGS' --enable-debug-symbols=$(get-flag '-g*') + else + mozconfig_add_options_ac 'from CFLAGS' --enable-debug-symbols + fi + else + mozconfig_add_options_ac 'Gentoo default' --disable-debug-symbols + fi + + if is-flag '-O0' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O0 + elif is-flag '-O4' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O4 + elif is-flag '-O3' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O3 + elif is-flag '-O1' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O1 + elif is-flag '-Os' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-Os + else + mozconfig_add_options_ac "Gentoo default" --enable-optimize=-O2 + fi + fi + + # Debug flag was handled via configure + filter-flags '-g*' + + # Optimization flag was handled via configure + filter-flags '-O*' + + # Modifications to better support ARM, bug #553364 + if use cpu_flags_arm_neon ; then + mozconfig_add_options_ac '+cpu_flags_arm_neon' --with-fpu=neon + + if ! tc-is-clang ; then + # thumb options aren't supported when using clang, bug 666966 + mozconfig_add_options_ac '+cpu_flags_arm_neon' \ + --with-thumb=yes \ + --with-thumb-interwork=no + fi + fi + + if [[ ${CHOST} == armv*h* ]] ; then + mozconfig_add_options_ac 'CHOST=armv*h*' --with-float-abi=hard + + if ! use system-libvpx ; then + sed -i \ + -e "s|softfp|hard|" \ + "${S}"/media/libvpx/moz.build \ + || die + fi + fi + + if use clang ; then + # https://bugzilla.mozilla.org/show_bug.cgi?id=1482204 + # https://bugzilla.mozilla.org/show_bug.cgi?id=1483822 + # toolkit/moz.configure Elfhack section: target.cpu in ('arm', 'x86', 'x86_64') + local disable_elf_hack= + if use amd64 ; then + disable_elf_hack=yes + elif use x86 ; then + disable_elf_hack=yes + elif use arm ; then + disable_elf_hack=yes + fi + + if [[ -n ${disable_elf_hack} ]] ; then + mozconfig_add_options_ac 'elf-hack is broken when using Clang' --disable-elf-hack + fi + elif tc-is-gcc ; then + if ver_test $(gcc-fullversion) -ge 10 ; then + einfo "Forcing -fno-tree-loop-vectorize to workaround GCC bug, see bug 758446 ..." + append-cxxflags -fno-tree-loop-vectorize + fi + fi + + # Additional ARCH support + case "${ARCH}" in + arm) + # Reduce the memory requirements for linking + if use clang ; then + # Nothing to do + :; + elif tc-ld-is-gold || use lto ; then + append-ldflags -Wl,--no-keep-memory + else + append-ldflags -Wl,--no-keep-memory -Wl,--reduce-memory-overheads + fi + ;; + esac + + if ! use elibc_glibc ; then + mozconfig_add_options_ac '!elibc_glibc' --disable-jemalloc + fi + + # Allow elfhack to work in combination with unstripped binaries + # when they would normally be larger than 2GiB. + append-ldflags "-Wl,--compress-debug-sections=zlib" + + # Make revdep-rebuild.sh happy; Also required for musl + append-ldflags -Wl,-rpath="${MOZILLA_FIVE_HOME}",--enable-new-dtags + + # Pass $MAKEOPTS to build system + export MOZ_MAKE_FLAGS="${MAKEOPTS}" + + # Use system's Python environment + export MACH_USE_SYSTEM_PYTHON=1 + + # Disable notification when build system has finished + export MOZ_NOSPAM=1 + + # Build system requires xargs but is unable to find it + mozconfig_add_options_mk 'Gentoo default' "XARGS=${EPREFIX}/usr/bin/xargs" + + # Set build dir + mozconfig_add_options_mk 'Gentoo default' "MOZ_OBJDIR=${BUILD_DIR}" + + # Show flags we will use + einfo "Build CFLAGS: ${CFLAGS}" + einfo "Build CXXFLAGS: ${CXXFLAGS}" + einfo "Build LDFLAGS: ${LDFLAGS}" + einfo "Build RUSTFLAGS: ${RUSTFLAGS}" + + # Handle EXTRA_CONF and show summary + local ac opt hash reason + + # Apply EXTRA_ECONF entries to $MOZCONFIG + if [[ -n ${EXTRA_ECONF} ]] ; then + IFS=\! read -a ac <<<${EXTRA_ECONF// --/\!} + for opt in "${ac[@]}"; do + mozconfig_add_options_ac "EXTRA_ECONF" --${opt#--} + done + fi + + echo + echo "==========================================================" + echo "Building ${PF} with the following configuration" + grep ^ac_add_options "${MOZCONFIG}" | while read ac opt hash reason; do + [[ -z ${hash} || ${hash} == \# ]] \ + || die "error reading mozconfig: ${ac} ${opt} ${hash} ${reason}" + printf " %-30s %s\n" "${opt}" "${reason:-mozilla.org default}" + done + echo "==========================================================" + echo + + ./mach configure || die +} + +src_compile() { + local virtx_cmd= + + if use pgo ; then + virtx_cmd=virtx + + # Reset and cleanup environment variables used by GNOME/XDG + gnome2_environment_reset + + addpredict /root + fi + + local -x GDK_BACKEND=x11 + + ${virtx_cmd} ./mach build --verbose \ + || die +} + +src_install() { + # xpcshell is getting called during install + pax-mark m \ + "${BUILD_DIR}"/dist/bin/xpcshell \ + "${BUILD_DIR}"/dist/bin/${PN} \ + "${BUILD_DIR}"/dist/bin/plugin-container + + DESTDIR="${D}" ./mach install || die + + # Upstream cannot ship symlink but we can (bmo#658850) + rm "${ED}${MOZILLA_FIVE_HOME}/${PN}-bin" || die + dosym ${PN} ${MOZILLA_FIVE_HOME}/${PN}-bin + + # Don't install llvm-symbolizer from sys-devel/llvm package + if [[ -f "${ED}${MOZILLA_FIVE_HOME}/llvm-symbolizer" ]] ; then + rm -v "${ED}${MOZILLA_FIVE_HOME}/llvm-symbolizer" || die + fi + + # Install policy (currently only used to disable application updates) + insinto "${MOZILLA_FIVE_HOME}/distribution" + newins "${FILESDIR}"/distribution.ini distribution.ini + newins "${FILESDIR}"/disable-auto-update.policy.json policies.json + + # Install system-wide preferences + local PREFS_DIR="${MOZILLA_FIVE_HOME}/browser/defaults/preferences" + insinto "${PREFS_DIR}" + newins "${FILESDIR}"/gentoo-default-prefs.js all-gentoo.js + + local GENTOO_PREFS="${ED}${PREFS_DIR}/all-gentoo.js" + + # Set dictionary path to use system hunspell + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set spellchecker.dictionary_path pref" + pref("spellchecker.dictionary_path", "${EPREFIX}/usr/share/myspell"); + EOF + + # Force hwaccel prefs if USE=hwaccel is enabled + if use hwaccel ; then + cat "${FILESDIR}"/gentoo-hwaccel-prefs.js \ + >>"${GENTOO_PREFS}" \ + || die "failed to add prefs to force hardware-accelerated rendering to all-gentoo.js" + fi + + if ! use gmp-autoupdate ; then + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + einfo "Disabling auto-update for ${plugin} plugin ..." + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to disable autoupdate for ${plugin} media plugin" + pref("media.${plugin}.autoupdate", false); + EOF + done + fi + + # Force the graphite pref if USE=system-harfbuzz is enabled, since the pref cannot disable it + if use system-harfbuzz ; then + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set gfx.font_rendering.graphite.enabled pref" + sticky_pref("gfx.font_rendering.graphite.enabled", true); + EOF + fi + + # Install language packs + local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name '*.xpi') ) + if [[ -n "${langpacks}" ]] ; then + moz_install_xpi "${MOZILLA_FIVE_HOME}/distribution/extensions" "${langpacks[@]}" + fi + + # Install geckodriver + if use geckodriver ; then + einfo "Installing geckodriver into ${ED}${MOZILLA_FIVE_HOME} ..." + pax-mark m "${BUILD_DIR}"/dist/bin/geckodriver + exeinto "${MOZILLA_FIVE_HOME}" + doexe "${BUILD_DIR}"/dist/bin/geckodriver + + dosym ${MOZILLA_FIVE_HOME}/geckodriver /usr/bin/geckodriver + fi + + # Install icons + local icon_srcdir="${S}/browser/branding/official" + local icon_symbolic_file="${FILESDIR}/icon/firefox-symbolic.svg" + + insinto /usr/share/icons/hicolor/symbolic/apps + newins "${icon_symbolic_file}" ${PN}-symbolic.svg + + local icon size + for icon in "${icon_srcdir}"/default*.png ; do + size=${icon%.png} + size=${size##*/default} + + if [[ ${size} -eq 48 ]] ; then + newicon "${icon}" ${PN}.png + fi + + newicon -s ${size} "${icon}" ${PN}.png + done + + # Install menus + local wrapper_wayland="${PN}-wayland.sh" + local wrapper_x11="${PN}-x11.sh" + local desktop_file="${FILESDIR}/icon/${PN}-r2.desktop" + local display_protocols="auto X11" + local icon="${PN}" + local name="Mozilla ${MOZ_PN^}" + local use_wayland="false" + + if use wayland ; then + display_protocols+=" Wayland" + use_wayland="true" + fi + + local app_name desktop_filename display_protocol exec_command + for display_protocol in ${display_protocols} ; do + app_name="${name} on ${display_protocol}" + desktop_filename="${PN}-${display_protocol,,}.desktop" + + case ${display_protocol} in + Wayland) + exec_command="${PN}-wayland --name ${PN}-wayland" + newbin "${FILESDIR}/${wrapper_wayland}" ${PN}-wayland + ;; + X11) + if ! use wayland ; then + # Exit loop here because there's no choice so + # we don't need wrapper/.desktop file for X11. + continue + fi + + exec_command="${PN}-x11 --name ${PN}-x11" + newbin "${FILESDIR}/${wrapper_x11}" ${PN}-x11 + ;; + *) + app_name="${name}" + desktop_filename="${PN}.desktop" + exec_command="${PN}" + ;; + esac + + cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die + + sed -i \ + -e "s:@NAME@:${app_name}:" \ + -e "s:@EXEC@:${exec_command}:" \ + -e "s:@ICON@:${icon}:" \ + "${WORKDIR}/${PN}.desktop-template" \ + || die + + newmenu "${WORKDIR}/${PN}.desktop-template" "${desktop_filename}" + + rm "${WORKDIR}/${PN}.desktop-template" || die + done + + # Install generic wrapper script + [[ -f "${ED}/usr/bin/${PN}" ]] && rm "${ED}/usr/bin/${PN}" + newbin "${FILESDIR}/${PN}.sh" ${PN} + + # Update wrapper + local wrapper + for wrapper in \ + "${ED}/usr/bin/${PN}" \ + "${ED}/usr/bin/${PN}-x11" \ + "${ED}/usr/bin/${PN}-wayland" \ + ; do + [[ ! -f "${wrapper}" ]] && continue + + sed -i \ + -e "s:@PREFIX@:${EPREFIX}/usr:" \ + -e "s:@MOZ_FIVE_HOME@:${MOZILLA_FIVE_HOME}:" \ + -e "s:@APULSELIB_DIR@:${apulselib}:" \ + -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ + "${wrapper}" \ + || die + done +} + +pkg_preinst() { + xdg_pkg_preinst + + # If the apulse libs are available in MOZILLA_FIVE_HOME then apulse + # does not need to be forced into the LD_LIBRARY_PATH + if use pulseaudio && has_version ">=media-sound/apulse-0.1.12-r4" ; then + einfo "APULSE found; Generating library symlinks for sound support ..." + local lib + pushd "${ED}${MOZILLA_FIVE_HOME}" &>/dev/null || die + for lib in ../apulse/libpulse{.so{,.0},-simple.so{,.0}} ; do + # A quickpkg rolled by hand will grab symlinks as part of the package, + # so we need to avoid creating them if they already exist. + if [[ ! -L ${lib##*/} ]] ; then + ln -s "${lib}" ${lib##*/} || die + fi + done + popd &>/dev/null || die + fi +} + +pkg_postinst() { + xdg_pkg_postinst + + if ! use gmp-autoupdate ; then + elog "USE='-gmp-autoupdate' has disabled the following plugins from updating or" + elog "installing into new profiles:" + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + elog "\t ${plugin}" + done + elog + fi + + if use pulseaudio && has_version ">=media-sound/apulse-0.1.12-r4" ; then + elog "Apulse was detected at merge time on this system and so it will always be" + elog "used for sound. If you wish to use pulseaudio instead please unmerge" + elog "media-sound/apulse." + elog + fi + + local show_doh_information show_normandy_information + + if [[ -z "${REPLACING_VERSIONS}" ]] ; then + # New install; Tell user that DoH is disabled by default + show_doh_information=yes + show_normandy_information=yes + else + local replacing_version + for replacing_version in ${REPLACING_VERSIONS} ; do + if ver_test "${replacing_version}" -lt 70 ; then + # Tell user only once about our DoH default + show_doh_information=yes + fi + + if ver_test "${replacing_version}" -lt 74.0-r2 ; then + # Tell user only once about our Normandy default + show_normandy_information=yes + fi + done + fi + + if [[ -n "${show_doh_information}" ]] ; then + elog + elog "Note regarding Trusted Recursive Resolver aka DNS-over-HTTPS (DoH):" + elog "Due to privacy concerns (encrypting DNS might be a good thing, sending all" + elog "DNS traffic to Cloudflare by default is not a good idea and applications" + elog "should respect OS configured settings), \"network.trr.mode\" was set to 5" + elog "(\"Off by choice\") by default." + elog "You can enable DNS-over-HTTPS in ${PN^}'s preferences." + fi + + # bug 713782 + if [[ -n "${show_normandy_information}" ]] ; then + elog + elog "Upstream operates a service named Normandy which allows Mozilla to" + elog "push changes for default settings or even install new add-ons remotely." + elog "While this can be useful to address problems like 'Armagadd-on 2.0' or" + elog "revert previous decisions to disable TLS 1.0/1.1, privacy and security" + elog "concerns prevail, which is why we have switched off the use of this" + elog "service by default." + elog + elog "To re-enable this service set" + elog + elog " app.normandy.enabled=true" + elog + elog "in about:config." + fi +} diff --git a/www-client/firefox/firefox-85.0_rc1.ebuild b/www-client/firefox/firefox-85.0.ebuild similarity index 99% rename from www-client/firefox/firefox-85.0_rc1.ebuild rename to www-client/firefox/firefox-85.0.ebuild index c9d6e3fa1ae8..85f345fe9365 100644 --- a/www-client/firefox/firefox-85.0_rc1.ebuild +++ b/www-client/firefox/firefox-85.0.ebuild @@ -57,7 +57,7 @@ SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES} DESCRIPTION="Firefox Web Browser" HOMEPAGE="https://www.mozilla.com/firefox" -#KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" SLOT="0/$(ver_cut 1)" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" diff --git a/www-client/luakit/luakit-2.2.1.ebuild b/www-client/luakit/luakit-2.2.1.ebuild deleted file mode 100644 index ee701ad719ae..000000000000 --- a/www-client/luakit/luakit-2.2.1.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit toolchain-funcs xdg - -DESCRIPTION="A fast, extensible, and customizable web browser" -HOMEPAGE="https://luakit.github.io/luakit" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/luakit/luakit.git" -else - SRC_URI="https://github.com/luakit/luakit/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="GPL-3" -SLOT="0" -IUSE="doc luajit test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-db/sqlite:3 - dev-libs/glib:2 - dev-lua/luafilesystem[luajit=] - net-libs/webkit-gtk:4= - x11-libs/gtk+:3 - luajit? ( dev-lang/luajit:2 ) - !luajit? ( dev-lang/lua:0 ) -" -DEPEND=" - ${RDEPEND} - test? ( - dev-lua/luassert[luajit=] - dev-lua/luacheck[luajit=] - x11-base/xorg-server[xvfb] - ) -" -BDEPEND=" - virtual/pkgconfig - doc? ( app-doc/doxygen ) -" -PATCHES=( - "${FILESDIR}"/${PN}-2.2.1-make.patch - "${FILESDIR}"/${PN}-2.2.1-pkg-config.patch -) - -src_configure() { - export LUA_BIN_NAME=$(usex luajit luajit lua) - export LUA_PKG_NAME=$(usex luajit luajit lua) - tc-export CC PKG_CONFIG -} - -src_compile() { - emake \ - PREFIX="${EPREFIX}/usr" \ - USE_LUAJIT=$(usex luajit 1 0) \ - ${PN} ${PN}.so - - use doc && emake doc -} - -src_test() { - local failing_test - for failing_test in test_clib_luakit test_image_css; do - mv tests/async/${failing_test}.lua{,.disabled} || die - done - - emake \ - USE_LUAJIT=$(usex luajit 1 0) \ - run-tests -} - -src_install() { - emake \ - DESTDIR="${D}" \ - DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \ - PREFIX="${EPREFIX}/usr" \ - USE_LUAJIT=$(usex luajit 1 0) \ - XDGPREFIX="${EPREFIX}/etc/xdg" \ - install - - rm "${ED}/usr/share/doc/${PF}/COPYING.GPLv3" || die - - use doc && dodoc -r doc/html -} diff --git a/x11-libs/Manifest.gz b/x11-libs/Manifest.gz index 08fd36108a79..0d3e22a0cc38 100644 Binary files a/x11-libs/Manifest.gz and b/x11-libs/Manifest.gz differ diff --git a/x11-libs/libvdpau/Manifest b/x11-libs/libvdpau/Manifest index baf3ca4d8d81..0207705af252 100644 --- a/x11-libs/libvdpau/Manifest +++ b/x11-libs/libvdpau/Manifest @@ -1,3 +1 @@ -DIST libvdpau-1.3.tar.bz2 139009 BLAKE2B d535c7723638339d4e67002721e9d0d8aae89a6001fccc41d9c3b21d52f0fae9237705bca448fbf1c244dd7eeb71f5fc74ed81f05c975bed798fce503a571c90 SHA512 c06c23062816e8b207d38d9d53df43a1b193bb9836b48bd6d79a63d76522e87d383c446285b9877fe9c99faa0d290da8a49ccbb58eefa138cc38d0929a8e1330 DIST libvdpau-1.4.tar.bz2 139504 BLAKE2B de2b9251060f10e3126b59f44595c3b9cc65c3f5bc719133809414ed51362fb1f90fa67d0351007a178455329493f929d0983a2a7e67c29022ff351ea1f5adfc SHA512 68f502f53f4a95c9af571bd5a3f5048dd1afe30d7576f7e80751c7f29450ef8cb226c1281562b616079d6c177830ec67391d0fae33348a4627ca8c113990cd01 -DIST libvdpau-libvdpau-1.2.tar.bz2 140017 BLAKE2B 0420961c48fcd5c92e7e98f84f629946f6234c28781bd7d8c9eb4aa2ab11b76e89e05f50cc423a2935b3376ff3b919ad9e6ef1710ff3549369567f298b5efa50 SHA512 f76c2283a1bd2e854aa6b86a564f7f08c1ff7da34e971c7c39f36e77fbd51fe0440d1ba01bff0b80be6c0326817ee4e6bff719dbe8dbf5e1ec7a94fad5016b7e diff --git a/x11-libs/libvdpau/libvdpau-1.2.ebuild b/x11-libs/libvdpau/libvdpau-1.2.ebuild deleted file mode 100644 index ae3a69df818d..000000000000 --- a/x11-libs/libvdpau/libvdpau-1.2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -VIRTUALX_REQUIRED="test" -inherit autotools flag-o-matic virtualx multilib-minimal - -DESCRIPTION="VDPAU wrapper and trace libraries" -HOMEPAGE="https://www.freedesktop.org/wiki/Software/VDPAU" -SRC_URI="https://gitlab.freedesktop.org/vdpau/${PN}/-/archive/${P}/${PN}-${P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm64 x86" -IUSE="doc dri" - -RDEPEND=" - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] - dri? ( >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}] ) -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig - doc? ( - app-doc/doxygen - media-gfx/graphviz - virtual/latex-base - ) - dri? ( x11-base/xorg-proto ) -" -S=${WORKDIR}/${PN}-${P} - -src_prepare() { - default - eautoreconf - - multilib_copy_sources -} - -multilib_src_configure() { - append-cppflags -D_GNU_SOURCE - econf \ - $(use dri || echo --disable-dri2) \ - $(use_enable doc documentation) -} - -multilib_src_test() { - virtx emake check -} - -multilib_src_install() { - default - find "${ED}" -name '*.la' -delete || die -} diff --git a/x11-libs/libvdpau/libvdpau-1.3.ebuild b/x11-libs/libvdpau/libvdpau-1.3.ebuild deleted file mode 100644 index 09b8c0dd0f02..000000000000 --- a/x11-libs/libvdpau/libvdpau-1.3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -VIRTUALX_REQUIRED="test" -inherit flag-o-matic meson virtualx multilib-minimal - -DESCRIPTION="VDPAU wrapper and trace libraries" -HOMEPAGE="https://www.freedesktop.org/wiki/Software/VDPAU" -SRC_URI="https://gitlab.freedesktop.org/vdpau/${PN}/-/archive/${PV}/${P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm64 x86" -IUSE="doc dri" - -RDEPEND=" - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] - dri? ( >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}] ) -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig - doc? ( - app-doc/doxygen - media-gfx/graphviz - virtual/latex-base - ) - dri? ( x11-base/xorg-proto ) -" - -src_prepare() { - sed -i -e "/^docdir/s|${PN}|${PF}|g" doc/meson.build || die - default -} - -multilib_src_configure() { - append-cppflags -D_GNU_SOURCE - local emesonargs=( - -Ddri2=$(usex dri true false) - -Ddocumentation=$(usex doc true false) - ) - meson_src_configure -} - -multilib_src_compile() { - meson_src_compile -} -multilib_src_test() { - virtx meson_src_test -} - -multilib_src_install() { - meson_src_install - find "${ED}" -name '*.la' -delete || die -} diff --git a/x11-libs/xpa/files/xpa-2.1.8-makefile.patch b/x11-libs/xpa/files/xpa-2.1.8-makefile.patch deleted file mode 100644 index 290309662bb5..000000000000 --- a/x11-libs/xpa/files/xpa-2.1.8-makefile.patch +++ /dev/null @@ -1,84 +0,0 @@ ---- Makefile.in.orig 2008-11-03 12:05:33.000000000 +0000 -+++ Makefile.in 2008-11-03 12:07:48.000000000 +0000 -@@ -28,6 +28,11 @@ - - prefix = @prefix@ - exec_prefix = @exec_prefix@ -+bindir = @bindir@ -+libdir = @libdir@ -+datadir = @datadir@ -+mandir = @mandir@ -+includedir = @includedir@ - - # The following definition can be set to non-null for special systems - # like AFS with replication. It allows the pathnames used for installation -@@ -37,19 +42,19 @@ - INSTALL_ROOT = - - # Directory in which to install the .a or .so binary for the XPA library: --LIB_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/lib -+LIB_INSTALL_DIR = $(INSTALL_ROOT)$(libdir) - - # Directory in which to install the program wish: --BIN_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/bin -+BIN_INSTALL_DIR = $(INSTALL_ROOT)$(bindir) - - # Directory in which to install the include file xpa.h: --INCLUDE_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/include -+INCLUDE_INSTALL_DIR = $(INSTALL_ROOT)$(includedir) - - # Top-level directory for manual entries: --MAN_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/man -+MAN_INSTALL_DIR = $(INSTALL_ROOT)$(mandir) - - # Top-level directory for share entries: --MAN_SHARE_DIR = $(INSTALL_ROOT)$(prefix)/share/xpa -+MAN_SHARE_DIR = $(INSTALL_ROOT)$(datadir)/xpa - - # Platform-specific X compiler flags (include file specifications) - X_CFLAGS = @X_CFLAGS@ -@@ -175,7 +180,7 @@ - $(RANLIB) $(LIB) - - shlib: $(LIB) -- @(rm -rf lib$(PACKAGE).tmp; mkdir lib$(PACKAGE).tmp; \ -+ @(rm -rf lib$(PACKAGE).tmp; mkdir -p lib$(PACKAGE).tmp; \ - (cd lib$(PACKAGE).tmp && ar x ../lib$(PACKAGE).a); \ - rm -f lib$(PACKAGE).tmp/xt*.o; \ - rm -f lib$(PACKAGE).tmp/tcl*.o; \ -@@ -184,7 +189,7 @@ - rm -rf lib$(PACKAGE).tmp) - - tclxpa: $(LIB) -- @(rm -rf libtclxpa.tmp; mkdir libtclxpa.tmp; \ -+ @(rm -rf libtclxpa.tmp; mkdir -p libtclxpa.tmp; \ - (cd libtclxpa.tmp && ar x ../lib$(PACKAGE).a); \ - rm -f libtclxpa.tmp/xt*.o; \ - CC='$(CC)' CXX=$(CXX) \ -@@ -259,7 +264,7 @@ - do \ - if [ ! -d $$i ] ; then \ - echo "Making directory $$i"; \ -- mkdir $$i; \ -+ mkdir -p $$i; \ - chmod 755 $$i; \ - else true; \ - fi; \ -@@ -281,7 +286,7 @@ - install-man: - @if [ ! -d $(MAN_INSTALL_DIR) ] ; then \ - echo "Making directory $(MAN_INSTALL_DIR)"; \ -- mkdir $(MAN_INSTALL_DIR); \ -+ mkdir -p $(MAN_INSTALL_DIR); \ - chmod 755 $(MAN_INSTALL_DIR); \ - else true; \ - fi; -@@ -292,7 +297,7 @@ - M="$(MAN_INSTALL_DIR)/man$$E"; \ - if [ ! -d $$M ] ; then \ - echo "Making directory $$M"; \ -- mkdir $$M; \ -+ mkdir -p $$M; \ - chmod 755 $$M; \ - else true; \ - fi; \ diff --git a/x11-misc/Manifest.gz b/x11-misc/Manifest.gz index 945abcf876fa..3bc4e96b78e5 100644 Binary files a/x11-misc/Manifest.gz and b/x11-misc/Manifest.gz differ diff --git a/x11-misc/notification-daemon/files/notification-daemon-0.5.0-libnotify-0.7.patch b/x11-misc/notification-daemon/files/notification-daemon-0.5.0-libnotify-0.7.patch deleted file mode 100644 index 63765ee79e69..000000000000 --- a/x11-misc/notification-daemon/files/notification-daemon-0.5.0-libnotify-0.7.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- src/capplet/notification-properties.c -+++ src/capplet/notification-properties.c -@@ -27,6 +27,10 @@ - #include - #include - -+#ifndef NOTIFY_CHECK_VERSION -+#define NOTIFY_CHECK_VERSION(x,y,z) 0 -+#endif -+ - #include "stack.h" - - #define GCONF_KEY_DAEMON "/apps/notification-daemon" -@@ -402,8 +406,12 @@ - - dialog->preview = notify_notification_new (_("Notification Test"), - _("Just a test"), -- "gnome-util", -- NULL); -+ "gnome-util" -+#if NOTIFY_CHECK_VERSION (0, 7, 0) -+ ); -+#else -+ , NULL); -+#endif - - if (!notify_notification_show (dialog->preview, &error)) { - char *message; diff --git a/x11-misc/notification-daemon/files/notification-daemon-0.5.0-underlinking.patch b/x11-misc/notification-daemon/files/notification-daemon-0.5.0-underlinking.patch deleted file mode 100644 index 306ffd9cf991..000000000000 --- a/x11-misc/notification-daemon/files/notification-daemon-0.5.0-underlinking.patch +++ /dev/null @@ -1,12 +0,0 @@ -http://bugs.gentoo.org/468522 - ---- configure.ac -+++ configure.ac -@@ -98,6 +98,7 @@ - dbus-1 >= $REQ_DBUS_VERSION, \ - dbus-glib-1 >= $REQ_DBUS_VERSION, \ - libcanberra-gtk >= $REQ_LIBCANBERRA_GTK_VERSION, \ -+ gmodule-2.0, \ - gconf-2.0, \ - libwnck-1.0 \ - x11 \ diff --git a/x11-misc/vdpauinfo/Manifest b/x11-misc/vdpauinfo/Manifest index 49412210ea63..11e8d6993fdd 100644 --- a/x11-misc/vdpauinfo/Manifest +++ b/x11-misc/vdpauinfo/Manifest @@ -1,2 +1 @@ -DIST vdpauinfo-1.3.tar.gz 12159 BLAKE2B 41dc31ef2f45272221e2eea969d7801cc9c8bfd693e64f7d157b17645da654b7f50d780df698736b3e2ea9c55c7d3b6e7ce75f96aacd50bbaa4032dfc753a43f SHA512 2271053c17d389ea600742ffe14e863921f18e504e07cb5db33c98745d2f71aece908408bca0161b3c2fa9cd67de8c741c132a774a4fd9443c7124168a4da79f DIST vdpauinfo-1.4.tar.bz2 11811 BLAKE2B bf0c268505b8eafb9da7c799518296498f2c04bde33443101625c4a80cfde6418428d3969e9ac0f4222a6985b53f3bd4dff688fc03af29de7576f3af3605e07c SHA512 7227205f35d5ad9bc64537d4e47e1924e7efbcd1185420f5f575eadff23f2932484db9c39c377282ed88fa7fd43d436064b10961082ccbf66c49dac72b4129a3 diff --git a/x11-misc/vdpauinfo/vdpauinfo-1.3.ebuild b/x11-misc/vdpauinfo/vdpauinfo-1.3.ebuild deleted file mode 100644 index 6c12128cc543..000000000000 --- a/x11-misc/vdpauinfo/vdpauinfo-1.3.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools - -DESCRIPTION="Displays info about your card's VDPAU support" -HOMEPAGE="https://www.freedesktop.org/wiki/Software/VDPAU" -SRC_URI="https://gitlab.freedesktop.org/vdpau/${PN}/-/archive/${P}/${PN}-${P}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND=" - x11-libs/libX11 - >=x11-libs/libvdpau-1.3 -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig - x11-base/xorg-proto -" -S=${WORKDIR}/${PN}-${P} - -src_prepare() { - default - eautoreconf -} diff --git a/x11-misc/xfractint/files/xfractint-20.04p09-ldflags.patch b/x11-misc/xfractint/files/xfractint-20.04p09-ldflags.patch deleted file mode 100644 index eb3d92783aae..000000000000 --- a/x11-misc/xfractint/files/xfractint-20.04p09-ldflags.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -125,7 +125,7 @@ - - ifeq ($(AS),/usr/bin/nasm) - --CFLAGS = -I$(HFD) $(DEFINES) -g -DBIG_ANSI_C -DLINUX -DNASM -fno-builtin -+CFLAGS = -I$(HFD) $(DEFINES) -DBIG_ANSI_C -DLINUX -DNASM -fno-builtin - #CFLAGS = -I. -D_CONST $(DEFINES) - #CFLAGS = -I$(HFD) $(DEFINES) -g -DBIG_ANSI_C -DLINUX \ - # -march=$(ARCH) -DNASM -fno-builtin -@@ -133,7 +133,7 @@ - - else - --CFLAGS = -I$(HFD) $(DEFINES) -g -DBIG_ANSI_C -DLINUX -fno-builtin -+CFLAGS = -I$(HFD) $(DEFINES) -DBIG_ANSI_C -DLINUX -fno-builtin - #CFLAGS = -I$(HFD) $(DEFINES) -g -DBIG_ANSI_C -DLINUX \ - # -march=$(ARCH) -fno-builtin - #CFLAGS = -I. $(DEFINES) -g -DBIG_ANSI_C -DLINUX -Os -fno-builtin -@@ -312,7 +312,7 @@ - "HFD=.${HFD}" - cd unix ; ${MAKE} all "CC=${CC}" "CFLAGS= -I.${HFD} -I${XFTHFD} ${CFLAGS} ${OPT}" "SRCDIR=${SHRDIR}" \ - "AS=${AS}" "AFLAGS=${AFLAGS}" "HFD=.${HFD}" -- $(CC) -o xfractint $(CFLAGS) $(OPT) $(OBJS) $(U_OBJS) $(LIBS) -+ $(CC) -o xfractint $(CFLAGS) $(LDFLAGS) $(OPT) $(OBJS) $(U_OBJS) $(LIBS) - # strip xfractint - - fractint: diff --git a/x11-misc/xfractint/files/xfractint.envd b/x11-misc/xfractint/files/xfractint.envd deleted file mode 100644 index 3dd0cbcda664..000000000000 --- a/x11-misc/xfractint/files/xfractint.envd +++ /dev/null @@ -1,4 +0,0 @@ -#Specifies xfractint directory - -FRACTDIR=/usr/share/xfractint - diff --git a/x11-misc/xvkbd/files/xvkbd-3.6-last_altgr_mask.patch b/x11-misc/xvkbd/files/xvkbd-3.6-last_altgr_mask.patch deleted file mode 100644 index 7fe70773acca..000000000000 --- a/x11-misc/xvkbd/files/xvkbd-3.6-last_altgr_mask.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/xvkbd.c -+++ b/xvkbd.c -@@ -681,7 +681,7 @@ - } - } - -- last_altgr_mask = (altgr_mask | last_altgr_mask); -+ last_altgr_mask = altgr_mask; - alt_mask = 0; - meta_mask = 0; - altgr_mask = 0; diff --git a/x11-misc/xvkbd/files/xvkbd-4.0-destdir.patch b/x11-misc/xvkbd/files/xvkbd-4.0-destdir.patch deleted file mode 100644 index 83879dd9fd02..000000000000 --- a/x11-misc/xvkbd/files/xvkbd-4.0-destdir.patch +++ /dev/null @@ -1,25 +0,0 @@ ---- a/Makefile.am -+++ b/Makefile.am -@@ -1,5 +1,4 @@ --appdefaultdir=$(shell pkg-config --variable=appdefaultdir xt) --datarootdir=$(shell pkg-config --variable=datarootdir xt) -+appdefaultdir = $(shell $(PKG_CONFIG) --variable=appdefaultdir xt) - - SUBDIRS = . - bin_PROGRAMS = xvkbd -@@ -17,11 +16,12 @@ - [ which ad2c > /dev/null ] || ad2c XVkbd-common.ad > XVkbd-common.h - - install-data-hook: -+ [ -d $(DESTDIR)/$(appdefaultdir)/xvkbd/ ] || mkdir $(DESTDIR)/$(appdefaultdir)/xvkbd/ - for file in *.ad; do \ -- $(INSTALL_DATA) $$file $(appdefaultdir)/$${file%.ad}; \ -+ $(INSTALL_DATA) $$file $(DESTDIR)/$(appdefaultdir)/$${file%.ad}; \ - done -- [ -d $(datarootdir)/xvkbd/ ] || mkdir $(datarootdir)/xvkbd/ -- $(INSTALL_DATA) words.english $(datarootdir)/xvkbd/words.english -+ [ -d $(DESTDIR)/$(datarootdir)/xvkbd/ ] || mkdir $(DESTDIR)/$(datarootdir)/xvkbd/ -+ $(INSTALL_DATA) words.english $(DESTDIR)/$(datarootdir)/xvkbd/words.english - - EXTRA_DIST = XVkbd-common.h *.ad *.xbm xvkbd.man README ChangeLog Imakefile words.english - diff --git a/x11-misc/xvkbd/files/xvkbd-4.0-fno-common.patch b/x11-misc/xvkbd/files/xvkbd-4.0-fno-common.patch deleted file mode 100644 index 1ca0db048566..000000000000 --- a/x11-misc/xvkbd/files/xvkbd-4.0-fno-common.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/resources.h -+++ b/resources.h -@@ -19,7 +19,7 @@ - # define PROGRAM_NAME "xvkbd" - #endif - --struct appres_struct { -+extern struct appres_struct { - String description; - String show_manual_command; - ---- a/xvkbd.c -+++ b/xvkbd.c -@@ -500,6 +500,8 @@ - - static Pixmap xvkbd_pixmap = None; - -+struct appres_struct appres; -+ - static int AddKeysym(KeySym keysym, Boolean top); /* forward */ - static void MakeKeyboard(Boolean remake); - static void MakeKeypad(Widget form, Widget from_vert, Widget from_horiz); diff --git a/x11-plugins/Manifest.gz b/x11-plugins/Manifest.gz index 4267a0812726..3ce1e4d8cb11 100644 Binary files a/x11-plugins/Manifest.gz and b/x11-plugins/Manifest.gz differ diff --git a/x11-plugins/wmbiff/files/wmbiff-0.4.35-fno-common.patch b/x11-plugins/wmbiff/files/wmbiff-0.4.35-fno-common.patch deleted file mode 100644 index 2320f17143de..000000000000 --- a/x11-plugins/wmbiff/files/wmbiff-0.4.35-fno-common.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -Naur wmbiff-0.4.35.orig/wmbiff/wmbiff.c wmbiff-0.4.35/wmbiff/wmbiff.c ---- wmbiff-0.4.35.orig/wmbiff/wmbiff.c 2019-07-23 15:58:58.000000000 +0200 -+++ wmbiff-0.4.35/wmbiff/wmbiff.c 2020-03-08 12:25:32.766264038 +0100 -@@ -104,6 +104,8 @@ - - Cursor busy_cursor, ready_cursor; - -+Display *display; -+ - static __inline /*@out@ */ void * - malloc_ordie(size_t len) - { -diff -Naur wmbiff-0.4.35.orig/wmgeneral/wmgeneral.h wmbiff-0.4.35/wmgeneral/wmgeneral.h ---- wmbiff-0.4.35.orig/wmgeneral/wmgeneral.h 2019-07-23 15:57:57.000000000 +0200 -+++ wmbiff-0.4.35/wmgeneral/wmgeneral.h 2020-03-08 12:25:16.223256712 +0100 -@@ -36,7 +36,7 @@ - /* Global variable */ - /*******************/ - --Display *display; -+extern Display *display; - - /***********************/ - /* Function Prototypes */ diff --git a/x11-themes/Manifest.gz b/x11-themes/Manifest.gz index ea41c3fb9111..1dc224e59625 100644 Binary files a/x11-themes/Manifest.gz and b/x11-themes/Manifest.gz differ diff --git a/x11-themes/light-themes/Manifest b/x11-themes/light-themes/Manifest index a1e2fb25e78c..bc7111ad1b5c 100644 --- a/x11-themes/light-themes/Manifest +++ b/x11-themes/light-themes/Manifest @@ -1,3 +1,4 @@ DIST Gentoo-Buttons-r1.tar.xz 80476 BLAKE2B 802ce2cc0d8dd3c639cbb1b8ca51732cfb87194ecc2bd0ca68c7945c8768b8662d206bf191f443f983e80e25a21ebf7d1909771b2f51b7825b763494a4edac81 SHA512 d1c093fe8ce905a409cd3ce85fde8490f26b918bb1dd3ccb6695eaa6c7a4908d7ba1e1d14a9443a16331168ca9b3fa58b5b28805fc583b4345932602f7c19168 DIST ubuntu-themes_16.10+17.04.20170406.orig.tar.gz 13836108 BLAKE2B aeb2b33639c32c378b111c717099a79afb8688b48780bfa816a6ac9b4c0bfef5d1b475048f8c4906ee76787b503dcc207fbd617f1718883952917739012e2a11 SHA512 50d65dbe232237e1757b0d7a85ba7c2cafac18861211ca1b33a57de6a4961c325014851d1ee661adec57fac7472b7ae4f78439f30fa6f425eb751e94940d9f91 DIST ubuntu-themes_19.04.orig.tar.gz 16081764 BLAKE2B f94545c5900c9eaab61f021d8a8f37ef6ee825045df88e5a5e51c5d7632109343ca0293ee9b590daa6edf3be109a05128803a8a2c787a333f6317f8dbe54529c SHA512 95b41c5d3a47fba9c4b5368b4e80d8924e09844783c66ca697ce0ff5d71f2b0fd4f56a9041dc142267e0eaf75fd5a8b47c0abae049fc3434b5e29f3f363d83e8 +DIST ubuntu-themes_20.10.orig.tar.gz 15679746 BLAKE2B bcb1bae746379fe26700b7e88db4e91b0220e7145f55c59b951a31d768c2311d843c5d92c989b049e1009afbfc6e918e65726408298858e8fd689d0bbab1ca42 SHA512 0118f7c2404856216ff2df0246ea2fa98d0d5b25973abc3df13a998f7a41f2eeb32ca08281ba41399a91fa16ab046e3b3292f504503958983a6488c1e3001ac4 diff --git a/x11-themes/light-themes/light-themes-17.04_p20170406-r1.ebuild b/x11-themes/light-themes/light-themes-17.04_p20170406-r2.ebuild similarity index 95% rename from x11-themes/light-themes/light-themes-17.04_p20170406-r1.ebuild rename to x11-themes/light-themes/light-themes-17.04_p20170406-r2.ebuild index 4a33d8bcdb60..3db72c12aeaf 100644 --- a/x11-themes/light-themes/light-themes-17.04_p20170406-r1.ebuild +++ b/x11-themes/light-themes/light-themes-17.04_p20170406-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -59,6 +59,6 @@ src_install() { doins -r Radiance* Ambiance* use gtk3 || { - rm -R "${D}"/usr/share/themes/*/gtk-3.0 || die + rm -R "${D}"/usr/share/themes/*/gtk-3.* || die } } diff --git a/x11-themes/light-themes/light-themes-19.04.ebuild b/x11-themes/light-themes/light-themes-19.04-r2.ebuild similarity index 92% rename from x11-themes/light-themes/light-themes-19.04.ebuild rename to x11-themes/light-themes/light-themes-19.04-r2.ebuild index 91b109330db3..115ed1fee18b 100644 --- a/x11-themes/light-themes/light-themes-19.04.ebuild +++ b/x11-themes/light-themes/light-themes-19.04-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,12 +15,11 @@ SRC_URI=" LICENSE="CC-BY-SA-3.0 CC-BY-SA-4.0" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="gtk3" +IUSE="" DEPEND="app-arch/xz-utils" RDEPEND=" x11-themes/gtk-engines-murrine - gtk3? ( x11-themes/gtk-engines-unico ) " S="${WORKDIR}"/${MY_PN}-${PV} @@ -56,8 +55,4 @@ src_compile() { src_install() { insinto /usr/share/themes doins -r Radiance* Ambiance* - - use gtk3 || { - rm -R "${D}"/usr/share/themes/*/gtk-3.0 || die - } } diff --git a/x11-themes/light-themes/light-themes-20.10-r2.ebuild b/x11-themes/light-themes/light-themes-20.10-r2.ebuild new file mode 100644 index 000000000000..115ed1fee18b --- /dev/null +++ b/x11-themes/light-themes/light-themes-20.10-r2.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN=ubuntu-themes + +DESCRIPTION="GTK2/GTK3 Ambiance and Radiance themes from Ubuntu" +HOMEPAGE="https://packages.ubuntu.com/zesty/light-themes" +SRC_URI=" + mirror://ubuntu/pool/main/${MY_PN:0:1}/${MY_PN}/${MY_PN}_${PV}.orig.tar.gz + https://dev.gentoo.org/~pacho/${PN}/Gentoo-Buttons-r1.tar.xz +" + +LICENSE="CC-BY-SA-3.0 CC-BY-SA-4.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-arch/xz-utils" +RDEPEND=" + x11-themes/gtk-engines-murrine +" + +S="${WORKDIR}"/${MY_PN}-${PV} + +src_prepare() { + cp -RL Ambiance/ Ambiance-Gentoo || die + cp -RL Radiance/ Radiance-Gentoo || die + sed -i -e 's/Ambiance/Ambiance-Gentoo/g' Ambiance-Gentoo/index.theme \ + Ambiance-Gentoo/metacity-1/metacity-theme-1.xml || die + sed -i -e 's/Radiance/Radiance-Gentoo/g' Radiance-Gentoo/index.theme \ + Radiance-Gentoo/metacity-1/metacity-theme-1.xml || die + sed -i -e 's/nselected_bg_color:#f07746/nselected_bg_color:#755fbb/g' \ + Ambiance-Gentoo/gtk-2.0/gtkrc Ambiance-Gentoo/gtk-3.*/settings.ini \ + Radiance-Gentoo/gtk-2.0/gtkrc Radiance-Gentoo/gtk-3.*/settings.ini || die + sed -i -e 's/selected_bg_color #f07746/selected_bg_color #755fbb/g' \ + Ambiance-Gentoo/gtk-3.*/gtk-main.css \ + Radiance-Gentoo/gtk-3.*/gtk-main.css || die + + cp -f "${WORKDIR}"/Gentoo-Buttons/*.png "${S}"/Ambiance-Gentoo/metacity-1/. || die + cp -f "${WORKDIR}"/Gentoo-Buttons/*.png "${S}"/Radiance-Gentoo/metacity-1/. || die + cp -f "${WORKDIR}"/Gentoo-Buttons/assets/*.png "${S}"/Ambiance-Gentoo/gtk-3.0/assets/. || die + cp -f "${WORKDIR}"/Gentoo-Buttons/assets/*.png "${S}"/Ambiance-Gentoo/gtk-3.20/assets/. || die + cp -f "${WORKDIR}"/Gentoo-Buttons/assets/*.png "${S}"/Radiance-Gentoo/gtk-3.0/assets/. || die + cp -f "${WORKDIR}"/Gentoo-Buttons/assets/*.png "${S}"/Radiance-Gentoo/gtk-3.20/assets/. || die + + eapply_user +} + +src_compile() { + : +} + +src_install() { + insinto /usr/share/themes + doins -r Radiance* Ambiance* +} diff --git a/x11-wm/Manifest.gz b/x11-wm/Manifest.gz index 554fe8c02ae0..92e54140cd0c 100644 Binary files a/x11-wm/Manifest.gz and b/x11-wm/Manifest.gz differ diff --git a/x11-wm/wmfs/files/wmfs-201003-desktop.patch b/x11-wm/wmfs/files/wmfs-201003-desktop.patch deleted file mode 100644 index 91edac6d88be..000000000000 --- a/x11-wm/wmfs/files/wmfs-201003-desktop.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- a/wmfs.desktop -+++ b/wmfs.desktop -@@ -1,5 +1,4 @@ --[Desktop Entry] --Encoding=UTF-8 -+[Desktop Entry] - Name=wmfs - Comment=Window manager from scratch - TryExec=wmfs diff --git a/x11-wm/wmfs/files/wmfs-201003-pthread.patch b/x11-wm/wmfs/files/wmfs-201003-pthread.patch deleted file mode 100644 index cbbf6343bdfb..000000000000 --- a/x11-wm/wmfs/files/wmfs-201003-pthread.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -94,7 +92,8 @@ - set(LIBRARIES_TO_LINK - ${FREETYPE_LIBRARIES} - ${X11_LIBRARIES} -- Xft) -+ Xft -+ pthread) - - # Includes - include(FindDoxygen) diff --git a/xfce-extra/Manifest.gz b/xfce-extra/Manifest.gz index ad61db35c5dc..c35d01882813 100644 Binary files a/xfce-extra/Manifest.gz and b/xfce-extra/Manifest.gz differ diff --git a/xfce-extra/xfce4-sensors-plugin/files/xfce4-sensors-plugin-1.3.92-gcc-10.patch b/xfce-extra/xfce4-sensors-plugin/files/xfce4-sensors-plugin-1.3.92-gcc-10.patch deleted file mode 100644 index a5d60a66810e..000000000000 --- a/xfce-extra/xfce4-sensors-plugin/files/xfce4-sensors-plugin-1.3.92-gcc-10.patch +++ /dev/null @@ -1,115 +0,0 @@ -From 108ffac9eac23a5d87f142e36d162d62be0619e2 Mon Sep 17 00:00:00 2001 -From: Robin Lee -Date: Mon, 24 Feb 2020 17:52:39 +0800 -Subject: [PATCH] Fix multiple definition errors under GCC 10.0 - -Fixes issue #9, RHBZ#1800268 ---- - include/sensors-interface-common.h | 22 ++++++++++++++-------- - lib/sensors-interface-common.c | 1 + - 2 files changed, 15 insertions(+), 8 deletions(-) - -diff --git a/include/sensors-interface-common.h b/include/sensors-interface-common.h -index 62a27eb..05146c5 100644 ---- a/include/sensors-interface-common.h -+++ b/include/sensors-interface-common.h -@@ -146,6 +146,12 @@ t_sensors_dialog; - - - -+#ifdef XFCE4_SENSORS_INTERFACE_COMMON_DEFINING -+#define EXTERN -+#else -+#define EXTERN extern -+#endif -+ - /* Extern functions that need to be re-implemented in the sensors-viewer and - * the panel code. - * They kind of need to be registered at the library by any software -@@ -157,7 +163,7 @@ t_sensors_dialog; - * @param ptr_widget: Pointer to original widget, i.e, the update timer box - * @param ptr_sensorsdialog: argument pointer to sensors dialog data - */ --void -+EXTERN void - (*adjustment_value_changed) (GtkWidget *ptr_widget, - t_sensors_dialog *ptr_sensorsdialog); - -@@ -167,7 +173,7 @@ void - * @param ptr_widget: Pointer to original widget, i.e, the sensor entry combobox - * @param ptr_sensorsdialog: argument pointer to sensors dialog data - */ --void -+EXTERN void - (*sensor_entry_changed) (GtkWidget *ptr_widget, - t_sensors_dialog *ptr_sensorsdialog); - -@@ -178,7 +184,7 @@ void - * @param ptr_str_newtext: Pointer to the string containing the new label - * @param ptr_sensorsdialog: argument pointer to sensors dialog data - */ --void -+EXTERN void - (*list_cell_text_edited) (GtkCellRendererText *ptr_cellrenderertext, - gchar *ptr_str_path, gchar *ptr_str_newtext, - t_sensors_dialog *ptr_sensorsdialog); -@@ -189,7 +195,7 @@ void - * @param ptr_str_path: pointer to the string with the path of the changed item - * @param ptr_sensorsdialog: argument pointer to sensors dialog data - */ --void -+EXTERN void - (*list_cell_toggle) (GtkCellRendererToggle *ptr_cellrenderertoggle, gchar *ptr_str_path, - t_sensors_dialog *ptr_sensorsdialog); - -@@ -201,7 +207,7 @@ void - * hexadecimal rgb format #0011ff - * @param ptr_sensorsdialog: argument pointer to sensors dialog data - */ --void -+EXTERN void - (*list_cell_color_edited) (GtkCellRendererText *ptr_cellrenderertext, - gchar *ptr_str_path, gchar *ptr_str_newcolor, - t_sensors_dialog *ptr_sensorsdialog); -@@ -214,7 +220,7 @@ void - * temperature - * @param ptr_sensorsdialog: argument pointer to sensors dialog data - */ --void -+EXTERN void - (*minimum_changed) (GtkCellRendererText *ptr_cellrenderertext, gchar *ptr_str_path, - gchar *ptr_str_newmin, t_sensors_dialog *ptr_sensorsdialog); - -@@ -226,7 +232,7 @@ void - * temperature - * @param ptr_sensorsdialog: argument pointer to sensors dialog data - */ --void -+EXTERN void - (*maximum_changed) (GtkCellRendererText *ptr_cellrenderertext, gchar *ptr_str_path, - gchar *ptr_str_newmax, t_sensors_dialog *ptr_sensorsdialog); - -@@ -236,7 +242,7 @@ void - * @param ptr_widget: Pointer to original widget, i.e, the update timer box - * @param ptr_sensorsdialog: argument pointer to sensors dialog data - */ --void -+EXTERN void - (*temperature_unit_change) (GtkWidget *ptr_widget, - t_sensors_dialog *ptr_sensorsdialog); - -diff --git a/lib/sensors-interface-common.c b/lib/sensors-interface-common.c -index 70aa154..8c79f1d 100644 ---- a/lib/sensors-interface-common.c -+++ b/lib/sensors-interface-common.c -@@ -28,6 +28,7 @@ - #include - - /* Local/package includes */ -+#define XFCE4_SENSORS_INTERFACE_COMMON_DEFINING - #include - #include - #include --- -GitLab -