diff --git a/Manifest.files.gz b/Manifest.files.gz index bdcd2676882d..e06f41ac5da5 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/acct-group/Manifest.gz b/acct-group/Manifest.gz index df45b25d7487..c969f4be3ce1 100644 Binary files a/acct-group/Manifest.gz and b/acct-group/Manifest.gz differ diff --git a/acct-group/biboumi/metadata.xml b/acct-group/biboumi/metadata.xml index 87a759d410cf..a7fa285c7476 100644 --- a/acct-group/biboumi/metadata.xml +++ b/acct-group/biboumi/metadata.xml @@ -1,5 +1,5 @@ - + Florian Schmaus diff --git a/acct-user/Manifest.gz b/acct-user/Manifest.gz index 4a8eace24854..5fcd2eabdf7d 100644 Binary files a/acct-user/Manifest.gz and b/acct-user/Manifest.gz differ diff --git a/acct-user/biboumi/metadata.xml b/acct-user/biboumi/metadata.xml index 87a759d410cf..a7fa285c7476 100644 --- a/acct-user/biboumi/metadata.xml +++ b/acct-user/biboumi/metadata.xml @@ -1,5 +1,5 @@ - + Florian Schmaus diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz index 04500f5120c1..45fd82ec59aa 100644 Binary files a/app-admin/Manifest.gz and b/app-admin/Manifest.gz differ diff --git a/app-admin/salt/files/salt-3004.1-py310.patch b/app-admin/salt/files/salt-3004.1-py310.patch new file mode 100644 index 000000000000..7e30d7687a66 --- /dev/null +++ b/app-admin/salt/files/salt-3004.1-py310.patch @@ -0,0 +1,53 @@ +From a58bbbe058df8f45872c43a95992f6a7a7914ab9 Mon Sep 17 00:00:00 2001 +From: piterpunk +Date: Fri, 15 Oct 2021 11:03:20 -0300 +Subject: [PATCH] Fix _compat.py importlib logic for Python 3.10 + +Use the same logic in _compat.py and entrypoints.py to load +the same importlib.metadata. Python's built in implementation for +Python >= 3.10 and the Salt one for others. +--- + salt/_compat.py | 30 +++++++++++++++++------------- + 1 file changed, 17 insertions(+), 13 deletions(-) + +diff --git a/salt/_compat.py b/salt/_compat.py +index 8149657bea61..a402f17a3c71 100644 +--- a/salt/_compat.py ++++ b/salt/_compat.py +@@ -11,19 +11,23 @@ + else: + import salt.ext.ipaddress as ipaddress + ++if sys.version_info >= (3, 10): ++ # Python 3.10 will include a fix in importlib.metadata which allows us to ++ # get the distribution of a loaded entry-point ++ import importlib.metadata # pylint: disable=no-member,no-name-in-module ++else: ++ # importlib_metadata before version 3.3.0 does not include the functionality we need. ++ try: ++ import importlib_metadata + +-# importlib_metadata before version 3.3.0 does not include the functionality we need. +-try: +- import importlib_metadata +- +- importlib_metadata_version = [ +- int(part) +- for part in importlib_metadata.version("importlib_metadata").split(".") +- if part.isdigit() +- ] +- if tuple(importlib_metadata_version) < (3, 3, 0): ++ importlib_metadata_version = [ ++ int(part) ++ for part in importlib_metadata.version("importlib_metadata").split(".") ++ if part.isdigit() ++ ] ++ if tuple(importlib_metadata_version) < (3, 3, 0): ++ # Use the vendored importlib_metadata ++ import salt.ext.importlib_metadata as importlib_metadata ++ except ImportError: + # Use the vendored importlib_metadata + import salt.ext.importlib_metadata as importlib_metadata +-except ImportError: +- # Use the vendored importlib_metadata +- import salt.ext.importlib_metadata as importlib_metadata diff --git a/app-admin/salt/files/salt-3004.1-tests.patch b/app-admin/salt/files/salt-3004.1-tests.patch index 3a36977246f2..956cf1b0041c 100644 --- a/app-admin/salt/files/salt-3004.1-tests.patch +++ b/app-admin/salt/files/salt-3004.1-tests.patch @@ -289,3 +289,23 @@ index 907c67f477..3f68cfe8f3 100644 def test_jid_option_invalid(self): jid = salt.utils.jid.gen_jid({}) + "A" args = ["--jid", jid] + self.args +diff --git a/tests/unit/utils/test_schema.py b/tests/unit/utils/test_schema.py +index 8c648f5288..74b9bc6981 100644 +--- a/tests/unit/utils/test_schema.py ++++ b/tests/unit/utils/test_schema.py +@@ -872,6 +872,7 @@ class ConfigTestCase(TestCase): + }, + ) + ++ @skipIf(True, "Does not work in network sandbox") + @skipIf(HAS_JSONSCHEMA is False, "The 'jsonschema' library is missing") + def test_hostname_config_validation(self): + class TestConf(schema.Schema): +@@ -2098,6 +2099,7 @@ class ConfigTestCase(TestCase): + item = schema.NotItem(item=schema.BooleanItem()) + self.assertEqual(item.serialize(), {"not": item.item.serialize()}) + ++ @skipIf(True, "Does not work in network sandbox") + @skipIf(HAS_JSONSCHEMA is False, "The 'jsonschema' library is missing") + def test_not_config_validation(self): + class TestConf(schema.Schema): diff --git a/app-admin/salt/salt-3004.1-r2.ebuild b/app-admin/salt/salt-3004.1-r4.ebuild similarity index 99% rename from app-admin/salt/salt-3004.1-r2.ebuild rename to app-admin/salt/salt-3004.1-r4.ebuild index 38244a2fee60..f70d9445491a 100644 --- a/app-admin/salt/salt-3004.1-r2.ebuild +++ b/app-admin/salt/salt-3004.1-r4.ebuild @@ -82,6 +82,7 @@ BDEPEND=" dev-python/mako[${PYTHON_USEDEP}] >=dev-python/mock-2.0.0[${PYTHON_USEDEP}] >=dev-python/moto-0.3.6[${PYTHON_USEDEP}] + dev-python/passlib dev-python/pip[${PYTHON_USEDEP}] dev-python/pyopenssl[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}] @@ -110,6 +111,7 @@ PATCHES=( "${FILESDIR}/salt-3004.1-jinja-3.patch" "${FILESDIR}/salt-3004.1-tests.patch" "${FILESDIR}/salt-3004.1-relax-pyzmq-dep.patch" + "${FILESDIR}/salt-3004.1-py310.patch" ) python_prepare_all() { diff --git a/app-backup/Manifest.gz b/app-backup/Manifest.gz index 25b44b2aa5fd..9d0699753e02 100644 Binary files a/app-backup/Manifest.gz and b/app-backup/Manifest.gz differ diff --git a/app-backup/dar/Manifest b/app-backup/dar/Manifest index e2a60f3eeeb1..f702cf191c70 100644 --- a/app-backup/dar/Manifest +++ b/app-backup/dar/Manifest @@ -1,3 +1,2 @@ -DIST dar-2.7.3.tar.gz 2398624 BLAKE2B 9d34d233968efcd390db6a1afa1bb93477b6dcbb4bb8c6beb315e927f7ae624bdf23b77f32233a63e3ddd437701fbbd1ee19e5c7ab4f0366ef7e646bacdab46c SHA512 a8a930cd39cae66199e402e61fc48609fe22b821c12407ab7922b8bc8f43f9b11b2f0732baf8198b41d193442a1f82d18536a0d6a7fd7282aaed3600342c7d48 DIST dar-2.7.4.tar.gz 2404731 BLAKE2B a3b8cb2049f1b12048023916e2951ca9efc57791afa62df58ceb796f69503c9d2795e0b6e11f2b3efdde51f2e0f78e972a7e08742f2278f92231db94a21dfbbe SHA512 fcdf222c4244d02797dff06797a67baefd1b7bdd409ed09da05e23430b025b1cc66ee98e85aa43b481ec3d17a84b7c2bbcebe4c8f23a2a480146845d3da93477 DIST dar-2.7.5.tar.gz 2404076 BLAKE2B 2887629cecf069cfb5063132299279b8be985785485c6f04a8389dfd4930f00b073b421fbb17915d69f5efd46ebb4c3d371c10d3936bfb16d82a191218af350d SHA512 a4e01dce8a078ba81b3032a1910d75f0f59a23511246f570a50ade135f49f11e522ed8916a947aece1799dcd1d37308ba6e4a009313b80d6a1561698c3d5623a diff --git a/app-backup/dar/dar-2.7.3.ebuild b/app-backup/dar/dar-2.7.3.ebuild deleted file mode 100644 index 86e173b25733..000000000000 --- a/app-backup/dar/dar-2.7.3.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic - -DESCRIPTION="A full featured backup tool, aimed for disks" -HOMEPAGE="http://dar.linux.free.fr/" -SRC_URI="mirror://sourceforge/dar/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86 ~amd64-linux" -IUSE="argon2 curl dar32 dar64 doc gcrypt gpg lz4 lzo nls rsync threads xattr" - -REQUIRED_USE="?? ( dar32 dar64 ) - gpg? ( gcrypt )" - -RESTRICT="test" # need to be run as root - -RDEPEND=" - app-arch/bzip2:= - app-arch/xz-utils - app-arch/zstd:= - sys-libs/libcap - >=sys-libs/zlib-1.2.3:= - argon2? ( app-crypt/argon2:= ) - curl? ( net-misc/curl ) - gcrypt? ( - dev-libs/libgcrypt:0= - dev-libs/libgpg-error - ) - gpg? ( app-crypt/gpgme:= ) - lz4? ( app-arch/lz4:= ) - lzo? ( dev-libs/lzo:2 ) - nls? ( virtual/libintl ) - rsync? ( net-libs/librsync:= ) - threads? ( dev-libs/libthreadar ) - xattr? ( sys-apps/attr ) -" - -DEPEND="${RDEPEND}" - -BDEPEND=" - doc? ( app-doc/doxygen ) - nls? ( sys-devel/gettext ) -" - -src_configure() { - # configure.ac is totally funked up regarding the AC_ARG_ENABLE - # logic. - # For example "--enable-dar-static" causes configure to DISABLE - # static builds of dar. - # Do _not_ use $(use_enable) until you have verified that the - # logic has been fixed by upstream. - local myconf=( - --disable-dar-static - --disable-python-binding - --disable-upx - $(usev !argon2 --disable-libargon2-linking) - $(usev !curl --disable-libcurl-linking) - $(usev dar32 --enable-mode=32) - $(usev dar64 --enable-mode=64) - $(usev !doc --disable-build-html) - $(usev !gcrypt --disable-libgcrypt-linking) - $(usev !gpg --disable-gpgme-linking) - $(usev !lz4 --disable-liblz4-linking) - $(usev !lzo --disable-liblzo2-linking) - $(usev !nls --disable-nls) - $(usev !rsync --disable-librsync-linking) - $(usev !threads --disable-threadar) - $(usev !xattr --disable-ea-support) - ) - - # Bug 103741 - filter-flags -fomit-frame-pointer - - econf "${myconf[@]}" -} - -src_install() { - emake DESTDIR="${D}" pkgdatadir="${EPREFIX}"/usr/share/doc/${PF}/html install - - einstalldocs - - find "${ED}" -name "*.la" -delete || die - - # Bug 729150 - rm "${ED}/usr/share/doc/${PF}/html/samples/MyBackup.sh.tar.gz" || die -} diff --git a/app-crypt/Manifest.gz b/app-crypt/Manifest.gz index 7f75024ca917..5566cd52b6a6 100644 Binary files a/app-crypt/Manifest.gz and b/app-crypt/Manifest.gz differ diff --git a/app-crypt/acme/acme-1.25.0.ebuild b/app-crypt/acme/acme-1.25.0.ebuild index be518d606627..da63ed453043 100644 --- a/app-crypt/acme/acme-1.25.0.ebuild +++ b/app-crypt/acme/acme-1.25.0.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == 9999* ]]; then S=${WORKDIR}/${P}/${PN} else SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> certbot-${PV}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" + KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86" S=${WORKDIR}/certbot-${PV}/acme fi diff --git a/app-crypt/certbot-apache/certbot-apache-1.25.0.ebuild b/app-crypt/certbot-apache/certbot-apache-1.25.0.ebuild index cf0c9621b1ae..85b55229a0d2 100644 --- a/app-crypt/certbot-apache/certbot-apache-1.25.0.ebuild +++ b/app-crypt/certbot-apache/certbot-apache-1.25.0.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} == 9999* ]]; then S=${WORKDIR}/${P}/${PN} else SRC_URI="https://github.com/${PN%-apache}/${PN%-apache}/archive/v${PV}.tar.gz -> ${PN%-apache}-${PV}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~x86" + KEYWORDS="amd64 ~arm64 x86" S=${WORKDIR}/${PN%-apache}-${PV}/${PN} fi diff --git a/app-crypt/certbot-nginx/certbot-nginx-1.25.0.ebuild b/app-crypt/certbot-nginx/certbot-nginx-1.25.0.ebuild index e66a6b39887e..3566b27d06f7 100644 --- a/app-crypt/certbot-nginx/certbot-nginx-1.25.0.ebuild +++ b/app-crypt/certbot-nginx/certbot-nginx-1.25.0.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} == 9999* ]]; then S=${WORKDIR}/${P}/${PN} else SRC_URI="https://github.com/${PN%-nginx}/${PN%-nginx}/archive/v${PV}.tar.gz -> ${PN%-nginx}-${PV}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86" + KEYWORDS="amd64 ~arm ~arm64 x86" S=${WORKDIR}/${PN%-nginx}-${PV}/${PN} fi diff --git a/app-crypt/certbot/certbot-1.25.0.ebuild b/app-crypt/certbot/certbot-1.25.0.ebuild index 0040de76755a..2d3795642b7b 100644 --- a/app-crypt/certbot/certbot-1.25.0.ebuild +++ b/app-crypt/certbot/certbot-1.25.0.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} == 9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" + KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86" fi S=${WORKDIR}/${P}/${PN} diff --git a/app-crypt/mkp224o/metadata.xml b/app-crypt/mkp224o/metadata.xml index 6bbe7e963edf..e9ab26926571 100644 --- a/app-crypt/mkp224o/metadata.xml +++ b/app-crypt/mkp224o/metadata.xml @@ -1,5 +1,5 @@ - + matthew@gentoo.org diff --git a/app-crypt/trousers/Manifest b/app-crypt/trousers/Manifest index 84891c9a8863..4556d86ce761 100644 --- a/app-crypt/trousers/Manifest +++ b/app-crypt/trousers/Manifest @@ -1,2 +1 @@ -DIST trousers-0.3.14.tar.gz 1378438 BLAKE2B 3dc2824fa2ca1b1f1181f98d59e85276e7d38af4bfc07ee8246431d9ccb300a8e0820b318643d4cf5d757d2a49492c8686e2fe9de03484263d2189d4bbaa32d0 SHA512 bf87f00329cf1d76a12cf6b6181fa22f90e76af3c5786e6e2db98438d2d3f0c0e05364374664173f45e3a2f6c0e2364948d0b958a7845cb23fcb340150cd9b21 DIST trousers-0.3.15.tar.gz 4699936 BLAKE2B 53c60498ed6a9d3d87295b00676e5d0d82452918c35af6b98c7979ffa2dc04dd817e7cd3f4a33ca17c30b90eab53d80b2bb25306fe9db7bda2125019edfed280 SHA512 769c7d891c6306c1b3252448f86e3043ee837e566c9431f5b4353512113e2907f6ce29c91e8044c420025b79c5f3ff2396ddce93f73b1eb2a15ea1de89ac0fdb diff --git a/app-crypt/trousers/files/tcsd.confd b/app-crypt/trousers/files/tcsd.confd deleted file mode 100644 index 78bedb9fda30..000000000000 --- a/app-crypt/trousers/files/tcsd.confd +++ /dev/null @@ -1,9 +0,0 @@ -# /etc/conf.d/tscd - -# Configuration file for the TrouSerS' TCS daemon (tcsd) init script -# Have a look on /etc/tcsd.conf too, there is more to configure there. - -# TPM_MODULES: name of the module(s) that should be loaded. You only need to -# set this if your driver is not compiled in kernel and is not already loaded -# on boot. (default: unset) -#TPM_MODULES="tpm_atmel" diff --git a/app-crypt/trousers/files/tcsd.initd b/app-crypt/trousers/files/tcsd.initd index c9c050cb06d9..9b18c48e1ee3 100644 --- a/app-crypt/trousers/files/tcsd.initd +++ b/app-crypt/trousers/files/tcsd.initd @@ -1,38 +1,19 @@ #!/sbin/openrc-run -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +command=/usr/sbin/tcsd +description="TrouSerS' TCS daemon (tcsd)" +command_user="tss:tss" + depend() { use logger need net } -checkconfig() { - local mod - if [ -n "${TPM_MODULES}" ] ; then - for mod in ${TPM_MODULES} ; do - lsmod | grep -q "^${mod}\b" \ - || modprobe ${mod} &>/dev/null \ - || ewarn "Failed to load module ${mod}" - done - # Should we sleep or something to wait for device creation? - fi +start_pre() { if [ ! -c /dev/tpm ] && [ ! -c /dev/tpm0 ] ; then eerror "No TPM device found!" return 1 fi - return 0 -} - -start() { - ebegin "Starting TrouSerS' TCS daemon (tcsd)" - checkconfig || eend $? - start-stop-daemon --start --user tss --exec /usr/sbin/tcsd - eend $? -} - -stop() { - ebegin "Stopping TrouSerS' TCS daemon (tcsd)" - start-stop-daemon --stop --quiet --exec /usr/sbin/tcsd --user tss - eend $? } diff --git a/app-crypt/trousers/files/trousers-0.3.14-fno-common.patch b/app-crypt/trousers/files/trousers-0.3.14-fno-common.patch deleted file mode 100644 index 5046bc70883b..000000000000 --- a/app-crypt/trousers/files/trousers-0.3.14-fno-common.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/src/include/tcsd.h b/src/include/tcsd.h -index 5b9462b..05bae97 100644 ---- a/src/include/tcsd.h -+++ b/src/include/tcsd.h -@@ -166,8 +166,8 @@ void thread_signal_init(); - - /* signal handling */ - #ifndef __APPLE__ --struct sigaction tcsd_sa_int; --struct sigaction tcsd_sa_chld; -+extern struct sigaction tcsd_sa_int; -+extern struct sigaction tcsd_sa_chld; - #endif - - #endif diff --git a/app-crypt/trousers/files/trousers-0.3.14-tcsd-fixes.patch b/app-crypt/trousers/files/trousers-0.3.14-tcsd-fixes.patch deleted file mode 100644 index 10031e088293..000000000000 --- a/app-crypt/trousers/files/trousers-0.3.14-tcsd-fixes.patch +++ /dev/null @@ -1,58 +0,0 @@ -Index: trousers-0.3.14/src/tcs/ps/tcsps.c -=================================================================== ---- trousers-0.3.14.orig/src/tcs/ps/tcsps.c -+++ trousers-0.3.14/src/tcs/ps/tcsps.c -@@ -72,7 +72,7 @@ get_file() - } - - /* open and lock the file */ -- system_ps_fd = open(tcsd_options.system_ps_file, O_CREAT|O_RDWR, 0600); -+ system_ps_fd = open(tcsd_options.system_ps_file, O_CREAT|O_RDWR|O_NOFOLLOW, 0600); - if (system_ps_fd < 0) { - LogError("system PS: open() of %s failed: %s", - tcsd_options.system_ps_file, strerror(errno)); -Index: trousers-0.3.14/src/tcsd/svrside.c -=================================================================== ---- trousers-0.3.14.orig/src/tcsd/svrside.c -+++ trousers-0.3.14/src/tcsd/svrside.c -@@ -473,6 +473,7 @@ main(int argc, char **argv) - } - return TCSERR(TSS_E_INTERNAL_ERROR); - } -+ setgid(pwd->pw_gid); - setuid(pwd->pw_uid); - #endif - #endif -Index: trousers-0.3.14/src/tcsd/tcsd_conf.c -=================================================================== ---- trousers-0.3.14.orig/src/tcsd/tcsd_conf.c -+++ trousers-0.3.14/src/tcsd/tcsd_conf.c -@@ -743,7 +743,7 @@ conf_file_init(struct tcsd_config *conf) - #ifndef SOLARIS - struct group *grp; - struct passwd *pw; -- mode_t mode = (S_IRUSR|S_IWUSR); -+ mode_t mode = (S_IRUSR|S_IWUSR|S_IRGRP); - #endif /* SOLARIS */ - TSS_RESULT result; - -@@ -798,15 +798,15 @@ conf_file_init(struct tcsd_config *conf) - } - - /* make sure user/group TSS owns the conf file */ -- if (pw->pw_uid != stat_buf.st_uid || grp->gr_gid != stat_buf.st_gid) { -+ if (stat_buf.st_uid != 0 || grp->gr_gid != stat_buf.st_gid) { - LogError("TCSD config file (%s) must be user/group %s/%s", tcsd_config_file, -- TSS_USER_NAME, TSS_GROUP_NAME); -+ "root", TSS_GROUP_NAME); - return TCSERR(TSS_E_INTERNAL_ERROR); - } - -- /* make sure only the tss user can manipulate the config file */ -+ /* make sure only the tss user can read (but not manipulate) the config file */ - if (((stat_buf.st_mode & 0777) ^ mode) != 0) { -- LogError("TCSD config file (%s) must be mode 0600", tcsd_config_file); -+ LogError("TCSD config file (%s) must be mode 0640", tcsd_config_file); - return TCSERR(TSS_E_INTERNAL_ERROR); - } - #endif /* SOLARIS */ diff --git a/app-crypt/trousers/trousers-0.3.14-r3.ebuild b/app-crypt/trousers/trousers-0.3.14-r3.ebuild deleted file mode 100644 index 72418a365fc0..000000000000 --- a/app-crypt/trousers/trousers-0.3.14-r3.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools linux-info readme.gentoo-r1 systemd udev - -DESCRIPTION="An open-source TCG Software Stack (TSS) v1.1 implementation" -HOMEPAGE="http://trousers.sf.net" -SRC_URI="mirror://sourceforge/trousers/${PN}/${P}.tar.gz" - -LICENSE="CPL-1.0 GPL-2" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~m68k ~ppc ppc64 ~s390 x86" -IUSE="doc selinux" # gtk - -# gtk support presently does NOT compile. -# gtk? ( >=x11-libs/gtk+-2 ) - -DEPEND="acct-group/tss - acct-user/tss - >=dev-libs/glib-2 - >=dev-libs/openssl-0.9.7:0= - " -RDEPEND="${DEPEND} - selinux? ( sec-policy/selinux-tcsd )" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${PN}-0.3.13-nouseradd.patch" - "${FILESDIR}/${P}-fno-common.patch" - "${FILESDIR}/${P}-Makefile.am-Mark-tddl.a-nodist.patch" - "${FILESDIR}/${P}-tcsd-fixes.patch" -) - -DOCS="AUTHORS ChangeLog NICETOHAVES README TODO" - -DOC_CONTENTS=" - If you have problems starting tcsd, please check permissions and - ownership on /dev/tpm* and ~tss/system.data -" -S="${WORKDIR}" - -CONFIG_CHECK="~TCG_TPM" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # econf --with-gui=$(usex gtk gtk openssl) - econf --with-gui=openssl -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die - - keepdir /var/lib/tpm - use doc && dodoc doc/* - newinitd "${FILESDIR}"/tcsd.initd tcsd - newconfd "${FILESDIR}"/tcsd.confd tcsd - systemd_dounit "${FILESDIR}"/tcsd.service - udev_dorules "${FILESDIR}"/61-trousers.rules - fowners tss:tss /var/lib/tpm - readme.gentoo_create_doc -} diff --git a/app-crypt/trousers/trousers-0.3.15.ebuild b/app-crypt/trousers/trousers-0.3.15.ebuild index b3b23fa8f5c2..b25a3dfb4c72 100644 --- a/app-crypt/trousers/trousers-0.3.15.ebuild +++ b/app-crypt/trousers/trousers-0.3.15.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -57,9 +57,9 @@ src_install() { keepdir /var/lib/tpm use doc && dodoc doc/* newinitd "${FILESDIR}"/tcsd.initd tcsd - newconfd "${FILESDIR}"/tcsd.confd tcsd systemd_dounit "${FILESDIR}"/tcsd.service udev_dorules "${FILESDIR}"/61-trousers.rules fowners tss:tss /var/lib/tpm readme.gentoo_create_doc + udev_reload } diff --git a/app-crypt/xca/files/xca-2.3.0-bug-733000.patch b/app-crypt/xca/files/xca-2.3.0-bug-733000.patch deleted file mode 100644 index 044575475c89..000000000000 --- a/app-crypt/xca/files/xca-2.3.0-bug-733000.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff --git a/doc/Makefile b/doc/Makefile -index d481c5a..dc5b49a 100644 ---- a/doc/Makefile -+++ b/doc/Makefile -@@ -5,13 +5,9 @@ endif - - DELFILES=xca*.html xca.1.gz changelog.html database_schema.html - --doc: xca.1.gz xca.html changelog.html database_schema.html -+doc: xca.1 xca.html changelog.html database_schema.html - include $(TOPDIR)/Rules.mak - --%.1.gz: %.1 -- @$(PRINT) " MAN [$(BASENAME)] $@" -- gzip -9 <$^ >$@ -- - xca.html: xca.sgml - rm -f xca*.html - echo 'The documentation for XCA can be viewed online at: http://hohnstaedt.de/documentation.' > $@ -@@ -23,7 +19,7 @@ install: $(doc) - $(ENABLE_DOC)install -m 755 -d $(DESTDIR)$(htmldir) - $(ENABLE_DOC)install -m 644 xca*.html $(DESTDIR)$(htmldir) - install -m 755 -d $(DESTDIR)$(mandir)/man1 -- install -m 644 *.1.gz $(DESTDIR)/$(mandir)/man1 -+ install -m 644 *.1 $(DESTDIR)/$(mandir)/man1 - - app: xca.html - mkdir -p $(APPDIR)/Resources diff --git a/app-doc/Manifest.gz b/app-doc/Manifest.gz index 93f3384ce128..f1b941f8816c 100644 Binary files a/app-doc/Manifest.gz and b/app-doc/Manifest.gz differ diff --git a/app-doc/eclass-manpages/Manifest b/app-doc/eclass-manpages/Manifest index 9e72b4e29d5d..45de19802f1c 100644 --- a/app-doc/eclass-manpages/Manifest +++ b/app-doc/eclass-manpages/Manifest @@ -1,3 +1,2 @@ -DIST eclass-manpages-20210712.tar.xz 410588 BLAKE2B 776da6b26db95791401d562d3d550e1ab71dc19f54124fa37e78ab2595835fb05e7382b98007e58131698710b978dd87cbc10df1ea98c6ef01ec866418d6f9a6 SHA512 fb2bdc790d96f0662d84eddd01f291b4a3cac638c1e3df8975755e81d2d64dda14b0f60a77387da8544672080711d5047dda777d27a8cf2ded2634c47ecfee4b -DIST eclass-manpages-20211002.tar.xz 410056 BLAKE2B 6ac900aaa2718d838af7f069766e2e818276c80d1819f38ca0bc09d3815487083dfe64781331d9b0049c474fc6cec9381daea9c7961f14b208cd3372c79b7564 SHA512 bcea1bcae107df73c72c37dd65c5414833ad59e9d6088f806cb06512b53cdbcad10fb50fe23ede02ccfcda17ae86c70879f496929ef0f54aa799179f9ef0d869 DIST eclass-manpages-20220316.tar.xz 402108 BLAKE2B 6730248793ccb479da966fd20212ee60b9ca75a8eb4bcf9872517fef10821c2fe0232e17707411d2b66366813fc31a5917157239a79002820376d397899ea6b1 SHA512 0d89f02de5812854c75987e1b9718de58f642585ef4a6dea9b907549ff5d52b13d62cbe70fbbfe4339fc5f15f6114505d20f715f7a583c2cebfab4dd27a7ac1d +DIST eclass-manpages-20220417.tar.xz 403944 BLAKE2B db0607e65f5e87d566bd632b4fa6e48522593907f8fb76f598a552fb23bf53ced466b467b45fc07154edc0e757dc92b9387484003dd847bdd63ea3a6f6635459 SHA512 ad9bcc55f9b7df7565d4d309d37e59553871a7116b3f00b87f6e29648bf4b235ec64a036348f76167ca1ce4d2b899b70176d1844d6e8bb325154e1d1a1dc951f diff --git a/app-doc/eclass-manpages/eclass-manpages-20210712.ebuild b/app-doc/eclass-manpages/eclass-manpages-20210712.ebuild deleted file mode 100644 index d28b3ad5325c..000000000000 --- a/app-doc/eclass-manpages/eclass-manpages-20210712.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Collection of Gentoo eclass manpages" -HOMEPAGE="https://github.com/mgorny/eclass-to-manpage" -SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -# Keep the keywords stable. No need to change to ~arch. -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" - -BDEPEND="app-arch/xz-utils - sys-apps/gawk" - -src_install() { - emake install DESTDIR="${D}" PREFIX="${EPREFIX}/usr" -} diff --git a/app-doc/eclass-manpages/eclass-manpages-20211002.ebuild b/app-doc/eclass-manpages/eclass-manpages-20220417.ebuild similarity index 94% rename from app-doc/eclass-manpages/eclass-manpages-20211002.ebuild rename to app-doc/eclass-manpages/eclass-manpages-20220417.ebuild index 117b609c71e6..bb4dc06b483d 100644 --- a/app-doc/eclass-manpages/eclass-manpages-20211002.ebuild +++ b/app-doc/eclass-manpages/eclass-manpages-20220417.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 diff --git a/app-editors/Manifest.gz b/app-editors/Manifest.gz index 3a9cca1b2684..a6293e17fced 100644 Binary files a/app-editors/Manifest.gz and b/app-editors/Manifest.gz differ diff --git a/app-editors/ghex/Manifest b/app-editors/ghex/Manifest index 9a3ff84f41a7..9e5a2b3007ba 100644 --- a/app-editors/ghex/Manifest +++ b/app-editors/ghex/Manifest @@ -1,2 +1,3 @@ DIST ghex-3.41.1.tar.xz 1499804 BLAKE2B dd75dc1cc5d847ae3b932ed0bb98b8e15f44943f76f0ba9f053c6770d05e31d211c9f75a910c93c09cf2de143db8fa0eda4fdb876a0ea3ed0534650e7ac36a65 SHA512 5eccf81c41f5ae56bfe5eab0fb843db0095c75080e7dfc0b19a4c71f40f89931e1cbcd2c58744a6b249d16e2a2e4f96513aaac4c41f46d3b5ae8b2bc851851a0 DIST ghex-42.0.tar.xz 1007772 BLAKE2B db85755e22470f345fcd926e26addcb3ea71c90bc0d71fb5f02ad71e875b3b0100856e4365f950a4040f266c1826be992e6a7a23e32ddebbf9ccdfce88e45f46 SHA512 20eb8b876e65e3a63b2bf5bcb7258f4c196380395805e7aa374a4dba79e8e0356507b7dad660cdfd49490cb9832863e84dfcfa74dd680f05d34742a3c23f6108 +DIST ghex-42.1.tar.xz 1002984 BLAKE2B c526536c9e2a1b115a2af591ebf4a044950411ec6000c3d5a6e662813219d060ac0a0bd34549c76c9663c82c9ae3777b99e92e810de07e71905c524c37a76355 SHA512 7dc6ef8fc84b53e82367794ad4684232bb492fd8ae9320db499fb5d2ff5e15f23ae5e4839b91c0828ea74ec81d7bdc30383f3087e3165bc67761eaafa03efd61 diff --git a/app-editors/ghex/ghex-42.1.ebuild b/app-editors/ghex/ghex-42.1.ebuild new file mode 100644 index 000000000000..b9a8b8490096 --- /dev/null +++ b/app-editors/ghex/ghex-42.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="GNOME hexadecimal editor" +HOMEPAGE="https://wiki.gnome.org/Apps/Ghex" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/ghex.git" + SRC_URI="" +else + KEYWORDS="~amd64 ~arm ~riscv ~x86 ~amd64-linux ~x86-linux" +fi + +LICENSE="GPL-2+ FDL-1.1+" +IUSE="gtk-doc test" +RESTRICT="!test? ( test )" +SLOT="4" + +RDEPEND=" + >=dev-libs/glib-2.66.0:2 + >=gui-libs/gtk-4.0.0:4 + dev-libs/gobject-introspection + !app-editors/ghex:2 +" +DEPEND="${RDEPEND}" +BDEPEND=" + gtk-doc? ( dev-util/gi-docgen ) + test? ( + dev-util/desktop-file-utils + dev-libs/appstream-glib + ) + dev-util/gtk-update-icon-cache + dev-util/itstool + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + -Ddocdir="${EPREFIX}"/usr/share/gtk-doc/ + -Dintrospection=enabled + $(meson_use gtk-doc gtk_doc) + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/app-editors/neovim/Manifest b/app-editors/neovim/Manifest index d75436e16cae..2e1a0c842e8b 100644 --- a/app-editors/neovim/Manifest +++ b/app-editors/neovim/Manifest @@ -1,4 +1,4 @@ -DIST neovim-0.4.4.tar.gz 9558246 BLAKE2B b1d44898bb1e1ab40a7e1d7fb4448076c991ebe1a0956674548de82fe7a931d9eaffbf35ba03cf9c88466dcd628a55f1d7bf9e7a13f3dad74424d6d653ded60c SHA512 ca5c2fe1784ac7b0d2117948ba2e9ae5d94e36d22ff9e0967047e1e03e605537672d85543897af335103215ad462c86962f25267d352a77d61bc3d1cafb3c183 DIST neovim-0.5.1.tar.gz 10349190 BLAKE2B eb7e0c6a0742369c4a0fbc32a0f0e5d595f03470fb10287c39dde2f86db433a21798acee49d2cc363f18843950ef76d1376f5e52358d0b19a4b1e090c0d620a6 SHA512 a5a976c4998e821e0d9a9038d3f0c9e7c424a951f6bfc6d75898916d6a004ac668f31a34c3472fc4fca6b1d9652ac662b06780dd04dc6a77ecdc81564ec05709 DIST neovim-0.6.0.tar.gz 10592213 BLAKE2B f0f4654b6ae37b29c903ec54175b7dc6742c9f8dadd3242119a0288df4e3262ff5d9cb7ccd41fd8b1431db828ddb806714ced62ef1893cb923cf84badd47e3d8 SHA512 c007d076fb89288fe0496fa243fc6f485b0b33120c96b0bf37d8fe6469c672eb641fefbc3f7262ec726e40910c44d37ff7efb1723c05ba920ff6ae512b1d43e6 DIST neovim-0.6.1.tar.gz 10597584 BLAKE2B 3e2da61b768f5cae44e08f0ef7f386ce4b878b3248c9a7f7691f62dd732abfa59558467e190a5bcbb5f5007801b2003380296678fca42a0b46dde9a71ed496f4 SHA512 399489f6aaabec2a89b695b22dcd860149acaad723372cced0b4d2cdae464e2db5758372b9123cd0d2a683e0ea42b871935eb85e550cecce620d896691cfda53 +DIST neovim-0.7.0.tar.gz 10925354 BLAKE2B 0524d008ba1ebbe823406e94cfb048014b26bc394c686b2dd84bb7fae5a1f7f3acd42764b03b6efec10c0f25045c5838f624542b5125947e5f42d3b0d2ad1f84 SHA512 3597c54fb925a4d607bca9ba0fdb37df90ecb816da99f52baf46cc2ec79727a55048ba1d8d22c8e7d61f0e8e35546326b1d0d15c0a91de8bf5bc529c45fb1ce0 diff --git a/app-editors/neovim/neovim-0.4.4-r101.ebuild b/app-editors/neovim/neovim-0.7.0.ebuild similarity index 74% rename from app-editors/neovim/neovim-0.4.4-r101.ebuild rename to app-editors/neovim/neovim-0.7.0.ebuild index cbfbcb50f493..f23e7434577b 100644 --- a/app-editors/neovim/neovim-0.4.4-r101.ebuild +++ b/app-editors/neovim/neovim-0.7.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 LUA_COMPAT=( lua5-{1..2} luajit ) @@ -15,30 +15,31 @@ if [[ ${PV} == 9999 ]]; then 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 ~x64-macos" + KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~x64-macos" fi LICENSE="Apache-2.0 vim" SLOT="0" -IUSE="+lto +nvimpager +tui" +IUSE="+lto +nvimpager test +tui" REQUIRED_USE="${LUA_REQUIRED_USE}" # Upstream say the test library needs LuaJIT # https://github.com/neovim/neovim/blob/91109ffda23d0ce61cec245b1f4ffb99e7591b62/CMakeLists.txt#L377 -#REQUIRED_USE="test? ( lua_single_target_luajit )" -#RESTRICT="!test? ( test )" +REQUIRED_USE="test? ( lua_single_target_luajit )" +# TODO: Get tests running +RESTRICT="!test? ( test ) test" # Upstream build scripts invoke the Lua interpreter BDEPEND="${LUA_DEPS} - dev-util/gperf + >=dev-util/gperf-3.1 virtual/libiconv virtual/libintl virtual/pkgconfig " -# TODO: add tests, dev-lua/busted has now got luajit support. -# bug #584694 +# Check https://github.com/neovim/neovim/blob/master/third-party/CMakeLists.txt for +# new dependency bounds and so on on bumps (obviously adjust for right branch/tag). DEPEND="${LUA_DEPS} - dev-lua/luv[${LUA_SINGLE_USEDEP}] + >=dev-lua/luv-1.43.0[${LUA_SINGLE_USEDEP}] $(lua_gen_cond_dep ' dev-lua/lpeg[${LUA_USEDEP}] dev-lua/mpack[${LUA_USEDEP}] @@ -46,14 +47,12 @@ DEPEND="${LUA_DEPS} $(lua_gen_cond_dep ' dev-lua/LuaBitOp[${LUA_USEDEP}] ' lua5-{1,2}) - dev-libs/libuv:0= - >=dev-libs/libvterm-0.1.2 - dev-libs/msgpack:0= - !kernel_Darwin? ( - net-libs/libnsl:= - ) + >=dev-libs/libuv-1.44.1:= + >=dev-libs/libvterm-0.1.4 + >=dev-libs/msgpack-3.0.0:= + >=dev-libs/tree-sitter-0.20.6:= tui? ( - dev-libs/libtermkey + >=dev-libs/libtermkey-0.22 >=dev-libs/unibilium-2.0.0:0= ) " @@ -61,6 +60,11 @@ RDEPEND=" ${DEPEND} app-eselect/eselect-vi " +BDEPEND=" + test? ( + $(lua_gen_cond_dep 'dev-lua/busted[${LUA_USEDEP}]') + ) +" PATCHES=( "${FILESDIR}/${PN}-0.4.4-cmake_lua_version.patch" @@ -69,7 +73,7 @@ PATCHES=( ) src_prepare() { - # use our system vim dir + # Use our system vim dir sed -e "/^# define SYS_VIMRC_FILE/s|\$VIM|${EPREFIX}/etc/vim|" \ -i src/nvim/globals.h || die @@ -82,6 +86,7 @@ src_configure() { # have preferences for how we should use LTO # if we want it on (not just -flto) # ... but allow turning it off. + # TODO: Investigate USE_BUNDLED, doesn't seem to be needed right now local mycmakeargs=( -DENABLE_LTO=$(usex lto) -DFEAT_TUI=$(usex tui) @@ -107,6 +112,7 @@ src_install() { 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 diff --git a/app-editors/neovim/neovim-9999.ebuild b/app-editors/neovim/neovim-9999.ebuild index 69b26947a582..f23e7434577b 100644 --- a/app-editors/neovim/neovim-9999.ebuild +++ b/app-editors/neovim/neovim-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 LUA_COMPAT=( lua5-{1..2} luajit ) @@ -47,10 +47,10 @@ DEPEND="${LUA_DEPS} $(lua_gen_cond_dep ' dev-lua/LuaBitOp[${LUA_USEDEP}] ' lua5-{1,2}) - >=dev-libs/libuv-1.43.0:= + >=dev-libs/libuv-1.44.1:= >=dev-libs/libvterm-0.1.4 >=dev-libs/msgpack-3.0.0:= - >=dev-libs/tree-sitter-0.20.1:= + >=dev-libs/tree-sitter-0.20.6:= tui? ( >=dev-libs/libtermkey-0.22 >=dev-libs/unibilium-2.0.0:0= diff --git a/app-emacs/Manifest.gz b/app-emacs/Manifest.gz index 43d76819d2d2..646323a907ff 100644 Binary files a/app-emacs/Manifest.gz and b/app-emacs/Manifest.gz differ diff --git a/app-emacs/ansi/Manifest b/app-emacs/ansi/Manifest new file mode 100644 index 000000000000..f3872ab0c6ba --- /dev/null +++ b/app-emacs/ansi/Manifest @@ -0,0 +1 @@ +DIST ansi-0.4.1_p20211104.tar.gz 5498 BLAKE2B aabfd9eca6b74e20bc2b435df08aa66971396fc64c9967682c744e53a703b1853af5e72682466fd89e0d4cb06fa264e1c9d7a5970004a2ccd4637ba3ff0d028b SHA512 ea4cf098aec0bace89de9bfebb36be493b4b73311525dd088a081e90aa41b6e4d15519a4e871bb4a2ef9bcd6450943d80f05619fb7290c341a0d5785bac00615 diff --git a/app-emacs/ansi/ansi-0.4.1_p20211104.ebuild b/app-emacs/ansi/ansi-0.4.1_p20211104.ebuild new file mode 100644 index 000000000000..12ba90c2412a --- /dev/null +++ b/app-emacs/ansi/ansi-0.4.1_p20211104.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +H=2367fba7b3b2340364a30cd6de7f3eb6bb9898a3 +NEED_EMACS=24 + +inherit elisp + +DESCRIPTION="Emacs library to convert strings into ansi" +HOMEPAGE="https://github.com/rejeep/ansi.el/" +SRC_URI="https://github.com/rejeep/${PN}.el/archive/${H}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}.el-${H} + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( + app-emacs/dash + app-emacs/el-mock + app-emacs/f + app-emacs/s + app-emacs/undercover + ) +" + +DOCS=( README.markdown ) +SITEFILE="50${PN}-gentoo.el" + +src_test() { + ${EMACS} ${EMACSFLAGS} -L . -L test \ + -l ansi.el -l test/ansi-color-test.el -l test/ansi-csi-test.el \ + -l test/ansi-format-test.el -l test/ansi-init.el \ + -l test/ansi-on-color-test.el -l test/ansi-style-test.el \ + -l test/ansi-test.el -l test/test-helper.el \ + -f ert-run-tests-batch-and-exit || die "tests failed" +} diff --git a/app-emacs/ansi/files/50ansi-gentoo.el b/app-emacs/ansi/files/50ansi-gentoo.el new file mode 100644 index 000000000000..431f7e90ae73 --- /dev/null +++ b/app-emacs/ansi/files/50ansi-gentoo.el @@ -0,0 +1 @@ +(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/ansi/metadata.xml b/app-emacs/ansi/metadata.xml new file mode 100644 index 000000000000..7ffd242cdb37 --- /dev/null +++ b/app-emacs/ansi/metadata.xml @@ -0,0 +1,13 @@ + + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + https://github.com/rejeep/ansi.el/issues/ + rejeep/ansi.el + + diff --git a/app-emacs/dune-format/Manifest b/app-emacs/dune-format/Manifest new file mode 100644 index 000000000000..7f6259a6fe97 --- /dev/null +++ b/app-emacs/dune-format/Manifest @@ -0,0 +1 @@ +DIST dune-format-0.1.tar.gz 2477 BLAKE2B a043e6e6aeeac33e3265794ca5dec4fd1292a19a210e4a3be0f5dc21de4c1516587f25eb0513ba653defbdeba7d781c1a09903cddf0b7f8a0b3c2ce43235672d SHA512 511dcdc5f4413dc680cb1102c35b737c406ef4fb8e69150b60e7bc11bf877d94a039ebe7224c62a304004015471dab7f2b50fae32d9119221d435b06041df9d9 diff --git a/app-emacs/dune-format/dune-format-0.1.ebuild b/app-emacs/dune-format/dune-format-0.1.ebuild new file mode 100644 index 000000000000..a2b2acf211da --- /dev/null +++ b/app-emacs/dune-format/dune-format-0.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=24.1 + +inherit elisp + +DESCRIPTION="Reformat OCaml's dune files automatically" +HOMEPAGE="https://github.com/purcell/emacs-dune-format/" +SRC_URI="https://github.com/purcell/emacs-${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" +S="${WORKDIR}"/emacs-${P} + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="app-emacs/reformatter" +RDEPEND=" + ${BDEPEND} + dev-ml/dune +" + +DOCS=( README.md ) +ELISP_REMOVE="Makefile" # Makefile downloads pkgs from net +SITEFILE="50${PN}-gentoo.el" diff --git a/app-emacs/dune-format/files/50dune-format-gentoo.el b/app-emacs/dune-format/files/50dune-format-gentoo.el new file mode 100644 index 000000000000..431f7e90ae73 --- /dev/null +++ b/app-emacs/dune-format/files/50dune-format-gentoo.el @@ -0,0 +1 @@ +(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/dune-format/metadata.xml b/app-emacs/dune-format/metadata.xml new file mode 100644 index 000000000000..773899dc27c6 --- /dev/null +++ b/app-emacs/dune-format/metadata.xml @@ -0,0 +1,17 @@ + + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + ml@gentoo.org + ML + + + https://github.com/purcell/emacs-dune-format/issues/ + purcell/emacs-dune-format + + diff --git a/app-emacs/el-mock/Manifest b/app-emacs/el-mock/Manifest new file mode 100644 index 000000000000..4f88a04b8909 --- /dev/null +++ b/app-emacs/el-mock/Manifest @@ -0,0 +1 @@ +DIST el-mock-1.25.1.tar.gz 5825 BLAKE2B e04f193e6d27a0081dd8c9eceafc79b585f8556e0c4dc75f7c27e657b939e6320268c90bb63aca15a7261598edbdbf6cd936230b0c1dc64de24de8a67bc51920 SHA512 8b55c94489d6461124c3e39920e5aeb2e1adb492f08aa4312c6029f392c6acdea1c01872995934e500d6ff63c3d2d38c9dde86c55135421a28e3a79ace38d7d8 diff --git a/app-emacs/el-mock/el-mock-1.25.1.ebuild b/app-emacs/el-mock/el-mock-1.25.1.ebuild new file mode 100644 index 000000000000..335163df7109 --- /dev/null +++ b/app-emacs/el-mock/el-mock-1.25.1.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Mocking library for Emacs" +HOMEPAGE="https://github.com/rejeep/el-mock.el/" +SRC_URI="https://github.com/rejeep/${PN}.el/archive/v${PV}.tar.gz + -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}.el-${PV} + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DOCS=( README.md ) +SITEFILE="50${PN}-gentoo.el" diff --git a/app-emacs/el-mock/files/50el-mock-gentoo.el b/app-emacs/el-mock/files/50el-mock-gentoo.el new file mode 100644 index 000000000000..431f7e90ae73 --- /dev/null +++ b/app-emacs/el-mock/files/50el-mock-gentoo.el @@ -0,0 +1 @@ +(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/el-mock/metadata.xml b/app-emacs/el-mock/metadata.xml new file mode 100644 index 000000000000..278694c35599 --- /dev/null +++ b/app-emacs/el-mock/metadata.xml @@ -0,0 +1,13 @@ + + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + https://github.com/rejeep/el-mock.el/issues/ + rejeep/el-mock.el + + diff --git a/app-emacs/ocaml-mode/ocaml-mode-4.05.0.ebuild b/app-emacs/ocaml-mode/ocaml-mode-4.05.0.ebuild index 2ee616fb4445..9e7ce51ec9b7 100644 --- a/app-emacs/ocaml-mode/ocaml-mode-4.05.0.ebuild +++ b/app-emacs/ocaml-mode/ocaml-mode-4.05.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ SRC_URI="https://github.com/ocaml/ocaml/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux" S="${WORKDIR}/${MY_P}/emacs" SITEFILE="50${PN}-gentoo-3.12.1.el" diff --git a/app-emacs/racket-mode/racket-mode-20220219.ebuild b/app-emacs/racket-mode/racket-mode-20220219.ebuild index 809f5998bf78..0bd72bea7cf5 100644 --- a/app-emacs/racket-mode/racket-mode-20220219.ebuild +++ b/app-emacs/racket-mode/racket-mode-20220219.ebuild @@ -15,7 +15,7 @@ S="${WORKDIR}/${PN}-${H}" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" RDEPEND="dev-scheme/racket:=[-minimal]" BDEPEND="${RDEPEND}" diff --git a/app-emacs/reformatter/Manifest b/app-emacs/reformatter/Manifest new file mode 100644 index 000000000000..d11a780799b9 --- /dev/null +++ b/app-emacs/reformatter/Manifest @@ -0,0 +1 @@ +DIST reformatter-0.6.tar.gz 7943 BLAKE2B 72f34b873aacef5ee1dd0edd06effed83dad490f5d57ac3390dbd0d6fb7172adb1b7a3e19c0e90740b300cad8d2a1df60ab1bbfaa660c79621066d402f01b923 SHA512 ff1ad88b3a0a3ca1e70a5e0d7fe6f2264981d88ae64f0fa412d52721fb43991a483f31fb72193f7d67be71f39110051c0dda39e4ed87b4339aa156fa256e013a diff --git a/app-emacs/reformatter/files/50reformatter-gentoo.el b/app-emacs/reformatter/files/50reformatter-gentoo.el new file mode 100644 index 000000000000..431f7e90ae73 --- /dev/null +++ b/app-emacs/reformatter/files/50reformatter-gentoo.el @@ -0,0 +1 @@ +(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/reformatter/metadata.xml b/app-emacs/reformatter/metadata.xml new file mode 100644 index 000000000000..7cdcedd7a960 --- /dev/null +++ b/app-emacs/reformatter/metadata.xml @@ -0,0 +1,13 @@ + + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + https://github.com/purcell/emacs-reformatter/issues/ + purcell/emacs-reformatter + + diff --git a/app-emacs/reformatter/reformatter-0.6.ebuild b/app-emacs/reformatter/reformatter-0.6.ebuild new file mode 100644 index 000000000000..81970dc35b99 --- /dev/null +++ b/app-emacs/reformatter/reformatter-0.6.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=24.3 + +inherit elisp + +DESCRIPTION="Define commands which run reformatters on the Emacs buffers" +HOMEPAGE="https://github.com/purcell/emacs-reformatter/" +SRC_URI="https://github.com/purcell/emacs-${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" +S="${WORKDIR}"/emacs-${P} + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="test" # Tests need "shfmt" + +DOCS=( README.md ) +ELISP_REMOVE="Makefile ${PN}-tests.el" # Makefile downloads pkgs from net +SITEFILE="50${PN}-gentoo.el" diff --git a/app-emacs/shut-up/Manifest b/app-emacs/shut-up/Manifest new file mode 100644 index 000000000000..e8adbe6988e5 --- /dev/null +++ b/app-emacs/shut-up/Manifest @@ -0,0 +1 @@ +DIST shut-up-0.3.3.tar.gz 4479 BLAKE2B 0cb9ee028386ceb9b80385a6893c203481a79619f8780c641ca76a8878bece3944973ba78a41e1a554d4c9402ec2227d1234a9b6862b01d489dba30db021b731 SHA512 b14110022bd1512985fe40194c419f06cc8f5f6c819f02e681a89c2f80a32140e20eea6e3bb659b1abee85021b01bdc0b48d3ff12d6fac6072635fbdcb808484 diff --git a/app-emacs/shut-up/files/50shut-up-gentoo.el b/app-emacs/shut-up/files/50shut-up-gentoo.el new file mode 100644 index 000000000000..431f7e90ae73 --- /dev/null +++ b/app-emacs/shut-up/files/50shut-up-gentoo.el @@ -0,0 +1 @@ +(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/shut-up/metadata.xml b/app-emacs/shut-up/metadata.xml new file mode 100644 index 000000000000..ed648c38c11b --- /dev/null +++ b/app-emacs/shut-up/metadata.xml @@ -0,0 +1,13 @@ + + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + https://github.com/cask/shut-up/issues/ + cask/shut-up + + diff --git a/app-emacs/shut-up/shut-up-0.3.3.ebuild b/app-emacs/shut-up/shut-up-0.3.3.ebuild new file mode 100644 index 000000000000..f5a6d10ba523 --- /dev/null +++ b/app-emacs/shut-up/shut-up-0.3.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=24 + +inherit elisp + +DESCRIPTION="Reduce Emacs output of messages" +HOMEPAGE="https://github.com/cask/shut-up/" +SRC_URI="https://github.com/cask/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( + app-emacs/f + app-emacs/s + ) +" + +DOCS=( README.md ) +SITEFILE="50${PN}-gentoo.el" + +src_test() { + ${EMACS} ${EMACSFLAGS} -L . -L test -l test/${PN}-test.el \ + -f ert-run-tests-batch-and-exit || die "tests failed" +} diff --git a/app-emacs/undercover/Manifest b/app-emacs/undercover/Manifest new file mode 100644 index 000000000000..d566d0edc73b --- /dev/null +++ b/app-emacs/undercover/Manifest @@ -0,0 +1 @@ +DIST undercover-0.8.1.tar.gz 20800 BLAKE2B a151366c0897baf22e2ad9e602935409643f9256f42fdc8733e3d98bfcf9373d12b6225851ab6d18cb195abff860842a6a5444886aeffce59ee45c5f1e902feb SHA512 33508f3c6cbacd30ee3ad8312e51b596a7547713837595ec2836f627bcccc90107e5198f541d8bc74ad20fb9c8ea6e0616fd0de8eb46f743d2606397000f0e74 diff --git a/app-emacs/undercover/files/50undercover-gentoo.el b/app-emacs/undercover/files/50undercover-gentoo.el new file mode 100644 index 000000000000..431f7e90ae73 --- /dev/null +++ b/app-emacs/undercover/files/50undercover-gentoo.el @@ -0,0 +1 @@ +(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/undercover/metadata.xml b/app-emacs/undercover/metadata.xml new file mode 100644 index 000000000000..573fc52cf974 --- /dev/null +++ b/app-emacs/undercover/metadata.xml @@ -0,0 +1,13 @@ + + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + https://github.com/undercover-el/undercover.el/issues/ + undercover-el/undercover.el + + diff --git a/app-emacs/undercover/undercover-0.8.1.ebuild b/app-emacs/undercover/undercover-0.8.1.ebuild new file mode 100644 index 000000000000..81126487bb99 --- /dev/null +++ b/app-emacs/undercover/undercover-0.8.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=24 + +inherit elisp + +DESCRIPTION="Test coverage library for Emacs" +HOMEPAGE="https://github.com/undercover-el/undercover.el/" +SRC_URI="https://github.com/undercover-el/${PN}.el/archive/v${PV}.tar.gz + -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}.el-${PV} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="test" # Tests fail + +RDEPEND=" + app-emacs/dash + app-emacs/shut-up +" +BDEPEND="${RDEPEND}" + +DOCS=( README.md ) +SITEFILE="50${PN}-gentoo.el" diff --git a/app-emulation/Manifest.gz b/app-emulation/Manifest.gz index f84c21a6f3b7..023f4ca55899 100644 Binary files a/app-emulation/Manifest.gz and b/app-emulation/Manifest.gz differ diff --git a/app-emulation/wine-staging/wine-staging-7.3.ebuild b/app-emulation/wine-staging/wine-staging-7.3-r1.ebuild similarity index 99% rename from app-emulation/wine-staging/wine-staging-7.3.ebuild rename to app-emulation/wine-staging/wine-staging-7.3-r1.ebuild index 700f6788f5a7..4eff54a05a56 100644 --- a/app-emulation/wine-staging/wine-staging-7.3.ebuild +++ b/app-emulation/wine-staging/wine-staging-7.3-r1.ebuild @@ -61,8 +61,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 ) # or fail due to Xvfb's opengl limitations. RESTRICT="test" -BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) - sys-devel/flex +BDEPEND="sys-devel/flex virtual/yacc virtual/pkgconfig" diff --git a/app-emulation/wine-staging/wine-staging-7.4.ebuild b/app-emulation/wine-staging/wine-staging-7.4-r1.ebuild similarity index 99% rename from app-emulation/wine-staging/wine-staging-7.4.ebuild rename to app-emulation/wine-staging/wine-staging-7.4-r1.ebuild index 700f6788f5a7..4eff54a05a56 100644 --- a/app-emulation/wine-staging/wine-staging-7.4.ebuild +++ b/app-emulation/wine-staging/wine-staging-7.4-r1.ebuild @@ -61,8 +61,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 ) # or fail due to Xvfb's opengl limitations. RESTRICT="test" -BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) - sys-devel/flex +BDEPEND="sys-devel/flex virtual/yacc virtual/pkgconfig" diff --git a/app-emulation/wine-staging/wine-staging-7.5.ebuild b/app-emulation/wine-staging/wine-staging-7.5-r1.ebuild similarity index 99% rename from app-emulation/wine-staging/wine-staging-7.5.ebuild rename to app-emulation/wine-staging/wine-staging-7.5-r1.ebuild index 700f6788f5a7..4eff54a05a56 100644 --- a/app-emulation/wine-staging/wine-staging-7.5.ebuild +++ b/app-emulation/wine-staging/wine-staging-7.5-r1.ebuild @@ -61,8 +61,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 ) # or fail due to Xvfb's opengl limitations. RESTRICT="test" -BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) - sys-devel/flex +BDEPEND="sys-devel/flex virtual/yacc virtual/pkgconfig" diff --git a/app-emulation/wine-staging/wine-staging-7.6.ebuild b/app-emulation/wine-staging/wine-staging-7.6-r1.ebuild similarity index 99% rename from app-emulation/wine-staging/wine-staging-7.6.ebuild rename to app-emulation/wine-staging/wine-staging-7.6-r1.ebuild index 247c7d6f1c35..36349d140e11 100644 --- a/app-emulation/wine-staging/wine-staging-7.6.ebuild +++ b/app-emulation/wine-staging/wine-staging-7.6-r1.ebuild @@ -61,8 +61,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 ) # or fail due to Xvfb's opengl limitations. RESTRICT="test" -BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) - sys-devel/flex +BDEPEND="sys-devel/flex virtual/yacc virtual/pkgconfig" diff --git a/app-emulation/wine-staging/wine-staging-9999.ebuild b/app-emulation/wine-staging/wine-staging-9999.ebuild index 247c7d6f1c35..36349d140e11 100644 --- a/app-emulation/wine-staging/wine-staging-9999.ebuild +++ b/app-emulation/wine-staging/wine-staging-9999.ebuild @@ -61,8 +61,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 ) # or fail due to Xvfb's opengl limitations. RESTRICT="test" -BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) - sys-devel/flex +BDEPEND="sys-devel/flex virtual/yacc virtual/pkgconfig" diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild b/app-emulation/wine-vanilla/wine-vanilla-7.0-r2.ebuild similarity index 99% rename from app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild rename to app-emulation/wine-vanilla/wine-vanilla-7.0-r2.ebuild index 96af88c738cd..5a67b9002370 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-7.0-r2.ebuild @@ -47,8 +47,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 ) # or fail due to Xvfb's opengl limitations. RESTRICT="test" -BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) - sys-devel/flex +BDEPEND="sys-devel/flex virtual/yacc virtual/pkgconfig" diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild b/app-emulation/wine-vanilla/wine-vanilla-7.3-r1.ebuild similarity index 99% rename from app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild rename to app-emulation/wine-vanilla/wine-vanilla-7.3-r1.ebuild index 35e003de09c0..0ebb92598ca0 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-7.3-r1.ebuild @@ -47,8 +47,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 ) # or fail due to Xvfb's opengl limitations. RESTRICT="test" -BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) - sys-devel/flex +BDEPEND="sys-devel/flex virtual/yacc virtual/pkgconfig" diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild b/app-emulation/wine-vanilla/wine-vanilla-7.4-r1.ebuild similarity index 99% rename from app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild rename to app-emulation/wine-vanilla/wine-vanilla-7.4-r1.ebuild index 35e003de09c0..0ebb92598ca0 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-7.4-r1.ebuild @@ -47,8 +47,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 ) # or fail due to Xvfb's opengl limitations. RESTRICT="test" -BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) - sys-devel/flex +BDEPEND="sys-devel/flex virtual/yacc virtual/pkgconfig" diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild b/app-emulation/wine-vanilla/wine-vanilla-7.5-r1.ebuild similarity index 99% rename from app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild rename to app-emulation/wine-vanilla/wine-vanilla-7.5-r1.ebuild index 35e003de09c0..0ebb92598ca0 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-7.5-r1.ebuild @@ -47,8 +47,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 ) # or fail due to Xvfb's opengl limitations. RESTRICT="test" -BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) - sys-devel/flex +BDEPEND="sys-devel/flex virtual/yacc virtual/pkgconfig" diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild b/app-emulation/wine-vanilla/wine-vanilla-7.6-r1.ebuild similarity index 99% rename from app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild rename to app-emulation/wine-vanilla/wine-vanilla-7.6-r1.ebuild index f8382867c7e8..6792e52fbb89 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-7.6-r1.ebuild @@ -47,8 +47,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 ) # or fail due to Xvfb's opengl limitations. RESTRICT="test" -BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) - sys-devel/flex +BDEPEND="sys-devel/flex virtual/yacc virtual/pkgconfig" diff --git a/app-emulation/wine-vanilla/wine-vanilla-9999.ebuild b/app-emulation/wine-vanilla/wine-vanilla-9999.ebuild index f8382867c7e8..6792e52fbb89 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-9999.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-9999.ebuild @@ -47,8 +47,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 ) # or fail due to Xvfb's opengl limitations. RESTRICT="test" -BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) - sys-devel/flex +BDEPEND="sys-devel/flex virtual/yacc virtual/pkgconfig" diff --git a/app-emulation/xen-tools/xen-tools-4.15.1-r2.ebuild b/app-emulation/xen-tools/xen-tools-4.15.1-r2.ebuild index 04d25574dae1..746c16ee9f20 100644 --- a/app-emulation/xen-tools/xen-tools-4.15.1-r2.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.15.1-r2.ebuild @@ -61,7 +61,7 @@ else fi DESCRIPTION="Xen tools including QEMU and xl" -HOMEPAGE="https://www.xenproject.org" +HOMEPAGE="https://xenproject.org" DOCS=( README ) LICENSE="GPL-2" diff --git a/app-emulation/xen-tools/xen-tools-4.15.2-r1.ebuild b/app-emulation/xen-tools/xen-tools-4.15.2-r1.ebuild index 802b8f8d55f5..2f6e74c4eca4 100644 --- a/app-emulation/xen-tools/xen-tools-4.15.2-r1.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.15.2-r1.ebuild @@ -61,7 +61,7 @@ else fi DESCRIPTION="Xen tools including QEMU and xl" -HOMEPAGE="https://www.xenproject.org" +HOMEPAGE="https://xenproject.org" DOCS=( README ) LICENSE="GPL-2" diff --git a/app-emulation/xen-tools/xen-tools-4.15.2.ebuild b/app-emulation/xen-tools/xen-tools-4.15.2.ebuild index e15386a8efc6..7d7d59cc6873 100644 --- a/app-emulation/xen-tools/xen-tools-4.15.2.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.15.2.ebuild @@ -61,7 +61,7 @@ else fi DESCRIPTION="Xen tools including QEMU and xl" -HOMEPAGE="https://www.xenproject.org" +HOMEPAGE="https://xenproject.org" DOCS=( README ) LICENSE="GPL-2" diff --git a/app-emulation/xen-tools/xen-tools-4.16.0-r1.ebuild b/app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild similarity index 95% rename from app-emulation/xen-tools/xen-tools-4.16.0-r1.ebuild rename to app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild index b788301f56fb..750d5d2e6c4f 100644 --- a/app-emulation/xen-tools/xen-tools-4.16.0-r1.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild @@ -47,7 +47,7 @@ else SRC_URI="https://downloads.xenproject.org/release/xen/${MY_PV}/xen-${MY_PV}.tar.gz https://www.seabios.org/downloads/seabios-${SEABIOS_VER}.tar.gz - ipxe? ( http://xenbits.xen.org/xen-extfiles/ipxe-git-${IPXE_COMMIT}.tar.gz ) + ipxe? ( https://xenbits.xen.org/xen-extfiles/ipxe-git-${IPXE_COMMIT}.tar.gz ) ovmf? ( https://github.com/tianocore/edk2/archive/${EDK2_COMMIT}.tar.gz -> edk2-${EDK2_COMMIT}.tar.gz https://github.com/openssl/openssl/archive/OpenSSL_${EDK2_OPENSSL_VERSION}.tar.gz https://github.com/ucb-bar/berkeley-softfloat-3/archive/${EDK2_SOFTFLOAT_COMMIT}.tar.gz -> berkeley-softfloat-${EDK2_SOFTFLOAT_COMMIT}.tar.gz @@ -61,7 +61,7 @@ else fi DESCRIPTION="Xen tools including QEMU and xl" -HOMEPAGE="https://www.xenproject.org" +HOMEPAGE="https://xenproject.org" DOCS=( README ) LICENSE="GPL-2" @@ -69,7 +69,7 @@ SLOT="0/$(ver_cut 1-2)" # Inclusion of IUSE ocaml on stabalizing requires maintainer of ocaml to (get off his hands and) make # >=dev-lang/ocaml-4 stable # Masked in profiles/eapi-5-files instead -IUSE="api debug doc +hvm +ipxe ocaml ovmf +pam pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios" +IUSE="api debug doc +hvm +ipxe lzma ocaml ovmf +pam pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios systemd zstd" REQUIRED_USE=" ${PYTHON_REQUIRED_USE} @@ -82,12 +82,17 @@ REQUIRED_USE=" ?? ( qemu system-qemu )" COMMON_DEPEND=" - sys-apps/pciutils + lzma? ( app-arch/xz-utils ) + qemu? ( dev-libs/glib:2 ) + zstd? ( app-arch/zstd ) + app-arch/bzip2 + app-arch/zstd + dev-libs/libnl:3 dev-libs/lzo:2 - dev-libs/glib:2 dev-libs/yajl - dev-libs/libaio - dev-libs/libgcrypt:0 + sys-apps/util-linux + sys-fs/e2fsprogs + sys-libs/ncurses sys-libs/zlib ${PYTHON_DEPS} " @@ -359,6 +364,10 @@ src_prepare() { sed -i '/SUBDIRS-$(CONFIG_QEMU_XEN)/s/^/#/g' tools/Makefile || die fi + # Reset bash completion dir; Bug 472438 + sed -e "s;^BASH_COMPLETION_DIR :=.*;BASH_COMPLETION_DIR := $(get_bashcompdir);" \ + -i config/Paths.mk.in || die + # xencommons, Bug #492332, sed lighter weight than patching sed -e 's:\$QEMU_XEN -xen-domid:test -e "\$QEMU_XEN" \&\& &:' \ -i tools/hotplug/Linux/init.d/xencommons.in || die @@ -411,9 +420,9 @@ src_prepare() { src_configure() { local myconf=( - --libdir=${PREFIX}/usr/$(get_libdir) - --libexecdir=${PREFIX}/usr/libexec - --localstatedir=${EPREFIX}/var + --libdir="${EPREFIX}/usr/$(get_libdir)" + --libexecdir="${EPREFIX}/usr/libexec" + --localstatedir="${EPREFIX}/var" --disable-golang --disable-werror --disable-xen @@ -426,6 +435,7 @@ src_configure() { $(use_enable ovmf) $(use_enable pam) $(use_enable rombios) + $(use_enable systemd) --with-xenstored=$(usex ocaml 'oxenstored' 'xenstored') ) diff --git a/app-emulation/xen/xen-4.15.1-r3.ebuild b/app-emulation/xen/xen-4.15.1-r3.ebuild index 35c94dfb83e9..e5e433b4879a 100644 --- a/app-emulation/xen/xen-4.15.1-r3.ebuild +++ b/app-emulation/xen/xen-4.15.1-r3.ebuild @@ -34,7 +34,7 @@ else fi DESCRIPTION="The Xen virtual machine monitor" -HOMEPAGE="https://www.xenproject.org" +HOMEPAGE="https://xenproject.org" LICENSE="GPL-2" SLOT="0" IUSE="debug efi flask" diff --git a/app-emulation/xen/xen-4.15.2-r1.ebuild b/app-emulation/xen/xen-4.15.2-r1.ebuild index 1b6ea137fc9b..acf7c38a0d94 100644 --- a/app-emulation/xen/xen-4.15.2-r1.ebuild +++ b/app-emulation/xen/xen-4.15.2-r1.ebuild @@ -34,7 +34,7 @@ else fi DESCRIPTION="The Xen virtual machine monitor" -HOMEPAGE="https://www.xenproject.org" +HOMEPAGE="https://xenproject.org" LICENSE="GPL-2" SLOT="0" IUSE="debug efi flask" diff --git a/app-emulation/xen/xen-4.15.2-r2.ebuild b/app-emulation/xen/xen-4.15.2-r2.ebuild index f57e489fab47..1bd0eb2c6709 100644 --- a/app-emulation/xen/xen-4.15.2-r2.ebuild +++ b/app-emulation/xen/xen-4.15.2-r2.ebuild @@ -34,7 +34,7 @@ else fi DESCRIPTION="The Xen virtual machine monitor" -HOMEPAGE="https://www.xenproject.org" +HOMEPAGE="https://xenproject.org" LICENSE="GPL-2" SLOT="0" IUSE="debug efi flask" diff --git a/app-emulation/xen/xen-4.16.0-r5.ebuild b/app-emulation/xen/xen-4.16.0-r5.ebuild index eb0fa574bc2e..994e9c774ce3 100644 --- a/app-emulation/xen/xen-4.16.0-r5.ebuild +++ b/app-emulation/xen/xen-4.16.0-r5.ebuild @@ -34,7 +34,7 @@ else fi DESCRIPTION="The Xen virtual machine monitor" -HOMEPAGE="https://www.xenproject.org" +HOMEPAGE="https://xenproject.org" LICENSE="GPL-2" SLOT="0" IUSE="+boot-symlinks debug efi flask" @@ -100,9 +100,6 @@ src_prepare() { eapply "${FILESDIR}"/${PN}-4.16-no-symlink.patch fi - # Enable XSM-FLASK - use flask && eapply "${FILESDIR}"/${PN}-4.15-flask.patch - # Workaround new gcc-11 options sed -e '/^CFLAGS/s/-Werror//g' -i xen/Makefile || die @@ -117,11 +114,21 @@ src_prepare() { default } -XEN_OPTS=() - src_configure() { - use arm && XEN_OPTS+=( CONFIG_EARLY_PRINTK=sun7i ) - use debug && XEN_OPTS+=( debug=y ) + cd xen || die + + touch gentoo-config || die + if use arm; then + echo "CONFIG_EARLY_PRINTK=sun7i" > gentoo-config || die + fi + if use debug; then + echo "CONFIG_DEBUG=y" > gentoo-config || die + fi + if use flask; then + echo "CONFIG_XSM=y" > gentoo-config || die + fi + + emake KCONFIG_ALLCONFIG=gentoo-config alldefconfig # remove flags unset CFLAGS @@ -133,19 +140,26 @@ src_configure() { src_compile() { # Send raw LDFLAGS so that --as-needed works - emake V=1 CC="$(tc-getCC)" LDFLAGS="$(raw-ldflags)" LD="$(tc-getLD)" -C xen ${XEN_OPTS[@]} + emake \ + V=1 \ + CC="$(tc-getCC)" \ + LDFLAGS="$(raw-ldflags)" \ + LD="$(tc-getLD)" \ + -C xen } src_install() { - local myopt - use debug && myopt="${myopt} debug=y" - # The 'make install' doesn't 'mkdir -p' the subdirs if use efi; then mkdir -p "${D}"${EFI_MOUNTPOINT}/efi/${EFI_VENDOR} || die fi - emake LDFLAGS="$(raw-ldflags)" LD="$(tc-getLD)" DESTDIR="${D}" -C xen ${myopt} install + emake \ + LDFLAGS="$(raw-ldflags)" \ + LD="$(tc-getLD)" \ + DESTDIR="${D}" \ + -C xen \ + install # make install likes to throw in some extra EFI bits if it built use efi || rm -rf "${D}/usr/$(get_libdir)/efi" diff --git a/app-i18n/Manifest.gz b/app-i18n/Manifest.gz index 1d95e1651bdc..6474edbbc22e 100644 Binary files a/app-i18n/Manifest.gz and b/app-i18n/Manifest.gz differ diff --git a/app-i18n/ibus/ibus-1.5.26.ebuild b/app-i18n/ibus/ibus-1.5.26.ebuild index d7f083baeb20..e8259b0ab2ef 100644 --- a/app-i18n/ibus/ibus-1.5.26.ebuild +++ b/app-i18n/ibus/ibus-1.5.26.ebuild @@ -81,15 +81,16 @@ src_prepare() { vala_src_prepare --ignore-use sed -i "/UCD_DIR=/s/\$with_emoji_annotation_dir/\$with_ucd_dir/" configure.ac if ! has_version 'x11-libs/gtk+:3[wayland]'; then - touch ui/gtk3/panelbinding.vala + touch ui/gtk3/panelbinding.vala \ + ui/gtk3/emojierapp.vala || die fi if ! use emoji; then touch \ tools/main.vala \ - ui/gtk3/panel.vala + ui/gtk3/panel.vala || dile fi if ! use appindicator; then - touch ui/gtk3/panel.vala + touch ui/gtk3/panel.vala || die fi if [[ -n ${GENTOO_VER} ]]; then einfo "Try to apply Gentoo specific patch set" @@ -97,13 +98,13 @@ src_prepare() { fi # for multiple Python implementations - sed -i "s/^\(PYGOBJECT_DIR =\).*/\1/" bindings/Makefile.am + sed -i "s/^\(PYGOBJECT_DIR =\).*/\1/" bindings/Makefile.am || die # fix for parallel install - sed -i "/^if ENABLE_PYTHON2/,/^endif/d" bindings/pygobject/Makefile.am + sed -i "/^if ENABLE_PYTHON2/,/^endif/d" bindings/pygobject/Makefile.am || die # require user interaction - sed -i "/^TESTS += ibus-\(compose\|keypress\)/d" src/tests/Makefile.am + sed -i "/^TESTS += ibus-\(compose\|keypress\)/d" src/tests/Makefile.am || die - sed -i "/^bash_completion/d" tools/Makefile.am + sed -i "/^bash_completion/d" tools/Makefile.am || die default eautoreconf diff --git a/app-i18n/sunpinyin-data/sunpinyin-data-20140820.ebuild b/app-i18n/sunpinyin-data/sunpinyin-data-20140820.ebuild index 07cc5315a958..0ab92478039f 100644 --- a/app-i18n/sunpinyin-data/sunpinyin-data-20140820.ebuild +++ b/app-i18n/sunpinyin-data/sunpinyin-data-20140820.ebuild @@ -1,8 +1,10 @@ -# Copyright 2013-2021 Gentoo Authors +# Copyright 2013-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" +inherit edo + DICT_VERSION="20131214" LM_VERSION="${PV}" @@ -30,16 +32,11 @@ src_unpack() { src_compile() { # lm_sc.t3g - echoit slmpack lm_sc.3gm.arpa dict.utf8 lm_sc.3gm - echoit slmthread lm_sc.3gm lm_sc.t3g.orig - echoit tslmendian -i lm_sc.t3g.orig -o lm_sc.t3g + edo slmpack lm_sc.3gm.arpa dict.utf8 lm_sc.3gm + edo slmthread lm_sc.3gm lm_sc.t3g.orig + edo tslmendian -i lm_sc.t3g.orig -o lm_sc.t3g # lexicon3 - echoit genpyt -i dict.utf8 -s lm_sc.t3g.orig -l pydict_sc.log -o pydict_sc.bin -} - -echoit() { - echo "${@}" - "${@}" + edo genpyt -i dict.utf8 -s lm_sc.t3g.orig -l pydict_sc.log -o pydict_sc.bin } src_install() { diff --git a/app-misc/Manifest.gz b/app-misc/Manifest.gz index e662b84c6da5..437623e70487 100644 Binary files a/app-misc/Manifest.gz and b/app-misc/Manifest.gz differ diff --git a/app-misc/cadubi/Manifest b/app-misc/cadubi/Manifest index 0490137d2ee1..43d6c2870cc4 100644 --- a/app-misc/cadubi/Manifest +++ b/app-misc/cadubi/Manifest @@ -1 +1,2 @@ +DIST cadubi-1.3.4.tar.gz 65661 BLAKE2B 239cedfe50fba79bcfe250a2b646f851ef06bdae18260aeab2d10b8889dcc0d9d086f3edc8b594b3199aaa23f85ab3bd3393d63428ea545893f41a723063c9a0 SHA512 02a8e6d49f4892294d0c8fdffa7b6032ed7529bf0869681e9b760ed5c227905cca829d1f4e049400789d69c1251f4df714bf36d5c42dc778ac37e89cf753b45a DIST cadubi-1.3.tar.gz 12559 BLAKE2B d1a32d602c00d76717e8e6cdf8d376dca12f9f55f9375bb0b8ea781cf923cfb90789cc011a3ab33960339ced3c05c668f6c6ec6e5b33ca89f7eda27c47789639 SHA512 e3b5190850bd4d579934bd5825db2b8bde5a46158862ec66b8604999344138477c0fb3fad34dc186ed9dd67dfbdcacf12763f76adbdfbd0cc4dbf6b51ad53bc7 diff --git a/app-misc/cadubi/cadubi-1.3.4.ebuild b/app-misc/cadubi/cadubi-1.3.4.ebuild new file mode 100644 index 000000000000..2cf1358ee321 --- /dev/null +++ b/app-misc/cadubi/cadubi-1.3.4.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="An application that allows you to draw ASCII-Art images" +HOMEPAGE="https://github.com/statico/cadubi" +SRC_URI="https://github.com/statico/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" + +RDEPEND="dev-lang/perl + >=dev-perl/TermReadKey-2.21" + +src_prepare() { + default + sed -i "s|$Bin/help.txt|$Bin/../$(get_libdir)/${PN}/help.txt|g" ${PN} || die +} + +src_install() { + dobin ${PN} + doman ${PN}.1 + insinto /usr/$(get_libdir)/${PN} + doins help.txt + dodoc README.md +} diff --git a/app-misc/geoclue/geoclue-2.5.7.ebuild b/app-misc/geoclue/geoclue-2.5.7.ebuild index 4ebabf0ba6f2..fb5eef3a6052 100644 --- a/app-misc/geoclue/geoclue-2.5.7.ebuild +++ b/app-misc/geoclue/geoclue-2.5.7.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{7..10} ) PYTHON_REQ_USE="xml(+)" VALA_USE_DEPEND="vapigen" diff --git a/app-misc/notary/notary-0.7.0.ebuild b/app-misc/notary/notary-0.7.0.ebuild index 141759da1bd1..4ca8fbf90066 100644 --- a/app-misc/notary/notary-0.7.0.ebuild +++ b/app-misc/notary/notary-0.7.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,8 +6,8 @@ inherit go-module GIT_COMMIT=b0b6bfdd DESCRIPTION="A project that allows anyone to have trust over arbitrary collections of data" -HOMEPAGE="https://github.com/theupdateframework/notary" -SRC_URI="https://github.com/theupdateframework/notary/archive/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/notaryproject/notary" +SRC_URI="https://github.com/notaryproject/notary/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" diff --git a/app-office/Manifest.gz b/app-office/Manifest.gz index 206441f1d762..e21a44d115e8 100644 Binary files a/app-office/Manifest.gz and b/app-office/Manifest.gz differ diff --git a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-7.2.6.2.ebuild b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-7.2.6.2.ebuild index 242e5e7214bc..8e753bce328d 100644 --- a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-7.2.6.2.ebuild +++ b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-7.2.6.2.ebuild @@ -41,7 +41,7 @@ SRC_URI=" IUSE="gnome java kde" LICENSE="LGPL-3" SLOT="0" -KEYWORDS="-* ~amd64 ~x86" +KEYWORDS="-* amd64 ~x86" RDEPEND="~app-office/${PN/-debug}-${PV}[gnome=,java=,kde=]" diff --git a/app-office/libreoffice-bin/libreoffice-bin-7.2.6.2.ebuild b/app-office/libreoffice-bin/libreoffice-bin-7.2.6.2.ebuild index d5ce512c92f4..9483af8e78e0 100644 --- a/app-office/libreoffice-bin/libreoffice-bin-7.2.6.2.ebuild +++ b/app-office/libreoffice-bin/libreoffice-bin-7.2.6.2.ebuild @@ -46,7 +46,7 @@ SRC_URI=" IUSE="gnome java kde" LICENSE="LGPL-3" SLOT="0" -KEYWORDS="-* ~amd64 ~x86" +KEYWORDS="-* amd64 ~x86" BIN_COMMON_DEPEND=" app-text/hunspell:0/1.7 diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-7.2.6.2.ebuild b/app-office/libreoffice-l10n/libreoffice-l10n-7.2.6.2.ebuild index 64f7946c271f..fe416c8dcd3c 100644 --- a/app-office/libreoffice-l10n/libreoffice-l10n-7.2.6.2.ebuild +++ b/app-office/libreoffice-l10n/libreoffice-l10n-7.2.6.2.ebuild @@ -17,7 +17,7 @@ BASE_SRC_URI_STABLE="https://download.documentfoundation.org/${PN/-l10n/}/stable LICENSE="|| ( LGPL-3 MPL-1.1 )" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux" IUSE="offlinehelp" # diff --git a/app-office/libreoffice/libreoffice-7.2.6.2-r1.ebuild b/app-office/libreoffice/libreoffice-7.2.6.2-r1.ebuild index 82b0fcb88f40..0740e633f32a 100644 --- a/app-office/libreoffice/libreoffice-7.2.6.2-r1.ebuild +++ b/app-office/libreoffice/libreoffice-7.2.6.2-r1.ebuild @@ -103,7 +103,7 @@ LICENSE="|| ( LGPL-3 MPL-1.1 )" SLOT="0" [[ ${MY_PV} == *9999* ]] || \ -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux" COMMON_DEPEND="${PYTHON_DEPS} app-arch/unzip diff --git a/app-portage/Manifest.gz b/app-portage/Manifest.gz index ad03bc1e6888..3a9fb0564c86 100644 Binary files a/app-portage/Manifest.gz and b/app-portage/Manifest.gz differ diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest index be234c37cd78..afcff454b46d 100644 --- a/app-portage/eix/Manifest +++ b/app-portage/eix/Manifest @@ -1,3 +1,2 @@ -DIST eix-0.36.0.tar.xz 640820 BLAKE2B 952e6a354cc5fd1145ef36fed6047bc6f10dd7a51166028581e3b392be66b5df07eabb96cba362dc4f7a50fbe19e6ccb3744d30928c4763a91af21ad02cee38d SHA512 891e343b01d3887cbc7e61933b43e79949ff702dcd8ada2f15ff57a628dc6ebc9a4b6817d3aa3d814474db3131aefcbbf56cec2520868dcb2182cbee780125b5 DIST eix-0.36.1.tar.xz 640084 BLAKE2B 10014bb847d71b803967354f3a415dc1c74ad37385b7b440f0c162c573453042d06bbc575582831ffc0aad6b0f7abeedbcb4e23b869505d4f85d6bd6b7cfbba4 SHA512 915a364b0f63124c53e43eb35165ce553f6eadaf8708f0c075dc2f4871fe83378cd0c8650d5605c1f87c512563fdd62f28efdc586b358fc7cd63ae42a404981d DIST eix-0.36.2.tar.xz 639632 BLAKE2B 962b998f91233e799421c1ea3325d5b9c727bdfdda6a9567ba4a9ea0f4f36798f5ba32ef2ba43043668aaf0829d9c2f50158f97d5ebfca40a58da612141c47a8 SHA512 813a19f9561bfd65a401a4dcf9884e39eedf5f971be1800411ba977d84af0c5b5498cab50f69566bff75cf254f1d4971acc5dab72af34162f8b5dd29cd6ffaea diff --git a/app-portage/eix/eix-0.36.0.ebuild b/app-portage/eix/eix-0.36.0.ebuild deleted file mode 100644 index acb65e10daf2..000000000000 --- a/app-portage/eix/eix-0.36.0.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 autotools bash-completion-r1 tmpfiles - -DESCRIPTION="Search and query ebuilds" -HOMEPAGE="https://github.com/vaeth/eix/" -SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz" - -LICENSE="GPL-2" -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" -IUSE="debug doc nls sqlite" - -DEPEND=" - nls? ( virtual/libintl ) - sqlite? ( >=dev-db/sqlite-3:= )" -RDEPEND="${DEPEND} - >=app-shells/push-2.0-r1 - >=app-shells/quoter-3.0_p2-r1" -BDEPEND=" - app-arch/xz-utils - nls? ( sys-devel/gettext )" - -pkg_setup() { - # remove stale cache file to prevent collisions - local old_cache=${EROOT}/var/cache/${PN} - if [[ -f ${old_cache} ]]; then - rm "${old_cache}" || die - fi -} - -src_prepare() { - default - sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die - - sed -e "/eixf_source=/s:push.sh:cat \"${EPREFIX}/usr/share/push/push.sh\":" \ - -e "/eixf_source=/s:quoter_pipe.sh:cat \"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \ - -i src/eix-functions.sh.in || die - sed -e "s:'\$(bindir)/eix-functions.sh':cat \\\\\"${EPREFIX}/usr/share/eix/eix-functions\\\\\":" \ - -i src/Makefile.am || die - - eautoreconf -} - -src_configure() { - local myconf=( - $(use_enable debug paranoic-asserts) - $(use_enable nls) - $(use_with doc extra-doc) - $(use_with sqlite) - --without-protobuf - - # default configuration - $(use_with prefix always-accept-keywords) - --with-dep-default - --with-required-use-default - - # paths - --with-portage-rootpath="${ROOTPATH}" - --with-eprefix-default="${EPREFIX}" - - # build a single executable with symlinks - --disable-separate-binaries - --disable-separate-tools - - # used purely to control/disrespect *FLAGS - --disable-debugging - --disable-new_dialect - --disable-optimization - --disable-strong-optimization - --disable-security - --disable-nopie-security - --disable-strong-security - ) - - econf "${myconf[@]}" -} - -src_install() { - default - dobashcomp bash/eix - dotmpfiles tmpfiles.d/eix.conf - - rm -r "${ED}"/usr/bin/eix-functions.sh || die -} - -pkg_postinst() { - tmpfiles_process eix.conf - - local obs=${EROOT}/var/cache/eix.previous - if [[ -f ${obs} ]]; then - ewarn "Found obsolete ${obs}, please remove it" - fi -} - -pkg_postrm() { - if [[ ! -n ${REPLACED_BY_VERSION} ]]; then - rm -rf "${EROOT}/var/cache/${PN}" || die - fi -} diff --git a/app-portage/eix/eix-0.36.1.ebuild b/app-portage/eix/eix-0.36.1.ebuild index 92c5e8632233..ea90fe87dff1 100644 --- a/app-portage/eix/eix-0.36.1.ebuild +++ b/app-portage/eix/eix-0.36.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz" LICENSE="GPL-2" 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" +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" IUSE="debug doc nls sqlite" DEPEND=" diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index d16c964de290..9643970fbdcc 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/enchant/Manifest b/app-text/enchant/Manifest index 36fe8e6a7737..0b9c3f27c38c 100644 --- a/app-text/enchant/Manifest +++ b/app-text/enchant/Manifest @@ -1,2 +1,3 @@ DIST enchant-1.6.1.tar.gz 642124 BLAKE2B d41aa9b313e7fe8b0887728b55f3c5218e270c7359b4edcdc8d9180af68687230bcc9f7d1abb9f85ac673478530e5674366c9bc7d08b983e7226725b2cdd73d3 SHA512 26c62dfa89ee40150db502651a2f876fba00569b7015f205dae27a029557effacff335bbe36124dbe6686537da2305bcab02592179d03e95fdf9741d54b98036 DIST enchant-2.3.2.tar.gz 991782 BLAKE2B ece8c4cbac2c242c23b4b8c5ab2daf1037705dbf58ad29b4863dd01cb30b2d98e11828f2b9d1ce3823aec419c871cc3dd1092e4659e10ef3e3cd2df867255be4 SHA512 886635bb55c5f0c774445e4a0f14d39e2d08eeb964257037062c2e97c2cf3348be8c631ff5e7a13144936127761964bdc60ff1e0dd6f63b292a655626f91ef62 +DIST enchant-2.3.3.tar.gz 990877 BLAKE2B 310b66931e803ccb643a47c1476122a558de7a192b50f532d4cdababe55d398268bf5bfcc0ed556d665af88f6c183c1871147d302ad39a7ebd4fc29e1ab16967 SHA512 c97764a8f219033b440cbfb820624f54993b19ba1f38b56f20336889304f753c7c513008bb92cd1424bfbf528c2d473f35bef93d9140063612e3a270fd000deb diff --git a/app-text/enchant/enchant-1.6.1-r2.ebuild b/app-text/enchant/enchant-1.6.1-r2.ebuild new file mode 100644 index 000000000000..d4302d6ca527 --- /dev/null +++ b/app-text/enchant/enchant-1.6.1-r2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV="${PV//./-}" +DESCRIPTION="Spellchecker wrapping library" +HOMEPAGE="https://abiword.github.io/enchant/" +SRC_URI="https://github.com/AbiWord/enchant/releases/download/${PN}-${MY_PV}/${P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" + +IUSE="aspell +hunspell test" +RESTRICT="!test? ( test )" +REQUIRED_USE="|| ( aspell hunspell )" + +COMMON_DEPEND=" + >=dev-libs/glib-2.6:2 + aspell? ( app-text/aspell ) + hunspell? ( >=app-text/hunspell-1.2.1:0= ) +" +RDEPEND="${COMMON_DEPEND} + ! Adds support for app-text/aspell spell checker Adds support for app-text/hunspell spell checker + Adds support for app-text/nuspell spell checker Adds support for dev-libs/libvoikko spell checker diff --git a/app-text/evince/Manifest b/app-text/evince/Manifest index 5d8fefe6feac..fca6ef35f38f 100644 --- a/app-text/evince/Manifest +++ b/app-text/evince/Manifest @@ -1,2 +1,3 @@ DIST evince-41.3.tar.xz 2889368 BLAKE2B c6ef9b4c126f938ef8b50aa65d8591e0ce02e7404dd1984bce27e0acce6e62462d42665ad19992cb2fa22afd09d6da49ecdbbb51eb209518d415966824523628 SHA512 b00422ef0fd752e5afacea2db852ad71d8d16514945a9a54c54967cecd2b1f5058b762ec53eb9057b8f583d5e1e3363c2b7ae1f4434fa6637ad45c5217f082cd DIST evince-42.1.tar.xz 2850652 BLAKE2B 4fb03270caf1be548a82f9094973e584807c497171cef960f344c14158420e02a0fed6d84dcc8d09d3a7f2e8a68f69ffae36398fe6e747d86e3a63132d5a36d6 SHA512 d8ea086b6530c186ac48d88fa2546cd8abd8a075d79037c1f0bf76e63b28914b04a58af83c96e44e04d625fec674f3989bfd51472cd458be9c903a1a4512d8df +DIST evince-42.2.tar.xz 2854836 BLAKE2B ed8b9e6117d2d456e59d5fd4aac664b73fb450589a04b04b3ada7f1606781001c5ab75a98d425fdf00409e2f4abad59f6a140f39df4ca6bd82a641caaf944062 SHA512 81e93eb5575169ed1a31fdd321a1d7080b4391ddf1ebf13ce49df5ede8bb5f578094b55b2e1075f0a418ef21e8b73f02b259c2bda44b317ea9f551372ee3b860 diff --git a/app-text/evince/evince-42.2.ebuild b/app-text/evince/evince-42.2.ebuild new file mode 100644 index 000000000000..c8e4f7b17473 --- /dev/null +++ b/app-text/evince/evince-42.2.ebuild @@ -0,0 +1,122 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson systemd xdg + +DESCRIPTION="Simple document viewer for GNOME" +HOMEPAGE="https://wiki.gnome.org/Apps/Evince" + +LICENSE="GPL-2+ CC-BY-SA-3.0" +# subslot = evd3.(suffix of libevdocument3)-evv3.(suffix of libevview3) +SLOT="0/evd3.4-evv3.3" +IUSE="cups djvu dvi gstreamer gnome gnome-keyring gtk-doc +introspection nautilus postscript spell tiff xps" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris" + +# atk used in libview +# bundles unarr +DEPEND=" + dev-libs/atk + >=dev-libs/glib-2.44.0:2 + >=gui-libs/libhandy-1.5.0:1= + >=dev-libs/libxml2-2.5:2 + sys-libs/zlib:= + >=x11-libs/gdk-pixbuf-2.40:2 + >=x11-libs/gtk+-3.22.0:3[cups?,introspection?] + gnome-base/gsettings-desktop-schemas + >=x11-libs/cairo-1.10:= + >=app-text/poppler-22.02.0[cairo] + >=app-arch/libarchive-3.6.0 + djvu? ( >=app-text/djvu-3.5.22:= ) + dvi? ( + >=app-text/libspectre-0.2:= + dev-libs/kpathsea:= + ) + gstreamer? ( + media-libs/gstreamer:1.0 + media-libs/gst-plugins-base:1.0 + media-libs/gst-plugins-good:1.0 ) + gnome? ( gnome-base/gnome-desktop:3= ) + gnome-keyring? ( >=app-crypt/libsecret-0.5 ) + introspection? ( >=dev-libs/gobject-introspection-1:= ) + nautilus? ( >=gnome-base/nautilus-3.28.0 ) + postscript? ( >=app-text/libspectre-0.2:= ) + spell? ( >=app-text/gspell-1.6.0:= ) + tiff? ( >=media-libs/tiff-4.0:0= ) + xps? ( >=app-text/libgxps-0.2.1:= ) +" +RDEPEND="${DEPEND} + gnome-base/gvfs + gnome-base/librsvg + || ( + >=x11-themes/adwaita-icon-theme-2.17.1 + >=x11-themes/hicolor-icon-theme-0.10 + ) +" +BDEPEND=" + gtk-doc? ( + >=dev-util/gi-docgen-2021.1 + app-text/docbook-xml-dtd:4.3 + ) + dev-libs/appstream-glib + dev-util/gdbus-codegen + dev-util/glib-utils + dev-util/itstool + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_prepare() { + default + xdg_environment_reset + + # Do not depend on adwaita-icon-theme, bug #326855, #391859 + # https://gitlab.freedesktop.org/xdg/default-icon-theme/issues/7 + sed -i '/adwaita_icon_theme_dep/d' meson.build shell/meson.build || die +} + +src_configure() { + local emesonargs=( + -Ddevelopment=false + -Dplatform=gnome + + -Dviewer=true + -Dpreviewer=true + -Dthumbnailer=true + $(meson_use nautilus) + + -Dcomics=enabled + $(meson_feature djvu) + $(meson_feature dvi) + -Dpdf=enabled + $(meson_feature postscript ps) + $(meson_feature tiff) + $(meson_feature xps) + + $(meson_use gtk-doc gtk_doc) + -Duser_doc=true + $(meson_use introspection) + -Ddbus=true + $(meson_feature gnome-keyring keyring) + $(meson_feature cups gtk_unix_print) + $(meson_feature gnome thumbnail_cache) + $(meson_feature gstreamer multimedia) + $(meson_feature spell gspell) + + -Dinternal_synctex=true + + -Dsystemduserunitdir="$(systemd_get_userunitdir)" + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/app-text/mdbook/Manifest b/app-text/mdbook/Manifest index 0bb499bc8fce..ca7a16d101bd 100644 --- a/app-text/mdbook/Manifest +++ b/app-text/mdbook/Manifest @@ -90,7 +90,6 @@ DIST markup5ever-0.10.1.crate 34668 BLAKE2B a13f39ba93a26a558a8f03ebbbaa98bf2c7c DIST markup5ever_rcdom-0.1.0.crate 25165 BLAKE2B 4123ee804991e9be31e6a4dbcb7dcce12bb776d22e4409ad388678a92965834acb9b1b2fa51e6472ee2c0db156e4a75e5b6db5f6b6d4220159ab93b056d0418c SHA512 7c21836fcdd45bfdef7305327255291c92d75d3329798d31abab26297de8c381e41b4419fb7ac631310835d590b63751a63bdd87e2697ea3dfdd6599033433c7 DIST matches-0.1.9.crate 2246 BLAKE2B de155202636c6a03ed68cdb21e8ef96e19b45be040a82943d2d7e5192c0ab5c253ab6d65f0b30b2689e21da79cba684af5be6e63c48266681aceba356f6eea41 SHA512 6a2809687d30ff04ea97bf9d1610d746e097699a4c3625ffd1b7b1e4a9673ece9d559058c9f760b99d6ab509024f7b338e7cfa6fe767499c983efa98bfb98305 DIST mdbook-0.4.15.tar.gz 1508364 BLAKE2B 8f0a883908378b440528044136233bc6d481c7c0137cbd0875aee11654246f103c5e301276838bd403a68715eec48ea2d31f6e746f5996a354733f5c3a8c0046 SHA512 da5b1dee3718bb89f61438f39ee72d4d4db42034e620699b62e21513d1ee9f1cb9163456a4673d66c96d83ebd9f35f8b4d5c0829752a500a72f1561fa14060bf -DIST mdbook-0.4.17.tar.gz 1510324 BLAKE2B a77fefd2bc50b11f8606deaa9c380e40dffa1ed534548621181817b7eb2234964097461ab5f7d2d3300ca37d9f37ae210acabea29e848de22d818930b51406c1 SHA512 9190e01ea29ee22f8994e361caeeca6d459f8bc064a5d8bc51e461eb852fdac6c857f745ca4fce62130f49bba4d7dbb839dbca5dcddbd94d025d4a4516a155a6 DIST mdbook-0.4.18.tar.gz 1510868 BLAKE2B 4b47b41fc03fb923891b419098bf553dbbfb0066b1d51bfd58e3cc69e1e686f7bdb5210b6b4cb19f09c35cd6e926ede3378e49debd5a54d838c2028d44186aaa SHA512 f209d8882ff317deb3356a5de0d39c71fe0c51cf80874f0edc56c7ddf46b537c7194c58172dd5f704554bf0724cb0899ecb61b1eeea467226fa83c0679c336f5 DIST memchr-2.4.1.crate 64977 BLAKE2B 31479718c118093b684bed946eae0706d77d9d275bd49f5aeff4de490f479abd60c7dc462150eafffc6d6fc1da0853123b78be038826b775d2a41a4c39d93ab5 SHA512 d8912e3902a2126f86159bdc998532a2890b882cbb7d59b5a470fffcad4c32281e045f2fff48a235aa4189f1928866bf3d33b699d50866ad6b6c272bba7adb11 DIST mime-0.3.16.crate 15206 BLAKE2B 9a599ca82fd0dd6d3d2dea68a47b8441b1024d016ee1fb23cc6431b39ead20c9b3fe1ff3397af79c2c1b2cd277c440d4fff69f6b28c550ddbe15f680923c834b SHA512 cb1d691610cb82720e553247336fc5eab63407ad37febf2eb50aaa4e329cca70959ecd8bb8c7af5753acec2c8e86fc9a0f8ad9ad2de93fe9295ce84033d6054c diff --git a/app-text/mdbook/mdbook-0.4.17.ebuild b/app-text/mdbook/mdbook-0.4.17.ebuild deleted file mode 100644 index d8ca08e385d4..000000000000 --- a/app-text/mdbook/mdbook-0.4.17.ebuild +++ /dev/null @@ -1,257 +0,0 @@ -# Copyright 2021-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -CRATES=" - aho-corasick-0.7.18 - ammonia-3.1.2 - ansi_term-0.11.0 - anyhow-1.0.43 - assert_cmd-1.0.7 - atty-0.2.14 - autocfg-1.0.1 - base64-0.13.0 - bit-set-0.5.2 - bit-vec-0.6.3 - bitflags-1.3.2 - block-buffer-0.7.3 - block-buffer-0.9.0 - block-padding-0.1.5 - bstr-0.2.17 - byte-tools-0.3.1 - byteorder-1.4.3 - bytes-1.0.1 - cfg-if-0.1.10 - cfg-if-1.0.0 - chrono-0.4.19 - clap-3.0.10 - clap_complete-3.0.4 - cpufeatures-0.1.5 - ctor-0.1.20 - difference-2.0.0 - difflib-0.4.0 - digest-0.8.1 - digest-0.9.0 - doc-comment-0.3.3 - either-1.6.1 - elasticlunr-rs-2.3.13 - env_logger-0.7.1 - fake-simd-0.1.2 - filetime-0.2.15 - float-cmp-0.9.0 - fnv-1.0.7 - form_urlencoded-1.0.1 - fsevent-0.4.0 - fsevent-sys-2.0.1 - fuchsia-zircon-0.3.3 - fuchsia-zircon-sys-0.3.3 - futf-0.1.4 - futures-0.3.16 - futures-channel-0.3.16 - futures-core-0.3.16 - futures-io-0.3.16 - futures-macro-0.3.16 - futures-sink-0.3.16 - futures-task-0.3.16 - futures-util-0.3.16 - generic-array-0.12.4 - generic-array-0.14.4 - getrandom-0.1.16 - getrandom-0.2.3 - gitignore-1.0.7 - glob-0.3.0 - h2-0.3.4 - handlebars-4.1.2 - hashbrown-0.11.2 - headers-0.3.4 - headers-core-0.2.0 - heck-0.3.3 - hermit-abi-0.1.19 - html5ever-0.25.1 - http-0.2.4 - http-body-0.4.3 - httparse-1.5.1 - httpdate-1.0.1 - humantime-1.3.0 - hyper-0.14.11 - idna-0.2.3 - indexmap-1.7.0 - inotify-0.7.1 - inotify-sys-0.1.5 - input_buffer-0.4.0 - iovec-0.1.4 - itertools-0.10.1 - itoa-0.4.8 - kernel32-sys-0.2.2 - lazy_static-1.4.0 - lazycell-1.3.0 - libc-0.2.100 - log-0.4.14 - mac-0.1.1 - maplit-1.0.2 - markup5ever-0.10.1 - markup5ever_rcdom-0.1.0 - matches-0.1.9 - memchr-2.4.1 - mime-0.3.16 - mime_guess-2.0.3 - mio-0.6.23 - mio-0.7.13 - mio-extras-2.0.6 - miow-0.2.2 - miow-0.3.7 - net2-0.2.37 - new_debug_unreachable-1.0.4 - normalize-line-endings-0.3.0 - notify-4.0.17 - ntapi-0.3.6 - num-integer-0.1.44 - num-traits-0.2.14 - num_cpus-1.13.0 - opaque-debug-0.2.3 - opaque-debug-0.3.0 - opener-0.5.0 - os_str_bytes-6.0.0 - output_vt100-0.1.2 - percent-encoding-2.1.0 - pest-2.1.3 - pest_derive-2.1.0 - pest_generator-2.1.3 - pest_meta-2.1.3 - phf-0.8.0 - phf_codegen-0.8.0 - phf_generator-0.8.0 - phf_shared-0.8.0 - pin-project-1.0.8 - pin-project-internal-1.0.8 - pin-project-lite-0.2.7 - pin-utils-0.1.0 - ppv-lite86-0.2.10 - precomputed-hash-0.1.1 - predicates-2.0.1 - predicates-core-1.0.2 - predicates-tree-1.0.2 - pretty_assertions-0.6.1 - proc-macro-hack-0.5.19 - proc-macro-nested-0.1.7 - proc-macro2-1.0.28 - pulldown-cmark-0.9.1 - quick-error-1.2.3 - quick-error-2.0.1 - quote-1.0.9 - rand-0.7.3 - rand-0.8.4 - rand_chacha-0.2.2 - rand_chacha-0.3.1 - rand_core-0.5.1 - rand_core-0.6.3 - rand_hc-0.2.0 - rand_hc-0.3.1 - rand_pcg-0.2.1 - redox_syscall-0.2.10 - regex-1.5.5 - regex-automata-0.1.10 - regex-syntax-0.6.25 - remove_dir_all-0.5.3 - ryu-1.0.5 - same-file-1.0.6 - scoped-tls-1.0.0 - select-0.5.0 - semver-1.0.4 - serde-1.0.129 - serde_derive-1.0.129 - serde_json-1.0.66 - serde_urlencoded-0.7.0 - sha-1-0.8.2 - sha-1-0.9.7 - shlex-1.0.0 - siphasher-0.3.6 - slab-0.4.4 - socket2-0.4.1 - string_cache-0.8.1 - string_cache_codegen-0.5.1 - strsim-0.10.0 - strum-0.21.0 - strum_macros-0.21.1 - syn-1.0.75 - tempfile-3.2.0 - tendril-0.4.2 - termcolor-1.1.2 - textwrap-0.14.2 - time-0.1.43 - tinyvec-1.3.1 - tinyvec_macros-0.1.0 - tokio-1.10.0 - tokio-macros-1.3.0 - tokio-stream-0.1.7 - tokio-tungstenite-0.13.0 - tokio-util-0.6.7 - toml-0.5.8 - topological-sort-0.1.0 - tower-service-0.3.1 - tracing-0.1.26 - tracing-core-0.1.19 - treeline-0.1.0 - try-lock-0.2.3 - tungstenite-0.12.0 - typenum-1.13.0 - ucd-trie-0.1.3 - unicase-2.6.0 - unicode-bidi-0.3.6 - unicode-normalization-0.1.19 - unicode-segmentation-1.8.0 - unicode-xid-0.2.2 - url-2.2.2 - utf-8-0.7.6 - version_check-0.9.3 - wait-timeout-0.2.0 - walkdir-2.3.2 - want-0.3.0 - warp-0.3.1 - wasi-0.10.2+wasi-snapshot-preview1 - wasi-0.9.0+wasi-snapshot-preview1 - winapi-0.2.8 - winapi-0.3.9 - winapi-build-0.1.1 - winapi-i686-pc-windows-gnu-0.4.0 - winapi-util-0.1.5 - winapi-x86_64-pc-windows-gnu-0.4.0 - ws2_32-sys-0.2.1 - xml5ever-0.16.1" -inherit cargo toolchain-funcs - -DESCRIPTION="Create a book from markdown files" -HOMEPAGE="https://rust-lang.github.io/mdBook/" -SRC_URI=" - https://github.com/rust-lang/mdBook/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz - $(cargo_crate_uris)" -S="${WORKDIR}/${P/b/B}" - -# CC-BY-4.0/OFL-1.1: embeds fonts inside the executable -LICENSE="Apache-2.0 BSD CC-BY-4.0 CC0-1.0 ISC MIT MPL-2.0 OFL-1.1" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="doc" - -QA_FLAGS_IGNORED="usr/bin/${PN}" - -src_compile() { - cargo_src_compile - - if use doc; then - if tc-is-cross-compiler; then - ewarn "html docs were skipped due to cross-compilation" - else - target/$(usex debug{,} release)/${PN} build -d html guide || die - fi - fi -} - -src_install() { - cargo_src_install - - dodoc CHANGELOG.md README.md - - [[ -e guide/html ]] && dodoc -r guide/html -} diff --git a/app-text/poppler/poppler-22.03.0.ebuild b/app-text/poppler/poppler-22.03.0.ebuild index bd70207b1626..0e16e00ebff9 100644 --- a/app-text/poppler/poppler-22.03.0.ebuild +++ b/app-text/poppler/poppler-22.03.0.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} == *9999* ]] ; then SLOT="0/9999" else SRC_URI="https://poppler.freedesktop.org/${P}.tar.xz" - KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0/119" # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so SOVERSION fi diff --git a/app-xemacs/Manifest.gz b/app-xemacs/Manifest.gz index d2f212982d6a..c53f31b2ccd3 100644 Binary files a/app-xemacs/Manifest.gz and b/app-xemacs/Manifest.gz differ diff --git a/app-xemacs/ocaml/ocaml-0.10.ebuild b/app-xemacs/ocaml/ocaml-0.10.ebuild index 3997aa34d68a..2912bbae2aad 100644 --- a/app-xemacs/ocaml/ocaml-0.10.ebuild +++ b/app-xemacs/ocaml/ocaml-0.10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -10,6 +10,6 @@ XEMACS_PKG_CAT="standard" RDEPEND="app-xemacs/xemacs-base app-xemacs/fsf-compat " -KEYWORDS="~alpha amd64 arm64 ~hppa ppc ppc64 sparc x86" +KEYWORDS="~alpha amd64 arm64 ~hppa ppc ppc64 ~riscv sparc x86" inherit xemacs-packages diff --git a/dev-cpp/Manifest.gz b/dev-cpp/Manifest.gz index 8518cd00c292..1c61cd146d62 100644 Binary files a/dev-cpp/Manifest.gz and b/dev-cpp/Manifest.gz differ diff --git a/dev-cpp/atkmm/atkmm-2.36.1.ebuild b/dev-cpp/atkmm/atkmm-2.36.1.ebuild index c22677a95a15..985508042c4c 100644 --- a/dev-cpp/atkmm/atkmm-2.36.1.ebuild +++ b/dev-cpp/atkmm/atkmm-2.36.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ HOMEPAGE="https://www.gtkmm.org" LICENSE="LGPL-2.1+" SLOT="2.36" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" IUSE="doc" DEPEND=" diff --git a/dev-cpp/cairomm/cairomm-1.16.1.ebuild b/dev-cpp/cairomm/cairomm-1.16.1.ebuild index c0f5c8564e53..715ca5acea49 100644 --- a/dev-cpp/cairomm/cairomm-1.16.1.ebuild +++ b/dev-cpp/cairomm/cairomm-1.16.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://www.cairographics.org/releases/${P}.tar.xz" LICENSE="LGPL-2+" SLOT="1.16" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" IUSE="doc test" RESTRICT="!test? ( test )" diff --git a/dev-cpp/catch/catch-2.13.8.ebuild b/dev-cpp/catch/catch-2.13.8.ebuild index da5fb3105081..4da920c44281 100644 --- a/dev-cpp/catch/catch-2.13.8.ebuild +++ b/dev-cpp/catch/catch-2.13.8.ebuild @@ -15,7 +15,7 @@ else SRC_URI="https://github.com/catchorg/Catch2/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" S="${WORKDIR}/${MY_P}" - KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86" + KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86" fi DESCRIPTION="Modern C++ header-only framework for unit-tests" diff --git a/dev-cpp/glibmm/glibmm-2.72.0.ebuild b/dev-cpp/glibmm/glibmm-2.72.0.ebuild index ec1190baa58d..f40448c218b4 100644 --- a/dev-cpp/glibmm/glibmm-2.72.0.ebuild +++ b/dev-cpp/glibmm/glibmm-2.72.0.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://www.gtkmm.org" LICENSE="LGPL-2.1+" SLOT="2.68" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" IUSE="doc debug test" RESTRICT="!test? ( test )" diff --git a/dev-cpp/gtest/Manifest b/dev-cpp/gtest/Manifest index 3b3e722caa7d..cb7e7695b146 100644 --- a/dev-cpp/gtest/Manifest +++ b/dev-cpp/gtest/Manifest @@ -1,2 +1 @@ -DIST gtest-1.10.0_p20200702.tar.gz 866900 BLAKE2B c162d47868583ba270675abe5df935b8f4b9a9c00dbdc80dd88afa7f2b98266640b32b2ea5e8f9f6d6227196b5d2f79dbfda4e9585106224e814cc1503cf777d SHA512 715d887b59b47d4691c7c90ef0cf0ffc3d1e758e500263c76b50fd506e90a9d1c390af745933cfe3f55e1edac5d72dccedef3cb9a50b71a5b796424471a3017b DIST gtest-1.11.0.tar.gz 886330 BLAKE2B d11fdd485f292d96508cbc27a9a444ab69b86571cc594298fd3f0e6d4bd8d6ec20dea848fe11be165d34054b2251ad377f0930f852914feaa1416ff156986a9c SHA512 6fcc7827e4c4d95e3ae643dd65e6c4fc0e3d04e1778b84f6e06e390410fe3d18026c131d828d949d2f20dde6327d30ecee24dcd3ef919e21c91e010d149f3a28 diff --git a/dev-cpp/gtest/files/gtest-1.10.0_p20200702-increase-clone-stack-size.patch b/dev-cpp/gtest/files/gtest-1.10.0_p20200702-increase-clone-stack-size.patch index 3e06777ac9a9..0c47681ba347 100644 --- a/dev-cpp/gtest/files/gtest-1.10.0_p20200702-increase-clone-stack-size.patch +++ b/dev-cpp/gtest/files/gtest-1.10.0_p20200702-increase-clone-stack-size.patch @@ -1,4 +1,5 @@ Bug: https://bugs.gentoo.org/692464 + https://bugs.gentoo.org/834068 --- a/googletest/src/gtest-death-test.cc +++ b/googletest/src/gtest-death-test.cc @@ -7,7 +8,7 @@ Bug: https://bugs.gentoo.org/692464 if (!use_fork) { static const bool stack_grows_down = StackGrowsDown(); - const auto stack_size = static_cast(getpagesize() * 2); -+ const auto stack_size = static_cast(getpagesize() * 10); ++ const auto stack_size = static_cast(getpagesize() * 12); // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead. void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0); diff --git a/dev-cpp/gtest/gtest-1.10.0_p20200702.ebuild b/dev-cpp/gtest/gtest-1.10.0_p20200702.ebuild deleted file mode 100644 index 58067c7a096b..000000000000 --- a/dev-cpp/gtest/gtest-1.10.0_p20200702.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# Python is required for tests and some build tasks. -PYTHON_COMPAT=( python3_{8..10} ) - -CMAKE_ECLASS=cmake -inherit cmake-multilib python-any-r1 - -GOOGLETEST_COMMIT=aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e - -if [[ ${PV} == "9999" ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/google/googletest" -else - if [[ -z ${GOOGLETEST_COMMIT} ]]; then - URI_PV=v${MY_PV:-${PV}} - else - URI_PV=${MY_PV:=${GOOGLETEST_COMMIT}} - fi - SRC_URI="https://github.com/google/googletest/archive/${URI_PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - S="${WORKDIR}"/googletest-${MY_PV} -fi - -DESCRIPTION="Google C++ Testing Framework" -HOMEPAGE="https://github.com/google/googletest" - -LICENSE="BSD" -SLOT="0" -IUSE="doc examples test" -RESTRICT="!test? ( test )" - -BDEPEND="test? ( ${PYTHON_DEPS} )" - -PATCHES=( - "${FILESDIR}"/${PN}-1.10.0_p20200702-increase-clone-stack-size.patch -) - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_prepare() { - cmake_src_prepare - - sed -i -e '/set(cxx_base_flags /s:-Werror::' \ - googletest/cmake/internal_utils.cmake || die "sed failed!" -} - -multilib_src_configure() { - local mycmakeargs=( - -DBUILD_GMOCK=ON - -DINSTALL_GTEST=ON - - # tests - -Dgmock_build_tests=$(usex test) - -Dgtest_build_tests=$(usex test) - -DPYTHON_EXECUTABLE="${PYTHON}" - ) - cmake_src_configure -} - -multilib_src_install_all() { - einstalldocs - - if use doc; then - docinto googletest - dodoc -r googletest/docs/. - docinto googlemock - dodoc -r googlemock/docs/. - fi - - if use examples; then - docinto examples - dodoc googletest/samples/*.{cc,h} - fi -} diff --git a/dev-cpp/gtkmm/gtkmm-4.6.1.ebuild b/dev-cpp/gtkmm/gtkmm-4.6.1.ebuild index e5644c7e4ae2..237856fbb74b 100644 --- a/dev-cpp/gtkmm/gtkmm-4.6.1.ebuild +++ b/dev-cpp/gtkmm/gtkmm-4.6.1.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="https://www.gtkmm.org" LICENSE="LGPL-2.1+" SLOT="4.0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="doc test" RESTRICT="!test? ( test )" diff --git a/dev-cpp/highway/metadata.xml b/dev-cpp/highway/metadata.xml index 717dcaf45afe..211c94e70a5c 100644 --- a/dev-cpp/highway/metadata.xml +++ b/dev-cpp/highway/metadata.xml @@ -1,5 +1,5 @@ - + dnovomesky@gmail.com diff --git a/dev-cpp/pangomm/pangomm-2.50.0.ebuild b/dev-cpp/pangomm/pangomm-2.50.0.ebuild index 0e562fa01831..759433faaf69 100644 --- a/dev-cpp/pangomm/pangomm-2.50.0.ebuild +++ b/dev-cpp/pangomm/pangomm-2.50.0.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="https://www.gtkmm.org" LICENSE="LGPL-2.1+" SLOT="2.48" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" IUSE="doc" DEPEND=" diff --git a/dev-db/Manifest.gz b/dev-db/Manifest.gz index b13c1122a00a..9a0b2b46515d 100644 Binary files a/dev-db/Manifest.gz and b/dev-db/Manifest.gz differ diff --git a/dev-db/postgresql/postgresql-14.2-r1.ebuild b/dev-db/postgresql/postgresql-14.2-r1.ebuild index 669ad0e26b8a..9f603c23ce29 100644 --- a/dev-db/postgresql/postgresql-14.2-r1.ebuild +++ b/dev-db/postgresql/postgresql-14.2-r1.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{8,9,10} ) inherit flag-o-matic linux-info multilib pam prefix python-single-r1 systemd tmpfiles -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT=$(ver_cut 1) diff --git a/dev-db/sqlite/Manifest b/dev-db/sqlite/Manifest index eb18013f1513..9e386905e915 100644 --- a/dev-db/sqlite/Manifest +++ b/dev-db/sqlite/Manifest @@ -1,8 +1,6 @@ -DIST sqlite-doc-3370200.zip 10542395 BLAKE2B 129ae0bac8099eb2571cc31ded186ed6c166c1b31af493047608ffb63ac7a90ccbaa5df733661c92660d2436bab6e3796f92e42ac8bb4154ff15212afc74b9b0 SHA512 02c68a3906aee3fd05a4340549144032a239e5ab885d9b3b09236ed2b74a90c770de373e4ca9f99e72f92df090d0fb6789213fb361e954d9dd6709af20336857 DIST sqlite-doc-3380000.zip 10603776 BLAKE2B f196b00cce01672dc1a27a64d70669ff87c26eacbdb97c76c3c45702cc2c9509507ddcc50180b3a4479afe2991a94dc3a8def59a984d917ad09fba5cbb63da94 SHA512 8e1f77504a1057cd23a8a6c2a285d63c5df50ceaf6ab84054a6f5422286dd868bdb3d5bd9be180b7834caba2b65ca185ffff60455bb504df30801157b62a62ef DIST sqlite-doc-3380100.zip 10615296 BLAKE2B fa3df2458b9c15d5f7ce8abb02eb050dddb618c6e87cd79e1979612649be53de4ed26d2bb3e1230e43d7fb1293e1d5bfa870d211195a9b7c2a11a97d417d1ab6 SHA512 ccdfee3d07f2c43b6dda52a2240fd3e72ada38be5a644d097b23116e1b0c2e21f539bf56afbae30fc4275b9b4a954393f95b0a5272bcf18c98e1538d190ff6bc DIST sqlite-doc-3380200.zip 10620764 BLAKE2B 81f7e7b9aef37bdae133c4d7dc517d2040d8202a7e0cdf00180d3abe3fb677c80dbc1987e437f0d0f34f47c61f09a7c9d664ba42af976ecfb24555590bb22087 SHA512 b54372ff788aa42b2138c6de91c42c4f6a6440623de3679f08b0519c5c20d9d865c60fa63223c60f4374ff5badb800d6f209e75abb280b9815902757424faf0b -DIST sqlite-src-3370200.zip 13145234 BLAKE2B 296eb8ac0e83552c348847ea1d0b06ce1b610ca1f53d8b56fa872196ccdc29c343a3b5cc671716854950c97425f8a5b78968e1b22c137ea1ff3bf386e94d8acc SHA512 2db103965934bb34c8336cf82ff7d77e75dc1ca00fa6324ac5697f3bf4b41bffff355dec7593515a68816449e5c9827a9503f6d7841c4c13981c231d3414ff76 DIST sqlite-src-3380000.zip 13236840 BLAKE2B f303e39a9d913994f0756f986de9d316322b2278b8d2aeb505eb37d1c370c2edbb91f6f56e95b73938137a72b0c22a82fc8a2ceb19ab03271c38f653b66f66ea SHA512 9f4d3c406df5e6290f3f0b5e24b568723ab54bb085cb8cd7621ab42b0b8cd4f76e9784a4a29b42ea8cb0d1b7d759267c3cd980913d490d08e7172df05949131d DIST sqlite-src-3380100.zip 13241298 BLAKE2B 9dbccd5942f146da4c40d6208c491473c191752a74ee18ce131f3dea533976732440974e97906aead460daee39c7d6085ffa0f093d8f17e8f64c813bbb2409ad SHA512 df200916789c15e010a8e62dd8257833f34d4cf3496080a72fdc2330a530c193cda055e3c9ed39a404b87c8001c83a4b187491525ca95b5c5a1dbdd2f41cc222 DIST sqlite-src-3380200.zip 13242285 BLAKE2B a07f895f57c355e2ec1c96fc857b63d774ff52f7e49c22b1c936b260e6e7787ec656059c02cc6d38845c4368507067d86dac493559541fbb914a3da9cbc67cce SHA512 fd457602db4577b31bc6053fd3cceb220337275e3fd26976f4270fb8a7da4fa047ca23dd18e2795cdfd894d05bad4c53954a81391d71507d359fb224995e420a diff --git a/dev-db/sqlite/sqlite-3.37.2.ebuild b/dev-db/sqlite/sqlite-3.37.2.ebuild deleted file mode 100644 index 909019a749b5..000000000000 --- a/dev-db/sqlite/sqlite-3.37.2.ebuild +++ /dev/null @@ -1,426 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit autotools flag-o-matic multilib-minimal toolchain-funcs - -if [[ "${PV}" != "9999" ]]; then - SRC_PV="$(printf "%u%02u%02u%02u" $(ver_rs 1- " "))" - DOC_PV="${SRC_PV}" - # DOC_PV="$(printf "%u%02u%02u00" $(ver_rs 1-3 " "))" -fi - -DESCRIPTION="SQL database engine" -HOMEPAGE="https://sqlite.org/" -if [[ "${PV}" == "9999" ]]; then - SRC_URI="" -else - SRC_URI="https://sqlite.org/2022/${PN}-src-${SRC_PV}.zip - doc? ( https://sqlite.org/2022/${PN}-doc-${DOC_PV}.zip )" -fi - -LICENSE="public-domain" -SLOT="3" -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" -IUSE="debug doc icu +readline secure-delete static-libs tcl test tools" -if [[ "${PV}" == "9999" ]]; then - PROPERTIES="live" -fi -RESTRICT="!test? ( test )" - -if [[ "${PV}" == "9999" ]]; then - BDEPEND=">=dev-lang/tcl-8.6:0 - dev-vcs/fossil" -else - BDEPEND="app-arch/unzip - >=dev-lang/tcl-8.6:0" -fi -RDEPEND="sys-libs/zlib:0=[${MULTILIB_USEDEP}] - icu? ( dev-libs/icu:0=[${MULTILIB_USEDEP}] ) - readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] ) - tcl? ( dev-lang/tcl:0=[${MULTILIB_USEDEP}] ) - tools? ( dev-lang/tcl:0= )" -DEPEND="${RDEPEND} - test? ( >=dev-lang/tcl-8.6:0[${MULTILIB_USEDEP}] )" - -if [[ "${PV}" == "9999" ]]; then - S="${WORKDIR}/${PN}" -else - S="${WORKDIR}/${PN}-src-${SRC_PV}" -fi - -_fossil_fetch() { - local distdir="${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}" - local repo_id="${1}" - local repo_uri="${2}" - - local -x FOSSIL_HOME="${HOME}" - - mkdir -p "${T}/fossil/${repo_id}" || die - pushd "${T}/fossil/${repo_id}" > /dev/null || die - - if [[ -n "${EVCS_OFFLINE}" ]]; then - if [[ ! -f "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" ]]; then - die "Network activity disabled using EVCS_OFFLINE and clone of repository missing: \"${distdir}/fossil-src/${repo_id}/${repo_id}.fossil\"" - fi - else - if [[ ! -f "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" ]]; then - einfo fossil clone --verbose "${repo_uri}" "${repo_id}.fossil" - fossil clone --verbose "${repo_uri}" "${repo_id}.fossil" || die - echo - else - cp -p "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" . || die - einfo fossil pull --repository "${repo_id}.fossil" --verbose "${repo_uri}" - fossil pull --repository "${repo_id}.fossil" --verbose "${repo_uri}" || die - echo - fi - - ( - addwrite "${distdir}" - mkdir -p "${distdir}/fossil-src/${repo_id}" || die - cp -p "${repo_id}.fossil" "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" || die - ) - fi - - popd > /dev/null || die -} - -_fossil_checkout() { - local distdir="${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}" - local repo_id="${1}" - local branch_or_commit="${2}" - local target_directory="${3}" - - local -x FOSSIL_HOME="${HOME}" - - if [[ ! -f "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" ]]; then - die "Clone of repository missing: \"${distdir}/fossil-src/${repo_id}/${repo_id}.fossil\"" - fi - - if [[ ! -f "${T}/fossil/${repo_id}/${repo_id}.fossil" ]]; then - mkdir -p "${T}/fossil/${repo_id}" || die - cp -p "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" "${T}/fossil/${repo_id}" || die - fi - - mkdir "${target_directory}" || die - pushd "${target_directory}" > /dev/null || die - - einfo fossil open --quiet "${T}/fossil/${repo_id}/${repo_id}.fossil" "${branch_or_commit}" - fossil open --quiet "${T}/fossil/${repo_id}/${repo_id}.fossil" "${branch_or_commit}" || die - echo - - popd > /dev/null || die -} - -fossil_fetch() { - local repo_id="${1}" - local repo_uri="${2}" - local target_directory="${3}" - - local branch_or_commit="${EFOSSIL_COMMIT:-${EFOSSIL_BRANCH:-trunk}}" - - _fossil_fetch "${repo_id}" "${repo_uri}" - _fossil_checkout "${repo_id}" "${branch_or_commit}" "${target_directory}" -} - -src_unpack() { - if [[ "${PV}" == "9999" ]]; then - fossil_fetch sqlite https://sqlite.org/src "${WORKDIR}/${PN}" - if use doc; then - fossil_fetch sqlite-doc https://sqlite.org/docsrc "${WORKDIR}/${PN}-doc" - fi - else - default - fi -} - -src_prepare() { - eapply_user - - eautoreconf - - multilib_copy_sources -} - -multilib_src_configure() { - local -x CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" - local options=() - - options+=( - --enable-load-extension - --enable-threadsafe - ) - - # Support detection of misuse of SQLite API. - # https://sqlite.org/compile.html#enable_api_armor - append-cppflags -DSQLITE_ENABLE_API_ARMOR - - # Support bytecode and tables_used virtual tables. - # https://sqlite.org/compile.html#enable_bytecode_vtab - # https://sqlite.org/bytecodevtab.html - append-cppflags -DSQLITE_ENABLE_BYTECODE_VTAB - - # Support column metadata functions. - # https://sqlite.org/compile.html#enable_column_metadata - # https://sqlite.org/c3ref/column_database_name.html - append-cppflags -DSQLITE_ENABLE_COLUMN_METADATA - - # Support sqlite_dbpage virtual table. - # https://sqlite.org/compile.html#enable_dbpage_vtab - # https://sqlite.org/dbpage.html - append-cppflags -DSQLITE_ENABLE_DBPAGE_VTAB - - # Support dbstat virtual table. - # https://sqlite.org/compile.html#enable_dbstat_vtab - # https://sqlite.org/dbstat.html - append-cppflags -DSQLITE_ENABLE_DBSTAT_VTAB - - # Support sqlite3_serialize() and sqlite3_deserialize() functions. - # https://sqlite.org/compile.html#enable_deserialize - # https://sqlite.org/c3ref/serialize.html - # https://sqlite.org/c3ref/deserialize.html - append-cppflags -DSQLITE_ENABLE_DESERIALIZE - - # Support comments in output of EXPLAIN. - # https://sqlite.org/compile.html#enable_explain_comments - append-cppflags -DSQLITE_ENABLE_EXPLAIN_COMMENTS - - # Support Full-Text Search versions 3, 4 and 5. - # https://sqlite.org/compile.html#enable_fts3 - # https://sqlite.org/compile.html#enable_fts3_parenthesis - # https://sqlite.org/compile.html#enable_fts4 - # https://sqlite.org/compile.html#enable_fts5 - # https://sqlite.org/fts3.html - # https://sqlite.org/fts5.html - append-cppflags -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS -DSQLITE_ENABLE_FTS4 - options+=(--enable-fts5) - - # Support hidden columns. - append-cppflags -DSQLITE_ENABLE_HIDDEN_COLUMNS - - # Support JSON1 extension. - # https://sqlite.org/compile.html#enable_json1 - # https://sqlite.org/json1.html - append-cppflags -DSQLITE_ENABLE_JSON1 - - # Support memsys5 memory allocator. - # https://sqlite.org/compile.html#enable_memsys5 - # https://sqlite.org/malloc.html#memsys5 - append-cppflags -DSQLITE_ENABLE_MEMSYS5 - - # Support sqlite3_normalized_sql() function. - # https://sqlite.org/c3ref/expanded_sql.html - append-cppflags -DSQLITE_ENABLE_NORMALIZE - - # Support sqlite_offset() function. - # https://sqlite.org/compile.html#enable_offset_sql_func - # https://sqlite.org/lang_corefunc.html#sqlite_offset - append-cppflags -DSQLITE_ENABLE_OFFSET_SQL_FUNC - - # Support pre-update hook functions. - # https://sqlite.org/compile.html#enable_preupdate_hook - # https://sqlite.org/c3ref/preupdate_count.html - append-cppflags -DSQLITE_ENABLE_PREUPDATE_HOOK - - # Support Resumable Bulk Update extension. - # https://sqlite.org/compile.html#enable_rbu - # https://sqlite.org/rbu.html - append-cppflags -DSQLITE_ENABLE_RBU - - # Support R*Trees. - # https://sqlite.org/compile.html#enable_rtree - # https://sqlite.org/compile.html#enable_geopoly - # https://sqlite.org/rtree.html - # https://sqlite.org/geopoly.html - append-cppflags -DSQLITE_ENABLE_RTREE -DSQLITE_ENABLE_GEOPOLY - - # Support Session extension. - # https://sqlite.org/compile.html#enable_session - # https://sqlite.org/sessionintro.html - append-cppflags -DSQLITE_ENABLE_SESSION - - # Support scan status functions. - # https://sqlite.org/compile.html#enable_stmt_scanstatus - # https://sqlite.org/c3ref/stmt_scanstatus.html - # https://sqlite.org/c3ref/stmt_scanstatus_reset.html - append-cppflags -DSQLITE_ENABLE_STMT_SCANSTATUS - - # Support sqlite_stmt virtual table. - # https://sqlite.org/compile.html#enable_stmtvtab - # https://sqlite.org/stmt.html - append-cppflags -DSQLITE_ENABLE_STMTVTAB - - # Support unknown() function. - # https://sqlite.org/compile.html#enable_unknown_sql_function - append-cppflags -DSQLITE_ENABLE_UNKNOWN_SQL_FUNCTION - - # Support unlock notification. - # https://sqlite.org/compile.html#enable_unlock_notify - # https://sqlite.org/c3ref/unlock_notify.html - # https://sqlite.org/unlock_notify.html - append-cppflags -DSQLITE_ENABLE_UNLOCK_NOTIFY - - # Support LIMIT and ORDER BY clauses on DELETE and UPDATE statements. - # https://sqlite.org/compile.html#enable_update_delete_limit - # https://sqlite.org/lang_delete.html#optional_limit_and_order_by_clauses - # https://sqlite.org/lang_update.html#optional_limit_and_order_by_clauses - append-cppflags -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT - - # Support soundex() function. - # https://sqlite.org/compile.html#soundex - # https://sqlite.org/lang_corefunc.html#soundex - append-cppflags -DSQLITE_SOUNDEX - - # Support URI filenames. - # https://sqlite.org/compile.html#use_uri - # https://sqlite.org/uri.html - append-cppflags -DSQLITE_USE_URI - - # debug USE flag. - options+=($(use_enable debug)) - - # icu USE flag. - if use icu; then - # Support ICU extension. - # https://sqlite.org/compile.html#enable_icu - append-cppflags -DSQLITE_ENABLE_ICU - sed -e "s/^TLIBS = @LIBS@/& -licui18n -licuuc/" -i Makefile.in || die "sed failed" - fi - - # readline USE flag. - options+=( - --disable-editline - $(use_enable readline) - ) - if use readline; then - options+=(--with-readline-inc="-I${ESYSROOT}/usr/include/readline") - fi - - # secure-delete USE flag. - if use secure-delete; then - # Enable secure_delete pragma by default. - # https://sqlite.org/compile.html#secure_delete - # https://sqlite.org/pragma.html#pragma_secure_delete - append-cppflags -DSQLITE_SECURE_DELETE - fi - - # static-libs USE flag. - options+=($(use_enable static-libs static)) - - # tcl, test, tools USE flags. - if use tcl || use test || { use tools && multilib_is_native_abi; }; then - options+=( - --enable-tcl - --with-tcl="${ESYSROOT}/usr/$(get_libdir)" - ) - else - options+=(--disable-tcl) - fi - - if [[ "${ABI}" == "x86" ]]; then - if $(tc-getCC) ${CPPFLAGS} ${CFLAGS} -E -P -dM - < /dev/null 2> /dev/null | grep -q "^#define __SSE__ 1$"; then - append-cflags -mfpmath=sse - else - append-cflags -ffloat-store - fi - fi - - econf "${options[@]}" -} - -multilib_src_compile() { - emake HAVE_TCL="$(usex tcl 1 "")" TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" - - if use tools && multilib_is_native_abi; then - emake changeset dbdump dbhash dbtotxt index_usage rbu scrub showdb showjournal showshm showstat4 showwal sqldiff sqlite3_analyzer sqlite3_checker sqlite3_expert sqltclsh - fi - - if [[ "${PV}" == "9999" ]] && use doc && multilib_is_native_abi; then - emake tclsqlite3.c - - local build_directory="$(pwd)" - build_directory="${build_directory##*/}" - - mkdir "${WORKDIR}/${PN}-doc-build" || die - pushd "${WORKDIR}/${PN}-doc-build" > /dev/null || die - - emake -f "../${PN}-doc/Makefile" -j1 SRC="../${PN}" BLD="../${build_directory}" DOC="../${PN}-doc" CC="$(tc-getBUILD_CC)" TCLINC="" TCLFLAGS="$($(tc-getBUILD_PKG_CONFIG) --libs tcl) -ldl -lm" base doc - rmdir doc/matrix{/*,} || die - - popd > /dev/null || die - fi -} - -multilib_src_test() { - if [[ "${EUID}" -eq 0 ]]; then - ewarn "Skipping tests due to root permissions" - return - fi - - local -x SQLITE_HISTORY="${T}/sqlite_history_${ABI}" - - emake HAVE_TCL="$(usex tcl 1 "")" $(use debug && echo fulltest || echo test) -} - -multilib_src_install() { - emake DESTDIR="${D}" HAVE_TCL="$(usex tcl 1 "")" TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" install - - if use tools && multilib_is_native_abi; then - install_tool() { - if [[ -f ".libs/${1}" ]]; then - newbin ".libs/${1}" "${2}" - else - newbin "${1}" "${2}" - fi - } - - install_tool changeset sqlite3-changeset - install_tool dbdump sqlite3-db-dump - install_tool dbhash sqlite3-db-hash - install_tool dbtotxt sqlite3-db-to-txt - install_tool index_usage sqlite3-index-usage - install_tool rbu sqlite3-rbu - install_tool scrub sqlite3-scrub - install_tool showdb sqlite3-show-db - install_tool showjournal sqlite3-show-journal - install_tool showshm sqlite3-show-shm - install_tool showstat4 sqlite3-show-stat4 - install_tool showwal sqlite3-show-wal - install_tool sqldiff sqlite3-diff - install_tool sqlite3_analyzer sqlite3-analyzer - install_tool sqlite3_checker sqlite3-checker - install_tool sqlite3_expert sqlite3-expert - install_tool sqltclsh sqlite3-tclsh - - unset -f install_tool - fi -} - -multilib_src_install_all() { - find "${ED}" -name "*.la" -delete || die - - doman sqlite3.1 - - if use doc; then - if [[ "${PV}" == "9999" ]]; then - pushd "${WORKDIR}/${PN}-doc-build/doc" > /dev/null || die - else - pushd "${WORKDIR}/${PN}-doc-${DOC_PV}" > /dev/null || die - fi - - find "(" -name "*.db" -o -name "*.txt" ")" -delete || die - if [[ "${PV}" != "9999" ]]; then - rm search search.d/admin || die - rmdir search.d || die - find -name "*~" -delete || die - fi - - ( - docinto html - dodoc -r * - ) - - popd > /dev/null || die - fi -} diff --git a/dev-db/sqlite/sqlite-3.38.0.ebuild b/dev-db/sqlite/sqlite-3.38.0.ebuild index a072a34ce158..950788025541 100644 --- a/dev-db/sqlite/sqlite-3.38.0.ebuild +++ b/dev-db/sqlite/sqlite-3.38.0.ebuild @@ -25,7 +25,7 @@ fi LICENSE="public-domain" SLOT="3" -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" +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" IUSE="debug doc icu +readline secure-delete static-libs tcl test tools" if [[ "${PV}" == "9999" ]]; then PROPERTIES="live" diff --git a/dev-db/sqlite/sqlite-3.38.1.ebuild b/dev-db/sqlite/sqlite-3.38.1.ebuild index 04d9b6b87116..eeebdb0c3fdb 100644 --- a/dev-db/sqlite/sqlite-3.38.1.ebuild +++ b/dev-db/sqlite/sqlite-3.38.1.ebuild @@ -25,7 +25,7 @@ fi LICENSE="public-domain" SLOT="3" -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" +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" IUSE="debug doc icu +readline secure-delete static-libs tcl test tools" if [[ "${PV}" == "9999" ]]; then PROPERTIES="live" diff --git a/dev-java/Manifest.gz b/dev-java/Manifest.gz index e463f17b80ec..68e403487722 100644 Binary files a/dev-java/Manifest.gz and b/dev-java/Manifest.gz differ diff --git a/dev-java/apiguardian-api/metadata.xml b/dev-java/apiguardian-api/metadata.xml index 6bc8acd2f803..abafa97106c0 100644 --- a/dev-java/apiguardian-api/metadata.xml +++ b/dev-java/apiguardian-api/metadata.xml @@ -1,5 +1,5 @@ - + java@gentoo.org diff --git a/dev-java/cal10n/metadata.xml b/dev-java/cal10n/metadata.xml index 846277cea474..792aa536ff7c 100644 --- a/dev-java/cal10n/metadata.xml +++ b/dev-java/cal10n/metadata.xml @@ -1,5 +1,5 @@ - + java@gentoo.org diff --git a/dev-java/fop/Manifest b/dev-java/fop/Manifest index b65582322b79..27bd73277440 100644 --- a/dev-java/fop/Manifest +++ b/dev-java/fop/Manifest @@ -1,2 +1,3 @@ DIST fop-2.0-src.zip 26381859 BLAKE2B 8500de6a23e93c14fdb4f27c59bafba27a64e6aaffb7a761f16de5bd523e2fdb83593ab53a66de79bf7b7d6c2b887ab97a34accb18be416b26448753babe2395 SHA512 428793303fcf143cffaecadc22cfdb8a065bad0108cceebcabc479d92dbe9834b4f81fd27f3e0314546d848e1960b2fe1a9d443999d8f336f7e87fce771beb7a +DIST fop-2.7-jars.tar.xz 7348 BLAKE2B 79a5b4f1948bbc9628e571a9873494e2d2088d7a90296e81e03cafa6ecd8f9d1c8dd6779d15c47a0e110304aa07e706c56412e3766a84e0a66c8224fdd92f61c SHA512 71c39cbb20416dc29beb8628ae8bac2a663c0b0d1f0418a241f3795a2d5e01159572c210b5a2d2eff8274247dc3631980de50fea4f94182ddde095d0e5e605c6 DIST fop-2.7-src.tar.gz 26799877 BLAKE2B 00bcbd4cc915aad67c0dac54e85b7c5d10576115a0a8a16517846af249137c73b10c8b0ff161c9957f7c49686eefbf9777dc452b038573c996e29cbad951176a SHA512 bffbc0a97db8bbc826cf9af89fbf4a7e6f705585ea4915c0954df57c6d7af50d323387bb4bb9e2d13047826352d9eb7cbf4f23d5146ce246965b4c531e015633 diff --git a/dev-java/fop/files/fop-2.7-core-event-models.jar b/dev-java/fop/files/fop-2.7-core-event-models.jar deleted file mode 100644 index 49bece365d93..000000000000 Binary files a/dev-java/fop/files/fop-2.7-core-event-models.jar and /dev/null differ diff --git a/dev-java/fop/files/fop-2.7-test-event-model.jar b/dev-java/fop/files/fop-2.7-test-event-model.jar deleted file mode 100644 index 7c2fff6a088d..000000000000 Binary files a/dev-java/fop/files/fop-2.7-test-event-model.jar and /dev/null differ diff --git a/dev-java/fop/fop-2.7.ebuild b/dev-java/fop/fop-2.7.ebuild index e6aa1be68d31..5c30a5a49912 100644 --- a/dev-java/fop/fop-2.7.ebuild +++ b/dev-java/fop/fop-2.7.ebuild @@ -11,7 +11,10 @@ inherit java-pkg-2 java-pkg-simple DESCRIPTION="XML Graphics Format Object Processor All-In-One" HOMEPAGE="https://xmlgraphics.apache.org/fop/" -SRC_URI="mirror://apache/xmlgraphics/fop/source/fop-${PV}-src.tar.gz" +SRC_URI=" + mirror://apache/xmlgraphics/fop/source/${P}-src.tar.gz + https://dev.gentoo.org/~flow/distfiles/fop/${P}-jars.tar.xz +" LICENSE="Apache-2.0" SLOT="2.7" @@ -95,7 +98,7 @@ src_compile() { # Update "fop-core.jar" with "event-mode.xml" files produced manually # by running "mvn package". mkdir event-model && pushd $_ >/dev/null || die - jar -xf "${FILESDIR}/fop-2.7-core-event-models.jar" + jar -xf "${WORKDIR}/fop-2.7-core-event-models.jar" popd jar -uf "fop-core.jar" -C event-model . || die # Upstream does this with maven-antrun-plugin: @@ -126,7 +129,7 @@ src_test() { # This jar file was created manually from the output of "mvn test". # Upstream does this with maven-antrun-plugin - jar -xf ${FILESDIR}/fop-2.7-test-event-model.jar || die + jar -xf "${WORKDIR}/fop-2.7-test-event-model.jar" || die java-pkg-simple_src_test diff --git a/dev-java/icedtea-sound/icedtea-sound-1.0.1.ebuild b/dev-java/icedtea-sound/icedtea-sound-1.0.1.ebuild deleted file mode 100644 index c480a1189a79..000000000000 --- a/dev-java/icedtea-sound/icedtea-sound-1.0.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# Build written by Andrew John Hughes (gnu_andrew@member.fsf.org) - -EAPI="5" - -inherit java-pkg-2 prefix - -DESCRIPTION="Plugins for javax.sound" -HOMEPAGE="http://icedtea.classpath.org" -SRC_URI="http://icedtea.classpath.org/download/source/${P}.tar.xz" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ppc64 x86" - -IUSE="+doc test" -RESTRICT="!test? ( test )" - -COMMON_DEP=" - >=virtual/jdk-1.6.0 - >=media-sound/pulseaudio-0.9.11:=" -RDEPEND="${COMMON_DEP}" -DEPEND="${COMMON_DEP} - app-arch/zip" - -pkg_setup() { - JAVA_PKG_WANT_SOURCE="1.6" - JAVA_PKG_WANT_TARGET="1.6" - - java-pkg-2_pkg_setup -} - -src_configure() { - econf --with-jdk-home="${JAVA_HOME}" \ - $(use_enable doc docs) \ - --htmldir="${EPREFIX%/}/usr/share/doc/${PF}/html" -} - -src_compile() { - default -} diff --git a/dev-java/jcommander/Manifest b/dev-java/jcommander/Manifest index a13270c2b00d..d3d0e76ac3da 100644 --- a/dev-java/jcommander/Manifest +++ b/dev-java/jcommander/Manifest @@ -1 +1,2 @@ DIST jcommander-1.48.tar.gz 64544 BLAKE2B 29ed81d5f9a7e4ec193c8fa03cdd67481e9904898bee2730c585be6b6beb2e0ec37b31634513095b660655b8202c42077361318a83c1e016c9450d7d7ff30244 SHA512 1304bb14ecb89f9945e8219f3229941e556c7cccef52a2eb4e4663da9dbf9fa5ecec4914275a743fb7d90ca301153284dc76dd380903aac93db1507894d72a6e +DIST jcommander-1.82.tar.gz 4433079 BLAKE2B 08111ae7a85202dc3a082db58f42ef5183b05cae827bc304ba426a3d02bf7a4123f84500e6ec5694578a7aa29c631cca692fe71d67e12a1107c57e1858be4dcf SHA512 1abcb54cec21e95a3e5fc952320a7fca1d480f9900992e686f66df49749b6eee79e18dc670f10cc05b0d2a4f0a72fae302568a51ff193788897878aefc3ff67b diff --git a/dev-java/jcommander/jcommander-1.82.ebuild b/dev-java/jcommander/jcommander-1.82.ebuild new file mode 100644 index 000000000000..845d94b587c7 --- /dev/null +++ b/dev-java/jcommander/jcommander-1.82.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source test" +JAVA_TESTING_FRAMEWORKS="testng" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Command line parsing framework for Java" +HOMEPAGE="https://github.com/cbeust/jcommander" +SRC_URI="https://github.com/cbeust/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +DEPEND=" + >=virtual/jdk-1.8:* + test? ( dev-java/jackson-annotations:2 ) +" +RDEPEND=" + >=virtual/jre-1.8:* +" + +S="${WORKDIR}/${P}" + +JAVA_SRC_DIR="src/main/java" + +# =============================================== +# Command line suite +# Total tests run: 258, Failures: 3, Skips: 0 +# =============================================== +# +# * ERROR: dev-java/jcommander-1.82::gentoo failed (test phase): +# * Running TestNG failed. + +# https://bugs.gentoo.org/801694 +# Needs "java-util-2-runner-args.patch" from https://github.com/gentoo/gentoo/pull/21319#issuecomment-878128343 +JAVA_TEST_RUNNER_EXTRA_ARGS=( -verbose 3 -usedefaultlisteners true ) + +JAVA_TEST_GENTOO_CLASSPATH="jackson-annotations-2,testng" +JAVA_TEST_EXTRA_ARGS=( -Djava.io.tmpdir="${T}" ) +JAVA_TEST_SRC_DIR=( src/test/java ) +JAVA_TEST_RESOURCE_DIRS=( src/test/resources ) + +src_prepare() { + default + java-pkg_clean +} + +src_test() { + # because module java.base does not export sun.reflect.annotation to unnamed module @0x42bb2aee + local vm_version="$(java-config -g PROVIDES_VERSION)" + if ver_test "${vm_version}" -ge 17; then + JAVA_TEST_EXTRA_ARGS+=( --add-opens=java.base/sun.reflect.annotation=ALL-UNNAMED ) + fi + java-pkg-simple_src_test +} diff --git a/dev-java/jna/jna-5.10.0.ebuild b/dev-java/jna/jna-5.10.0.ebuild index 3f90c302433e..80d0409f955c 100644 --- a/dev-java/jna/jna-5.10.0.ebuild +++ b/dev-java/jna/jna-5.10.0.ebuild @@ -54,7 +54,7 @@ JAVA_ANT_REWRITE_CLASSPATH="true" JAVA_PKG_BSFIX_NAME="build.xml build-ant-tools.xml" EANT_BUILD_TARGET="jar contrib-jars" EANT_EXTRA_ARGS="-Dbuild-native=true -Dcompatibility=1.8 -Ddynlink.native=true" -EANT_TEST_EXTRA_ARGS="-Djava.io.tmpdir=${T}" +EANT_TEST_EXTRA_ARGS="-Djava.io.tmpdir=\"${T}\"" EANT_TEST_GENTOO_CLASSPATH="animal-sniffer-annotations,reflections" pkg_setup() { diff --git a/dev-java/kafka-clients/metadata.xml b/dev-java/kafka-clients/metadata.xml index 952a4b9b605c..4221e170cbc0 100644 --- a/dev-java/kafka-clients/metadata.xml +++ b/dev-java/kafka-clients/metadata.xml @@ -1,5 +1,5 @@ - + java@gentoo.org diff --git a/dev-java/lz4-java/metadata.xml b/dev-java/lz4-java/metadata.xml index 576cd0ee41f1..0b61987a4768 100644 --- a/dev-java/lz4-java/metadata.xml +++ b/dev-java/lz4-java/metadata.xml @@ -1,5 +1,5 @@ - + java@gentoo.org diff --git a/dev-java/microba/Manifest b/dev-java/microba/Manifest index b60120e3bb65..f78c3b42020d 100644 --- a/dev-java/microba/Manifest +++ b/dev-java/microba/Manifest @@ -1,2 +1 @@ DIST microba-0.4.4.3.tar.gz 50106 BLAKE2B 15b7fe422f7d6aa92929a697ee2c12b2325c9cfcef6d43cc2f135b57a14d8a2a7c1a7b5b3de6bf8a7e1ed07ac275c26017430f776c435295e36109914aca090d SHA512 0191213d00fd0a6bd59a623fb0762eb589a5ac42c5c988a612c01781b30bcb6d86ce431f76687f5647889d54ad13b7f3fa2eec02ca81038f692d2cf25fa1aad1 -DIST microba-0.4.4.3.zip 89737 BLAKE2B 130f6a39f069b0b4e93f352b7fea10abd6eec23b7f0392ad15fa34c198b4dfb46a9b0208322b245f0934e2ff2260661934f958e6216a45c4c69573976f366a2c SHA512 17933578fe101053a1004a1aa0ef342ffa1dc1f2ea2d670fa8aa2523c7d8207bb79e54755e58d0b7ce5ba627ca3b348ac10870718622e818f4097a966acc0a10 diff --git a/dev-java/microba/microba-0.4.4.3-r1.ebuild b/dev-java/microba/microba-0.4.4.3-r1.ebuild deleted file mode 100644 index 02c622fbcd24..000000000000 --- a/dev-java/microba/microba-0.4.4.3-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="Swing components for date operations and palettes" -HOMEPAGE="https://github.com/tdbear/microba" -SRC_URI="https://github.com/tdbear/${PN}/archive/${PV}.zip -> ${P}.zip" -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" - -CP_DEPEND="dev-java/jgraph:0" - -RDEPEND="${CP_DEPEND} - >=virtual/jre-1.6" - -DEPEND="${CP_DEPEND} - >=virtual/jdk-1.6" - -S="${WORKDIR}/${P}" -JAVA_SRC_DIR="src/main/java" - -DOCS=( - change.log.txt - readme.txt - README.md -) - -src_compile() { - java-pkg-simple_src_compile - java-pkg_addres ${PN}.jar ${JAVA_SRC_DIR} -} - -src_install() { - default - java-pkg-simple_src_install -} diff --git a/dev-java/microba/microba-0.4.4.3-r2.ebuild b/dev-java/microba/microba-0.4.4.3-r2.ebuild index 30212b3f2397..8692c84f479a 100644 --- a/dev-java/microba/microba-0.4.4.3-r2.ebuild +++ b/dev-java/microba/microba-0.4.4.3-r2.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="https://github.com/tdbear/microba" SRC_URI="https://github.com/tdbear/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" CP_DEPEND="dev-java/jgraph:0" diff --git a/dev-java/msv/metadata.xml b/dev-java/msv/metadata.xml index 5793ba043a01..a12324e097b7 100644 --- a/dev-java/msv/metadata.xml +++ b/dev-java/msv/metadata.xml @@ -1,5 +1,5 @@ - + java@gentoo.org diff --git a/dev-java/opentest4j/metadata.xml b/dev-java/opentest4j/metadata.xml index 0327a99ea474..04e41c0ed0f7 100644 --- a/dev-java/opentest4j/metadata.xml +++ b/dev-java/opentest4j/metadata.xml @@ -1,5 +1,5 @@ - + java@gentoo.org diff --git a/dev-java/slf4j-ext/metadata.xml b/dev-java/slf4j-ext/metadata.xml index 37998bf40746..6ef2d50cf07e 100644 --- a/dev-java/slf4j-ext/metadata.xml +++ b/dev-java/slf4j-ext/metadata.xml @@ -1,5 +1,5 @@ - + java@gentoo.org diff --git a/dev-java/tomcat-servlet-api/Manifest b/dev-java/tomcat-servlet-api/Manifest index f2d24ce3298f..19701fe70887 100644 --- a/dev-java/tomcat-servlet-api/Manifest +++ b/dev-java/tomcat-servlet-api/Manifest @@ -1,13 +1,10 @@ -DIST apache-tomcat-10.0.17-src.tar.gz 6086996 BLAKE2B ff3584e58ec6f22f493cf7f32435423d68b941d9eec22441ee54ba69af03b50b687b23012129108485c9db147c8e7364ded037cf9ed2add174e6c928b927382a SHA512 1cc0f8e2187934c6dac3e31739f8c53a0a152527a98210deab8ce027c1347cbbd1cef3bdf0294bee3c4dbed20ba57b2291bcd887f353837fd505ea2d17e7ba3d DIST apache-tomcat-10.0.18-src.tar.gz 6088118 BLAKE2B 7d3fdb5a682dd44d358a619a18ca3df3bde27c9fc963436c9bce86baf07a42e87ba80724afdc6ce72b493d2fb35dda644eba29df7d4434f8c815ada4cb5d2ca3 SHA512 001205f382f44163f08dba1d306472b7ef3256e31a522c3f1f7595bca4fd084776a0c1f69b241302fa5d0d2f143ac063cb34d4fcf79a51ec9722f2f2ce3f1dab DIST apache-tomcat-10.0.20-src.tar.gz 6097471 BLAKE2B 77df97d73ff87a5ad55dfc3a0df02e3a306e619a5ae4bd2df0a0e3d42d236ccf2c6a6c46f60f56311f9be1bd561be9096d810d932f136b5856ff275fb3ae8368 SHA512 1e75b0bad54a9fac6ddc650156fac88bc91933ff0bf4e9a62948f5e116454b6def10d7ad632968e709e8aac72b15c567e4497cdb9b594352cd12d7518fdaf18f DIST apache-tomcat-4.1.40-src.tar.gz 3709719 BLAKE2B f7ca82052c1148a5c384fcbc3871beeddccdb4cfed05ba176581ebb50f52ba867bed8dbc500e97b7348a3a87b9693fb73eb81209df4f31e8c1ced7e30a6af30b SHA512 c455fa3da9da8fcbf1d54ae5dce808f8a4520ccafd627a6b2d1b003c37e8395d8b2a55d5471bf6c196549d082715862b3b8958aef88613293a07fc0160aa5c6e DIST apache-tomcat-5.5.36-src.tar.gz 3743113 BLAKE2B dbfcfd123a23b0ceb9f1fdd936e42324ea8b10cf327a1d0abf1703006535859c7122690a08b5ec27b86b526cc7709a7199b4f35f123538ff11f23f3b489358f3 SHA512 845636b5b992fbbb7d657d192afbab1e6a924bfd0c71b025cf22776eb4527d92d63f9b3f33475d4349a0df4cebd984ba3776eedd7482b820abdea909e90a97b7 DIST apache-tomcat-6.0.53-src.tar.gz 3522914 BLAKE2B 054b097c16861abaa8bdbeba713b49bc1dfcff573bb3f4bd0ff5807c33a2a0fb991af618f6e11e5b3ce3fa55c589fc6569342cab5d5a00349c79bc7061d81e40 SHA512 915a0a18f5c2883625c9441eed6465973eff4f6bf41e08e925c7edaea89ef8f6ee9476d3e06fa38228d4bcb4decaf53e3a7bdb7ec7e899e6250db3e12a9f5f2c DIST apache-tomcat-7.0.109-src.tar.gz 5314401 BLAKE2B 56583caea6879bf8ca5cc02a886de3d7af413032f88d367653e709dc1c8f590e78620c788317bbff4b6e65dd3e242cc26863164ac8e7c87334a22636f3ed0703 SHA512 ecf9c0bee0e3e1aa24f299fe633705c5a2f6aa264d9e4968cfc96aa5d0a425c2b0ff07765a8b6c67221766733bdfaed6e6c6377a8d0870d889e7063ce90a46ce -DIST apache-tomcat-8.5.76-src.tar.gz 5961741 BLAKE2B 4c661c2f753edac48c28fdec3caa06c487e1546feb91f2d69003a4d9f71fb023eb2314520bb156f3087656d655acdfdbdff3f68cd3f81d0d9dfbb2c9577898ee SHA512 b1c1b8c870c77e46969fe64acc71194d37605e5ccda87d105186d8070ec2dd0b7b9c64cf2f9b276db140fd3927832405123018f6fe8f46c0ebda50af6404d8b9 DIST apache-tomcat-8.5.77-src.tar.gz 5963037 BLAKE2B 63192409b148cf0691e6ad22180e4f79d8603e89633598ee3f1dcfdd7d55b88530ecb1aa7c585920e086a7582dea78fcbcd1498ed2552e0f8d17127658769f66 SHA512 a0d2f77540b5370e09d03d04340e0c7f539eb5761b84ea3c8ef924e2a3e7f9528b3ed83a0c8e413bc9335cee6052135788e48e30d95f231ba3ade7f0b53ec157 DIST apache-tomcat-8.5.78-src.tar.gz 5972826 BLAKE2B 93acb2e997a877a2195642da7d896ec4f08bebd83aa12d868607056c23722bdb90147814173dde17fc142a9e4e434e4570a15ebfa1f8b1c7911a16408728b4bb SHA512 b58fdaa57420fcf7759420fba26bfd6edaa5174f5d3a81fdf8783f19d5385e2502d2ad4bfa0e4a77c6a084bf6d97a6d3cd274ab0ab3f2311d23079e273c41b32 -DIST apache-tomcat-9.0.59-src.tar.gz 6142359 BLAKE2B 26dee501a374e54280237dbe392924ac89e3e4b331a11b30c2e0923ac38fa16bb52c02dfc8a9f3597fb0ee169ae2835ac254eab745d1e2ab1e64cfed6395d0c3 SHA512 cea0125ca9b90b247ed114fa7b2e9c63da38b1ef97b3a373a43ed0d775764178534a4014b254219c8c5a26575eaf0ddc25ebc1e276b2ad5086ef3406627f1c80 DIST apache-tomcat-9.0.60-src.tar.gz 6143845 BLAKE2B af7061854659de06afa6a7cf6380c4be4375e18bec896049bf468ddb9139794170271454af4712ade5099b8d46ed7c8d642e9c5f37ea168f0e31394a5128beeb SHA512 e5cb12fb134ff0a59e01a30fbcabc350ddbef6959494176848c2858c3c68444bc520153e00fdcdecb0eefbe7f69876c2965fedbffeeb0aeda7931dc1c11b0de5 DIST apache-tomcat-9.0.62-src.tar.gz 6156545 BLAKE2B 414f4f7193a8db2bb3d0abcbd2d8c30ede5783e83ba01229ffb322e9bf6b08d2fb10d83ce4742d9e6a4ebc50c9b047679ae798fbd3db8ae165f76d2782034d71 SHA512 7e9cad2703473d9f096009c464b28d54d3765259fab1923ef8c9b1cbfa231fa51cedadfe771a3a95abffd258759a71023e036bda78b949440a5e826fbd4e9e09 diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.17.ebuild b/dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.17.ebuild deleted file mode 100644 index 440d44e0a658..000000000000 --- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.17.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -JAVA_PKG_IUSE="source" - -inherit java-pkg-2 java-pkg-simple - -MY_A="apache-${PN}-${PV}-src" -MY_P="${MY_A/-servlet-api/}" -DESCRIPTION="Tomcat's Servlet API 5.0/JSP API 3.0/EL API 4.0 implementation" -HOMEPAGE="https://tomcat.apache.org/" -SRC_URI="mirror://apache/tomcat/tomcat-10/v${PV}/src/${MY_P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="5.0" -KEYWORDS="amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND=">=virtual/jdk-1.8:*" -RDEPEND=">=virtual/jre-1.8:*" - -S="${WORKDIR}/${MY_P}/" - -JAVA_TEST_SRC_DIR="src/test" - -SERVLET_API_JAR="servlet-api.jar" -SERVLET_API_SRC="src/main/servlet-api" -SERVLET_API_RESOURCES="src/resources/servlet-api" -EL_API_JAR="el-api.jar" -EL_API_SRC="src/main/el-api" -EL_API_RESOURCES="src/resources/el-api" -JSP_API_JAR="jsp-api.jar" -JSP_API_SRC="src/main/jsp-api" -JSP_API_RESOURCES="src/resources/jsp-api" - -src_prepare() { - default - - # The sources and also resources are mixed together so we first give it a structure to make it easier to compile and package - mkdir -p ${SERVLET_API_SRC} ${SERVLET_API_RESOURCES} \ - ${EL_API_SRC} ${EL_API_RESOURCES} \ - ${JSP_API_SRC}/jakarta/servlet ${JSP_API_RESOURCES} \ - ${JAVA_TEST_SRC_DIR} || die "Failed to create source directory" - - pushd java || die "Failed to cd to java dir" - - cp --parents -R jakarta/servlet "${S}/${SERVLET_API_SRC}/" || die "Failed to copy servlet-api sources" - mv "${S}/${SERVLET_API_SRC}/jakarta/servlet/jsp" "${S}/${JSP_API_SRC}/jakarta/servlet" || die "Failed to copy jsp-api sources" - cp --parents -R jakarta/el "${S}/${EL_API_SRC}/" || die "Failed to copy el-api sources" - - popd - - for file in $(find src -type f | grep -vE "\.java$"); do - target_dir=$(dirname $file | sed "s%src/main/%src/resources/%g") - mkdir -p ${target_dir} || die "Failed to create resource directory" - mv $file ${target_dir} || die "Failed to move resource file" - done - - mv test/jakarta ${JAVA_TEST_SRC_DIR} || die "Failed to copy test sources" - - java-pkg-2_src_prepare -} - -src_compile() { - JAVA_SRC_DIR="${SERVLET_API_SRC}" - JAVA_RESOURCE_DIRS="${SERVLET_API_RESOURCES}" - JAVA_JAR_FILENAME="${SERVLET_API_JAR}" - java-pkg-simple_src_compile - rm -fr target || die "Failed to remove compiled files" - - JAVA_SRC_DIR="${EL_API_SRC}" - JAVA_RESOURCE_DIRS="${EL_API_RESOURCES}" - JAVA_JAR_FILENAME="${EL_API_JAR}" - java-pkg-simple_src_compile - rm -fr target || die "Failed to remove compiled files" - - JAVA_SRC_DIR="${JSP_API_SRC}" - JAVA_RESOURCE_DIRS="${JSP_API_RESOURCES}" - JAVA_JAR_FILENAME="${JSP_API_JAR}" - JAVA_GENTOO_CLASSPATH_EXTRA="servlet-api.jar:el-api.jar" - java-pkg-simple_src_compile -} - -src_install() { - JAVA_SRC_DIR="${SERVLET_API_SRC}" - JAVA_JAR_FILENAME="${SERVLET_API_JAR}" - java-pkg-simple_src_install - - JAVA_SRC_DIR="${EL_API_SRC}" - JAVA_JAR_FILENAME="${EL_API_JAR}" - java-pkg-simple_src_install - - JAVA_SRC_DIR="${JSP_API_SRC}" - JAVA_JAR_FILENAME="${JSP_API_JAR}" - java-pkg-simple_src_install -} diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.18.ebuild b/dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.18.ebuild index 85932d9cf7d3..440d44e0a658 100644 --- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.18.ebuild +++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.18.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://apache/tomcat/tomcat-10/v${PV}/src/${MY_P}.tar.gz" LICENSE="Apache-2.0" SLOT="5.0" -KEYWORDS="~amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" IUSE="" DEPEND=">=virtual/jdk-1.8:*" diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.76.ebuild b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.76.ebuild deleted file mode 100644 index 888295412849..000000000000 --- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.76.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -JAVA_PKG_IUSE="source" - -inherit java-pkg-2 java-pkg-simple - -MY_A="apache-${P}-src" -MY_P="${MY_A/-servlet-api/}" -DESCRIPTION="Tomcat's Servlet API 3.1/JSP API 2.3/EL API 3.0 implementation" -HOMEPAGE="https://tomcat.apache.org/" -SRC_URI="mirror://apache/tomcat/tomcat-8/v${PV}/src/${MY_P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="3.1" -KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND=">=virtual/jdk-1.8:*" -RDEPEND=">=virtual/jre-1.8:*" - -S="${WORKDIR}/${MY_P}/" - -JAVA_TEST_SRC_DIR="src/test" - -SERVLET_API_JAR="servlet-api.jar" -SERVLET_API_SRC="src/main/servlet-api" -SERVLET_API_RESOURCES="src/resources/servlet-api" -EL_API_JAR="el-api.jar" -EL_API_SRC="src/main/el-api" -EL_API_RESOURCES="src/resources/el-api" -JSP_API_JAR="jsp-api.jar" -JSP_API_SRC="src/main/jsp-api" -JSP_API_RESOURCES="src/resources/jsp-api" - -src_prepare() { - default - - # The sources and also resources are mixed together so we first give it a structure to make it easier to compila and package - - mkdir -p ${SERVLET_API_SRC} ${SERVLET_API_RESOURCES} \ - ${EL_API_SRC} ${EL_API_RESOURCES} \ - ${JSP_API_SRC}/javax/servlet ${JSP_API_RESOURCES} \ - ${JAVA_TEST_SRC_DIR} || die "Failed to create source directory" - - pushd java || die "Failed to cd to java dir" - - cp --parents -R javax/servlet "${S}/${SERVLET_API_SRC}/" || die "Failed to copy servlet-api sources" - mv "${S}/${SERVLET_API_SRC}/javax/servlet/jsp" "${S}/${JSP_API_SRC}/javax/servlet" || die "Failed to copy jsp-api sources" - cp --parents -R javax/el "${S}/${EL_API_SRC}/" || die "Failed to copy el-api sources" - - popd - - for file in $(find src -type f | grep -vE "\.java$"); do - target_dir=$(dirname $file | sed "s%src/main/%src/resources/%g") - mkdir -p ${target_dir} || die "Failed to create resource directory" - mv $file ${target_dir} || die "Failed to move resource file" - done - - mv test/javax ${JAVA_TEST_SRC_DIR} || die "Failed to copy test sources" - - java-pkg-2_src_prepare -} - -src_compile() { - JAVA_SRC_DIR="${SERVLET_API_SRC}" - JAVA_RESOURCE_DIRS="${SERVLET_API_RESOURCES}" - JAVA_JAR_FILENAME="${SERVLET_API_JAR}" - java-pkg-simple_src_compile - rm -fr target || die "Failed to remove compiled files" - - JAVA_SRC_DIR="${EL_API_SRC}" - JAVA_RESOURCE_DIRS="${EL_API_RESOURCES}" - JAVA_JAR_FILENAME="${EL_API_JAR}" - java-pkg-simple_src_compile - rm -fr target || die "Failed to remove compiled files" - - JAVA_SRC_DIR="${JSP_API_SRC}" - JAVA_RESOURCE_DIRS="${JSP_API_RESOURCES}" - JAVA_JAR_FILENAME="${JSP_API_JAR}" - JAVA_GENTOO_CLASSPATH_EXTRA="servlet-api.jar:el-api.jar" - java-pkg-simple_src_compile -} - -src_install() { - JAVA_SRC_DIR="${SERVLET_API_SRC}" - JAVA_JAR_FILENAME="${SERVLET_API_JAR}" - java-pkg-simple_src_install - - JAVA_SRC_DIR="${EL_API_SRC}" - JAVA_JAR_FILENAME="${EL_API_JAR}" - java-pkg-simple_src_install - - JAVA_SRC_DIR="${JSP_API_SRC}" - JAVA_JAR_FILENAME="${JSP_API_JAR}" - java-pkg-simple_src_install -} diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.77.ebuild b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.77.ebuild index e750432a83bb..888295412849 100644 --- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.77.ebuild +++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.77.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://apache/tomcat/tomcat-8/v${PV}/src/${MY_P}.tar.gz" LICENSE="Apache-2.0" SLOT="3.1" -KEYWORDS="~amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" IUSE="" DEPEND=">=virtual/jdk-1.8:*" diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.59.ebuild b/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.59.ebuild deleted file mode 100644 index f1c865a27bec..000000000000 --- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.59.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -JAVA_PKG_IUSE="source" - -inherit java-pkg-2 java-pkg-simple - -MY_A="apache-${PN}-${PV}-src" -MY_P="${MY_A/-servlet-api/}" -DESCRIPTION="Tomcat's Servlet API 4.0/JSP API 2.3/EL API 3.0 implementation" -HOMEPAGE="https://tomcat.apache.org/" -SRC_URI="mirror://apache/tomcat/tomcat-9/v${PV}/src/${MY_P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="4.0" -KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND=">=virtual/jdk-1.8:*" -RDEPEND=">=virtual/jre-1.8:*" - -S="${WORKDIR}/${MY_P}/" - -JAVA_TEST_SRC_DIR="src/test" - -SERVLET_API_JAR="servlet-api.jar" -SERVLET_API_SRC="src/main/servlet-api" -SERVLET_API_RESOURCES="src/resources/servlet-api" -EL_API_JAR="el-api.jar" -EL_API_SRC="src/main/el-api" -EL_API_RESOURCES="src/resources/el-api" -JSP_API_JAR="jsp-api.jar" -JSP_API_SRC="src/main/jsp-api" -JSP_API_RESOURCES="src/resources/jsp-api" - -src_prepare() { - default - - # The sources and also resources are mixed together so we first give it a structure to make it easier to compila and package - - mkdir -p ${SERVLET_API_SRC} ${SERVLET_API_RESOURCES} \ - ${EL_API_SRC} ${EL_API_RESOURCES} \ - ${JSP_API_SRC}/javax/servlet ${JSP_API_RESOURCES} \ - ${JAVA_TEST_SRC_DIR} || die "Failed to create source directory" - - pushd java || die "Failed to cd to java dir" - - cp --parents -R javax/servlet "${S}/${SERVLET_API_SRC}/" || die "Failed to copy servlet-api sources" - mv "${S}/${SERVLET_API_SRC}/javax/servlet/jsp" "${S}/${JSP_API_SRC}/javax/servlet" || die "Failed to copy jsp-api sources" - cp --parents -R javax/el "${S}/${EL_API_SRC}/" || die "Failed to copy el-api sources" - - popd - - for file in $(find src -type f | grep -vE "\.java$"); do - target_dir=$(dirname $file | sed "s%src/main/%src/resources/%g") - mkdir -p ${target_dir} || die "Failed to create resource directory" - mv $file ${target_dir} || die "Failed to move resource file" - done - - mv test/javax ${JAVA_TEST_SRC_DIR} || die "Failed to copy test sources" - - java-pkg-2_src_prepare -} - -src_compile() { - JAVA_SRC_DIR="${SERVLET_API_SRC}" - JAVA_RESOURCE_DIRS="${SERVLET_API_RESOURCES}" - JAVA_JAR_FILENAME="${SERVLET_API_JAR}" - java-pkg-simple_src_compile - rm -fr target || die "Failed to remove compiled files" - - JAVA_SRC_DIR="${EL_API_SRC}" - JAVA_RESOURCE_DIRS="${EL_API_RESOURCES}" - JAVA_JAR_FILENAME="${EL_API_JAR}" - java-pkg-simple_src_compile - rm -fr target || die "Failed to remove compiled files" - - JAVA_SRC_DIR="${JSP_API_SRC}" - JAVA_RESOURCE_DIRS="${JSP_API_RESOURCES}" - JAVA_JAR_FILENAME="${JSP_API_JAR}" - JAVA_GENTOO_CLASSPATH_EXTRA="servlet-api.jar:el-api.jar" - java-pkg-simple_src_compile -} - -src_install() { - JAVA_SRC_DIR="${SERVLET_API_SRC}" - JAVA_JAR_FILENAME="${SERVLET_API_JAR}" - java-pkg-simple_src_install - - JAVA_SRC_DIR="${EL_API_SRC}" - JAVA_JAR_FILENAME="${EL_API_JAR}" - java-pkg-simple_src_install - - JAVA_SRC_DIR="${JSP_API_SRC}" - JAVA_JAR_FILENAME="${JSP_API_JAR}" - java-pkg-simple_src_install -} diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.60.ebuild b/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.60.ebuild index 7e30009f94dc..f1c865a27bec 100644 --- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.60.ebuild +++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.60.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://apache/tomcat/tomcat-9/v${PV}/src/${MY_P}.tar.gz" LICENSE="Apache-2.0" SLOT="4.0" -KEYWORDS="~amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" IUSE="" DEPEND=">=virtual/jdk-1.8:*" diff --git a/dev-java/univocity-parsers/metadata.xml b/dev-java/univocity-parsers/metadata.xml index 155f678863f2..04372c0a4571 100644 --- a/dev-java/univocity-parsers/metadata.xml +++ b/dev-java/univocity-parsers/metadata.xml @@ -1,5 +1,5 @@ - + java@gentoo.org diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz index 5c478cc1642f..49b40b8831f1 100644 Binary files a/dev-lang/Manifest.gz and b/dev-lang/Manifest.gz differ diff --git a/dev-lang/ammonite-repl-bin/Manifest b/dev-lang/ammonite-repl-bin/Manifest index a3be4ef6a53b..05043a4d057f 100644 --- a/dev-lang/ammonite-repl-bin/Manifest +++ b/dev-lang/ammonite-repl-bin/Manifest @@ -1,2 +1,3 @@ DIST ammonite-2.4.1 48567893 BLAKE2B d7096170c1072aabdc2b4374fdc89bee390a04fc01748c985eeb8be9cb2bc5d09334644c21b3bb4d2eab436b7df1ff8c915a26cde76d38a5765b29673d09ccf9 SHA512 7e65c7789c42e1ac23455dd27702baf80c3f7c554403f3a34bb939283328b719212af0a824152875e09a6120cc6c67405c1dce0e5da1d07e4e185002ae4672ca DIST ammonite-repl-bin-2.5.2 48408913 BLAKE2B 0ee4111ca8bf1dd9fc7f1749b946144e57e29638caf060fedbe93acb93fdda83c3c8e7d75691083c6c64b67fbec0361bd8ff94d7c9d3c5310ea485ee94425da0 SHA512 80f5fd4d0f569bbecd1f4073363a12a8877c17ed9b172b4ab3198ea10d9b1afe4f67f8bba1d8cd9eced3b3768c55231b6560394d2bb2d3e1f4316a2f4b5a8198 +DIST ammonite-repl-bin-2.5.3 48419355 BLAKE2B dece0bec04f5d394470dbf393570a86674488a7191fb3285cfb4c97734e64a0bbaef1197535f134bbf8b1f03ab5847e14e9053a68649a166cdec93bee34acf27 SHA512 3ad296f1c2a5b8a6b6a7772f2f2bebab71a4e41b3e3a9b66ef65af5b39f3db6866cc07b620b0f4e64cdc21f059e17494541a03af4314f759187744229f24bee9 diff --git a/dev-lang/ammonite-repl-bin/ammonite-repl-bin-2.5.3.ebuild b/dev-lang/ammonite-repl-bin/ammonite-repl-bin-2.5.3.ebuild new file mode 100644 index 000000000000..3cb6ca4d0ff0 --- /dev/null +++ b/dev-lang/ammonite-repl-bin/ammonite-repl-bin-2.5.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +SCALA_VERSION="2.13" + +DESCRIPTION="Scala language-based scripting and REPL" +HOMEPAGE="https://ammonite.io/" +SRC_URI="https://github.com/com-lihaoyi/Ammonite/releases/download/${PV}/${SCALA_VERSION}-${PV} -> ${P}" + +KEYWORDS="~amd64 ~x86" +LICENSE="MIT" +SLOT="0" + +S="${WORKDIR}" + +RDEPEND=">=virtual/jre-1.8:*" + +src_unpack() { + : +} + +src_install() { + newbin "${DISTDIR}"/${P} amm +} diff --git a/dev-lang/clipsjni/clipsjni-6.40.ebuild b/dev-lang/clipsjni/clipsjni-6.40-r1.ebuild similarity index 97% rename from dev-lang/clipsjni/clipsjni-6.40.ebuild rename to dev-lang/clipsjni/clipsjni-6.40-r1.ebuild index a6d8f93e099d..5e5cd3a37252 100644 --- a/dev-lang/clipsjni/clipsjni-6.40.ebuild +++ b/dev-lang/clipsjni/clipsjni-6.40-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 JAVA_PKG_IUSE="source" diff --git a/dev-lang/duktape/files/duktape.pc b/dev-lang/duktape/files/duktape.pc deleted file mode 100644 index 56eff91ada9e..000000000000 --- a/dev-lang/duktape/files/duktape.pc +++ /dev/null @@ -1,10 +0,0 @@ -prefix=/usr -exec_prefix=${prefix} -libdir=${exec_prefix}/LIBDIR -includedir=${prefix}/include - -Name: duktape -Description: Embeddable Javascript engine -Version: VERSION -Libs: -L${libdir} -lduktape -Cflags: -I${includedir} diff --git a/dev-lang/erlang/erlang-23.3.4.12.ebuild b/dev-lang/erlang/erlang-23.3.4.12.ebuild index 689ece693ee0..e68adcea8ab9 100644 --- a/dev-lang/erlang/erlang-23.3.4.12.ebuild +++ b/dev-lang/erlang/erlang-23.3.4.12.ebuild @@ -22,7 +22,7 @@ LICENSE="Apache-2.0" # same build of ERTS that was used when compiling the code. See # http://erlang.org/doc/system_principles/misc.html for more information. SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" IUSE="doc emacs +hipe java +kpoll odbc sctp ssl systemd tk wxwidgets" RDEPEND=" diff --git a/dev-lang/erlang/erlang-24.3.3.ebuild b/dev-lang/erlang/erlang-24.3.3.ebuild index d08bb337a5c2..870060fa5a8f 100644 --- a/dev-lang/erlang/erlang-24.3.3.ebuild +++ b/dev-lang/erlang/erlang-24.3.3.ebuild @@ -22,7 +22,7 @@ LICENSE="Apache-2.0" # same build of ERTS that was used when compiling the code. See # http://erlang.org/doc/system_principles/misc.html for more information. SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" IUSE="doc emacs java +kpoll odbc sctp ssl systemd tk wxwidgets" RDEPEND=" diff --git a/dev-lang/ocaml/ocaml-4.14.0.ebuild b/dev-lang/ocaml/ocaml-4.14.0.ebuild index d54fe96af6c3..b68dee9dfbaa 100644 --- a/dev-lang/ocaml/ocaml-4.14.0.ebuild +++ b/dev-lang/ocaml/ocaml-4.14.0.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="Programming language supporting functional, imperative & object-ori LICENSE="QPL-1.0 LGPL-2" SLOT="0/$(ver_cut 1-2)" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" IUSE="emacs flambda latex +ocamlopt xemacs" RDEPEND="sys-libs/binutils-libs:=" diff --git a/dev-lang/perl/perl-5.34.0-r6.ebuild b/dev-lang/perl/perl-5.34.0-r6.ebuild index c4bc6a0a3d09..6d2a078601ea 100644 --- a/dev-lang/perl/perl-5.34.0-r6.ebuild +++ b/dev-lang/perl/perl-5.34.0-r6.ebuild @@ -52,7 +52,7 @@ LICENSE="|| ( Artistic GPL-1+ )" SLOT="0/${SUBSLOT}" if [[ "${PV##*.}" != "9999" ]] && [[ "${PV/rc//}" == "${PV}" ]] ; then -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" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 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" diff --git a/dev-lang/perl/perl-5.34.0-r7.ebuild b/dev-lang/perl/perl-5.34.0-r7.ebuild index b11f241e679c..73c2004f4b50 100644 --- a/dev-lang/perl/perl-5.34.0-r7.ebuild +++ b/dev-lang/perl/perl-5.34.0-r7.ebuild @@ -52,7 +52,7 @@ LICENSE="|| ( Artistic GPL-1+ )" SLOT="0/${SUBSLOT}" if [[ "${PV##*.}" != "9999" ]] && [[ "${PV/rc//}" == "${PV}" ]] ; then -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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~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 quadmath" diff --git a/dev-lang/php/Manifest b/dev-lang/php/Manifest index 4dada26aa33b..c8128571e88d 100644 --- a/dev-lang/php/Manifest +++ b/dev-lang/php/Manifest @@ -1,5 +1,7 @@ DIST php-7.4.28.tar.xz 10418352 BLAKE2B 27673b5a891723a4c20a19fa22708f733b8ff12e16e5bbd727ed841845bcb8802ea98e8c2a4936b184704cde96f8725a2c338470ba573e8d3a0732a3f449e7e5 SHA512 e7fa281a3be9ec46b7fa69619fd417fc04200dc64fd153f9670184d84b0aa3d5f3698536cf18476a96d8a42ba40b856ff57ab18e8e8a485dd9b95467d1952fa8 DIST php-8.0.16.tar.xz 10864076 BLAKE2B e5820ecd40632e458a0ada1d1886cd054520ab7f1492766fd8d5c3561977359abddd886b47f7d7255bcc80d00c96afeceb5cbd515eb779ed4ac15db9e01f1fe3 SHA512 68952638f2965752be26dc0a49f938eb4f251f2d5a7b309a2983c4f9bc064738c9da2e8015ec9b2ecc0dc06e014ace3c0348222166b898a4a38c31ab8b0fd139 DIST php-8.0.17.tar.xz 10771016 BLAKE2B ed2b9fb4f8c2210e112d27e43acff2a71c57802c5fd72429ffc716f6b7666d00a24d35166e5e85d20d7f67e00d5cdae89eaf5d30238a0758b42964e27422507b SHA512 9e1e44860be8f5ddf0c264f791e2c8936ca3abd02c18c432ff340057e94f0fbc5f40f1ee8f4feee60416eb4ce712f43764d3757f2e667dc78150d2d86d3c02e3 +DIST php-8.0.18.tar.xz 10871224 BLAKE2B 89477d4b93de93fe9ad9a0c90864381038d93967018f8452cbc5a56b8ca11972976447a8fcd75368b8991cd2dfffaa392cb8962dc4d5b2dc184c3a6ed87277aa SHA512 fda43f5bcb2aba7c2777331b41d2d8bb35c0b8508feef1a2fbff15105acfd7a41e0a4f1f9111e5cf1091e5df04ac4c737ec939c5bd5d85535b3b3ebb0450bc21 DIST php-8.1.3.tar.xz 11751576 BLAKE2B e55f5d3742d233f6b028c6ca97181ea4fb55331204bbea2f58f2e440a6f5c520343addb5bc05ed0c407d6cf9f1bda3754c2039195154b90bb903ddc7a13ca49a SHA512 230f70c4f23ac69b52063b91de5ea866e30a84b5ac8d0021e35baebf210fe432fb6c46264a9a2808bf0f0d2003f4c3db974c2c480718a5607c5e4d52379e9d9d DIST php-8.1.4.tar.xz 11700448 BLAKE2B 472f053bd9544403f6cffacb15b35af16e4165f984f4a651d0c2983e3e84ea8301123796f3fd2ba4c20d97cf6fa0fe02326c63d37d8eb1dabd756a2f858944de SHA512 63eb05c20ebeee9377f7b72aa5ae6ff4c5f04b8612b9f192f4a849a4f2db74691343e2279b9dfc7c79d0b42a7dc17ab4ed11ed66c018c96224cf1663eaab728b +DIST php-8.1.5.tar.xz 11752684 BLAKE2B b81dcad2fb188cbae261af83ffea764826bd12ec59e888a735102f491c53545aafbf9d85fa3c7d9277d15474c5bcf0e888d584f83ecc82d607fe969c7b15e73e SHA512 184d3738dbd8207a84cfb11dcc1edf352c57da49f484fe791d8c786ab8921189fdaf459b98e3bd6a5f73ae968510e8a8566f41a69640c74adb35363d6c07c439 diff --git a/dev-lang/php/php-8.0.18.ebuild b/dev-lang/php/php-8.0.18.ebuild new file mode 100644 index 000000000000..e748ac33a469 --- /dev/null +++ b/dev-lang/php/php-8.0.18.ebuild @@ -0,0 +1,758 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +WANT_AUTOMAKE="none" + +inherit flag-o-matic systemd autotools + +MY_PV=${PV/_rc/rc} +DESCRIPTION="The PHP language runtime engine" +HOMEPAGE="https://www.php.net/" +SRC_URI="https://www.php.net/distributions/${P}.tar.xz" + +LICENSE="PHP-3.01 + BSD + Zend-2.0 + bcmath? ( LGPL-2.1+ ) + fpm? ( BSD-2 ) + gd? ( gd ) + unicode? ( BSD-2 LGPL-2.1 )" + +SLOT="$(ver_cut 1-2)" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" + +S="${WORKDIR}/${PN}-${MY_PV}" + +# We can build the following SAPIs in the given order +SAPIS="embed cli cgi fpm apache2 phpdbg" + +# SAPIs and SAPI-specific USE flags (cli SAPI is default on): +IUSE="${IUSE} + ${SAPIS/cli/+cli} + threads" + +IUSE="${IUSE} acl apparmor 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 +jit kerberos ldap ldap-sasl libedit 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 xpm xslt zip zlib" + +# Without USE=readline or libedit, the interactive "php -a" CLI will hang. +# The Oracle instant client provides its own incompatible ldap library. +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 ) + xmlreader? ( xml ) + xmlwriter? ( xml ) + xslt? ( xml ) + ldap-sasl? ( ldap ) + oci8-instant-client? ( !ldap ) + qdbm? ( !gdbm ) + session-mm? ( session !threads ) + mysql? ( || ( mysqli pdo ) ) + firebird? ( pdo ) + mssql? ( pdo ) +" + +RESTRICT="!test? ( test )" + +# The supported (that is, autodetected) versions of BDB are listed in +# the ./configure script. Other versions *work*, but we need to stick to +# the ones that can be detected to avoid a repeat of bug #564824. +COMMON_DEPEND=" + >=app-eselect/eselect-php-0.9.7[apache2?,fpm?] + >=dev-libs/libpcre2-10.30[jit?,unicode] + fpm? ( acl? ( sys-apps/acl ) apparmor? ( sys-libs/libapparmor ) ) + apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) + argon2? ( app-crypt/argon2:= ) + berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:4.8 ) ) + bzip2? ( app-arch/bzip2:0= ) + cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) + coverage? ( dev-util/lcov ) + curl? ( >=net-misc/curl-7.29.0 ) + enchant? ( app-text/enchant:2 ) + ffi? ( >=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[sdk] ) + odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( >=dev-db/unixODBC-1.8.13 ) ) + postgres? ( >=dev-db/postgresql-9.1:* ) + 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:=[-minimal] ) + spell? ( >=app-text/aspell-0.50 ) + sqlite? ( >=dev-db/sqlite-3.7.6.3 ) + ssl? ( >=dev-libs/openssl-1.0.1:0= ) + tidy? ( 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.9.0 ) + xpm? ( x11-libs/libXpm ) + xslt? ( dev-libs/libxslt ) + zip? ( >=dev-libs/libzip-1.2.0:= ) + zlib? ( >=sys-libs/zlib-1.2.0.4:0= ) +" + +RDEPEND="${COMMON_DEPEND} + virtual/mta + fpm? ( + selinux? ( sec-policy/selinux-phpfpm ) + systemd? ( sys-apps/systemd ) )" + +# Bison isn't actually needed when building from a release tarball +# However, the configure script will warn if it's absent or if you +# have an incompatible version installed. See bug 593278. +DEPEND="${COMMON_DEPEND} + app-arch/xz-utils + >=sys-devel/bison-3.0.1" + +BDEPEND="virtual/pkgconfig" + +PHP_MV="$(ver_cut 1)" + +PATCHES=( + "${FILESDIR}/php-iodbc-header-location.patch" + "${FILESDIR}/php80-firebird-warnings.patch" +) + +php_install_ini() { + local phpsapi="${1}" + + # work out where we are installing the ini file + php_set_ini_dir "${phpsapi}" + + # Always install the production INI file, bug 611214. + local phpinisrc="php.ini-production-${phpsapi}" + cp php.ini-production "${phpinisrc}" || die + + # default to /tmp for save_path, bug #282768 + sed -e 's|^;session.save_path .*$|session.save_path = "'"${EPREFIX}"'/tmp"|g' -i "${phpinisrc}" || die + + # Set the extension dir + sed -e "s|^extension_dir .*$|extension_dir = ${extension_dir}|g" \ + -i "${phpinisrc}" || die + + # Set the include path to point to where we want to find PEAR packages + sed -e 's|^;include_path = ".:/php/includes".*|include_path = ".:'"${EPREFIX}"'/usr/share/php'${PHP_MV}':'"${EPREFIX}"'/usr/share/php"|' -i "${phpinisrc}" || die + + insinto "${PHP_INI_DIR#${EPREFIX}}" + newins "${phpinisrc}" php.ini + + elog "Installing php.ini for ${phpsapi} into ${PHP_INI_DIR#${EPREFIX}}" + elog + + dodir "${PHP_EXT_INI_DIR#${EPREFIX}}" + dodir "${PHP_EXT_INI_DIR_ACTIVE#${EPREFIX}}" + + if use opcache; then + elog "Adding opcache to $PHP_EXT_INI_DIR" + echo "zend_extension=${PHP_DESTDIR}/$(get_libdir)/opcache.so" >> \ + "${D}/${PHP_EXT_INI_DIR}"/opcache.ini + dosym "../ext/opcache.ini" \ + "${PHP_EXT_INI_DIR_ACTIVE#${EPREFIX}}/opcache.ini" + fi + + # SAPI-specific handling + if [[ "${sapi}" == "fpm" ]] ; then + einfo "Installing FPM config files php-fpm.conf and www.conf" + insinto "${PHP_INI_DIR#${EPREFIX}}" + doins sapi/fpm/php-fpm.conf + insinto "${PHP_INI_DIR#${EPREFIX}}/fpm.d" + doins sapi/fpm/www.conf + fi + + dodoc php.ini-{development,production} +} + +php_set_ini_dir() { + PHP_INI_DIR="${EPREFIX}/etc/php/${1}-php${SLOT}" + PHP_EXT_INI_DIR="${PHP_INI_DIR}/ext" + PHP_EXT_INI_DIR_ACTIVE="${PHP_INI_DIR}/ext-active" +} + +src_prepare() { + default + + # In php-7.x, the FPM pool configuration files have been split off + # of the main config. By default the pool config files go in + # e.g. /etc/php-fpm.d, which isn't slotted. So here we move the + # include directory to a subdirectory "fpm.d" of $PHP_INI_DIR. Later + # we'll install the pool configuration file "www.conf" there. + php_set_ini_dir fpm + sed -i "s~^include=.*$~include=${PHP_INI_DIR}/fpm.d/*.conf~" \ + sapi/fpm/php-fpm.conf.in \ + || die 'failed to move the include directory in php-fpm.conf' + + # Emulate buildconf to support cross-compilation + rm -fr aclocal.m4 autom4te.cache config.cache \ + configure main/php_config.h.in || die + eautoconf --force + eautoheader + + # Remove false positive test failures + # stream_isatty fails due to portage redirects + # curl tests here fail for network sandbox issues + # session tests here fail because we set the session directory to $T + rm tests/output/stream_isatty_err.phpt \ + tests/output/stream_isatty_out-err.phpt \ + tests/output/stream_isatty_out.phpt \ + ext/curl/tests/bug76675.phpt \ + ext/curl/tests/bug77535.phpt \ + ext/curl/tests/curl_error_basic.phpt \ + ext/session/tests/bug74514.phpt \ + ext/session/tests/bug74936.phpt || die + +} + +src_configure() { + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn + + PHP_DESTDIR="${EPREFIX}/usr/$(get_libdir)/php${SLOT}" + + # The php-fpm config file wants localstatedir to be ${EPREFIX}/var + # and not the Gentoo default ${EPREFIX}/var/lib. See bug 572002. + local our_conf=( + --prefix="${PHP_DESTDIR}" + --mandir="${PHP_DESTDIR}/man" + --infodir="${PHP_DESTDIR}/info" + --libdir="${PHP_DESTDIR}/lib" + --with-libdir="$(get_libdir)" + --localstatedir="${EPREFIX}/var" + --without-pear + $(use_enable threads zts) + ) + + our_conf+=( + $(use_with apparmor fpm-apparmor) + $(use_with argon2 password-argon2 "${EPREFIX}/usr") + $(use_enable bcmath) + $(use_with bzip2 bz2 "${EPREFIX}/usr") + $(use_enable calendar) + $(use_enable coverage gcov) + $(use_enable ctype) + $(use_with curl) + $(use_enable xml dom) + $(use_with enchant) + $(use_enable exif) + $(use_with ffi) + $(use_enable fileinfo) + $(use_enable filter) + $(use_enable ftp) + $(use_with nls gettext "${EPREFIX}/usr") + $(use_with gmp gmp "${EPREFIX}/usr") + $(use_with mhash mhash "${EPREFIX}/usr") + $(use_with iconv iconv \ + $(use elibc_glibc || use elibc_musl || echo "${EPREFIX}/usr")) + $(use_enable intl) + $(use_enable ipv6) + $(use_with kerberos) + $(use_with xml libxml) + $(use_enable unicode mbstring) + $(use_with ssl openssl) + $(use_enable pcntl) + $(use_enable phar) + $(use_enable pdo) + $(use_enable opcache) + $(use_with postgres pgsql "${EPREFIX}/usr") + $(use_enable posix) + $(use_with spell pspell "${EPREFIX}/usr") + $(use_enable simplexml) + $(use_enable sharedmem shmop) + $(use_with snmp snmp "${EPREFIX}/usr") + $(use_enable soap) + $(use_enable sockets) + $(use_with sodium) + $(use_with sqlite sqlite3) + $(use_enable sysvipc sysvmsg) + $(use_enable sysvipc sysvsem) + $(use_enable sysvipc sysvshm) + $(use_with tidy tidy "${EPREFIX}/usr") + $(use_enable tokenizer) + $(use_enable xml) + $(use_enable xmlreader) + $(use_enable xmlwriter) + $(use_with xslt xsl) + $(use_with zip) + $(use_with zlib zlib "${EPREFIX}/usr") + $(use_enable debug) + ) + + # DBA support + if use cdb || use berkdb || use flatfile || use gdbm || use inifile \ + || use qdbm || use lmdb || use tokyocabinet ; then + our_conf+=( "--enable-dba" ) + fi + + # DBA drivers support + our_conf+=( + $(use_with cdb) + $(use_with berkdb db4 "${EPREFIX}/usr") + $(use_enable flatfile) + $(use_with gdbm gdbm "${EPREFIX}/usr") + $(use_enable inifile) + $(use_with qdbm qdbm "${EPREFIX}/usr") + $(use_with tokyocabinet tcadb "${EPREFIX}/usr") + $(use_with lmdb lmdb "${EPREFIX}/usr") + ) + + # Support for the GD graphics library + our_conf+=( + $(use_with truetype freetype) + $(use_enable cjk gd-jis-conv) + $(use_with gd jpeg) + $(use_with xpm) + $(use_with webp) + ) + # enable gd last, so configure can pick up the previous settings + our_conf+=( $(use_enable gd) ) + + # IMAP support + if use imap ; then + our_conf+=( + $(use_with imap imap "${EPREFIX}/usr") + $(use_with ssl imap-ssl "${EPREFIX}/usr") + ) + fi + + # LDAP support + if use ldap ; then + our_conf+=( + $(use_with ldap ldap "${EPREFIX}/usr") + $(use_with ldap-sasl) + ) + fi + + # MySQL support + local mysqllib="mysqlnd" + local mysqlilib="mysqlnd" + + our_conf+=( $(use_with mysqli mysqli "${mysqlilib}") ) + + local mysqlsock="${EPREFIX}/var/run/mysqld/mysqld.sock" + if use mysql || use mysqli ; then + our_conf+=( $(use_with mysql mysql-sock "${mysqlsock}") ) + fi + + # ODBC support + if use odbc && use iodbc ; then + our_conf+=( + --without-unixODBC + --with-iodbc + $(use_with pdo pdo-odbc "iODBC,${EPREFIX}/usr") + ) + elif use odbc ; then + our_conf+=( + --with-unixODBC="${EPREFIX}/usr" + --without-iodbc + $(use_with pdo pdo-odbc "unixODBC,${EPREFIX}/usr") + ) + else + our_conf+=( + --without-unixODBC + --without-iodbc + --without-pdo-odbc + ) + fi + + # Oracle support + our_conf+=( $(use_with oci8-instant-client oci8) ) + + # PDO support + if use pdo ; then + our_conf+=( + $(use_with mssql pdo-dblib "${EPREFIX}/usr") + $(use_with mysql pdo-mysql "${mysqllib}") + $(use_with postgres pdo-pgsql) + $(use_with sqlite pdo-sqlite) + $(use_with firebird pdo-firebird "${EPREFIX}/usr") + $(use_with oci8-instant-client pdo-oci) + ) + fi + + # readline/libedit support + our_conf+=( + $(use_with readline readline "${EPREFIX}/usr") + $(use_with libedit) + ) + + # Session support + if use session ; then + our_conf+=( $(use_with session-mm mm "${EPREFIX}/usr") ) + else + our_conf+=( $(use_enable session) ) + fi + + # Use pic for shared modules such as apache2's mod_php + our_conf+=( --with-pic ) + + # we use the system copy of pcre + # --with-external-pcre affects ext/pcre + our_conf+=( + --with-external-pcre + $(use_with jit pcre-jit) + ) + + # Catch CFLAGS problems + # Fixes bug #14067. + # Changed order to run it in reverse for bug #32022 and #12021. + replace-cpu-flags "k6*" "i586" + + # Cache the ./configure test results between SAPIs. + our_conf+=( --cache-file="${T}/config.cache" ) + + # Support user-passed configuration parameters + our_conf+=( ${EXTRA_ECONF:-} ) + + # Support the Apache2 extras, they must be set globally for all + # SAPIs to work correctly, especially for external PHP extensions + + local one_sapi + local sapi + mkdir -p "${WORKDIR}/sapis-build" || die + for one_sapi in $SAPIS ; do + use "${one_sapi}" || continue + php_set_ini_dir "${one_sapi}" + + # The BUILD_DIR variable is used to determine where to output + # the files that autotools creates. This was all originally + # based on the autotools-utils eclass. + BUILD_DIR="${WORKDIR}/sapis-build/${one_sapi}" + cp -a "${S}" "${BUILD_DIR}" || die + cd "${BUILD_DIR}" || die + + local sapi_conf=( + --with-config-file-path="${PHP_INI_DIR}" + --with-config-file-scan-dir="${PHP_EXT_INI_DIR_ACTIVE}" + ) + + for sapi in $SAPIS ; do + case "$sapi" in + cli|cgi|embed|fpm|phpdbg) + if [[ "${one_sapi}" == "${sapi}" ]] ; then + sapi_conf+=( "--enable-${sapi}" ) + if [[ "fpm" == "${sapi}" ]] ; then + sapi_conf+=( + $(use_with acl fpm-acl) + $(use_with systemd fpm-systemd) + ) + fi + else + sapi_conf+=( "--disable-${sapi}" ) + fi + ;; + + apache2) + if [[ "${one_sapi}" == "${sapi}" ]] ; then + sapi_conf+=( --with-apxs2="${EPREFIX}/usr/bin/apxs" ) + else + sapi_conf+=( --without-apxs2 ) + fi + ;; + esac + done + + # Construct the $myeconfargs array by concatenating $our_conf + # (the common args) and $sapi_conf (the SAPI-specific args). + local myeconfargs=( "${our_conf[@]}" ) + myeconfargs+=( "${sapi_conf[@]}" ) + + pushd "${BUILD_DIR}" > /dev/null || die + econf "${myeconfargs[@]}" + popd > /dev/null || die + done +} + +src_compile() { + # snmp seems to run during src_compile, too (bug #324739) + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn + + local sapi + for sapi in ${SAPIS} ; do + if use "${sapi}"; then + cd "${WORKDIR}/sapis-build/$sapi" || \ + die "Failed to change dir to ${WORKDIR}/sapis-build/$1" + emake + fi + done +} + +src_install() { + # see bug #324739 for what happens when we don't have that + addpredict /usr/share/snmp/mibs/.index #nowarn + + # grab the first SAPI that got built and install common files from there + local first_sapi="", sapi="" + for sapi in $SAPIS ; do + if use $sapi ; then + first_sapi=$sapi + break + fi + done + + # Makefile forgets to create this before trying to write to it... + dodir "${PHP_DESTDIR#${EPREFIX}}/bin" + + # Install php environment (without any sapis) + cd "${WORKDIR}/sapis-build/$first_sapi" || die + emake INSTALL_ROOT="${D}" \ + install-build install-headers install-programs + + local extension_dir="$("${ED}/${PHP_DESTDIR#${EPREFIX}}/bin/php-config" --extension-dir)" + + # Create the directory where we'll put version-specific php scripts + keepdir "/usr/share/php${PHP_MV}" + + local file="" + local sapi_list="" + + for sapi in ${SAPIS}; do + if use "${sapi}" ; then + einfo "Installing SAPI: ${sapi}" + cd "${WORKDIR}/sapis-build/${sapi}" || die + + if [[ "${sapi}" == "apache2" ]] ; then + # We're specifically not using emake install-sapi as libtool + # may cause unnecessary relink failures (see bug #351266) + insinto "${PHP_DESTDIR#${EPREFIX}}/apache2/" + newins ".libs/libphp$(get_libname)" \ + "libphp${PHP_MV}$(get_libname)" + keepdir "/usr/$(get_libdir)/apache2/modules" + else + # needed each time, php_install_ini would reset it + local dest="${PHP_DESTDIR#${EPREFIX}}" + into "${dest}" + case "$sapi" in + cli) + source="sapi/cli/php" + # Install the "phar" archive utility. + if use phar ; then + emake INSTALL_ROOT="${D}" install-pharcmd + dosym "..${dest#/usr}/bin/phar" "/usr/bin/phar${SLOT}" + fi + ;; + cgi) + source="sapi/cgi/php-cgi" + ;; + fpm) + source="sapi/fpm/php-fpm" + ;; + embed) + source="libs/libphp$(get_libname)" + ;; + phpdbg) + source="sapi/phpdbg/phpdbg" + ;; + *) + die "unhandled sapi in src_install" + ;; + esac + + if [[ "${source}" == *"$(get_libname)" ]]; then + dolib.so "${source}" + else + dobin "${source}" + local name="$(basename ${source})" + dosym "..${dest#/usr}/bin/${name}" "/usr/bin/${name}${SLOT}" + fi + fi + + php_install_ini "${sapi}" + + # construct correct SAPI string for php-config + # thanks to ferringb for the bash voodoo + if [[ "${sapi}" == "apache2" ]]; then + sapi_list="${sapi_list:+${sapi_list} }apache2handler" + else + sapi_list="${sapi_list:+${sapi_list} }${sapi}" + fi + fi + done + + # Installing opcache module + if use opcache ; then + into "${PHP_DESTDIR#${EPREFIX}}" + dolib.so "modules/opcache$(get_libname)" + fi + + # Install env.d files + newenvd "${FILESDIR}/20php5-envd" "20php${SLOT}" + sed -e "s|/lib/|/$(get_libdir)/|g" -i "${ED}/etc/env.d/20php${SLOT}" || die + sed -e "s|php5|php${SLOT}|g" -i "${ED}/etc/env.d/20php${SLOT}" || die + + # set php-config variable correctly (bug #278439) + sed -e "s:^\(php_sapis=\)\".*\"$:\1\"${sapi_list}\":" -i \ + "${ED}/usr/$(get_libdir)/php${SLOT}/bin/php-config" || die + + if use fpm ; then + if use systemd; then + systemd_newunit "${FILESDIR}/php-fpm_at.service" \ + "php-fpm@${SLOT}.service" + else + systemd_newunit "${FILESDIR}/php-fpm_at-simple.service" \ + "php-fpm@${SLOT}.service" + fi + fi +} + +src_test() { + echo ">>> Test phase [test]: ${CATEGORY}/${PF}" + PHP_BIN="${WORKDIR}/sapis-build/cli/sapi/cli/php" + if [[ ! -x "${PHP_BIN}" ]] ; then + ewarn "Test phase requires USE=cli, skipping" + return + else + export TEST_PHP_EXECUTABLE="${PHP_BIN}" + fi + + if [[ -x "${WORKDIR}/sapis-build/cgi/sapi/cgi/php-cgi" ]] ; then + export TEST_PHP_CGI_EXECUTABLE="${WORKDIR}/sapis-build/cgi/sapi/cgi/php-cgi" + fi + + if [[ -x "${WORKDIR}/sapis-build/phpdbg/sapi/phpdbg/phpdbg" ]] ; then + export TEST_PHPDBG_EXECUTABLE="${WORKDIR}/sapis-build/phpdbg/sapi/phpdbg/phpdbg" + fi + + SKIP_ONLINE_TESTS=1 REPORT_EXIT_STATUS=1 "${TEST_PHP_EXECUTABLE}" -n -d \ + "session.save_path=${T}" \ + "${WORKDIR}/sapis-build/cli/run-tests.php" -n -q -d \ + "session.save_path=${T}" + + for name in ${EXPECTED_TEST_FAILURES}; do + mv "${name}.out" "${name}.out.orig" 2>/dev/null || die + done + + local failed="$(find -name '*.out')" + if [[ ${failed} != "" ]] ; then + ewarn "The following test cases failed unexpectedly:" + for name in ${failed}; do + ewarn " ${name/.out/}" + done + else + einfo "No unexpected test failures, all fine" + fi + + if [[ ${PHP_SHOW_UNEXPECTED_TEST_PASS} == "1" ]] ; then + local passed="" + for name in ${EXPECTED_TEST_FAILURES}; do + [[ -f "${name}.diff" ]] && continue + passed="${passed} ${name}" + done + if [[ ${passed} != "" ]] ; then + einfo "The following test cases passed unexpectedly:" + for name in ${passed}; do + ewarn " ${passed}" + done + else + einfo "None of the known-to-fail tests passed, all fine" + fi + fi +} + +pkg_postinst() { + # Output some general info to the user + if use apache2 ; then + elog + elog "To enable PHP in apache, you will need to add \"-D PHP\" to" + elog "your apache2 command. OpenRC users can append that string to" + elog "APACHE2_OPTS in /etc/conf.d/apache2." + elog + elog "The apache module configuration file 70_mod_php.conf is" + elog "provided (and maintained) by eselect-php." + elog + fi + + # Create the symlinks for php + local m + for m in ${SAPIS}; do + [[ ${m} == 'embed' ]] && continue; + if use $m ; then + local ci=$(eselect php show $m) + if [[ -z $ci ]]; then + eselect php set $m php${SLOT} || die + einfo "Switched ${m} to use php:${SLOT}" + einfo + elif [[ $ci != "php${SLOT}" ]] ; then + elog "To switch $m to use php:${SLOT}, run" + elog " eselect php set $m php${SLOT}" + elog + fi + fi + done + + # Remove dead symlinks for SAPIs that were just disabled. For + # example, if the user has the cgi SAPI enabled, then he has an + # eselect-php symlink for it. If he later reinstalls PHP with + # USE="-cgi", that symlink will break. This call to eselect is + # supposed to remove that dead link per bug 572436. + eselect php cleanup || die + + if ! has "php${SLOT/./-}" ${PHP_TARGETS}; then + elog "To build extensions for this version of PHP, you will need to" + elog "add php${SLOT/./-} to your PHP_TARGETS USE_EXPAND variable." + elog + fi + + # Warn about the removal of PHP_INI_VERSION if the user has it set. + if [[ -n "${PHP_INI_VERSION}" ]]; then + ewarn 'The PHP_INI_VERSION variable has been phased out. You may' + ewarn 'remove it from your configuration at your convenience. See' + ewarn + ewarn ' https://bugs.gentoo.org/611214' + ewarn + ewarn 'for more information.' + fi + + elog "For details on how version slotting works, please see" + elog "the wiki:" + elog + elog " https://wiki.gentoo.org/wiki/PHP" + elog +} + +pkg_postrm() { + # This serves two purposes. First, if we have just removed the last + # installed version of PHP, then this will remove any dead symlinks + # belonging to eselect-php. Second, if a user upgrades slots from + # (say) 5.6 to 7.0 and depcleans the old slot, then this will update + # his existing symlinks to point to the new 7.0 installation. The + # latter is bug 432962. + # + # Note: the eselect-php package may not be installed at this point, + # so we can't die() if this command fails. + eselect php cleanup +} diff --git a/dev-lang/php/php-8.1.5.ebuild b/dev-lang/php/php-8.1.5.ebuild new file mode 100644 index 000000000000..046471497e0a --- /dev/null +++ b/dev-lang/php/php-8.1.5.ebuild @@ -0,0 +1,759 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +WANT_AUTOMAKE="none" + +inherit flag-o-matic systemd autotools + +MY_PV=${PV/_rc/RC} +DESCRIPTION="The PHP language runtime engine" +HOMEPAGE="https://www.php.net/" +SRC_URI="https://www.php.net/distributions/${P}.tar.xz" + +LICENSE="PHP-3.01 + BSD + Zend-2.0 + bcmath? ( LGPL-2.1+ ) + fpm? ( BSD-2 ) + gd? ( gd ) + unicode? ( BSD-2 LGPL-2.1 )" + +SLOT="$(ver_cut 1-2)" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" + +S="${WORKDIR}/${PN}-${MY_PV}" + +# We can build the following SAPIs in the given order +SAPIS="embed cli cgi fpm apache2 phpdbg" + +# SAPIs and SAPI-specific USE flags (cli SAPI is default on): +IUSE="${IUSE} + ${SAPIS/cli/+cli} + threads" + +IUSE="${IUSE} acl apparmor 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 +jit kerberos ldap ldap-sasl libedit 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 xpm xslt zip zlib" + +# Without USE=readline or libedit, the interactive "php -a" CLI will hang. +# The Oracle instant client provides its own incompatible ldap library. +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 ) + xmlreader? ( xml ) + xmlwriter? ( xml ) + xslt? ( xml ) + ldap-sasl? ( ldap ) + oci8-instant-client? ( !ldap ) + qdbm? ( !gdbm ) + session-mm? ( session !threads ) + mysql? ( || ( mysqli pdo ) ) + firebird? ( pdo ) + mssql? ( pdo ) +" + +RESTRICT="!test? ( test )" + +# The supported (that is, autodetected) versions of BDB are listed in +# the ./configure script. Other versions *work*, but we need to stick to +# the ones that can be detected to avoid a repeat of bug #564824. +COMMON_DEPEND=" + >=app-eselect/eselect-php-0.9.7[apache2?,fpm?] + >=dev-libs/libpcre2-10.30[jit?,unicode] + fpm? ( acl? ( sys-apps/acl ) apparmor? ( sys-libs/libapparmor ) ) + apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) + argon2? ( app-crypt/argon2:= ) + berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:4.8 ) ) + bzip2? ( app-arch/bzip2:0= ) + cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) + coverage? ( dev-util/lcov ) + curl? ( >=net-misc/curl-7.29.0 ) + enchant? ( app-text/enchant:2 ) + ffi? ( >=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[sdk] ) + odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( >=dev-db/unixODBC-1.8.13 ) ) + postgres? ( >=dev-db/postgresql-9.1:* ) + 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:=[-minimal] ) + spell? ( >=app-text/aspell-0.50 ) + sqlite? ( >=dev-db/sqlite-3.7.6.3 ) + ssl? ( >=dev-libs/openssl-1.0.2:0= ) + tidy? ( 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.9.0 ) + xpm? ( x11-libs/libXpm ) + xslt? ( dev-libs/libxslt ) + zip? ( >=dev-libs/libzip-1.2.0:= ) + zlib? ( >=sys-libs/zlib-1.2.0.4:0= ) +" + +IDEPEND=">=app-eselect/eselect-php-0.9.7[apache2?,fpm?]" + +RDEPEND="${COMMON_DEPEND} + virtual/mta + fpm? ( + selinux? ( sec-policy/selinux-phpfpm ) + systemd? ( sys-apps/systemd ) )" + +# Bison isn't actually needed when building from a release tarball +# However, the configure script will warn if it's absent or if you +# have an incompatible version installed. See bug 593278. +DEPEND="${COMMON_DEPEND} + app-arch/xz-utils + >=sys-devel/bison-3.0.1" + +BDEPEND="virtual/pkgconfig" + +PHP_MV="$(ver_cut 1)" + +PATCHES=( + "${FILESDIR}/php-iodbc-header-location.patch" +) + +php_install_ini() { + local phpsapi="${1}" + + # work out where we are installing the ini file + php_set_ini_dir "${phpsapi}" + + # Always install the production INI file, bug 611214. + local phpinisrc="php.ini-production-${phpsapi}" + cp php.ini-production "${phpinisrc}" || die + + # default to /tmp for save_path, bug #282768 + sed -e 's|^;session.save_path .*$|session.save_path = "'"${EPREFIX}"'/tmp"|g' -i "${phpinisrc}" || die + + # Set the extension dir + sed -e "s|^extension_dir .*$|extension_dir = ${extension_dir}|g" \ + -i "${phpinisrc}" || die + + # Set the include path to point to where we want to find PEAR packages + sed -e 's|^;include_path = ".:/php/includes".*|include_path = ".:'"${EPREFIX}"'/usr/share/php'${PHP_MV}':'"${EPREFIX}"'/usr/share/php"|' -i "${phpinisrc}" || die + + insinto "${PHP_INI_DIR#${EPREFIX}}" + newins "${phpinisrc}" php.ini + + elog "Installing php.ini for ${phpsapi} into ${PHP_INI_DIR#${EPREFIX}}" + elog + + dodir "${PHP_EXT_INI_DIR#${EPREFIX}}" + dodir "${PHP_EXT_INI_DIR_ACTIVE#${EPREFIX}}" + + if use opcache; then + elog "Adding opcache to $PHP_EXT_INI_DIR" + echo "zend_extension=${PHP_DESTDIR}/$(get_libdir)/opcache.so" >> \ + "${D}/${PHP_EXT_INI_DIR}"/opcache.ini + dosym "../ext/opcache.ini" \ + "${PHP_EXT_INI_DIR_ACTIVE#${EPREFIX}}/opcache.ini" + fi + + # SAPI-specific handling + if [[ "${sapi}" == "fpm" ]] ; then + einfo "Installing FPM config files php-fpm.conf and www.conf" + insinto "${PHP_INI_DIR#${EPREFIX}}" + doins sapi/fpm/php-fpm.conf + insinto "${PHP_INI_DIR#${EPREFIX}}/fpm.d" + doins sapi/fpm/www.conf + fi + + dodoc php.ini-{development,production} +} + +php_set_ini_dir() { + PHP_INI_DIR="${EPREFIX}/etc/php/${1}-php${SLOT}" + PHP_EXT_INI_DIR="${PHP_INI_DIR}/ext" + PHP_EXT_INI_DIR_ACTIVE="${PHP_INI_DIR}/ext-active" +} + +src_prepare() { + default + + # In php-7.x, the FPM pool configuration files have been split off + # of the main config. By default the pool config files go in + # e.g. /etc/php-fpm.d, which isn't slotted. So here we move the + # include directory to a subdirectory "fpm.d" of $PHP_INI_DIR. Later + # we'll install the pool configuration file "www.conf" there. + php_set_ini_dir fpm + sed -i "s~^include=.*$~include=${PHP_INI_DIR}/fpm.d/*.conf~" \ + sapi/fpm/php-fpm.conf.in \ + || die 'failed to move the include directory in php-fpm.conf' + + # Emulate buildconf to support cross-compilation + rm -fr aclocal.m4 autom4te.cache config.cache \ + configure main/php_config.h.in || die + eautoconf --force + eautoheader + + # Remove false positive test failures + # stream_isatty fails due to portage redirects + # curl tests here fail for network sandbox issues + # session tests here fail because we set the session directory to $T + rm tests/output/stream_isatty_err.phpt \ + tests/output/stream_isatty_out-err.phpt \ + tests/output/stream_isatty_out.phpt \ + ext/curl/tests/bug76675.phpt \ + ext/curl/tests/bug77535.phpt \ + ext/curl/tests/curl_error_basic.phpt \ + ext/session/tests/bug74514.phpt \ + ext/session/tests/bug74936.phpt || die + +} + +src_configure() { + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn + + PHP_DESTDIR="${EPREFIX}/usr/$(get_libdir)/php${SLOT}" + + # The php-fpm config file wants localstatedir to be ${EPREFIX}/var + # and not the Gentoo default ${EPREFIX}/var/lib. See bug 572002. + local our_conf=( + --prefix="${PHP_DESTDIR}" + --mandir="${PHP_DESTDIR}/man" + --infodir="${PHP_DESTDIR}/info" + --libdir="${PHP_DESTDIR}/lib" + --with-libdir="$(get_libdir)" + --localstatedir="${EPREFIX}/var" + --without-pear + $(use_enable threads zts) + ) + + our_conf+=( + $(use_with apparmor fpm-apparmor) + $(use_with argon2 password-argon2 "${EPREFIX}/usr") + $(use_enable bcmath) + $(use_with bzip2 bz2 "${EPREFIX}/usr") + $(use_enable calendar) + $(use_enable coverage gcov) + $(use_enable ctype) + $(use_with curl) + $(use_enable xml dom) + $(use_with enchant) + $(use_enable exif) + $(use_with ffi) + $(use_enable fileinfo) + $(use_enable filter) + $(use_enable ftp) + $(use_with nls gettext "${EPREFIX}/usr") + $(use_with gmp gmp "${EPREFIX}/usr") + $(use_with mhash mhash "${EPREFIX}/usr") + $(use_with iconv iconv \ + $(use elibc_glibc || use elibc_musl || echo "${EPREFIX}/usr")) + $(use_enable intl) + $(use_enable ipv6) + $(use_with kerberos) + $(use_with xml libxml) + $(use_enable unicode mbstring) + $(use_with ssl openssl) + $(use_enable pcntl) + $(use_enable phar) + $(use_enable pdo) + $(use_enable opcache) + $(use_with postgres pgsql "${EPREFIX}/usr") + $(use_enable posix) + $(use_with spell pspell "${EPREFIX}/usr") + $(use_enable simplexml) + $(use_enable sharedmem shmop) + $(use_with snmp snmp "${EPREFIX}/usr") + $(use_enable soap) + $(use_enable sockets) + $(use_with sodium) + $(use_with sqlite sqlite3) + $(use_enable sysvipc sysvmsg) + $(use_enable sysvipc sysvsem) + $(use_enable sysvipc sysvshm) + $(use_with tidy tidy "${EPREFIX}/usr") + $(use_enable tokenizer) + $(use_enable xml) + $(use_enable xmlreader) + $(use_enable xmlwriter) + $(use_with xslt xsl) + $(use_with zip) + $(use_with zlib zlib "${EPREFIX}/usr") + $(use_enable debug) + ) + + # DBA support + if use cdb || use berkdb || use flatfile || use gdbm || use inifile \ + || use qdbm || use lmdb || use tokyocabinet ; then + our_conf+=( "--enable-dba" ) + fi + + # DBA drivers support + our_conf+=( + $(use_with cdb) + $(use_with berkdb db4 "${EPREFIX}/usr") + $(use_enable flatfile) + $(use_with gdbm gdbm "${EPREFIX}/usr") + $(use_enable inifile) + $(use_with qdbm qdbm "${EPREFIX}/usr") + $(use_with tokyocabinet tcadb "${EPREFIX}/usr") + $(use_with lmdb lmdb "${EPREFIX}/usr") + ) + + # Support for the GD graphics library + our_conf+=( + $(use_with truetype freetype) + $(use_enable cjk gd-jis-conv) + $(use_with gd jpeg) + $(use_with xpm) + $(use_with webp) + ) + # enable gd last, so configure can pick up the previous settings + our_conf+=( $(use_enable gd) ) + + # IMAP support + if use imap ; then + our_conf+=( + $(use_with imap imap "${EPREFIX}/usr") + $(use_with ssl imap-ssl "${EPREFIX}/usr") + ) + fi + + # LDAP support + if use ldap ; then + our_conf+=( + $(use_with ldap ldap "${EPREFIX}/usr") + $(use_with ldap-sasl) + ) + fi + + # MySQL support + local mysqllib="mysqlnd" + local mysqlilib="mysqlnd" + + our_conf+=( $(use_with mysqli mysqli "${mysqlilib}") ) + + local mysqlsock="${EPREFIX}/var/run/mysqld/mysqld.sock" + if use mysql || use mysqli ; then + our_conf+=( $(use_with mysql mysql-sock "${mysqlsock}") ) + fi + + # ODBC support + if use odbc && use iodbc ; then + our_conf+=( + --without-unixODBC + --with-iodbc + $(use_with pdo pdo-odbc "iODBC,${EPREFIX}/usr") + ) + elif use odbc ; then + our_conf+=( + --with-unixODBC="${EPREFIX}/usr" + --without-iodbc + $(use_with pdo pdo-odbc "unixODBC,${EPREFIX}/usr") + ) + else + our_conf+=( + --without-unixODBC + --without-iodbc + --without-pdo-odbc + ) + fi + + # Oracle support + our_conf+=( $(use_with oci8-instant-client oci8) ) + + # PDO support + if use pdo ; then + our_conf+=( + $(use_with mssql pdo-dblib "${EPREFIX}/usr") + $(use_with mysql pdo-mysql "${mysqllib}") + $(use_with postgres pdo-pgsql) + $(use_with sqlite pdo-sqlite) + $(use_with firebird pdo-firebird "${EPREFIX}/usr") + $(use_with oci8-instant-client pdo-oci) + ) + fi + + # readline/libedit support + our_conf+=( + $(use_with readline readline "${EPREFIX}/usr") + $(use_with libedit) + ) + + # Session support + if use session ; then + our_conf+=( $(use_with session-mm mm "${EPREFIX}/usr") ) + else + our_conf+=( $(use_enable session) ) + fi + + # Use pic for shared modules such as apache2's mod_php + our_conf+=( --with-pic ) + + # we use the system copy of pcre + # --with-external-pcre affects ext/pcre + our_conf+=( + --with-external-pcre + $(use_with jit pcre-jit) + ) + + # Catch CFLAGS problems + # Fixes bug #14067. + # Changed order to run it in reverse for bug #32022 and #12021. + replace-cpu-flags "k6*" "i586" + + # Cache the ./configure test results between SAPIs. + our_conf+=( --cache-file="${T}/config.cache" ) + + # Support user-passed configuration parameters + our_conf+=( ${EXTRA_ECONF:-} ) + + # Support the Apache2 extras, they must be set globally for all + # SAPIs to work correctly, especially for external PHP extensions + + local one_sapi + local sapi + mkdir -p "${WORKDIR}/sapis-build" || die + for one_sapi in $SAPIS ; do + use "${one_sapi}" || continue + php_set_ini_dir "${one_sapi}" + + # The BUILD_DIR variable is used to determine where to output + # the files that autotools creates. This was all originally + # based on the autotools-utils eclass. + BUILD_DIR="${WORKDIR}/sapis-build/${one_sapi}" + cp -a "${S}" "${BUILD_DIR}" || die + cd "${BUILD_DIR}" || die + + local sapi_conf=( + --with-config-file-path="${PHP_INI_DIR}" + --with-config-file-scan-dir="${PHP_EXT_INI_DIR_ACTIVE}" + ) + + for sapi in $SAPIS ; do + case "$sapi" in + cli|cgi|embed|fpm|phpdbg) + if [[ "${one_sapi}" == "${sapi}" ]] ; then + sapi_conf+=( "--enable-${sapi}" ) + if [[ "fpm" == "${sapi}" ]] ; then + sapi_conf+=( + $(use_with acl fpm-acl) + $(use_with systemd fpm-systemd) + ) + fi + else + sapi_conf+=( "--disable-${sapi}" ) + fi + ;; + + apache2) + if [[ "${one_sapi}" == "${sapi}" ]] ; then + sapi_conf+=( --with-apxs2="${EPREFIX}/usr/bin/apxs" ) + else + sapi_conf+=( --without-apxs2 ) + fi + ;; + esac + done + + # Construct the $myeconfargs array by concatenating $our_conf + # (the common args) and $sapi_conf (the SAPI-specific args). + local myeconfargs=( "${our_conf[@]}" ) + myeconfargs+=( "${sapi_conf[@]}" ) + + pushd "${BUILD_DIR}" > /dev/null || die + econf "${myeconfargs[@]}" + popd > /dev/null || die + done +} + +src_compile() { + # snmp seems to run during src_compile, too (bug #324739) + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn + + local sapi + for sapi in ${SAPIS} ; do + if use "${sapi}"; then + cd "${WORKDIR}/sapis-build/$sapi" || \ + die "Failed to change dir to ${WORKDIR}/sapis-build/$1" + emake + fi + done +} + +src_install() { + # see bug #324739 for what happens when we don't have that + addpredict /usr/share/snmp/mibs/.index #nowarn + + # grab the first SAPI that got built and install common files from there + local first_sapi="", sapi="" + for sapi in $SAPIS ; do + if use $sapi ; then + first_sapi=$sapi + break + fi + done + + # Makefile forgets to create this before trying to write to it... + dodir "${PHP_DESTDIR#${EPREFIX}}/bin" + + # Install php environment (without any sapis) + cd "${WORKDIR}/sapis-build/$first_sapi" || die + emake INSTALL_ROOT="${D}" \ + install-build install-headers install-programs + + local extension_dir="$("${ED}/${PHP_DESTDIR#${EPREFIX}}/bin/php-config" --extension-dir)" + + # Create the directory where we'll put version-specific php scripts + keepdir "/usr/share/php${PHP_MV}" + + local file="" + local sapi_list="" + + for sapi in ${SAPIS}; do + if use "${sapi}" ; then + einfo "Installing SAPI: ${sapi}" + cd "${WORKDIR}/sapis-build/${sapi}" || die + + if [[ "${sapi}" == "apache2" ]] ; then + # We're specifically not using emake install-sapi as libtool + # may cause unnecessary relink failures (see bug #351266) + insinto "${PHP_DESTDIR#${EPREFIX}}/apache2/" + newins ".libs/libphp$(get_libname)" \ + "libphp${PHP_MV}$(get_libname)" + keepdir "/usr/$(get_libdir)/apache2/modules" + else + # needed each time, php_install_ini would reset it + local dest="${PHP_DESTDIR#${EPREFIX}}" + into "${dest}" + case "$sapi" in + cli) + source="sapi/cli/php" + # Install the "phar" archive utility. + if use phar ; then + emake INSTALL_ROOT="${D}" install-pharcmd + dosym "..${dest#/usr}/bin/phar" "/usr/bin/phar${SLOT}" + fi + ;; + cgi) + source="sapi/cgi/php-cgi" + ;; + fpm) + source="sapi/fpm/php-fpm" + ;; + embed) + source="libs/libphp$(get_libname)" + ;; + phpdbg) + source="sapi/phpdbg/phpdbg" + ;; + *) + die "unhandled sapi in src_install" + ;; + esac + + if [[ "${source}" == *"$(get_libname)" ]]; then + dolib.so "${source}" + else + dobin "${source}" + local name="$(basename ${source})" + dosym "..${dest#/usr}/bin/${name}" "/usr/bin/${name}${SLOT}" + fi + fi + + php_install_ini "${sapi}" + + # construct correct SAPI string for php-config + # thanks to ferringb for the bash voodoo + if [[ "${sapi}" == "apache2" ]]; then + sapi_list="${sapi_list:+${sapi_list} }apache2handler" + else + sapi_list="${sapi_list:+${sapi_list} }${sapi}" + fi + fi + done + + # Installing opcache module + if use opcache ; then + into "${PHP_DESTDIR#${EPREFIX}}" + dolib.so "modules/opcache$(get_libname)" + fi + + # Install env.d files + newenvd "${FILESDIR}/20php5-envd" "20php${SLOT}" + sed -e "s|/lib/|/$(get_libdir)/|g" -i "${ED}/etc/env.d/20php${SLOT}" || die + sed -e "s|php5|php${SLOT}|g" -i "${ED}/etc/env.d/20php${SLOT}" || die + + # set php-config variable correctly (bug #278439) + sed -e "s:^\(php_sapis=\)\".*\"$:\1\"${sapi_list}\":" -i \ + "${ED}/usr/$(get_libdir)/php${SLOT}/bin/php-config" || die + + if use fpm ; then + if use systemd; then + systemd_newunit "${FILESDIR}/php-fpm_at.service" \ + "php-fpm@${SLOT}.service" + else + systemd_newunit "${FILESDIR}/php-fpm_at-simple.service" \ + "php-fpm@${SLOT}.service" + fi + fi +} + +src_test() { + echo ">>> Test phase [test]: ${CATEGORY}/${PF}" + PHP_BIN="${WORKDIR}/sapis-build/cli/sapi/cli/php" + if [[ ! -x "${PHP_BIN}" ]] ; then + ewarn "Test phase requires USE=cli, skipping" + return + else + export TEST_PHP_EXECUTABLE="${PHP_BIN}" + fi + + if [[ -x "${WORKDIR}/sapis-build/cgi/sapi/cgi/php-cgi" ]] ; then + export TEST_PHP_CGI_EXECUTABLE="${WORKDIR}/sapis-build/cgi/sapi/cgi/php-cgi" + fi + + if [[ -x "${WORKDIR}/sapis-build/phpdbg/sapi/phpdbg/phpdbg" ]] ; then + export TEST_PHPDBG_EXECUTABLE="${WORKDIR}/sapis-build/phpdbg/sapi/phpdbg/phpdbg" + fi + + SKIP_ONLINE_TESTS=1 REPORT_EXIT_STATUS=1 "${TEST_PHP_EXECUTABLE}" -n -d \ + "session.save_path=${T}" \ + "${WORKDIR}/sapis-build/cli/run-tests.php" -n -q -d \ + "session.save_path=${T}" + + for name in ${EXPECTED_TEST_FAILURES}; do + mv "${name}.out" "${name}.out.orig" 2>/dev/null || die + done + + local failed="$(find -name '*.out')" + if [[ ${failed} != "" ]] ; then + ewarn "The following test cases failed unexpectedly:" + for name in ${failed}; do + ewarn " ${name/.out/}" + done + else + einfo "No unexpected test failures, all fine" + fi + + if [[ ${PHP_SHOW_UNEXPECTED_TEST_PASS} == "1" ]] ; then + local passed="" + for name in ${EXPECTED_TEST_FAILURES}; do + [[ -f "${name}.diff" ]] && continue + passed="${passed} ${name}" + done + if [[ ${passed} != "" ]] ; then + einfo "The following test cases passed unexpectedly:" + for name in ${passed}; do + ewarn " ${passed}" + done + else + einfo "None of the known-to-fail tests passed, all fine" + fi + fi +} + +pkg_postinst() { + # Output some general info to the user + if use apache2 ; then + elog + elog "To enable PHP in apache, you will need to add \"-D PHP\" to" + elog "your apache2 command. OpenRC users can append that string to" + elog "APACHE2_OPTS in /etc/conf.d/apache2." + elog + elog "The apache module configuration file 70_mod_php.conf is" + elog "provided (and maintained) by eselect-php." + elog + fi + + # Create the symlinks for php + local m + for m in ${SAPIS}; do + [[ ${m} == 'embed' ]] && continue; + if use $m ; then + local ci=$(eselect php show $m) + if [[ -z $ci ]]; then + eselect php set $m php${SLOT} || die + einfo "Switched ${m} to use php:${SLOT}" + einfo + elif [[ $ci != "php${SLOT}" ]] ; then + elog "To switch $m to use php:${SLOT}, run" + elog " eselect php set $m php${SLOT}" + elog + fi + fi + done + + # Remove dead symlinks for SAPIs that were just disabled. For + # example, if the user has the cgi SAPI enabled, then he has an + # eselect-php symlink for it. If he later reinstalls PHP with + # USE="-cgi", that symlink will break. This call to eselect is + # supposed to remove that dead link per bug 572436. + eselect php cleanup || die + + if ! has "php${SLOT/./-}" ${PHP_TARGETS}; then + elog "To build extensions for this version of PHP, you will need to" + elog "add php${SLOT/./-} to your PHP_TARGETS USE_EXPAND variable." + elog + fi + + # Warn about the removal of PHP_INI_VERSION if the user has it set. + if [[ -n "${PHP_INI_VERSION}" ]]; then + ewarn 'The PHP_INI_VERSION variable has been phased out. You may' + ewarn 'remove it from your configuration at your convenience. See' + ewarn + ewarn ' https://bugs.gentoo.org/611214' + ewarn + ewarn 'for more information.' + fi + + elog "For details on how version slotting works, please see" + elog "the wiki:" + elog + elog " https://wiki.gentoo.org/wiki/PHP" + elog +} + +pkg_postrm() { + # This serves two purposes. First, if we have just removed the last + # installed version of PHP, then this will remove any dead symlinks + # belonging to eselect-php. Second, if a user upgrades slots from + # (say) 5.6 to 7.0 and depcleans the old slot, then this will update + # his existing symlinks to point to the new 7.0 installation. The + # latter is bug 432962. + # + # Note: the eselect-php package may not be installed at this point, + # so we can't die() if this command fails. + eselect php cleanup +} diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index d550e0c36b48..dae55eb56dd7 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/libjcat/libjcat-0.1.10.ebuild b/dev-libs/libjcat/libjcat-0.1.10.ebuild index 530eb115d6af..2918fd5e21df 100644 --- a/dev-libs/libjcat/libjcat-0.1.10.ebuild +++ b/dev-libs/libjcat/libjcat-0.1.10.ebuild @@ -8,7 +8,7 @@ PYTHON_REQ_USE="xml" inherit meson python-any-r1 vala xdg-utils -DESCRIPTION="Library and tool for reading and writing Jcat files " +DESCRIPTION="Library and tool for reading and writing Jcat files" HOMEPAGE="https://github.com/hughsie/libjcat" SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" diff --git a/dev-libs/libjcat/libjcat-0.1.11.ebuild b/dev-libs/libjcat/libjcat-0.1.11.ebuild index 12f4aa418263..78a0e9473c03 100644 --- a/dev-libs/libjcat/libjcat-0.1.11.ebuild +++ b/dev-libs/libjcat/libjcat-0.1.11.ebuild @@ -8,7 +8,7 @@ PYTHON_REQ_USE="xml" inherit meson python-any-r1 vala xdg-utils -DESCRIPTION="Library and tool for reading and writing Jcat files " +DESCRIPTION="Library and tool for reading and writing Jcat files" HOMEPAGE="https://github.com/hughsie/libjcat" SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" diff --git a/dev-libs/libjcat/libjcat-0.1.9-r1.ebuild b/dev-libs/libjcat/libjcat-0.1.9-r1.ebuild index 530eb115d6af..2918fd5e21df 100644 --- a/dev-libs/libjcat/libjcat-0.1.9-r1.ebuild +++ b/dev-libs/libjcat/libjcat-0.1.9-r1.ebuild @@ -8,7 +8,7 @@ PYTHON_REQ_USE="xml" inherit meson python-any-r1 vala xdg-utils -DESCRIPTION="Library and tool for reading and writing Jcat files " +DESCRIPTION="Library and tool for reading and writing Jcat files" HOMEPAGE="https://github.com/hughsie/libjcat" SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" diff --git a/dev-libs/libportal/libportal-0.6.ebuild b/dev-libs/libportal/libportal-0.6.ebuild index 22a66ac299bf..855fdf37a297 100644 --- a/dev-libs/libportal/libportal-0.6.ebuild +++ b/dev-libs/libportal/libportal-0.6.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/flatpak/libportal/releases/download/${PV}/${P}.tar.x LICENSE="LGPL-3" SLOT="0/1-1-1-1" # soname of libportal{,-gtk3,-gtk4,-qt5}.so -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~riscv" IUSE="gtk gtk-doc +introspection qt5 test +vala" RESTRICT="!test? ( test )" REQUIRED_USE=" diff --git a/dev-libs/libsigc++/libsigc++-3.2.0.ebuild b/dev-libs/libsigc++/libsigc++-3.2.0.ebuild index 8b9439d5696a..d0c96ac1460c 100644 --- a/dev-libs/libsigc++/libsigc++-3.2.0.ebuild +++ b/dev-libs/libsigc++/libsigc++-3.2.0.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://libsigcplusplus.github.io/libsigcplusplus/ LICENSE="LGPL-2.1+" SLOT="3" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc examples test" RESTRICT="!test? ( test )" diff --git a/dev-libs/libuv/libuv-1.44.1.ebuild b/dev-libs/libuv/libuv-1.44.1.ebuild index d9e07add0a2e..8930dc48b8e0 100644 --- a/dev-libs/libuv/libuv-1.44.1.ebuild +++ b/dev-libs/libuv/libuv-1.44.1.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} = 9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/libuv/libuv/archive/v${PV}.tar.gz -> ${P}.tar.gz" - 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" + 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" fi LICENSE="BSD BSD-2 ISC MIT" diff --git a/dev-libs/redis-ipc/metadata.xml b/dev-libs/redis-ipc/metadata.xml index 3c1e58a0c43a..1ca33292c1d8 100644 --- a/dev-libs/redis-ipc/metadata.xml +++ b/dev-libs/redis-ipc/metadata.xml @@ -1,5 +1,5 @@ - + nerdboy@gentoo.org diff --git a/dev-libs/tree-sitter/tree-sitter-0.20.6.ebuild b/dev-libs/tree-sitter/tree-sitter-0.20.6.ebuild index 0f0baace2bf6..0ae7232aab0d 100644 --- a/dev-libs/tree-sitter/tree-sitter-0.20.6.ebuild +++ b/dev-libs/tree-sitter/tree-sitter-0.20.6.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://github.com/${PN}/${PN}" else SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc x86" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86" fi LICENSE="MIT" diff --git a/dev-lisp/Manifest.gz b/dev-lisp/Manifest.gz index c4b0f47c2829..488b0b0838b4 100644 Binary files a/dev-lisp/Manifest.gz and b/dev-lisp/Manifest.gz differ diff --git a/dev-lisp/gcl/Manifest b/dev-lisp/gcl/Manifest index 38004af63fd9..f52fb79b7298 100644 --- a/dev-lisp/gcl/Manifest +++ b/dev-lisp/gcl/Manifest @@ -1,3 +1 @@ -DIST gcl-2.6.10-fedora.tar.bz2 695718 BLAKE2B 151cac372f74a971ffb31191a3614d0f7bafca141258af9e1955185f8ed119cbcd3797f2d9bbe5eb5f82e76af4fd0d3e0cf155cd35f305a2c028e40b340b78cf SHA512 3e0ffaec859783443a8941a29302c7a17c9538ef2177d449ad34e24292c174de7bb8760a6d327e08f012773032f0d0a5230b79c7e4b4f5bad8354bf10a28af4c -DIST gcl-2.6.10.tar.gz 5490689 BLAKE2B 46af0cf8a810a82fe2bc2bd46ca1cbe17b74c71eb4af6a06032040900dcad4dd4338883cd9225f0945ae425eba788ac84db9a0ed454779edd86c74a1bb48a947 SHA512 bbaacce712f15130550bcdf7e53edf4df9ab955e84ec701087034115df1c1e657d956853d5db85d7e88709981f9b7fd4c9df7acf6c8588a8ccf5f05e4e666aed DIST gcl-2.6.13_pre99.tar.xz 10030460 BLAKE2B 8750d641062bcad5a124173013d38403f37ad352c7c436e89d4e329d997200be399a100dcefc4ce484e3f85f46e2dd90ee02947e5e728e001782e973c4122b0e SHA512 a3ad2bd639157ca2a80b534e87c169f6e07002a1b9ca8039483cff336af764123dec9e749da045b656b990e0a97c70881c798420ec4bd0e4494f43d0d040e413 diff --git a/dev-lisp/gcl/files/gcl-gmp-6.patch b/dev-lisp/gcl/files/gcl-gmp-6.patch deleted file mode 100644 index f66638478af1..000000000000 --- a/dev-lisp/gcl/files/gcl-gmp-6.patch +++ /dev/null @@ -1,8 +0,0 @@ -diff -r -U1 gcl.orig/configure gcl/configure ---- gcl.orig/configure 2013-11-11 21:55:48.000000000 +0700 -+++ gcl/configure 2014-03-30 17:25:04.874994142 +0700 -@@ -5027,3 +5027,3 @@ - int main() { -- #if __GNU_MP_VERSION == 4 || __GNU_MP_VERSION == 5 -+ #if __GNU_MP_VERSION == 4 || __GNU_MP_VERSION == 5 || __GNU_MP_VERSION == 6 - return 0; diff --git a/dev-lisp/gcl/files/gcl-readline-6.3.patch b/dev-lisp/gcl/files/gcl-readline-6.3.patch deleted file mode 100644 index 063c772f1051..000000000000 --- a/dev-lisp/gcl/files/gcl-readline-6.3.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff -r -U1 gcl.orig/o/gcl_readline.d gcl/o/gcl_readline.d ---- gcl.orig/o/gcl_readline.d 2013-11-11 21:55:48.000000000 +0700 -+++ gcl/o/gcl_readline.d 2014-03-30 18:29:42.131967005 +0700 -@@ -53,2 +53,9 @@ - -+/* Deprecated CPPFunction disappeared in libreadline-6.3 */ -+#if defined(_RL_FUNCTION_TYPEDEF) -+#define RL_COMPLETION_FUNC_T rl_completion_func_t -+#else -+#define RL_COMPLETION_FUNC_T CPPFunction -+#endif -+ - int readline_on = 0; /* On (1) or off (0) */ -@@ -471,3 +478,3 @@ - #ifdef RL_COMPLETION -- rl_attempted_completion_function = (CPPFunction *)rl_completion; -+ rl_attempted_completion_function = (RL_COMPLETION_FUNC_T *)rl_completion; - #endif diff --git a/dev-lisp/gcl/files/gcl-tcl-8.6.patch b/dev-lisp/gcl/files/gcl-tcl-8.6.patch deleted file mode 100644 index cfbf82e32899..000000000000 --- a/dev-lisp/gcl/files/gcl-tcl-8.6.patch +++ /dev/null @@ -1,103 +0,0 @@ -diff --git a/gcl/gcl-tk/tkMain.c b/gcl/gcl-tk/tkMain.c -index 74475cc..21c6c59 100755 ---- a/gcl/gcl-tk/tkMain.c -+++ b/gcl/gcl-tk/tkMain.c -@@ -42,6 +42,11 @@ - #if (TK_MINOR_VERSION==0 && TK_MAJOR_VERSION==4) - #define TkCreateMainWindow Tk_CreateMainWindow - #endif -+#if TCL_MAJOR_VERSION >= 8 -+#define INTERP_RESULT(interp) Tcl_GetStringResult(interp) -+#else -+#define INTERP_RESULT(interp) (interp)->result -+#endif - - - /*-------------------------------------------------------------------*/ -@@ -276,7 +281,7 @@ TkX_Wish (argc, argv) - - if (Tk_ParseArgv(interp, (Tk_Window) NULL, &argc, (void *)argv, argTable, 0) - != TCL_OK) { -- fprintf(stderr, "%s\n", interp->result); -+ fprintf(stderr, "%s\n", INTERP_RESULT(interp)); - exit(1); - } - if (name == NULL) { -@@ -309,7 +314,7 @@ TkX_Wish (argc, argv) - - /* mainWindow = TkCreateMainWindow(interp, display, name/\* , "Tk" *\/); */ - /* if (mainWindow == NULL) { */ --/* fprintf(stderr, "%s\n", interp->result); */ -+/* fprintf(stderr, "%s\n", INTERP_RESULT(interp)); */ - /* exit(1); */ - /* } */ - /* #ifndef __MINGW32__ */ -@@ -362,7 +367,7 @@ TkX_Wish (argc, argv) - Tcl_FindExecutable ( argv[0] ); - #else - if (Tcl_AppInit(interp) != TCL_OK) { -- fprintf(stderr, "Tcl_AppInit failed: %s\n", interp->result); -+ fprintf(stderr, "Tcl_AppInit failed: %s\n", INTERP_RESULT(interp)); - } - #endif - /* -@@ -372,7 +377,7 @@ TkX_Wish (argc, argv) - if (geometry != NULL) { - code = Tcl_VarEval(interp, "wm geometry . ", geometry, (char *) NULL); - if (code != TCL_OK) { -- fprintf(stderr, "%s\n", interp->result); -+ fprintf(stderr, "%s\n", INTERP_RESULT(interp)); - } - } - -@@ -402,13 +407,13 @@ TkX_Wish (argc, argv) - - fullName = Tcl_TildeSubst(interp, tcl_RcFileName, &buffer); - if (fullName == NULL) { -- fprintf(stderr, "%s\n", interp->result); -+ fprintf(stderr, "%s\n", INTERP_RESULT(interp)); - } else { - f = fopen(fullName, "r"); - if (f != NULL) { - code = Tcl_EvalFile(interp, fullName); - if (code != TCL_OK) { -- fprintf(stderr, "%s\n", interp->result); -+ fprintf(stderr, "%s\n", INTERP_RESULT(interp)); - } - fclose(f); - } -@@ -443,7 +448,7 @@ TkX_Wish (argc, argv) - error: - msg = Tcl_GetVar(interp, "errorInfo", TCL_GLOBAL_ONLY); - if (msg == NULL) { -- msg = interp->result; -+ msg = INTERP_RESULT(interp); - } - dfprintf(stderr, "%s\n", msg); - Tcl_Eval(interp, errorExitCmd); -@@ -566,13 +571,13 @@ StdinProc(clientData, mask) - || code) - { - char buf[4]; -- char *p = buf; -+ char *p = buf, *string; - /*header */ - *p++ = (code ? '1' : '0'); - bcopy(msg->msg_id,p,3); - /* end header */ -- if(sock_write_str2(dsfd, m_reply, buf, 4 , -- interp->result, strlen(interp->result)) -+ string = INTERP_RESULT(interp); -+ if(sock_write_str2(dsfd, m_reply, buf, 4, string, strlen(string)) - < 0) - { /* what do we want to do if the write failed */} - -@@ -752,7 +757,7 @@ guiBindCallback(char *szNameCmdProc, char *szTclObject, char *szModifier,char* a - code = Tcl_Eval(interp, szCmd); - if (code != TCL_OK) - { -- dfprintf(stderr, "TCL Error int bind : %s\n", interp->result); -+ dfprintf(stderr, "TCL Error int bind : %s\n", INTERP_RESULT(interp)); - - } - return code; diff --git a/dev-lisp/gcl/gcl-2.6.10.ebuild b/dev-lisp/gcl/gcl-2.6.10.ebuild deleted file mode 100644 index 47a5f441a32c..000000000000 --- a/dev-lisp/gcl/gcl-2.6.10.ebuild +++ /dev/null @@ -1,149 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit elisp-common epatch flag-o-matic - -DESCRIPTION="GNU Common Lisp" -HOMEPAGE="https://www.gnu.org/software/gcl/gcl.html" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz https://dev.gentoo.org/~grozin/${P}-fedora.tar.bz2" -S="${WORKDIR}"/${PN} - -LICENSE="LGPL-2 GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="+ansi athena emacs +readline tk X" - -# See bug #205803 -RESTRICT="strip" - -RDEPEND="emacs? ( >=app-editors/emacs-23.1:* ) - readline? ( sys-libs/readline:= ) - athena? ( x11-libs/libXaw ) - >=dev-libs/gmp-4.1:= - tk? ( dev-lang/tk:= ) - X? ( x11-libs/libXt x11-libs/libXext x11-libs/libXmu x11-libs/libXaw ) - virtual/latex-base" -DEPEND="${RDEPEND} - virtual/texi2dvi - >=app-text/texi2html-1.64 - >=sys-devel/autoconf-2.52" - -src_prepare() { - mv "${WORKDIR}"/fedora/info/* info/ - cp -p /usr/share/texmf-dist/tex/texinfo/texinfo.tex info/ - find . -type f -perm /0111 | xargs chmod a-x - chmod a+x add-defs add-defs1 config.guess config.sub configure install.sh - chmod a+x bin/info bin/info1 gcl-tk/gcltksrv.in gcl-tk/ngcltksrv mp/gcclab - chmod a+x o/egrep-def utils/replace xbin/* - - # fedora patches - epatch "${WORKDIR}"/fedora/fd-leak.patch - epatch "${WORKDIR}"/fedora/latex.patch - epatch "${WORKDIR}"/fedora/texinfo.patch - epatch "${WORKDIR}"/fedora/elisp.patch - epatch "${WORKDIR}"/fedora/rename.patch - epatch "${WORKDIR}"/fedora/getcwd.patch - epatch "${WORKDIR}"/fedora/infrastructure.patch - epatch "${WORKDIR}"/fedora/extension.patch - epatch "${WORKDIR}"/fedora/unrandomize.patch - epatch "${WORKDIR}"/fedora/asm-signal-h.patch - epatch "${WORKDIR}"/fedora/plt.patch - epatch "${WORKDIR}"/fedora/ellipsis.patch - epatch "${WORKDIR}"/fedora/man.patch - epatch "${WORKDIR}"/fedora/reloc-type.patch - epatch "${WORKDIR}"/fedora/largefile.patch - - epatch "${FILESDIR}"/${PN}-tcl-8.6.patch - epatch "${FILESDIR}"/${PN}-gmp-6.patch - epatch "${FILESDIR}"/${PN}-readline-6.3.patch - - sed -e 's|"-fomit-frame-pointer"|""|' -i configure - sed -e 's|@EXT@||g' debian/in.gcl.1 > gcl.1 -} - -src_configure() { - strip-flags - filter-flags -fstack-protector -fstack-protector-all - - local tcl="" - if use tk; then - tcl="--enable-tclconfig=/usr/lib --enable-tkconfig=/usr/lib" - fi - - econf --enable-dynsysgmp \ - --disable-xdr \ - --enable-emacsdir=/usr/share/emacs/site-lisp/gcl \ - --enable-infodir=/usr/share/info \ - $(use_enable readline) \ - $(use_enable ansi) \ - $(use_enable athena xgcl) \ - $(use_with X x) \ - ${tcl} -} - -src_compile() { - emake -j1 - VARTEXFONTS="${T}"/fonts emake -C info gcl.info - if use athena; then - pushd xgcl-2 > /dev/null - pdflatex dwdoc.tex - popd > /dev/null - fi -} - -src_test() { - local make_ansi_tests_clean="rm -f test.out *.fasl *.o *.so *~ *.fn *.x86f *.fasl *.ufsl" - if use ansi; then - cd ansi-tests - - ( make clean && make test-unixport ) \ - || die "make ansi-tests failed!" - - cat "${FILESDIR}/bootstrap-gcl" \ - | ../unixport/saved_ansi_gcl - - cat "${FILESDIR}/bootstrap-gcl" \ - |sed s/bootstrapped_ansi_gcl/bootstrapped_r_ansi_gcl/g \ - | ./bootstrapped_ansi_gcl - - ( ${make_ansi_tests_clean} && \ - echo "(load \"gclload.lsp\")" \ - | ./bootstrapped_r_ansi_gcl ) \ - || die "Phase 2, bootstraped compiler failed in tests" - fi -} - -src_install() { - emake DESTDIR="${D}" install - mv "${D}"usr/share/doc/*.dvi . - rm -rf "${D}"usr/share/doc - rm -rf "${D}"usr/share/emacs - rm -rf "${D}"usr/lib/gcl-*/info - - rm doc/makefile elisp/add-defaults.el - dodoc readme* RELEASE* ChangeLog* doc/* - doman gcl.1 - doinfo info/*.info* - dohtml -r info/gcl-si info/gcl-tk - - if use emacs; then - elisp-site-file-install "${FILESDIR}"/64${PN}-gentoo.el - elisp-install ${PN} elisp/*.el - fi - - docompress -x /usr/share/doc/${PF}/*.dvi - if use athena; then - dodoc xgcl-2/*.pdf - docompress -x /usr/share/doc/${PF}/*.pdf - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/dev-lua/Manifest.gz b/dev-lua/Manifest.gz index 77e85baea2bf..9ec6e2c16abb 100644 Binary files a/dev-lua/Manifest.gz and b/dev-lua/Manifest.gz differ diff --git a/dev-lua/lua-term/lua-term-0.7-r1.ebuild b/dev-lua/lua-term/lua-term-0.7-r2.ebuild similarity index 95% rename from dev-lua/lua-term/lua-term-0.7-r1.ebuild rename to dev-lua/lua-term/lua-term-0.7-r2.ebuild index bbbbe0d517af..5fb52c4915e1 100644 --- a/dev-lua/lua-term/lua-term-0.7-r1.ebuild +++ b/dev-lua/lua-term/lua-term-0.7-r2.ebuild @@ -36,7 +36,7 @@ lua_src_compile() { local myemakeargs=( "CC=$(tc-getCC)" - "CFLAGS=${CFLAGS} ${LDFLAGS} $(lua_get_CFLAGS)" + "CFLAGS=${CFLAGS} -fPIC ${LDFLAGS} $(lua_get_CFLAGS)" ) emake "${myemakeargs[@]}" all diff --git a/dev-lua/luaposix/Manifest b/dev-lua/luaposix/Manifest index 217c57beffbf..af22000bf0c9 100644 --- a/dev-lua/luaposix/Manifest +++ b/dev-lua/luaposix/Manifest @@ -1,2 +1 @@ -DIST luaposix-35.0.tar.gz 178091 BLAKE2B b2d2ca01f18f0e98b45008919fc886e05d2cad034c84e870900c33891dd5867d9bc7aa8deae06c3f3f0852db902c1e766e693162b32ed474eb710b379bf9e3ed SHA512 4bb61892b78d9e59418a9a6360b9f611fb9b5438b9261a2c6672f053a1b21dfd9a2060b8d2f0d3eac6185773cf84672c1769c081c4ab53d2ddae2232e4a9269b DIST luaposix-35.1.tar.gz 180002 BLAKE2B fc48ae91c31968cb92ea9818148f135e16e2bacac10265cbfa43539c34a934c4eb636417b820ce3b0b3724fecbf27a860c6b481749d339b009fc01b6f81e6277 SHA512 f2c36bf69c0d73b4a2c6ab0915f81473addce427c22e82e2d1c334016dec7fecb4365fc980fa6adb0de21ad1a60bc75b73f58579e8a423990ad2067c9ae37775 diff --git a/dev-lua/luaposix/luaposix-35.0-r103.ebuild b/dev-lua/luaposix/luaposix-35.0-r103.ebuild deleted file mode 100644 index a92fac063f8e..000000000000 --- a/dev-lua/luaposix/luaposix-35.0-r103.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# 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 lua toolchain-funcs - -DESCRIPTION="Bindings for POSIX APIs" -HOMEPAGE="https://luaposix.github.io/luaposix/ https://github.com/luaposix/luaposix" -SRC_URI="https://github.com/luaposix/luaposix/archive/v${PV}.tar.gz -> ${P}.tar.gz" -SLOT="0" -LICENSE="MIT" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" - -IUSE="doc" -REQUIRED_USE="${LUA_REQUIRED_USE}" - -# Requires specl, which is not in the tree yet -RESTRICT="test" - -DEPEND="${LUA_DEPS} - virtual/libcrypt:= -" -RDEPEND="${DEPEND} - lua_targets_lua5-1? ( dev-lua/lua-bit32[lua_targets_lua5-1(-)] ) - lua_targets_luajit? ( dev-lua/lua-bit32[lua_targets_luajit(-)] ) -" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - default - - # Temporary fix for respect LDFLAGS (#739050) - # Fixed in luke 0.2.1 - sed -i -e "s:c_module,libdirs:c_module,'\$LDFLAGS',libdirs:g" \ - build-aux/luke || die - - lua_copy_sources -} - -lua_src_compile() { - pushd "${BUILD_DIR}" || die - - # LDOC=true means disable ldoc update documentation - ./build-aux/luke --verbose package="${PN}" version="${PV}" \ - LDOC=true \ - PREFIX="${ED}/usr" \ - INST_LIBDIR="${ED}/$(lua_get_cmod_dir)" \ - INST_LUADIR="${ED}/$(lua_get_lmod_dir)" \ - LUA_INCDIR="${EPREFIX}/$(lua_get_include_dir)" \ - CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" || die - - popd || die -} - -src_compile() { - lua_foreach_impl lua_src_compile -} - -lua_src_install() { - pushd "${BUILD_DIR}" || die - - ./build-aux/luke install \ - LDOC=true \ - PREFIX="${ED}/usr" \ - INST_LIBDIR="${ED}/$(lua_get_cmod_dir)" \ - INST_LUADIR="${ED}/$(lua_get_lmod_dir)" \ - || die - - popd || die -} - -src_install() { - lua_foreach_impl lua_src_install - dodoc {NEWS,README}.md - use doc && dodoc -r doc -} diff --git a/dev-lua/luaposix/metadata.xml b/dev-lua/luaposix/metadata.xml index 69f0127daebd..6268cdd77d0a 100644 --- a/dev-lua/luaposix/metadata.xml +++ b/dev-lua/luaposix/metadata.xml @@ -1,15 +1,19 @@ - - azamat.hackimov@gmail.com - Azamat H. Hackimov - - - proxy-maint@gentoo.org - Proxy Maintainers - - - luaposix/luaposix - + + azamat.hackimov@gmail.com + Azamat H. Hackimov + + + proxy-maint@gentoo.org + Proxy Maintainers + + + conikost@gentoo.org + Conrad Kostecki + + + luaposix/luaposix + diff --git a/dev-ml/Manifest.gz b/dev-ml/Manifest.gz index 92c195057fb9..eded62c99862 100644 Binary files a/dev-ml/Manifest.gz and b/dev-ml/Manifest.gz differ diff --git a/dev-ml/alcotest/alcotest-1.5.0.ebuild b/dev-ml/alcotest/alcotest-1.5.0.ebuild index d4924a1e4ea4..8a6cf2ce8ef0 100644 --- a/dev-ml/alcotest/alcotest-1.5.0.ebuild +++ b/dev-ml/alcotest/alcotest-1.5.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/mirage/alcotest/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/astring/astring-0.8.5.ebuild b/dev-ml/astring/astring-0.8.5.ebuild index 380c4397f8d7..d6aaf301a39f 100644 --- a/dev-ml/astring/astring-0.8.5.ebuild +++ b/dev-ml/astring/astring-0.8.5.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/astring/releases/${P}.tbz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" OCAML_DEP=">=dev-lang/ocaml-4.05.0:=" BDEPEND=" diff --git a/dev-ml/async_kernel/async_kernel-0.14.0.ebuild b/dev-ml/async_kernel/async_kernel-0.14.0.ebuild index 5a2461a6de1f..dc737edb9688 100644 --- a/dev-ml/async_kernel/async_kernel-0.14.0.ebuild +++ b/dev-ml/async_kernel/async_kernel-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/async_unix/async_unix-0.14.0.ebuild b/dev-ml/async_unix/async_unix-0.14.0.ebuild index 00672196b90b..cce539b92576 100644 --- a/dev-ml/async_unix/async_unix-0.14.0.ebuild +++ b/dev-ml/async_unix/async_unix-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/base/base-0.14.3.ebuild b/dev-ml/base/base-0.14.3.ebuild index 0d2a8f9add87..daed49203113 100644 --- a/dev-ml/base/base-0.14.3.ebuild +++ b/dev-ml/base/base-0.14.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/base/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/base_bigstring/base_bigstring-0.14.0.ebuild b/dev-ml/base_bigstring/base_bigstring-0.14.0.ebuild index f3eefd961e79..6c657056d29f 100644 --- a/dev-ml/base_bigstring/base_bigstring-0.14.0.ebuild +++ b/dev-ml/base_bigstring/base_bigstring-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/base_quickcheck/base_quickcheck-0.14.1-r1.ebuild b/dev-ml/base_quickcheck/base_quickcheck-0.14.1-r1.ebuild index 7b0d4c531b9f..e7de61345336 100644 --- a/dev-ml/base_quickcheck/base_quickcheck-0.14.1-r1.ebuild +++ b/dev-ml/base_quickcheck/base_quickcheck-0.14.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/bigarray-compat/bigarray-compat-1.1.0.ebuild b/dev-ml/bigarray-compat/bigarray-compat-1.1.0.ebuild index a499023de459..d24b7a7b3374 100644 --- a/dev-ml/bigarray-compat/bigarray-compat-1.1.0.ebuild +++ b/dev-ml/bigarray-compat/bigarray-compat-1.1.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="ISC" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" DEPEND="" diff --git a/dev-ml/bin_prot/bin_prot-0.15.0.ebuild b/dev-ml/bin_prot/bin_prot-0.15.0.ebuild index d7cc63128d5f..ea2143f093dd 100644 --- a/dev-ml/bin_prot/bin_prot-0.15.0.ebuild +++ b/dev-ml/bin_prot/bin_prot-0.15.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/bin_prot/archive/v${PV}.tar.gz -> ${P}.ta LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/bos/bos-0.2.1.ebuild b/dev-ml/bos/bos-0.2.1.ebuild index 0d5451288a35..5f1068dc7c1a 100644 --- a/dev-ml/bos/bos-0.2.1.ebuild +++ b/dev-ml/bos/bos-0.2.1.ebuild @@ -9,7 +9,7 @@ SRC_URI="https://erratique.ch/software/bos/releases/${P}.tbz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-ml/camlbz2/camlbz2-0.7.0.ebuild b/dev-ml/camlbz2/camlbz2-0.7.0.ebuild index 1bb419645826..f1367371e312 100644 --- a/dev-ml/camlbz2/camlbz2-0.7.0.ebuild +++ b/dev-ml/camlbz2/camlbz2-0.7.0.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/irill/camlbz2/-/archive/${PV}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" DEPEND=" app-arch/bzip2 diff --git a/dev-ml/camlzip/camlzip-1.11.ebuild b/dev-ml/camlzip/camlzip-1.11.ebuild index ea2b449e8b1a..066ec10209d4 100644 --- a/dev-ml/camlzip/camlzip-1.11.ebuild +++ b/dev-ml/camlzip/camlzip-1.11.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')" LICENSE="LGPL-2.1" SLOT="1/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RDEPEND=">=dev-lang/ocaml-4.07:=[ocamlopt?] diff --git a/dev-ml/cinaps/cinaps-0.15.1.ebuild b/dev-ml/cinaps/cinaps-0.15.1.ebuild index 87242bd88dc3..2dc682d7db39 100644 --- a/dev-ml/cinaps/cinaps-0.15.1.ebuild +++ b/dev-ml/cinaps/cinaps-0.15.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/ocaml-ppx/cinaps/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/cmdliner/cmdliner-1.1.1.ebuild b/dev-ml/cmdliner/cmdliner-1.1.1.ebuild index daf49f5b4986..be4a062fab81 100644 --- a/dev-ml/cmdliner/cmdliner-1.1.1.ebuild +++ b/dev-ml/cmdliner/cmdliner-1.1.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="http://erratique.ch/software/${PN}/releases/${P}.tbz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/core/core-0.14.1.ebuild b/dev-ml/core/core-0.14.1.ebuild index 14bb552e9edb..071f267554d6 100644 --- a/dev-ml/core/core-0.14.1.ebuild +++ b/dev-ml/core/core-0.14.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" # TODO: Wants quickcheck_deprecated? diff --git a/dev-ml/core_bench/core_bench-0.14.0.ebuild b/dev-ml/core_bench/core_bench-0.14.0.ebuild index 9e44645eb575..7f1c43e394ae 100644 --- a/dev-ml/core_bench/core_bench-0.14.0.ebuild +++ b/dev-ml/core_bench/core_bench-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/core_kernel/core_kernel-0.14.2-r1.ebuild b/dev-ml/core_kernel/core_kernel-0.14.2-r1.ebuild index 903bac6397fd..07c3dc02331e 100644 --- a/dev-ml/core_kernel/core_kernel-0.14.2-r1.ebuild +++ b/dev-ml/core_kernel/core_kernel-0.14.2-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="LGPL-2.1-with-linking-exception" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" # Wants quickcheck_deprecated for now diff --git a/dev-ml/cppo/cppo-1.6.8.ebuild b/dev-ml/cppo/cppo-1.6.8.ebuild index 2ceba92466f3..d5be2914fca3 100644 --- a/dev-ml/cppo/cppo-1.6.8.ebuild +++ b/dev-ml/cppo/cppo-1.6.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/ocaml-community/cppo/archive/v${PV}.tar.gz -> ${P}.t SLOT="0/${PV}" LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RDEPEND="dev-ml/ocamlbuild diff --git a/dev-ml/csexp/csexp-1.5.1.ebuild b/dev-ml/csexp/csexp-1.5.1.ebuild index b7b8f4dc2420..aecdb9a85427 100644 --- a/dev-ml/csexp/csexp-1.5.1.ebuild +++ b/dev-ml/csexp/csexp-1.5.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/ocaml-dune/csexp/releases/download/${PV}/${P}.tbz" LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/cudf/cudf-0.9-r2.ebuild b/dev-ml/cudf/cudf-0.9-r2.ebuild index dbf250474eb8..8289f64c2ab2 100644 --- a/dev-ml/cudf/cudf-0.9-r2.ebuild +++ b/dev-ml/cudf/cudf-0.9-r2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/file/36602/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt llvm-libunwind test" RESTRICT="!test? ( test )" diff --git a/dev-ml/dose3/dose3-7.0.0.ebuild b/dev-ml/dose3/dose3-7.0.0.ebuild index 6bc85c2157e4..0925b1e20571 100644 --- a/dev-ml/dose3/dose3-7.0.0.ebuild +++ b/dev-ml/dose3/dose3-7.0.0.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-$(ver_cut 1-3)" LICENSE="LGPL-3" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" BDEPEND=" diff --git a/dev-ml/dune-configurator/dune-configurator-2.9.3.ebuild b/dev-ml/dune-configurator/dune-configurator-2.9.3.ebuild index 66dae42d7036..53d42345b564 100644 --- a/dev-ml/dune-configurator/dune-configurator-2.9.3.ebuild +++ b/dev-ml/dune-configurator/dune-configurator-2.9.3.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}/dune-${PV}" LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/dune-private-libs/dune-private-libs-2.9.3.ebuild b/dev-ml/dune-private-libs/dune-private-libs-2.9.3.ebuild index e434be4e1d92..4a135c14f509 100644 --- a/dev-ml/dune-private-libs/dune-private-libs-2.9.3.ebuild +++ b/dev-ml/dune-private-libs/dune-private-libs-2.9.3.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}/dune-${PV}" LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/dune/dune-2.9.3.ebuild b/dev-ml/dune/dune-2.9.3-r1.ebuild similarity index 68% rename from dev-ml/dune/dune-2.9.3.ebuild rename to dev-ml/dune/dune-2.9.3-r1.ebuild index 383157a0063c..8830c7c629e2 100644 --- a/dev-ml/dune/dune-2.9.3.ebuild +++ b/dev-ml/dune/dune-2.9.3-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit multiprocessing +inherit multiprocessing elisp-common DESCRIPTION="A composable build system for OCaml" HOMEPAGE="https://github.com/ocaml/dune" @@ -11,12 +11,13 @@ SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" -IUSE="test" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="emacs test" RESTRICT="!test? ( test )" RDEPEND=" >=dev-lang/ocaml-4.08:= + emacs? ( >=app-editors/emacs-23.1:* ) " DEPEND=" ${RDEPEND} @@ -29,6 +30,7 @@ DEPEND=" " QA_FLAGS_IGNORED="usr/bin/dune" +SITEFILE="50${PN}-gentoo.el" src_configure() { : @@ -38,10 +40,17 @@ src_compile() { ocaml bootstrap.ml -j $(makeopts_jobs) || die ./dune.exe build -p "${PN}" --profile dune-bootstrap -j $(makeopts_jobs) \ --display short || die + + use emacs && elisp-compile editor-integration/emacs/*.el } src_install() { default mv "${ED}"/usr/doc "${ED}"/usr/share/doc/${PF} || die mv "${ED}"/usr/man "${ED}"/usr/share/man || die + + if use emacs ; then + elisp-install ${PN} editor-integration/emacs/*.el{,c} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + fi } diff --git a/dev-ml/dune/files/50dune-gentoo.el b/dev-ml/dune/files/50dune-gentoo.el new file mode 100644 index 000000000000..87fd7c6b28a9 --- /dev/null +++ b/dev-ml/dune/files/50dune-gentoo.el @@ -0,0 +1,4 @@ +(add-to-list 'load-path "@SITELISP@") +(autoload 'dune-mode "dune" + "Major mode to edit dune files." t) +(add-to-list 'auto-mode-alist '("\\(?:\\`\\|/\\)dune\\(?:\\.inc\\|\\-project\\)?\\'" . dune-mode)) diff --git a/dev-ml/duration/duration-0.1.3.ebuild b/dev-ml/duration/duration-0.1.3.ebuild index 21c682e44c6c..cfab3bd98bbf 100644 --- a/dev-ml/duration/duration-0.1.3.ebuild +++ b/dev-ml/duration/duration-0.1.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/hannesm/duration/archive/${PV}.tar.gz -> ${P}.tar.gz LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/extlib/extlib-1.7.8.ebuild b/dev-ml/extlib/extlib-1.7.8.ebuild index cab23f4cb9f4..c30dcec272da 100644 --- a/dev-ml/extlib/extlib-1.7.8.ebuild +++ b/dev-ml/extlib/extlib-1.7.8.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}/ocaml-${P}" LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="doc +ocamlopt" # See bug #704146 diff --git a/dev-ml/fieldslib/fieldslib-0.15.0.ebuild b/dev-ml/fieldslib/fieldslib-0.15.0.ebuild index 629e9a7aaa73..80cc80908f45 100644 --- a/dev-ml/fieldslib/fieldslib-0.15.0.ebuild +++ b/dev-ml/fieldslib/fieldslib-0.15.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/findlib/findlib-1.9.3.ebuild b/dev-ml/findlib/findlib-1.9.3.ebuild index cee9e2b0d305..8be526dbe67f 100644 --- a/dev-ml/findlib/findlib-1.9.3.ebuild +++ b/dev-ml/findlib/findlib-1.9.3.ebuild @@ -9,7 +9,7 @@ SRC_URI="http://download.camlcity.org/download/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="doc +ocamlopt tk" DEPEND=">=dev-lang/ocaml-4.02.3-r1:=[ocamlopt?] diff --git a/dev-ml/fmt/fmt-0.9.0.ebuild b/dev-ml/fmt/fmt-0.9.0.ebuild index 80add35062f3..f1a370757e4c 100644 --- a/dev-ml/fmt/fmt-0.9.0.ebuild +++ b/dev-ml/fmt/fmt-0.9.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fmt/releases/${P}.tbz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-ml/fpath/fpath-0.7.3.ebuild b/dev-ml/fpath/fpath-0.7.3.ebuild index c78f06c0be6c..b4996b096d15 100644 --- a/dev-ml/fpath/fpath-0.7.3.ebuild +++ b/dev-ml/fpath/fpath-0.7.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~x86" RDEPEND="dev-ml/result:= dev-ml/astring:= diff --git a/dev-ml/graphics/graphics-5.1.2.ebuild b/dev-ml/graphics/graphics-5.1.2.ebuild index 32141f00e593..5330cc907210 100644 --- a/dev-ml/graphics/graphics-5.1.2.ebuild +++ b/dev-ml/graphics/graphics-5.1.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/ocaml/${PN}/releases/download/${PV}/${P}.tbz" LICENSE="LGPL-2.1-with-linking-exception" SLOT="0" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" RDEPEND="dev-ml/dune-configurator:=[ocamlopt?] >=dev-lang/ocaml-4.09:= diff --git a/dev-ml/integers/integers-0.5.1.ebuild b/dev-ml/integers/integers-0.5.1.ebuild index da2638bb6740..7e82273a8fcc 100644 --- a/dev-ml/integers/integers-0.5.1.ebuild +++ b/dev-ml/integers/integers-0.5.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,5 +12,5 @@ S="${WORKDIR}/ocaml-${P}" LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" diff --git a/dev-ml/jane-street-headers/jane-street-headers-0.14.0.ebuild b/dev-ml/jane-street-headers/jane-street-headers-0.14.0.ebuild index 6b0f4857c77e..b6578ae829b3 100644 --- a/dev-ml/jane-street-headers/jane-street-headers-0.14.0.ebuild +++ b/dev-ml/jane-street-headers/jane-street-headers-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND="" diff --git a/dev-ml/jane-street-headers/jane-street-headers-0.15.0.ebuild b/dev-ml/jane-street-headers/jane-street-headers-0.15.0.ebuild index 9a59ce4395d8..216133ae7a2f 100644 --- a/dev-ml/jane-street-headers/jane-street-headers-0.15.0.ebuild +++ b/dev-ml/jane-street-headers/jane-street-headers-0.15.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" DEPEND="" diff --git a/dev-ml/jst-config/jst-config-0.14.0.ebuild b/dev-ml/jst-config/jst-config-0.14.0.ebuild index 5c1bf00c353a..e6c54ea2c160 100644 --- a/dev-ml/jst-config/jst-config-0.14.0.ebuild +++ b/dev-ml/jst-config/jst-config-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/jst-config/jst-config-0.15.0.ebuild b/dev-ml/jst-config/jst-config-0.15.0.ebuild index c81b5e3228e7..8bdab1badbf5 100644 --- a/dev-ml/jst-config/jst-config-0.15.0.ebuild +++ b/dev-ml/jst-config/jst-config-0.15.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/labltk/labltk-8.06.12.ebuild b/dev-ml/labltk/labltk-8.06.12.ebuild index 0e4568b8da5d..28c00c72150f 100644 --- a/dev-ml/labltk/labltk-8.06.12.ebuild +++ b/dev-ml/labltk/labltk-8.06.12.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/garrigue/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="QPL-1.0 LGPL-2" SLOT="0/${PV}" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" IUSE="+ocamlopt X" RDEPEND="dev-lang/tk:= diff --git a/dev-ml/logs/logs-0.7.0-r1.ebuild b/dev-ml/logs/logs-0.7.0-r1.ebuild index ead5ab78df5b..7e84cf5b1c70 100644 --- a/dev-ml/logs/logs-0.7.0-r1.ebuild +++ b/dev-ml/logs/logs-0.7.0-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/logs/releases/${P}.tbz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+fmt cli +lwt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/luv/luv-0.5.11.ebuild b/dev-ml/luv/luv-0.5.11.ebuild index a8a5f1531183..8e33c29ce697 100644 --- a/dev-ml/luv/luv-0.5.11.ebuild +++ b/dev-ml/luv/luv-0.5.11.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/aantron/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/lwt/lwt-5.4.2-r1.ebuild b/dev-ml/lwt/lwt-5.4.2-r1.ebuild index 9fd078bdb572..416c08864003 100644 --- a/dev-ml/lwt/lwt-5.4.2-r1.ebuild +++ b/dev-ml/lwt/lwt-5.4.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ HOMEPAGE="http://ocsigen.org/lwt" SLOT="0/${PV}" LICENSE="LGPL-2.1-with-linking-exception" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/mccs/mccs-1.1.13.ebuild b/dev-ml/mccs/mccs-1.1.13.ebuild index 84cb98d373fe..0fb1656753d4 100644 --- a/dev-ml/mccs/mccs-1.1.13.ebuild +++ b/dev-ml/mccs/mccs-1.1.13.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}"/ocaml-${PN}-$(ver_rs 2 '-') LICENSE="BSD" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/menhir/menhir-20211012.ebuild b/dev-ml/menhir/menhir-20211012.ebuild index eee8ab93b315..8c945af6e7bc 100644 --- a/dev-ml/menhir/menhir-20211012.ebuild +++ b/dev-ml/menhir/menhir-20211012.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://gitlab.inria.fr/fpottier/${PN}/-/archive/${PV}/${P}.tar.gz" LICENSE="GPL-2 LGPL-2-with-linking-exception" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" src_install() { diff --git a/dev-ml/mirage-clock/mirage-clock-3.1.0.ebuild b/dev-ml/mirage-clock/mirage-clock-3.1.0.ebuild index 5cbe6137002f..f2e3d420d7a5 100644 --- a/dev-ml/mirage-clock/mirage-clock-3.1.0.ebuild +++ b/dev-ml/mirage-clock/mirage-clock-3.1.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/mirage/mirage-clock/archive/v${PV}.tar.gz -> ${P}.ta LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" BDEPEND="dev-ml/dune-configurator" diff --git a/dev-ml/mmap/mmap-1.1.0.ebuild b/dev-ml/mmap/mmap-1.1.0.ebuild index 1a0687a345c9..589b965a2041 100644 --- a/dev-ml/mmap/mmap-1.1.0.ebuild +++ b/dev-ml/mmap/mmap-1.1.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/mirage/mmap/releases/download/v${PV}/${PN}-v${PV}.tb LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" S="${WORKDIR}/${PN}-v${PV}" diff --git a/dev-ml/mtime/mtime-1.3.0.ebuild b/dev-ml/mtime/mtime-1.3.0.ebuild index a6d491ea6add..adbb8faab32b 100644 --- a/dev-ml/mtime/mtime-1.3.0.ebuild +++ b/dev-ml/mtime/mtime-1.3.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/mtime/releases/${P}.tbz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-ml/num/num-1.4-r3.ebuild b/dev-ml/num/num-1.4-r3.ebuild index fda33576860b..87932004da40 100644 --- a/dev-ml/num/num-1.4-r3.ebuild +++ b/dev-ml/num/num-1.4-r3.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/ocaml/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1-with-linking-exception" SLOT="0" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" IUSE="+ocamlopt" RDEPEND="dev-lang/ocaml:=[ocamlopt?]" diff --git a/dev-ml/ocaml-base64/ocaml-base64-3.5.0.ebuild b/dev-ml/ocaml-base64/ocaml-base64-3.5.0.ebuild index 23c1fd99840d..95622eefd12b 100644 --- a/dev-ml/ocaml-base64/ocaml-base64-3.5.0.ebuild +++ b/dev-ml/ocaml-base64/ocaml-base64-3.5.0.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/mirage/ocaml-base64/archive/v${PV}.tar.gz -> ${P}.ta LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/ocaml-compiler-libs/ocaml-compiler-libs-0.12.4.ebuild b/dev-ml/ocaml-compiler-libs/ocaml-compiler-libs-0.12.4.ebuild index e7afbbcd5579..63ab03c9f078 100644 --- a/dev-ml/ocaml-compiler-libs/ocaml-compiler-libs-0.12.4.ebuild +++ b/dev-ml/ocaml-compiler-libs/ocaml-compiler-libs-0.12.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,5 +11,5 @@ SRC_URI="https://github.com/janestreet/ocaml-compiler-libs/archive/v${PV}.tar.gz LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" diff --git a/dev-ml/ocaml-ctypes/ocaml-ctypes-0.20.0.ebuild b/dev-ml/ocaml-ctypes/ocaml-ctypes-0.20.0.ebuild index 22dbf916bf59..b6e2c219acec 100644 --- a/dev-ml/ocaml-ctypes/ocaml-ctypes-0.20.0.ebuild +++ b/dev-ml/ocaml-ctypes/ocaml-ctypes-0.20.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/ocamllabs/ocaml-ctypes/archive/${PV}.tar.gz -> ${P}. LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-ml/ocaml-expat/ocaml-expat-1.1.0-r1.ebuild b/dev-ml/ocaml-expat/ocaml-expat-1.1.0-r1.ebuild index c7c01048f9bf..6f29b11e860b 100644 --- a/dev-ml/ocaml-expat/ocaml-expat-1.1.0-r1.ebuild +++ b/dev-ml/ocaml-expat/ocaml-expat-1.1.0-r1.ebuild @@ -20,7 +20,7 @@ DEPEND="${RDEPEND} SLOT="0/${PV}" LICENSE="MIT" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" PATCHES=( "${FILESDIR}/ounit2.patch" "${FILESDIR}/${P}-cc.patch" diff --git a/dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.3.0.ebuild b/dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.3.0.ebuild index 29db658239e5..3d455ffdd72a 100644 --- a/dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.3.0.ebuild +++ b/dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.3.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/let-def/ocaml-migrate-parsetree/archive/v${PV}.tar.g LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test ) strip" diff --git a/dev-ml/ocamlbuild/ocamlbuild-0.14.0-r1.ebuild b/dev-ml/ocamlbuild/ocamlbuild-0.14.0-r1.ebuild index a2201f89d33f..15745e9f7f0d 100644 --- a/dev-ml/ocamlbuild/ocamlbuild-0.14.0-r1.ebuild +++ b/dev-ml/ocamlbuild/ocamlbuild-0.14.0-r1.ebuild @@ -9,7 +9,7 @@ SRC_URI="https://github.com/ocaml/ocamlbuild/archive/${PV}.tar.gz -> ${P}.tar.gz LICENSE="LGPL-2.1-with-linking-exception" SLOT="0/${PV}" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" REQUIRED_USE="test? ( ocamlopt )" diff --git a/dev-ml/ocamlgraph/ocamlgraph-2.0.0-r1.ebuild b/dev-ml/ocamlgraph/ocamlgraph-2.0.0-r1.ebuild index d85b820a5c14..492f93369dd5 100644 --- a/dev-ml/ocamlgraph/ocamlgraph-2.0.0-r1.ebuild +++ b/dev-ml/ocamlgraph/ocamlgraph-2.0.0-r1.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="http://ocamlgraph.lri.fr/index.en.html" SRC_URI="https://github.com/backtracking/${PN}/releases/download/${PV}/${P}.tbz" LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" RDEPEND=" dev-ml/stdlib-shims:=[ocamlopt?] dev-ml/graphics:=[ocamlopt?]" diff --git a/dev-ml/ocplib-endian/ocplib-endian-1.2.ebuild b/dev-ml/ocplib-endian/ocplib-endian-1.2.ebuild index 43cb3ed3821d..d8e94ebb2460 100644 --- a/dev-ml/ocplib-endian/ocplib-endian-1.2.ebuild +++ b/dev-ml/ocplib-endian/ocplib-endian-1.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/OCamlPro/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1-with-linking-exception" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" # 2 of 70 tests fail diff --git a/dev-ml/octavius/octavius-1.2.2.ebuild b/dev-ml/octavius/octavius-1.2.2.ebuild index bc04222a3ad6..00dffc12cb9b 100644 --- a/dev-ml/octavius/octavius-1.2.2.ebuild +++ b/dev-ml/octavius/octavius-1.2.2.ebuild @@ -11,5 +11,5 @@ SRC_URI="https://github.com/ocaml-doc/octavius/archive/v${PV}.tar.gz -> ${P}.tar LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" diff --git a/dev-ml/opam-client/opam-client-2.1.2.ebuild b/dev-ml/opam-client/opam-client-2.1.2.ebuild index e27961dead03..9160bccc9d77 100644 --- a/dev-ml/opam-client/opam-client-2.1.2.ebuild +++ b/dev-ml/opam-client/opam-client-2.1.2.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/opam-${PV/_/-}" LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/opam-core/opam-core-2.1.2.ebuild b/dev-ml/opam-core/opam-core-2.1.2.ebuild index fb6df20a60b1..1e81f19a79fc 100644 --- a/dev-ml/opam-core/opam-core-2.1.2.ebuild +++ b/dev-ml/opam-core/opam-core-2.1.2.ebuild @@ -16,7 +16,7 @@ OPAM_INSTALLER="${S}/opam-installer" LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" RDEPEND=" dev-ml/ocamlgraph:= diff --git a/dev-ml/opam-file-format/opam-file-format-2.1.3.ebuild b/dev-ml/opam-file-format/opam-file-format-2.1.3.ebuild index 45c1d11db101..9ab5be37d47c 100644 --- a/dev-ml/opam-file-format/opam-file-format-2.1.3.ebuild +++ b/dev-ml/opam-file-format/opam-file-format-2.1.3.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://github.com/ocaml/opam-file-format/archive/${MY_PV}.tar.gz -> ${ LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/opam-format/opam-format-2.1.2-r1.ebuild b/dev-ml/opam-format/opam-format-2.1.2-r1.ebuild index caed3309bce2..b1a5c43ceb11 100644 --- a/dev-ml/opam-format/opam-format-2.1.2-r1.ebuild +++ b/dev-ml/opam-format/opam-format-2.1.2-r1.ebuild @@ -16,7 +16,7 @@ OPAM_INSTALLER="${S}/opam-installer" LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/opam-installer/opam-installer-2.1.2.ebuild b/dev-ml/opam-installer/opam-installer-2.1.2.ebuild index d506458c738b..dadc23c1ad6f 100644 --- a/dev-ml/opam-installer/opam-installer-2.1.2.ebuild +++ b/dev-ml/opam-installer/opam-installer-2.1.2.ebuild @@ -17,7 +17,7 @@ OPAM_INSTALLER="${S}/_build/install/default/bin/opam-installer" LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" PATCHES=( "${WORKDIR}"/opam-2.1.0-dose3-6.patch ) diff --git a/dev-ml/opam-repository/opam-repository-2.1.2.ebuild b/dev-ml/opam-repository/opam-repository-2.1.2.ebuild index 0aad5fc5074b..9e9b42b29bf3 100644 --- a/dev-ml/opam-repository/opam-repository-2.1.2.ebuild +++ b/dev-ml/opam-repository/opam-repository-2.1.2.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/opam-${PV/_/-}" LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RESTRICT="test" diff --git a/dev-ml/opam-solver/opam-solver-2.1.2.ebuild b/dev-ml/opam-solver/opam-solver-2.1.2.ebuild index be6f4bc9ddc8..f7d57f853073 100644 --- a/dev-ml/opam-solver/opam-solver-2.1.2.ebuild +++ b/dev-ml/opam-solver/opam-solver-2.1.2.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/opam-${PV/_/-}" LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/opam-state/opam-state-2.1.2.ebuild b/dev-ml/opam-state/opam-state-2.1.2.ebuild index f3b795b1704d..c78f8d55f3e5 100644 --- a/dev-ml/opam-state/opam-state-2.1.2.ebuild +++ b/dev-ml/opam-state/opam-state-2.1.2.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/opam-${PV/_/-}" LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RESTRICT="test" diff --git a/dev-ml/opam/opam-2.1.2.ebuild b/dev-ml/opam/opam-2.1.2.ebuild index 88a8634a896d..566843487a72 100644 --- a/dev-ml/opam/opam-2.1.2.ebuild +++ b/dev-ml/opam/opam-2.1.2.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/opam-${PV/_/-}" LICENSE="LGPL-2.1-with-linking-exception" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/ounit2/ounit2-2.2.6.ebuild b/dev-ml/ounit2/ounit2-2.2.6.ebuild index b454e94dc082..d86216a306f2 100644 --- a/dev-ml/ounit2/ounit2-2.2.6.ebuild +++ b/dev-ml/ounit2/ounit2-2.2.6.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}/ounit-${PV}" LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/parmap/parmap-1.2.4.ebuild b/dev-ml/parmap/parmap-1.2.4.ebuild index 195afde1cbcd..6c2389eba68b 100644 --- a/dev-ml/parmap/parmap-1.2.4.ebuild +++ b/dev-ml/parmap/parmap-1.2.4.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-${MY_PV/+/-}" LICENSE="LGPL-2-with-linking-exception" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" BDEPEND="dev-ml/dune-configurator" diff --git a/dev-ml/parsexp/parsexp-0.14.1.ebuild b/dev-ml/parsexp/parsexp-0.14.1.ebuild index 810e47fb94a5..4ced2a5e905f 100644 --- a/dev-ml/parsexp/parsexp-0.14.1.ebuild +++ b/dev-ml/parsexp/parsexp-0.14.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/parsexp/archive/v${PV}.tar.gz -> ${P}.tar LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/patience_diff/patience_diff-0.14.0.ebuild b/dev-ml/patience_diff/patience_diff-0.14.0.ebuild index 67d3bdbbc951..e73d50987f38 100644 --- a/dev-ml/patience_diff/patience_diff-0.14.0.ebuild +++ b/dev-ml/patience_diff/patience_diff-0.14.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/$(ver_cut 1-2)" -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~riscv" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/pcre-ocaml/pcre-ocaml-7.4.6-r2.ebuild b/dev-ml/pcre-ocaml/pcre-ocaml-7.4.6-r2.ebuild index b195020a1b29..eb6393216324 100644 --- a/dev-ml/pcre-ocaml/pcre-ocaml-7.4.6-r2.ebuild +++ b/dev-ml/pcre-ocaml/pcre-ocaml-7.4.6-r2.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/pcre-${PV}" LICENSE="LGPL-2.1-with-linking-exception" IUSE="examples +ocamlopt" SLOT="0/${PV}" -KEYWORDS="amd64 ~arm ~arm64 ~ppc x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv x86" BDEPEND="dev-ml/dune-configurator" RDEPEND=">=dev-libs/libpcre-4.5 diff --git a/dev-ml/ppx_assert/ppx_assert-0.14.0.ebuild b/dev-ml/ppx_assert/ppx_assert-0.14.0.ebuild index 5e0d9cea60ac..dc67973148b1 100644 --- a/dev-ml/ppx_assert/ppx_assert-0.14.0.ebuild +++ b/dev-ml/ppx_assert/ppx_assert-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_base/ppx_base-0.14.0.ebuild b/dev-ml/ppx_base/ppx_base-0.14.0.ebuild index 1f4fdf2de065..e69ff3768be7 100644 --- a/dev-ml/ppx_base/ppx_base-0.14.0.ebuild +++ b/dev-ml/ppx_base/ppx_base-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_bench/ppx_bench-0.14.1.ebuild b/dev-ml/ppx_bench/ppx_bench-0.14.1.ebuild index 80d9b853cd2f..49dd39a57db3 100644 --- a/dev-ml/ppx_bench/ppx_bench-0.14.1.ebuild +++ b/dev-ml/ppx_bench/ppx_bench-0.14.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_bin_prot/ppx_bin_prot-0.14.0.ebuild b/dev-ml/ppx_bin_prot/ppx_bin_prot-0.14.0.ebuild index bfef345296e1..41ef683e28d6 100644 --- a/dev-ml/ppx_bin_prot/ppx_bin_prot-0.14.0.ebuild +++ b/dev-ml/ppx_bin_prot/ppx_bin_prot-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/ppx_cold/ppx_cold-0.14.0.ebuild b/dev-ml/ppx_cold/ppx_cold-0.14.0.ebuild index 37e55c1fa7ef..4f8729e7e40d 100644 --- a/dev-ml/ppx_cold/ppx_cold-0.14.0.ebuild +++ b/dev-ml/ppx_cold/ppx_cold-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_compare/ppx_compare-0.14.0.ebuild b/dev-ml/ppx_compare/ppx_compare-0.14.0.ebuild index 8965117936bc..2753accd6d18 100644 --- a/dev-ml/ppx_compare/ppx_compare-0.14.0.ebuild +++ b/dev-ml/ppx_compare/ppx_compare-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_custom_printf/ppx_custom_printf-0.14.1.ebuild b/dev-ml/ppx_custom_printf/ppx_custom_printf-0.14.1.ebuild index ca0f971d4991..84440d1d1ceb 100644 --- a/dev-ml/ppx_custom_printf/ppx_custom_printf-0.14.1.ebuild +++ b/dev-ml/ppx_custom_printf/ppx_custom_printf-0.14.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_derivers/ppx_derivers-1.2.1.ebuild b/dev-ml/ppx_derivers/ppx_derivers-1.2.1.ebuild index 124e6f07fb22..b584f81c57a5 100644 --- a/dev-ml/ppx_derivers/ppx_derivers-1.2.1.ebuild +++ b/dev-ml/ppx_derivers/ppx_derivers-1.2.1.ebuild @@ -11,5 +11,5 @@ SRC_URI="https://github.com/diml/ppx_derivers/archive/${PV}.tar.gz -> ${P}.tar.g LICENSE="BSD" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" diff --git a/dev-ml/ppx_enumerate/ppx_enumerate-0.14.0.ebuild b/dev-ml/ppx_enumerate/ppx_enumerate-0.14.0.ebuild index a31b8e1c9962..09e7293d4f72 100644 --- a/dev-ml/ppx_enumerate/ppx_enumerate-0.14.0.ebuild +++ b/dev-ml/ppx_enumerate/ppx_enumerate-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_expect/ppx_expect-0.14.2.ebuild b/dev-ml/ppx_expect/ppx_expect-0.14.2.ebuild index 74d5b7f6ccfd..7bca8391df7b 100644 --- a/dev-ml/ppx_expect/ppx_expect-0.14.2.ebuild +++ b/dev-ml/ppx_expect/ppx_expect-0.14.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" # https://bugs.gentoo.org/749291#c2 RESTRICT="test" diff --git a/dev-ml/ppx_fail/ppx_fail-0.14.0.ebuild b/dev-ml/ppx_fail/ppx_fail-0.14.0.ebuild index 424de0828495..e8d841df2ec5 100644 --- a/dev-ml/ppx_fail/ppx_fail-0.14.0.ebuild +++ b/dev-ml/ppx_fail/ppx_fail-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_fields_conv/ppx_fields_conv-0.14.2.ebuild b/dev-ml/ppx_fields_conv/ppx_fields_conv-0.14.2.ebuild index 30a5992fb3fc..d610d76cf65f 100644 --- a/dev-ml/ppx_fields_conv/ppx_fields_conv-0.14.2.ebuild +++ b/dev-ml/ppx_fields_conv/ppx_fields_conv-0.14.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_fixed_literal/ppx_fixed_literal-0.14.0.ebuild b/dev-ml/ppx_fixed_literal/ppx_fixed_literal-0.14.0.ebuild index 49bbe948363b..6fb9d4346e9c 100644 --- a/dev-ml/ppx_fixed_literal/ppx_fixed_literal-0.14.0.ebuild +++ b/dev-ml/ppx_fixed_literal/ppx_fixed_literal-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/ppx_fixed_literal/archive/v${PV}.tar.gz - LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_hash/ppx_hash-0.14.0.ebuild b/dev-ml/ppx_hash/ppx_hash-0.14.0.ebuild index b395ba3b8d35..7ec1254c0649 100644 --- a/dev-ml/ppx_hash/ppx_hash-0.14.0.ebuild +++ b/dev-ml/ppx_hash/ppx_hash-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_here/ppx_here-0.14.0.ebuild b/dev-ml/ppx_here/ppx_here-0.14.0.ebuild index 12c631a1e6ed..f321109a54fd 100644 --- a/dev-ml/ppx_here/ppx_here-0.14.0.ebuild +++ b/dev-ml/ppx_here/ppx_here-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_inline_test/ppx_inline_test-0.14.1.ebuild b/dev-ml/ppx_inline_test/ppx_inline_test-0.14.1.ebuild index 249777fa3bec..2a1dfb60b190 100644 --- a/dev-ml/ppx_inline_test/ppx_inline_test-0.14.1.ebuild +++ b/dev-ml/ppx_inline_test/ppx_inline_test-0.14.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_jane/ppx_jane-0.14.0.ebuild b/dev-ml/ppx_jane/ppx_jane-0.14.0.ebuild index 88959e695049..bb4eaa6be97a 100644 --- a/dev-ml/ppx_jane/ppx_jane-0.14.0.ebuild +++ b/dev-ml/ppx_jane/ppx_jane-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_js_style/ppx_js_style-0.14.1.ebuild b/dev-ml/ppx_js_style/ppx_js_style-0.14.1.ebuild index 6c37bba4923e..b9de5166131c 100644 --- a/dev-ml/ppx_js_style/ppx_js_style-0.14.1.ebuild +++ b/dev-ml/ppx_js_style/ppx_js_style-0.14.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_let/ppx_let-0.14.0.ebuild b/dev-ml/ppx_let/ppx_let-0.14.0.ebuild index e832c31f3039..a1f70cc1d6f0 100644 --- a/dev-ml/ppx_let/ppx_let-0.14.0.ebuild +++ b/dev-ml/ppx_let/ppx_let-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_module_timer/ppx_module_timer-0.14.0.ebuild b/dev-ml/ppx_module_timer/ppx_module_timer-0.14.0.ebuild index aad411bda2bc..b76f4079b10b 100644 --- a/dev-ml/ppx_module_timer/ppx_module_timer-0.14.0.ebuild +++ b/dev-ml/ppx_module_timer/ppx_module_timer-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_optcomp/ppx_optcomp-0.14.3.ebuild b/dev-ml/ppx_optcomp/ppx_optcomp-0.14.3.ebuild index 86905259ed48..860bca9aecac 100644 --- a/dev-ml/ppx_optcomp/ppx_optcomp-0.14.3.ebuild +++ b/dev-ml/ppx_optcomp/ppx_optcomp-0.14.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/ppx_optcomp/archive/v${PV}.tar.gz -> ${P} LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_optional/ppx_optional-0.14.0.ebuild b/dev-ml/ppx_optional/ppx_optional-0.14.0.ebuild index bae5d4dad48e..c2135f01b6e9 100644 --- a/dev-ml/ppx_optional/ppx_optional-0.14.0.ebuild +++ b/dev-ml/ppx_optional/ppx_optional-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_pipebang/ppx_pipebang-0.14.0.ebuild b/dev-ml/ppx_pipebang/ppx_pipebang-0.14.0.ebuild index a11ccbe392a4..70ea6e43c8ff 100644 --- a/dev-ml/ppx_pipebang/ppx_pipebang-0.14.0.ebuild +++ b/dev-ml/ppx_pipebang/ppx_pipebang-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_sexp_conv/ppx_sexp_conv-0.14.3.ebuild b/dev-ml/ppx_sexp_conv/ppx_sexp_conv-0.14.3.ebuild index dbbb87d8b639..de9865a70a5c 100644 --- a/dev-ml/ppx_sexp_conv/ppx_sexp_conv-0.14.3.ebuild +++ b/dev-ml/ppx_sexp_conv/ppx_sexp_conv-0.14.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/ppx_sexp_conv/archive/v${PV}.tar.gz -> ${ LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" # Upper bound on ppxlib for bug #769536 diff --git a/dev-ml/ppx_sexp_message/ppx_sexp_message-0.14.1.ebuild b/dev-ml/ppx_sexp_message/ppx_sexp_message-0.14.1.ebuild index bb04016aa254..273b3948c5c0 100644 --- a/dev-ml/ppx_sexp_message/ppx_sexp_message-0.14.1.ebuild +++ b/dev-ml/ppx_sexp_message/ppx_sexp_message-0.14.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_sexp_value/ppx_sexp_value-0.14.0.ebuild b/dev-ml/ppx_sexp_value/ppx_sexp_value-0.14.0.ebuild index d6eb4585c8fb..f0cfc2381a22 100644 --- a/dev-ml/ppx_sexp_value/ppx_sexp_value-0.14.0.ebuild +++ b/dev-ml/ppx_sexp_value/ppx_sexp_value-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_stable/ppx_stable-0.14.1.ebuild b/dev-ml/ppx_stable/ppx_stable-0.14.1.ebuild index a4c0b625a4a7..711ba43ee52c 100644 --- a/dev-ml/ppx_stable/ppx_stable-0.14.1.ebuild +++ b/dev-ml/ppx_stable/ppx_stable-0.14.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_string/ppx_string-0.14.1.ebuild b/dev-ml/ppx_string/ppx_string-0.14.1.ebuild index cd9fc59dacbf..916db55cc6c2 100644 --- a/dev-ml/ppx_string/ppx_string-0.14.1.ebuild +++ b/dev-ml/ppx_string/ppx_string-0.14.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/ppx_string/archive/v${PV}.tar.gz -> ${P}. LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_typerep_conv/ppx_typerep_conv-0.14.2.ebuild b/dev-ml/ppx_typerep_conv/ppx_typerep_conv-0.14.2.ebuild index dd884b430dc9..5928e17db8ae 100644 --- a/dev-ml/ppx_typerep_conv/ppx_typerep_conv-0.14.2.ebuild +++ b/dev-ml/ppx_typerep_conv/ppx_typerep_conv-0.14.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppx_variants_conv/ppx_variants_conv-0.14.2.ebuild b/dev-ml/ppx_variants_conv/ppx_variants_conv-0.14.2.ebuild index 51d2033195ec..83ae31926ca9 100644 --- a/dev-ml/ppx_variants_conv/ppx_variants_conv-0.14.2.ebuild +++ b/dev-ml/ppx_variants_conv/ppx_variants_conv-0.14.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/ppxlib/ppxlib-0.24.0.ebuild b/dev-ml/ppxlib/ppxlib-0.24.0.ebuild index 8da85415c3f6..ea7d28073d7a 100644 --- a/dev-ml/ppxlib/ppxlib-0.24.0.ebuild +++ b/dev-ml/ppxlib/ppxlib-0.24.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,7 +16,7 @@ SRC_URI="https://github.com/ocaml-ppx/ppxlib/archive/${PV}.tar.gz -> ${P}.tar.gz LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/re/re-1.10.3.ebuild b/dev-ml/re/re-1.10.3.ebuild index 9dc727449c23..8eecc1dfb562 100644 --- a/dev-ml/re/re-1.10.3.ebuild +++ b/dev-ml/re/re-1.10.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ S="${WORKDIR}/ocaml-${P}" LICENSE="LGPL-2-with-linking-exception" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/react/react-1.2.1-r1.ebuild b/dev-ml/react/react-1.2.1-r1.ebuild index c6e118bea164..f6a9325b3b29 100644 --- a/dev-ml/react/react-1.2.1-r1.ebuild +++ b/dev-ml/react/react-1.2.1-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz" LICENSE="BSD" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-ml/result/result-1.5.ebuild b/dev-ml/result/result-1.5.ebuild index b38978376a2d..2acf2ed0de59 100644 --- a/dev-ml/result/result-1.5.ebuild +++ b/dev-ml/result/result-1.5.ebuild @@ -11,5 +11,5 @@ SRC_URI="https://github.com/janestreet/result/archive/${PV}.tar.gz -> ${P}.tar.g LICENSE="BSD" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" diff --git a/dev-ml/rresult/rresult-0.7.0.ebuild b/dev-ml/rresult/rresult-0.7.0.ebuild index b398a21a12ae..772de481dc8e 100644 --- a/dev-ml/rresult/rresult-0.7.0.ebuild +++ b/dev-ml/rresult/rresult-0.7.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/rresult/releases/${P}.tbz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" RDEPEND="dev-ml/result:= >=dev-lang/ocaml-4.08:=" diff --git a/dev-ml/seq/seq-0.2.2.ebuild b/dev-ml/seq/seq-0.2.2.ebuild index 5fb3541e7a91..78c149e9992d 100644 --- a/dev-ml/seq/seq-0.2.2.ebuild +++ b/dev-ml/seq/seq-0.2.2.ebuild @@ -11,5 +11,5 @@ SRC_URI="https://github.com/c-cube/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" diff --git a/dev-ml/sexplib/sexplib-0.14.0.ebuild b/dev-ml/sexplib/sexplib-0.14.0.ebuild index 0bc084c3cb4f..d1cbba8e921d 100644 --- a/dev-ml/sexplib/sexplib-0.14.0.ebuild +++ b/dev-ml/sexplib/sexplib-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/sexplib/archive/v${PV}.tar.gz -> ${P}.tar LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/sexplib0/sexplib0-0.14.0.ebuild b/dev-ml/sexplib0/sexplib0-0.14.0.ebuild index a82fcd486d79..3b225cdc1803 100644 --- a/dev-ml/sexplib0/sexplib0-0.14.0.ebuild +++ b/dev-ml/sexplib0/sexplib0-0.14.0.ebuild @@ -11,5 +11,5 @@ SRC_URI="https://github.com/janestreet/sexplib0/archive/v${PV}.tar.gz -> ${P}.ta LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" diff --git a/dev-ml/spawn/spawn-0.15.0.ebuild b/dev-ml/spawn/spawn-0.15.0.ebuild index 7f4f39e52537..9370f55a8646 100644 --- a/dev-ml/spawn/spawn-0.15.0.ebuild +++ b/dev-ml/spawn/spawn-0.15.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt test" RESTRICT="!test? ( test )" diff --git a/dev-ml/splittable_random/splittable_random-0.14.0.ebuild b/dev-ml/splittable_random/splittable_random-0.14.0.ebuild index 6f1395c73551..10e40ec481bb 100644 --- a/dev-ml/splittable_random/splittable_random-0.14.0.ebuild +++ b/dev-ml/splittable_random/splittable_random-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/stdio/stdio-0.14.0.ebuild b/dev-ml/stdio/stdio-0.14.0.ebuild index 76e3b05807df..eb130633c583 100644 --- a/dev-ml/stdio/stdio-0.14.0.ebuild +++ b/dev-ml/stdio/stdio-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/stdio/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/stdlib-shims/stdlib-shims-0.3.0.ebuild b/dev-ml/stdlib-shims/stdlib-shims-0.3.0.ebuild index 91bbbcc943c2..8ef89b963ab2 100644 --- a/dev-ml/stdlib-shims/stdlib-shims-0.3.0.ebuild +++ b/dev-ml/stdlib-shims/stdlib-shims-0.3.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/ocaml/${PN}/releases/download/${PV}/${P}.tbz" LICENSE="LGPL-2.1-with-linking-exception" SLOT="0" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DOCS=( "README.md" "CHANGES.md" "LICENSE" ) diff --git a/dev-ml/textutils/textutils-0.14.0.ebuild b/dev-ml/textutils/textutils-0.14.0.ebuild index 7c8fa5a12505..ff21a6b6789a 100644 --- a/dev-ml/textutils/textutils-0.14.0.ebuild +++ b/dev-ml/textutils/textutils-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/time_now/time_now-0.14.0.ebuild b/dev-ml/time_now/time_now-0.14.0.ebuild index 08275f304df6..99ee779a443c 100644 --- a/dev-ml/time_now/time_now-0.14.0.ebuild +++ b/dev-ml/time_now/time_now-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND=" diff --git a/dev-ml/timezone/timezone-0.14.0.ebuild b/dev-ml/timezone/timezone-0.14.0.ebuild index e23033bb24d4..5446f2a1e0a4 100644 --- a/dev-ml/timezone/timezone-0.14.0.ebuild +++ b/dev-ml/timezone/timezone-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/topkg/topkg-1.0.5.ebuild b/dev-ml/topkg/topkg-1.0.5.ebuild index 85e68779db2c..984936e880e2 100644 --- a/dev-ml/topkg/topkg-1.0.5.ebuild +++ b/dev-ml/topkg/topkg-1.0.5.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/dbuenzli/topkg/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RDEPEND="dev-ml/result:= diff --git a/dev-ml/typerep/typerep-0.14.0.ebuild b/dev-ml/typerep/typerep-0.14.0.ebuild index 968cdb14b1a1..07af2c0a2dc2 100644 --- a/dev-ml/typerep/typerep-0.14.0.ebuild +++ b/dev-ml/typerep/typerep-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" DEPEND="dev-ml/base:=" diff --git a/dev-ml/uchar/uchar-0.0.2.ebuild b/dev-ml/uchar/uchar-0.0.2.ebuild index 6632bcf9f68b..b877cb8b70f8 100644 --- a/dev-ml/uchar/uchar-0.0.2.ebuild +++ b/dev-ml/uchar/uchar-0.0.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/ocaml/uchar/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2-with-linking-exception" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" RDEPEND=">=dev-lang/ocaml-4.03:=" diff --git a/dev-ml/uuidm/uuidm-0.9.7.ebuild b/dev-ml/uuidm/uuidm-0.9.7.ebuild index 81fed2a51dca..0b5f822012b1 100644 --- a/dev-ml/uuidm/uuidm-0.9.7.ebuild +++ b/dev-ml/uuidm/uuidm-0.9.7.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/dbuenzli/uuidm/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" BDEPEND=" diff --git a/dev-ml/uutf/uutf-1.0.3.ebuild b/dev-ml/uutf/uutf-1.0.3.ebuild index 6f553e6fb98e..5faf09387207 100644 --- a/dev-ml/uutf/uutf-1.0.3.ebuild +++ b/dev-ml/uutf/uutf-1.0.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/uutf/releases/${P}.tbz" LICENSE="ISC" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="doc utftrip +ocamlopt test" RESTRICT="!test? ( test )" REQUIRED_USE="utftrip? ( ocamlopt )" diff --git a/dev-ml/variantslib/variantslib-0.14.0.ebuild b/dev-ml/variantslib/variantslib-0.14.0.ebuild index 37c4474f8b04..1fe3f3460994 100644 --- a/dev-ml/variantslib/variantslib-0.14.0.ebuild +++ b/dev-ml/variantslib/variantslib-0.14.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-ml/xml-light/xml-light-2.2-r3.ebuild b/dev-ml/xml-light/xml-light-2.2-r3.ebuild index e45e781a15a2..13a88a9f841b 100644 --- a/dev-ml/xml-light/xml-light-2.2-r3.ebuild +++ b/dev-ml/xml-light/xml-light-2.2-r3.ebuild @@ -10,7 +10,7 @@ S="${WORKDIR}/${PN}" LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86" IUSE="doc +ocamlopt" RDEPEND="dev-lang/ocaml:=[ocamlopt?]" diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index ad8494a2fa6f..3d37c70e26b9 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/PyPDF2/Manifest b/dev-python/PyPDF2/Manifest index a749db122873..06001fa2585d 100644 --- a/dev-python/PyPDF2/Manifest +++ b/dev-python/PyPDF2/Manifest @@ -1,5 +1,2 @@ -DIST PyPDF2-1.26.0.tar.gz 77556 BLAKE2B 8ce9b95165a3841154b6e38e24ca5a4db434ceef9c55fbf2d146b379586160cb985948e0feb7aed135f601535d034ef79ddc1af58a670b07ff7d3621907022ec SHA512 7b427f1d099dcd687a718fb8d86e6f677ad45257414c6367e4dfacd8dfef7e3dbe3816027359868764981f36a30721f1731b4c23cbe2f35cfab1c64fb290b034 -DIST PyPDF2-1.27.1.gh.tar.gz 1170252 BLAKE2B 81049707d4dd406405ec994228226edfe7cde4d57007146893c5fec14a4e82355c427cac64a2e338945f06c5bce1802e64bf9b042770a2d2ea7da6ed6982908d SHA512 3bd00e7057af8d0f7fdea378b8fae463ce93d37c68997511df10c53b139c0cb13329143bdac133a825404ab459ab3ead64c455ac3e58ddd5097c2985f86c2a46 -DIST PyPDF2-1.27.3.gh.tar.gz 2036376 BLAKE2B fdb35cc61a0fe4c16de9a3717b03c276478a1810ce99996c391d50ccf9ae2d3e048201e95cf9d51e120674aaea2b6435c648ee238d1c9a45de50406c0b3df196 SHA512 01ec6d2f51e6b0865a6d1b5f7cc0297783ee745336b0d8be295c0b1234e1904f2904d49ebbb0f471e65325a75428ed9904f8c565cb7b7001fce27b22521a7f04 -DIST PyPDF2-1.27.4.gh.tar.gz 2037899 BLAKE2B 6f9a71504303959bd8c84d75e0c695e73ffc1927aa664c5ae8b43c678a692ea9c0b1c852d01ace4aa502dc2bba99c7047e373c427a1d044608d0300f5dd647fa SHA512 c0153226e996166ca5f4fa1f04a496afdc5a465dd427df64422748bad907184d18336dbc929b64b479483cf6e435fdeb1dd79d444bc9f4b8cd5f184acb3236f1 DIST PyPDF2-1.27.5.gh.tar.gz 2053469 BLAKE2B 1a01289145574a4551f1fa237e4c790dd866088787f5bc9afb529ea99424f4d211f1913737cf4a2c744ceae90568ca26612cc4956ff1eda5840624e41df76d78 SHA512 c1f77c7ea46e866da104cf05421ccf15870db07923ff5860a6b44c944d599b38e98d33d6042a155b0698ecd100d1c6f57aa7bb8904dd08e679f6560a578d4488 +DIST PyPDF2-1.27.6.gh.tar.gz 2092950 BLAKE2B 786d5102275d6c04628d76fd0225d453aa8f74cb0a6e135f3d56ed1143c114144aa9daef17e5971ce9e4c14cc01016125107717296d76cf7eb34c1cadbdd42cd SHA512 bf1c60453e6a98a50c382cf967fc7aa1fb8dffc14d426f97bc0e41c34a6534930849fe053c8debe585b3877eadca9f8b43f803b1f01586f6c693a1eefe43e3dd diff --git a/dev-python/PyPDF2/PyPDF2-1.26.0-r2.ebuild b/dev-python/PyPDF2/PyPDF2-1.26.0-r2.ebuild deleted file mode 100644 index 33e37401377e..000000000000 --- a/dev-python/PyPDF2/PyPDF2-1.26.0-r2.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Python library to work with PDF files" -HOMEPAGE="https://pypi.org/project/PyPDF2/ https://github.com/mstamy2/PyPDF2" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~ppc64 x86" -IUSE="examples" - -PATCHES=( "${FILESDIR}/${P}-py3-tests.patch" ) - -python_test() { - "${EPYTHON}" -m unittest Tests.tests || die "Tests failed under ${EPYTHON}" -} - -python_install_all() { - if use examples; then - docinto examples - dodoc -r Sample_Code/. - docompress -x /usr/share/doc/${PF}/examples - fi - distutils-r1_python_install_all -} diff --git a/dev-python/PyPDF2/PyPDF2-1.27.3.ebuild b/dev-python/PyPDF2/PyPDF2-1.27.3.ebuild deleted file mode 100644 index f2b04ef62173..000000000000 --- a/dev-python/PyPDF2/PyPDF2-1.27.3.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Python library to work with PDF files" -HOMEPAGE=" - https://pypi.org/project/PyPDF2/ - https://github.com/py-pdf/PyPDF2/ -" -SRC_URI=" - https://github.com/py-pdf/PyPDF2/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" -IUSE="examples" - -BDEPEND=" - dev-python/pillow[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -python_install_all() { - if use examples; then - docinto examples - dodoc -r Sample_Code/. - docompress -x /usr/share/doc/${PF}/examples - fi - distutils-r1_python_install_all -} diff --git a/dev-python/PyPDF2/PyPDF2-1.27.4.ebuild b/dev-python/PyPDF2/PyPDF2-1.27.4.ebuild deleted file mode 100644 index f2b04ef62173..000000000000 --- a/dev-python/PyPDF2/PyPDF2-1.27.4.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Python library to work with PDF files" -HOMEPAGE=" - https://pypi.org/project/PyPDF2/ - https://github.com/py-pdf/PyPDF2/ -" -SRC_URI=" - https://github.com/py-pdf/PyPDF2/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" -IUSE="examples" - -BDEPEND=" - dev-python/pillow[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -python_install_all() { - if use examples; then - docinto examples - dodoc -r Sample_Code/. - docompress -x /usr/share/doc/${PF}/examples - fi - distutils-r1_python_install_all -} diff --git a/dev-python/PyPDF2/PyPDF2-1.27.5.ebuild b/dev-python/PyPDF2/PyPDF2-1.27.5.ebuild index b644bee3ad2f..4a8334893cf7 100644 --- a/dev-python/PyPDF2/PyPDF2-1.27.5.ebuild +++ b/dev-python/PyPDF2/PyPDF2-1.27.5.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="BSD-2" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +KEYWORDS="amd64 ~arm64 ~ppc64 x86" IUSE="examples" BDEPEND=" diff --git a/dev-python/PyPDF2/PyPDF2-1.27.1.ebuild b/dev-python/PyPDF2/PyPDF2-1.27.6.ebuild similarity index 92% rename from dev-python/PyPDF2/PyPDF2-1.27.1.ebuild rename to dev-python/PyPDF2/PyPDF2-1.27.6.ebuild index f2b04ef62173..b644bee3ad2f 100644 --- a/dev-python/PyPDF2/PyPDF2-1.27.1.ebuild +++ b/dev-python/PyPDF2/PyPDF2-1.27.6.ebuild @@ -29,11 +29,11 @@ BDEPEND=" distutils_enable_tests pytest -python_install_all() { +src_install() { if use examples; then docinto examples dodoc -r Sample_Code/. docompress -x /usr/share/doc/${PF}/examples fi - distutils-r1_python_install_all + distutils-r1_src_install } diff --git a/dev-python/PyPDF2/files/PyPDF2-1.26.0-py3-tests.patch b/dev-python/PyPDF2/files/PyPDF2-1.26.0-py3-tests.patch deleted file mode 100644 index c74491b964a3..000000000000 --- a/dev-python/PyPDF2/files/PyPDF2-1.26.0-py3-tests.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 6b46d03ee3a5bd5c2c18fae8aec8a0020ee68add Mon Sep 17 00:00:00 2001 -From: Venelin Stoykov -Date: Sat, 26 Dec 2015 17:26:00 +0200 -Subject: [PATCH 2/3] Fix tests for Python 3 - ---- - Tests/tests.py | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -diff --git a/Tests/tests.py b/Tests/tests.py -index fa93c10..83b5951 100644 ---- a/Tests/tests.py -+++ b/Tests/tests.py -@@ -27,14 +27,15 @@ def test_PdfReaderFileLoad(self): - ipdf_p1 = ipdf.getPage(0) - - # Retrieve the text of the PDF -- pdftext_file = open(os.path.join(RESOURCE_ROOT, 'crazyones.txt'), 'r') -- pdftext = pdftext_file.read() -- ipdf_p1_text = ipdf_p1.extractText().replace('\n', '') -+ with open(os.path.join(RESOURCE_ROOT, 'crazyones.txt'), 'rb') as pdftext_file: -+ pdftext = pdftext_file.read() -+ -+ ipdf_p1_text = ipdf_p1.extractText().replace('\n', '').encode('utf-8') - - # Compare the text of the PDF to a known source -- self.assertEqual(ipdf_p1_text.encode('utf-8', errors='ignore'), pdftext, -+ self.assertEqual(ipdf_p1_text, pdftext, - msg='PDF extracted text differs from expected value.\n\nExpected:\n\n%r\n\nExtracted:\n\n%r\n\n' -- % (pdftext, ipdf_p1_text.encode('utf-8', errors='ignore'))) -+ % (pdftext, ipdf_p1_text)) - - - class AddJsTestCase(unittest.TestCase): - diff --git a/dev-python/aesara/Manifest b/dev-python/aesara/Manifest index bd2a5932efce..9beae109edb1 100644 --- a/dev-python/aesara/Manifest +++ b/dev-python/aesara/Manifest @@ -1,2 +1,3 @@ DIST aesara-rel-2.4.0.tar.gz 8189236 BLAKE2B 05fd50ddd64ec063b3ea226706d232648e0fc314b754342db9537f1d55abd71a65afee3b3934b41e182fe12c224c8e10e8235ac58ba91c4c9f28d3ad8df1b7ac SHA512 b58e881145e051f97d5065fd46716209e280de46bd49ce6d1294880137aefc550741c6f96a47c8e2dbb54717d7c9f161a92f2cb5d3535687fbb6115641cc714c DIST aesara-rel-2.5.3.tar.gz 8191431 BLAKE2B 698bc3b6f7e84288be3318796989d13d7de92f72c66abfa83b14c08f6310f974f7381d729e712c2bd5e76f398d74a3c5dc03d7515a22254261312e586e3fd461 SHA512 5c1ad9d6ad1fb58be1477713d863f2b1371544ea8293d8e9e1a690860a0483b83c9558827856a2546498bab26360f141a5ee97d4c7f3f2aad773e84f9766a59b +DIST aesara-rel-2.6.0.tar.gz 7846131 BLAKE2B 23e1f115eb2e8794a00d29fa2b9705ba6bf0d17c9bb290675f9406e4008b24b45dfd9b2732cb6fc3c6ce18154a3d75b6b0fc750a99f76588cab91387dbc4728d SHA512 8acff0f3fbb8969970b988f363cb3e2107fd3ee5450f238e426f0959d6bf42909c6eb2951b1803629148a57a9a27c47b4364756942a42692b44abf151cf736d2 diff --git a/dev-python/aesara/aesara-2.6.0.ebuild b/dev-python/aesara/aesara-2.6.0.ebuild new file mode 100644 index 000000000000..5bcb330fb0af --- /dev/null +++ b/dev-python/aesara/aesara-2.6.0.ebuild @@ -0,0 +1,80 @@ +# Copyright 2021-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 multiprocessing optfeature + +MY_P=aesara-rel-${PV} +DESCRIPTION="Library for operating on mathematical expressions with multi-dimensional arrays" +HOMEPAGE=" + https://github.com/aesara-devs/aesara/ + https://pypi.org/project/aesara/ +" +SRC_URI=" + https://github.com/aesara-devs/aesara/archive/rel-${PV}.tar.gz + -> ${MY_P}.tar.gz +" +S="${WORKDIR}/${MY_P}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" + +RDEPEND=" + dev-python/cons[${PYTHON_USEDEP}] + dev-python/etuples[${PYTHON_USEDEP}] + dev-python/logical-unification[${PYTHON_USEDEP}] + dev-python/minikanren[${PYTHON_USEDEP}] + dev-python/filelock[${PYTHON_USEDEP}] + >=dev-python/numpy-1.17.0[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + dev-python/scipy[${PYTHON_USEDEP}] + dev-python/typing-extensions[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/pytest-xdist[${PYTHON_USEDEP}] + ) +" + +distutils_enable_sphinx doc 'dev-python/sphinx_rtd_theme' +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + # speed tests are unreliable + tests/scan/test_basic.py::test_speed + tests/scan/test_basic.py::test_speed_rnn + tests/scan/test_basic.py::test_speed_batchrnn + tests/link/test_vm.py::test_speed + tests/link/test_vm.py::test_speed_lazy + tests/tensor/test_gc.py::test_merge_opt_runtime + + # rounding problem? + # https://github.com/aesara-devs/aesara/issues/477 + tests/tensor/test_math_scipy.py::TestGammaUBroadcast::test_good + tests/tensor/test_math_scipy.py::TestGammaUInplaceBroadcast::test_good + ) + local EPYTEST_IGNORE=( + # we do not package numba + tests/link/test_numba.py + tests/link/test_numba_performance.py + ) + + epytest -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" +} + +python_compile() { + esetup.py build_py + distutils-r1_python_compile + rm "${BUILD_DIR}/install$(python_get_sitedir)/bin/__init__.py" || die +} + +pkg_postinst() { + optfeature "GPU code generation/execution on NVIDIA gpus" dev-util/nvidia-cuda-toolkit dev-util/nvidia-cuda-sdk + optfeature "GPU/CPU code generation on CUDA and OpenCL devices" dev-libs/libgpuarray dev-python/pycuda +} diff --git a/dev-python/argparse-manpage/argparse-manpage-2.2.ebuild b/dev-python/argparse-manpage/argparse-manpage-2.2.ebuild index a99377a656f9..52946bfbf5e1 100644 --- a/dev-python/argparse-manpage/argparse-manpage-2.2.ebuild +++ b/dev-python/argparse-manpage/argparse-manpage-2.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/praiskup/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" +KEYWORDS="~amd64 ~arm64 ~ppc ~sparc ~x86" BDEPEND=" test? ( diff --git a/dev-python/authheaders/Manifest b/dev-python/authheaders/Manifest index 94d8d7bed425..5a00be0a485d 100644 --- a/dev-python/authheaders/Manifest +++ b/dev-python/authheaders/Manifest @@ -1 +1,2 @@ DIST authheaders-0.14.1.tar.gz 101412 BLAKE2B 5ab6ff508123ae6f58eb4297dcd04fe3518244c0f423ecbc292948c437eac4d7ade7eceeaf4f4165625904489d494331d37c18b9dd4052a01e22c799df6c47fe SHA512 842881a6d2c3d192664960a9d1954f6e2c267cc6b07d7567f019869d07c1e40fc12275c381e90ea94559bd43a9d2e183d35e80d0ee9a861e80519a98daf2a699 +DIST authheaders-0.15.0.tar.gz 106222 BLAKE2B 7c0fcf7a85fdadf357c7c69863362de59f7450150143e21177d64b564c7b169cfea63045ae4003472be62dbb6a739181a17022d033a0c417dcfc982953f7e6bc SHA512 9640ff127d42f63a34fb1fa3f8daf149b0968bf0b0d4976cf3b005345125f370a3d15e3c7ef26d276a932c2659f2eef52fa5b98936eb3caeef954b3a1f0b4fd7 diff --git a/dev-python/authheaders/authheaders-0.15.0.ebuild b/dev-python/authheaders/authheaders-0.15.0.ebuild new file mode 100644 index 000000000000..9f1121bd277a --- /dev/null +++ b/dev-python/authheaders/authheaders-0.15.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 2019-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A library wrapping email authentication header verification and generation" +HOMEPAGE=" + https://pypi.org/project/authheaders/ + https://github.com/ValiMail/authentication-headers/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + >=dev-python/authres-1.0.1[${PYTHON_USEDEP}] + dev-python/dkimpy[${PYTHON_USEDEP}] + dev-python/dnspython[${PYTHON_USEDEP}] + >=dev-python/publicsuffix-2.20190205[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest diff --git a/dev-python/authres/authres-1.2.0-r1.ebuild b/dev-python/authres/authres-1.2.0-r1.ebuild new file mode 100644 index 000000000000..274f78a74a92 --- /dev/null +++ b/dev-python/authres/authres-1.2.0-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Parse and generate Authentication-Results headers" +HOMEPAGE=" + https://launchpad.net/authentication-results-python/ + https://pypi.org/project/authres/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~arm64 ~x86" +SLOT="0" + +python_test() { + "${EPYTHON}" -m doctest -v authres/tests || + die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/black/Manifest b/dev-python/black/Manifest index 17cd98220065..1151d6b0ba7c 100644 --- a/dev-python/black/Manifest +++ b/dev-python/black/Manifest @@ -1,3 +1,2 @@ -DIST black-21.12b0.tar.gz 1200305 BLAKE2B cd019b230d2ba1fab88075a5e14cb5de88a4ee283b53d869564f071a104d2810ca31c04db09310b99a1610bdace7d5b9b360b2a3a4810822322a4eacc8998ad8 SHA512 1f6e4eeafd653fa9db608585110f5c5067942031b2d67e630befa899d7fca3c35f52cbde8fc91c2697fb294fb16525254756ebce16e556fc139b621f738bfa22 DIST black-22.1.0.tar.gz 1161720 BLAKE2B d74cbdd39dc1576583cee57089cb6d75a338f2d6640697adda79d38d02eeb51664049dca934d5014761d0fd4080ca2f40a3ea10c30e40bde9fe6af6c178b202c SHA512 9b97a3b32ecebebeb61ea581784a9b2215540c20533097fe87d5ef3c046dbe7c2ab8f2f21d1884cbe0ddd458434f17eb9b540764f955385873e6fdef86c3014c DIST black-22.3.0.tar.gz 1154456 BLAKE2B c89b43722839748dff0ce60debb684cd8eeae5ef5fb7e080f6b0031412381d7be121ce62ad252a67fa7930726243680a4bf183417611617be5af39722164289d SHA512 fc44576b93a6e158f625ad5444247f6a59a1ebcc7f0c73ed40d557a9a865457b297eabd492f01999e51ee3e5c3fa83f3d6e3c10937ecaa8c1d36f7541736d2e4 diff --git a/dev-python/black/black-21.12_beta0-r1.ebuild b/dev-python/black/black-21.12_beta0-r1.ebuild deleted file mode 100644 index 140a9e45a8a2..000000000000 --- a/dev-python/black/black-21.12_beta0-r1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 optfeature - -MY_PV="${PV//_beta/b}" -MY_P="${PN}-${MY_PV}" - -DESCRIPTION="The uncompromising Python code formatter" -HOMEPAGE="https://black.readthedocs.io/en/stable/ https://github.com/psf/black" -SRC_URI="https://github.com/psf/${PN}/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos" - -RDEPEND=" - >=dev-python/click-8.0.0[${PYTHON_USEDEP}] - >=dev-python/mypy_extensions-0.4.3[${PYTHON_USEDEP}] - >=dev-python/platformdirs-2[${PYTHON_USEDEP}] - =:' \ - -e 's/setuptools_scm\[toml\]>=[0-9.]*/setuptools_scm[toml]/' setup.cfg || die - distutils-r1_src_prepare -} - -python_test() { - cp "${S}"/src/black_primer/primer.json \ - "${BUILD_DIR}"/lib/black_primer/primer.json || die - distutils_install_for_testing - epytest -m "not python2" -} - -pkg_postinst() { - optfeature "blackd - HTTP API for black" "dev-python/aiohttp dev-python/aiohttp-cors" -} diff --git a/dev-python/black/black-21.12_beta0.ebuild b/dev-python/black/black-21.12_beta0.ebuild deleted file mode 100644 index 92783419ca96..000000000000 --- a/dev-python/black/black-21.12_beta0.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 optfeature - -MY_PV="${PV//_beta/b}" -MY_P="${PN}-${MY_PV}" - -DESCRIPTION="The uncompromising Python code formatter" -HOMEPAGE="https://black.readthedocs.io/en/stable/ https://github.com/psf/black" -SRC_URI="https://github.com/psf/${PN}/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos" - -RDEPEND=" - >=dev-python/click-8.0.0[${PYTHON_USEDEP}] - >=dev-python/mypy_extensions-0.4.3[${PYTHON_USEDEP}] - >=dev-python/platformdirs-2[${PYTHON_USEDEP}] - =:' \ - -e 's/setuptools_scm\[toml\]>=[0-9.]*/setuptools_scm[toml]/' setup.cfg || die - distutils-r1_src_prepare -} - -python_test() { - cp "${S}"/src/black_primer/primer.json \ - "${BUILD_DIR}"/lib/black_primer/primer.json || die - distutils_install_for_testing - epytest -m "not python2" -} - -pkg_postinst() { - optfeature "blackd - HTTP API for black" dev-python/aiohttp dev-python/aiohttp-cors -} diff --git a/dev-python/black/files/black-21.12_beta0-support-tomli-2.patch b/dev-python/black/files/black-21.12_beta0-support-tomli-2.patch deleted file mode 100644 index 5374dc6e82a9..000000000000 --- a/dev-python/black/files/black-21.12_beta0-support-tomli-2.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 389e9c23a9e622ee6090d902cc5f56c5f76cdee9 Mon Sep 17 00:00:00 2001 -From: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com> -Date: Tue, 21 Dec 2021 18:03:07 +0200 -Subject: [PATCH] Disable universal newlines when reading TOML (#2408) - ---- a/Pipfile -+++ b/Pipfile -@@ -42,7 +42,7 @@ platformdirs= ">=2" - click = ">=8.0.0" - mypy_extensions = ">=0.4.3" - pathspec = ">=0.8.1" --tomli = ">=0.2.6, <2.0.0" -+tomli = ">=1.1.0, <3.0.0" - typed-ast = "==1.4.3" - typing_extensions = {markers = "python_version < '3.10'", version = ">=3.10.0.0"} - black = {editable = true,extras = ["d"],path = "."} ---- a/setup.py -+++ b/setup.py -@@ -99,7 +99,7 @@ def find_python_files(base: Path) -> List[Path]: - install_requires=[ - "click>=7.1.2", - "platformdirs>=2", -- "tomli>=0.2.6,<2.0.0", -+ "tomli>=1.1.0,<3.0.0", - "typed-ast>=1.4.2; python_version < '3.8' and implementation_name == 'cpython'", - "pathspec>=0.9.0, <1", - "dataclasses>=0.6; python_version < '3.7'", ---- a/src/black/files.py -+++ b/src/black/files.py -@@ -95,8 +95,8 @@ def parse_pyproject_toml(path_config: str) -> Dict[str, Any]: - - If parsing fails, will raise a tomli.TOMLDecodeError - """ -- with open(path_config, encoding="utf8") as f: -- pyproject_toml = tomli.loads(f.read()) -+ with open(path_config, "rb") as f: -+ pyproject_toml = tomli.load(f) - config = pyproject_toml.get("tool", {}).get("black", {}) - return {k.replace("--", "").replace("-", "_"): v for k, v in config.items()} - diff --git a/dev-python/cppy/cppy-1.2.1-r1.ebuild b/dev-python/cppy/cppy-1.2.1-r1.ebuild index e8d8bc9e959f..a2b8b1406cc7 100644 --- a/dev-python/cppy/cppy-1.2.1-r1.ebuild +++ b/dev-python/cppy/cppy-1.2.1-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~ia64 ~m68k ~s390 ~x86" +KEYWORDS="~alpha ~amd64 ~ia64 ~m68k ~riscv ~s390 ~x86" # bug #836765 for setuptools >= dep BDEPEND=">=dev-python/setuptools-61.2[${PYTHON_USEDEP}]" diff --git a/dev-python/dkimpy/dkimpy-1.0.5-r1.ebuild b/dev-python/dkimpy/dkimpy-1.0.5-r1.ebuild new file mode 100644 index 000000000000..29d068719bce --- /dev/null +++ b/dev-python/dkimpy/dkimpy-1.0.5-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 optfeature + +DESCRIPTION="DKIM and ARC email signing and verification library" +HOMEPAGE=" + https://launchpad.net/dkimpy/ + https://pypi.org/project/dkimpy/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + dev-python/dnspython[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/authres[${PYTHON_USEDEP}] + dev-python/pynacl[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests unittest + +pkg_postinst() { + optfeature "ARC support" dev-python/authres + optfeature "ed25519 capability" dev-python/pynacl + optfeature "asyncio support" dev-python/aiodns +} diff --git a/dev-python/ephemeral-port-reserve/ephemeral-port-reserve-1.1.4.ebuild b/dev-python/ephemeral-port-reserve/ephemeral-port-reserve-1.1.4.ebuild index 38b66eeddcb0..0b414e6339ee 100644 --- a/dev-python/ephemeral-port-reserve/ephemeral-port-reserve-1.1.4.ebuild +++ b/dev-python/ephemeral-port-reserve/ephemeral-port-reserve-1.1.4.ebuild @@ -20,6 +20,6 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" distutils_enable_tests pytest diff --git a/dev-python/fonttools/Manifest b/dev-python/fonttools/Manifest index d63399d3261a..a203a6f009e9 100644 --- a/dev-python/fonttools/Manifest +++ b/dev-python/fonttools/Manifest @@ -1,4 +1,3 @@ -DIST fonttools-4.29.1.tar.gz 2954962 BLAKE2B e78a55e240975e12e9cfd56368eab0d18e104211d8416db833a20208c78f6e5dbce2d24d7338017882f0bd1c3c181c0af0c069025a750cba4e9f41c1b4b2489c SHA512 36f4272be18d19748069289bfb3d3339cf0b16967a12976971f9e2dd56a1e915d3176e0dd9cad08cee69b20f3d6ac1a966365d936bb091b39e23b6c693e28dc9 DIST fonttools-4.30.0.tar.gz 2961097 BLAKE2B 23b592daa16fd215688f149d99258209b819caa843d26c889fb4016aae6d6614a9f87dd13fa1d2aa254fadb5169cf7d57ba02b7b15af79611995148d698ca2ec SHA512 2b4e676f956c3456bf3ca435a7d80e1a0a9f36872ba3a820072d1e13ed5751a8546f424369731afd4ccddc298ec0658bb4384d2e18670b108dd1b3a99fc205f4 DIST fonttools-4.31.1.tar.gz 2964489 BLAKE2B d1bb7059383785dd527f7276ef876042f81d3e2cc5acc1b69e111b540cf8d35273a0070e6f0602ca438f35e3b83d0a04736cd5c97b1b7669822d1a6b1ad1b487 SHA512 cdf70f376e690ab1edc5e761ba45d1ddd7760c3aefdb5e9b88cc97118edd4ff694789c8b79ece791b4b6a597dcac1abb0eec5f0634f1db0792e5e62a2137282d DIST fonttools-4.31.2.tar.gz 2965796 BLAKE2B d776073e7a9358e67b8753dd4557e2b1b4c44d9662c8c728abe42d970bca1db1789a655df8865fef39eed3a32271749d2cb772e306f34efc87e737b7384c0b5d SHA512 50cc8bca9136675a413ac947b583f694d512872127cee129a78505d0259fe1cf6922f806558761af982758f72c7d95e1245b8de55b6ebd6ddd3bd7506d41abcf diff --git a/dev-python/fonttools/fonttools-4.29.1.ebuild b/dev-python/fonttools/fonttools-4.29.1.ebuild deleted file mode 100644 index 816a1c6bbc10..000000000000 --- a/dev-python/fonttools/fonttools-4.29.1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) -PYTHON_REQ_USE="xml(+)" - -inherit distutils-r1 virtualx - -DESCRIPTION="Library for manipulating TrueType, OpenType, AFM and Type1 fonts" -HOMEPAGE="https://github.com/fonttools/fonttools/" -SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv sparc x86 ~x64-macos" - -RDEPEND=">=dev-python/fs-2.4.9[${PYTHON_USEDEP}]" -BDEPEND=" - ${RDEPEND} - dev-python/cython[${PYTHON_USEDEP}] - test? ( - app-arch/brotli[python,${PYTHON_USEDEP}] - app-arch/zopfli - )" - -distutils_enable_tests pytest - -python_prepare_all() { - # When dev-python/pytest-shutil is installed, we get weird import errors. - # This is due to incomplete nesting in the Tests/ tree: - # - # Tests/feaLib/__init__.py - # Tests/ufoLib/__init__.py - # Tests/svgLib/path/__init__.py - # Tests/otlLib/__init__.py - # Tests/varLib/__init__.py - # - # This tree requires an __init__.py in Tests/svgLib/ too, bug #701148. - touch Tests/svgLib/__init__.py || die - - distutils-r1_python_prepare_all -} - -src_configure() { - export FONTTOOLS_WITH_CYTHON=1 -} - -src_test() { - # virtualx used when matplotlib is installed causing plot module tests to run - virtx distutils-r1_src_test -} - -python_test() { - epytest Tests fontTools || die "Tests failed with ${EPYTHON}" -} diff --git a/dev-python/fonttools/fonttools-4.30.0.ebuild b/dev-python/fonttools/fonttools-4.30.0.ebuild index 2cd7d23bbad3..0ca22fe5ef4b 100644 --- a/dev-python/fonttools/fonttools-4.30.0.ebuild +++ b/dev-python/fonttools/fonttools-4.30.0.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~riscv sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv sparc x86 ~x64-macos" RDEPEND=">=dev-python/fs-2.4.9[${PYTHON_USEDEP}]" BDEPEND="${RDEPEND} diff --git a/dev-python/git-review/Manifest b/dev-python/git-review/Manifest index 53e95fdd7ef2..38968e5a481a 100644 --- a/dev-python/git-review/Manifest +++ b/dev-python/git-review/Manifest @@ -1 +1,2 @@ DIST git-review-2.2.0.tar.gz 64905 BLAKE2B a08b489bb4b53a9cc6510b11238bc947334a187e0ec7dad7e1240cf3efb110a5310cfe4f3278af9311108fcb0b915a9d1eabdd2aeabab3fed0a939cba9f88ae2 SHA512 9a33f6a1e60b0679b248db818a2a4559b4ee6a6b765f2e6a16fd566fd85587be363f837da2118e75bd3e6d54ba3dcc177d3d678d927d75cca6d8ad6ed4e8d4f7 +DIST git-review-2.3.0.tar.gz 66005 BLAKE2B b074811614093058525ec817770d9d1d0d0adc4f154ec7a8882406c1954672063e3cd58df28d0ce17735b5a135f0a6be97657207e16dbe8b7719e9b6f77aea28 SHA512 841ea039e73e2571ee01ba08781d82c5ee0c136be092d2f7ff44e59284f2e77d57537ef5aef3eaf24a0f93f63106fd2404e1ec89745a723386944b5e0b32faf0 diff --git a/dev-python/git-review/git-review-2.3.0.ebuild b/dev-python/git-review/git-review-2.3.0.ebuild new file mode 100644 index 000000000000..16e5454edee8 --- /dev/null +++ b/dev-python/git-review/git-review-2.3.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Tool to submit code to Gerrit" +HOMEPAGE="https://git.openstack.org/cgit/openstack-infra/git-review" +if [[ ${PV} == 9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://opendev.org/opendev/${PN}.git" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux" +fi + +LICENSE="Apache-2.0" +SLOT="0" + +BDEPEND=" + >=dev-python/pbr-4.1.0[${PYTHON_USEDEP}] +" +RDEPEND=" + >=dev-python/requests-1.1[${PYTHON_USEDEP}] +" + +python_prepare_all() { + sed -i -e '/manpages/,+1d' setup.cfg || die + distutils-r1_python_prepare_all +} diff --git a/dev-python/git-review/git-review-9999.ebuild b/dev-python/git-review/git-review-9999.ebuild index bd9c8e269e6b..16e5454edee8 100644 --- a/dev-python/git-review/git-review-9999.ebuild +++ b/dev-python/git-review/git-review-9999.ebuild @@ -1,9 +1,10 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_7 python3_8 python3_9 ) -DISTUTILS_USE_SETUPTOOLS= + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 @@ -19,10 +20,13 @@ fi LICENSE="Apache-2.0" SLOT="0" -IUSE="" -DEPEND=">=dev-python/pbr-4.1.0[${PYTHON_USEDEP}]" -RDEPEND=">=dev-python/requests-1.1[${PYTHON_USEDEP}]" +BDEPEND=" + >=dev-python/pbr-4.1.0[${PYTHON_USEDEP}] +" +RDEPEND=" + >=dev-python/requests-1.1[${PYTHON_USEDEP}] +" python_prepare_all() { sed -i -e '/manpages/,+1d' setup.cfg || die diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest index f29c979ad3f8..7bd9bc7329cf 100644 --- a/dev-python/hypothesis/Manifest +++ b/dev-python/hypothesis/Manifest @@ -5,3 +5,4 @@ DIST hypothesis-python-6.42.3.tar.gz 9187948 BLAKE2B 3303cea4e8f2776f14defd88dcc DIST hypothesis-python-6.43.0.tar.gz 9188330 BLAKE2B db237962b3c16c223fb49fff4c0c2e175f1969ce01c4ded3be3bcad0ff78c928f109016da58a4e9512e0d8fc3ea5ce9836732d00c74acc3ecd185ca1030849c1 SHA512 c1c3bda72cbe4f29be957d21682be1d1973f74afdf4adf95f388f05e4230781b16fb0004720620368b9aec4aa0623c4f79b7f3df16c37fbe9e812bb70a065af1 DIST hypothesis-python-6.43.1.tar.gz 9188557 BLAKE2B 4dd3108c6162fb5b2a8f283e5499468b6a7ba3edb45cf6886d15cde5b6ee2ca6402c372d65f0576c4bba488d1e99f501bd61e8c26c0d887f716542287fe80a32 SHA512 9d01d4fd14d44445cc88e7eac28b2ce4555488fc87eccbb7739d97e23c42f608891532c17ef15c399d515f4b1856541c84f205630b3f5ba30ba7427774fcf2c1 DIST hypothesis-python-6.43.2.tar.gz 9189222 BLAKE2B 4af4dc59198878b08973366483e6be9d23c96942e83e8d19e1a77b26ba532bdc114224de1daf23b0162cef0844b240bb12da0ffdb4d86e13b448e768cdeb6485 SHA512 903857aa730615067309557e6d03ae083a05bf0d53285c6a48d8269239e88e0a261b711477a7de5349b2606e53ece8cf50679f0a0c58accdd64e18d1cd3f2b9d +DIST hypothesis-python-6.43.3.tar.gz 9189636 BLAKE2B d47e4b5f3016e32c8ba547eca7f3b6513609d6a84cf1f1b8db5e14282e75cf4ee1778fba1dcf801fac135a1ebfef2ce5f9306bd9be4c33f02b5f05d1690abba2 SHA512 1988efc630b63a2373f25813bd066a1da8576416a167d487f1b262825c49864ab622e84a6189d5016f8ca28b37819d5f035bc11779f906a447baf2f957fedfcc diff --git a/dev-python/hypothesis/hypothesis-6.43.3.ebuild b/dev-python/hypothesis/hypothesis-6.43.3.ebuild new file mode 100644 index 000000000000..7eae997f3fdb --- /dev/null +++ b/dev-python/hypothesis/hypothesis-6.43.3.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +PYTHON_REQ_USE="threads(+),sqlite" + +inherit distutils-r1 multiprocessing optfeature + +DESCRIPTION="A library for property based testing" +HOMEPAGE="https://github.com/HypothesisWorks/hypothesis https://pypi.org/project/hypothesis/" +SRC_URI="https://github.com/HypothesisWorks/${PN}/archive/${PN}-python-${PV}.tar.gz" +S="${WORKDIR}/${PN}-${PN}-python-${PV}/${PN}-python" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +IUSE="cli" + +RDEPEND=" + >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}] + >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}] + cli? ( + $(python_gen_cond_dep ' + dev-python/black[${PYTHON_USEDEP}] + dev-python/click[${PYTHON_USEDEP}] + ' python3_{8..10}) + ) +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pexpect[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + # subtests are broken by warnings from random plugins + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + local -x PYTEST_PLUGINS=xdist.plugin,pytest_forked,_hypothesis_pytestplugin + + epytest tests/cover tests/pytest tests/quality \ + -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" +} + +python_install() { + distutils-r1_python_install + if ! use cli || ! has "${EPYTHON}" python3.{8..10}; then + rm -r "${ED}/usr/bin" "${D}$(python_get_scriptdir)" || die + fi +} + +pkg_postinst() { + optfeature "datetime support" dev-python/pytz + optfeature "dateutil support" dev-python/python-dateutil + optfeature "numpy support" dev-python/numpy + optfeature "django support" dev-python/django dev-python/pytz + optfeature "pandas support" dev-python/pandas + optfeature "pytest support" dev-python/pytest +} diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild index 042a40ebcb67..1ec434ff4fe6 100644 --- a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild +++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="BSD-2" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~x86" PROPERTIES="test_network" RESTRICT="test" diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest index 6cd5fe3a9175..b70952104436 100644 --- a/dev-python/imageio/Manifest +++ b/dev-python/imageio/Manifest @@ -1,3 +1,2 @@ -DIST imageio-2.16.0.gh.tar.gz 360333 BLAKE2B fbfea25b9a6dfb945bcaced141649bcc3a7c578115fe2be3151d7a90bab6a51fc20e4806085a2afc934b7ec9de95b5df9fedba9af9722242dac44e2f86009e2b SHA512 18f6e3f0b5c09ac546640ef88a0fe6c157e20ecbaa2de5a2199eab6caac3ca9fd294cf66a2eea79b954271c27390816392af62a27d0e2e11817776efec3a0cd3 -DIST imageio-2.16.1.gh.tar.gz 361506 BLAKE2B df7df1cdf414fa762a37c509f2452f7ef20b811695b71acd391d6f565161ae4b5d1caa9dc2f9278ddb87ad518087ed2c729b93806cf1f01a7402e7a77af9383f SHA512 8cd5ce184f67be9cd5edbd5bf51f59c271a71e8fe68c22d284ddabe24cdec6bcf5e590c9c95664b0205509c133e9cd959d11605226a1d4d99f14e95c6d7527c3 DIST imageio-2.16.2.gh.tar.gz 366758 BLAKE2B cf2f9f2649f3d5a44d5d8efee19406b38cbb8de6fbd079170fd8eb43f893151f68b256e5d3d1fbb766c7f0562783ca2237e6171785927c8ed69a14840f1acb02 SHA512 1a6e0c9ed58d91fc89810d36acc8f5355ec5f0cf8a7dcc099f3a71cd77bc9d5fcf2821a7bd5f67723be46395290c99e4f478949aa11134f11ff2068504c83c04 +DIST imageio-2.17.0.gh.tar.gz 383819 BLAKE2B 3676fb6c4de9d4a1dea8e240d14702dec760970f4e5655e54acf68530f1833e24f22b938175795d359eac99c63c32e1a99c45501b54729ec4efcc308cdb2e745 SHA512 f6cb4697ceddd43338ef994fc242a921f0c8054655ce63878cc25c8afd28317fadf9806b84f6f337bcc30a61306b451ca29582ddcc1f66e40b6f298620287e11 diff --git a/dev-python/imageio/imageio-2.16.0.ebuild b/dev-python/imageio/imageio-2.16.0.ebuild deleted file mode 100644 index 4a1ac91da053..000000000000 --- a/dev-python/imageio/imageio-2.16.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Python library for reading and writing image data" -HOMEPAGE="https://imageio.github.io/" -SRC_URI=" - https://github.com/imageio/imageio/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -# over 50% of tests rely on Internet -PROPERTIES="test_network" -RESTRICT="test" - -RDEPEND=" - >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}] - >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}] - media-libs/freeimage -" -# requests for fsspec[github] -BDEPEND=" - test? ( - dev-python/fsspec[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/tifffile[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -EPYTEST_DESELECT=( - # Fails because of system installed freeimage - tests/test_core.py::test_findlib2 -) - -EPYTEST_IGNORE=( - # Needs unpackaged imageio_ffmpeg - tests/test_ffmpeg.py - tests/test_ffmpeg_info.py -) diff --git a/dev-python/imageio/imageio-2.16.1.ebuild b/dev-python/imageio/imageio-2.17.0.ebuild similarity index 90% rename from dev-python/imageio/imageio-2.16.1.ebuild rename to dev-python/imageio/imageio-2.17.0.ebuild index 4a1ac91da053..f85e433292a0 100644 --- a/dev-python/imageio/imageio-2.16.1.ebuild +++ b/dev-python/imageio/imageio-2.17.0.ebuild @@ -31,6 +31,7 @@ RDEPEND=" BDEPEND=" test? ( dev-python/fsspec[${PYTHON_USEDEP}] + dev-python/imageio-ffmpeg[${PYTHON_USEDEP}] dev-python/psutil[${PYTHON_USEDEP}] dev-python/requests[${PYTHON_USEDEP}] dev-python/tifffile[${PYTHON_USEDEP}] @@ -43,9 +44,3 @@ EPYTEST_DESELECT=( # Fails because of system installed freeimage tests/test_core.py::test_findlib2 ) - -EPYTEST_IGNORE=( - # Needs unpackaged imageio_ffmpeg - tests/test_ffmpeg.py - tests/test_ffmpeg_info.py -) diff --git a/dev-python/ini2toml/ini2toml-0.10.ebuild b/dev-python/ini2toml/ini2toml-0.10.ebuild index 8b6d5d0eb8e2..1f1300e95026 100644 --- a/dev-python/ini2toml/ini2toml-0.10.ebuild +++ b/dev-python/ini2toml/ini2toml-0.10.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="MPL-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~m68k ~riscv ~s390 ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" RDEPEND=" >=dev-python/packaging-20.7[${PYTHON_USEDEP}] diff --git a/dev-python/jaraco-functools/jaraco-functools-3.5.0-r2.ebuild b/dev-python/jaraco-functools/jaraco-functools-3.5.0-r2.ebuild index 3f7e75f6a647..de27db6d094c 100644 --- a/dev-python/jaraco-functools/jaraco-functools-3.5.0-r2.ebuild +++ b/dev-python/jaraco-functools/jaraco-functools-3.5.0-r2.ebuild @@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND=" >=dev-python/more-itertools-0.12.0-r1[${PYTHON_USEDEP}] diff --git a/dev-python/jupyter_core/Manifest b/dev-python/jupyter_core/Manifest index bfb25d5df68d..dc8f642adc82 100644 --- a/dev-python/jupyter_core/Manifest +++ b/dev-python/jupyter_core/Manifest @@ -1 +1,2 @@ +DIST jupyter_core-4.10.0.tar.gz 76535 BLAKE2B d224b39397fd1ee430a758b02f8c5f2116480f00b4f7c485ccbb71556522275f7aaedeaebebf7bbfb782e3fff4677b38d5d7d0ddb4d3a24b5741dccd2b43edcb SHA512 b11257aa6239d2cc51b63c4ae696b5e2862fd824f662875a9e2b663a84b86aec14aa21baae6e5c720155f2be37fd40925b913503e002401eee442d6d3258704d DIST jupyter_core-4.9.2.tar.gz 74912 BLAKE2B 9a20e7982d1bda6a203f094aca6ebaa2b96d0482d728527b1b085b1242c94fb407d7f9da3e82c3e2af473c725bc7bebe701d493a201d8804c3d7aae9f80f9c11 SHA512 2779d7857b3efb979df29f65e5db0a625e4c96b1bbed017aa7bdaa7d23d7cb202d745c92db663a183bdcdc5f55133aa32bc6c982d5a9d36decceb9a348e7754b diff --git a/dev-python/jupyter_core/jupyter_core-4.10.0.ebuild b/dev-python/jupyter_core/jupyter_core-4.10.0.ebuild new file mode 100644 index 000000000000..3bc31c65bc0e --- /dev/null +++ b/dev-python/jupyter_core/jupyter_core-4.10.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Core common functionality of Jupyter projects" +HOMEPAGE="https://jupyter.org" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + dev-python/traitlets[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + >=dev-python/ipython-4.0.1[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + ) +" + +distutils_enable_sphinx docs \ + dev-python/sphinxcontrib-github-alt +distutils_enable_tests pytest diff --git a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild index 427ae54f376e..a1919e4cf3c7 100644 --- a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild +++ b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild @@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P} LICENSE="Clear-BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 sparc x86" RDEPEND=" >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}] diff --git a/dev-python/lz4/lz4-4.0.0.ebuild b/dev-python/lz4/lz4-4.0.0.ebuild index 4b35a580cf55..baded2a9706b 100644 --- a/dev-python/lz4/lz4-4.0.0.ebuild +++ b/dev-python/lz4/lz4-4.0.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux" RDEPEND="app-arch/lz4:=" DEPEND=${RDEPEND} diff --git a/dev-python/mando/Manifest b/dev-python/mando/Manifest index 908227712918..ffafc5ced1ea 100644 --- a/dev-python/mando/Manifest +++ b/dev-python/mando/Manifest @@ -1,2 +1 @@ -DIST mando-0.6.4.tar.gz 36560 BLAKE2B 9878746485d4b896c3e32512b77ac02739940a1398eee12056fd6719cc3c99f8c526c8e573d2556b6a9d0d8d26e20fb45c97119e626b1d44f0a5b5f4655adba1 SHA512 457fa0db4e8e5dbfac6146d254181213814ef1975c919b4573007face27749ec3a50eda850558ebdc0fdff94a5e9819fd825b10cb3023078b2b426c2825fdbf0 DIST mando-0.7.1.gh.tar.gz 37802 BLAKE2B 1caf437248f1b1397888674fff0171680fd1d2cffd1d3394869edce4fef0d214fb52fc0eb7435ef162722f128f129f8d19385e65661914c51f78108b64f8db38 SHA512 a25dfd57e833416cbd64933ca3970712d28c2e2ed172091a0d0c082f486c707d0061afb071e3973e7e42b654d1a6e70f4909b1254fdef493471dc0ae9d3eb62b diff --git a/dev-python/mando/mando-0.6.4-r1.ebuild b/dev-python/mando/mando-0.6.4-r1.ebuild deleted file mode 100644 index fc242ec831da..000000000000 --- a/dev-python/mando/mando-0.6.4-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Create Python CLI apps with little to no effort at all!" -HOMEPAGE="https://mando.readthedocs.io/ https://github.com/rubik/mando/" -SRC_URI="https://github.com/rubik/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86" -IUSE="examples" - -RDEPEND="dev-python/six[${PYTHON_USEDEP}]" - -distutils_enable_sphinx docs -distutils_enable_tests pytest - -python_test() { - "${EPYTHON}" mando/tests/run.py || die "tests failed under ${EPYTHON}" -} - -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/mypy/mypy-0.941.ebuild b/dev-python/mypy/mypy-0.941.ebuild index e5acb398fd9a..7c67c9d5047e 100644 --- a/dev-python/mypy/mypy-0.941.ebuild +++ b/dev-python/mypy/mypy-0.941.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/python/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" # stubgen collides with this package: https://bugs.gentoo.org/585594 RDEPEND=" diff --git a/dev-python/myst_parser/Manifest b/dev-python/myst_parser/Manifest index 63198004cdd6..692e56f6b48f 100644 --- a/dev-python/myst_parser/Manifest +++ b/dev-python/myst_parser/Manifest @@ -1,2 +1,3 @@ DIST MyST-Parser-0.17.0.gh.tar.gz 877372 BLAKE2B 00dea98fa9cd8770480047a824e18a903098600dd52cea427e1cf3a4ff0a4930502967e136a3c6e9ccb4a7f6c54c8c4c8f9c5bfc701e1b24a0006b867f8ce74a SHA512 e9f4ea05ab55b0979b26f0211603aee0835a30fb37a0ca23f23b96e0b47670b6b8e443ee9759df5011d009e20d817eaffd4066c4be4920f96786c283aa206239 DIST MyST-Parser-0.17.1.gh.tar.gz 877466 BLAKE2B 79f2e03f07ad0887318e4d38745b7bbcfba5ffcb8a56a689489e2202c151702c3b1200607c7f8a0bb29b276c6ab74c201dd819a93a5b1dcfce556bf2bc38ffe1 SHA512 8b149f35d83285d54ad5e6c530eded9c9c838e65f5971c0c0fd5c1be55f365eca9d2c2871fa3c176daa58a7d7498fe06df747818c46f9fefcf9641db3286817d +DIST MyST-Parser-0.17.2.gh.tar.gz 878600 BLAKE2B 0c5b9dd5aa1e1e54706c1a04770fac33f8b2233164f2462a27dccdd405592dde4d41ab986632a2903aa26a6e7ae942e0ad54103c48f0829d410b080facb061a8 SHA512 625894686093266af03ef2cf01cd3dc2fea80c933479d6df3a4b99a103f17e8afd7120fe7a56ef21bdc8aa33569741a675caf4a7e1ed6ddbe3facae19b3c222a diff --git a/dev-python/myst_parser/myst_parser-0.17.2.ebuild b/dev-python/myst_parser/myst_parser-0.17.2.ebuild new file mode 100644 index 000000000000..b52f2822628f --- /dev/null +++ b/dev-python/myst_parser/myst_parser-0.17.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +MY_P=MyST-Parser-${PV} +DESCRIPTION="Extended commonmark compliant parser, with bridges to sphinx" +HOMEPAGE="https://pypi.org/project/myst-parser/ https://github.com/executablebooks/MyST-Parser" +SRC_URI=" + https://github.com/executablebooks/MyST-Parser/archive/v${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + -Date: Thu, 11 Nov 2021 13:05:13 +0100 -Subject: [PATCH 1/2] Remove vendored attr. - ---- - pipenv/installers.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/pipenv/installers.py b/pipenv/installers.py -index 5baa1933..f7982ab6 100644 ---- a/pipenv/installers.py -+++ b/pipenv/installers.py -@@ -3,7 +3,7 @@ import operator - import re - from abc import ABCMeta, abstractmethod - --from pipenv.vendor import attr -+import attr - from pipenv.utils import find_windows_executable, subprocess_run - - --- -2.32.0 - diff --git a/dev-python/pipenv/files/pipenv-2021-11-9-remove-colorama-vendor-import.patch b/dev-python/pipenv/files/pipenv-2021-11-9-remove-colorama-vendor-import.patch deleted file mode 100644 index 4677b0860da2..000000000000 --- a/dev-python/pipenv/files/pipenv-2021-11-9-remove-colorama-vendor-import.patch +++ /dev/null @@ -1,67 +0,0 @@ -From 6e994dbc81c326b507c6f3119dfab56113dc17c3 Mon Sep 17 00:00:00 2001 -From: Oz N Tiram -Date: Thu, 11 Nov 2021 13:05:41 +0100 -Subject: [PATCH 2/2] Remove vendored colorama - ---- - pipenv/patched/crayons.py | 2 +- - pipenv/vendor/yaspin/core.py | 2 +- - tasks/vendoring/patches/patched/crayons.patch | 2 +- - tasks/vendoring/patches/vendor/yaspin-signal-handling.patch | 2 +- - 4 files changed, 4 insertions(+), 4 deletions(-) - -diff --git a/pipenv/patched/crayons.py b/pipenv/patched/crayons.py -index d7644a21..19b0d695 100644 ---- a/pipenv/patched/crayons.py -+++ b/pipenv/patched/crayons.py -@@ -13,7 +13,7 @@ import re - import sys - - from pipenv.vendor import shellingham --from pipenv.vendor import colorama -+import colorama - - PY3 = sys.version_info[0] >= 3 - -diff --git a/pipenv/vendor/yaspin/core.py b/pipenv/vendor/yaspin/core.py -index d8a0716c..c9be016c 100644 ---- a/pipenv/vendor/yaspin/core.py -+++ b/pipenv/vendor/yaspin/core.py -@@ -19,7 +19,7 @@ import time - from typing import List, Set, Union - - from termcolor import colored --from pipenv.vendor import colorama -+import colorama - from pipenv.vendor.vistir import cursor - - from .base_spinner import Spinner, default_spinner -diff --git a/tasks/vendoring/patches/patched/crayons.patch b/tasks/vendoring/patches/patched/crayons.patch -index 2760ca81..d021bfb1 100644 ---- a/tasks/vendoring/patches/patched/crayons.patch -+++ b/tasks/vendoring/patches/patched/crayons.patch -@@ -10,7 +10,7 @@ index 455d3e90..de735daf 100644 - - - -import colorama - +from pipenv.vendor import shellingham --+from pipenv.vendor import colorama -++import colorama - - +PY3 = sys.version_info[0] >= 3 - + -diff --git a/tasks/vendoring/patches/vendor/yaspin-signal-handling.patch b/tasks/vendoring/patches/vendor/yaspin-signal-handling.patch -index 705650c3..95feb1c0 100644 ---- a/tasks/vendoring/patches/vendor/yaspin-signal-handling.patch -+++ b/tasks/vendoring/patches/vendor/yaspin-signal-handling.patch -@@ -6,7 +6,7 @@ index 76dc2439..d8a0716c 100644 - from typing import List, Set, Union - - from termcolor import colored --+from pipenv.vendor import colorama -++import colorama - +from pipenv.vendor.vistir import cursor - - from .base_spinner import Spinner, default_spinner --- -2.32.0 - diff --git a/dev-python/pipenv/pipenv-2021.11.9.ebuild b/dev-python/pipenv/pipenv-2021.11.9.ebuild deleted file mode 100644 index 7fa754b6731a..000000000000 --- a/dev-python/pipenv/pipenv-2021.11.9.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# 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_{8..10} ) - -inherit distutils-r1 - -MY_PV=${PV/_beta/b} -DESCRIPTION="Python Development Workflow for Humans" -HOMEPAGE="https://github.com/pypa/pipenv https://pypi.org/project/pipenv/" -SRC_URI="https://github.com/pypa/pipenv/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}"/${PN}-${MY_PV} - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -PATCHES=( - "${FILESDIR}/${PN}-${PV//./-}-remove-attr-vendor-import.patch" - "${FILESDIR}/${PN}-${PV//./-}-remove-colorama-vendor-import.patch" - ) - -RDEPEND=" - ${PYTHON_DEPS} - dev-python/attrs[${PYTHON_USEDEP}] - dev-python/certifi[${PYTHON_USEDEP}] - >=dev-python/colorama-0.4.4[${PYTHON_USEDEP}] - >=dev-python/jinja-3.0.1[${PYTHON_USEDEP}] - dev-python/pip[${PYTHON_USEDEP}] - >=dev-python/virtualenv-20.0.35[${PYTHON_USEDEP}] - dev-python/virtualenv-clone[${PYTHON_USEDEP}] - >=dev-python/requests-2.26.0[${PYTHON_USEDEP}] - >=dev-python/wheel-0.36.0[${PYTHON_USEDEP}] -" - -BDEPEND=" - ${RDEPEND} - test? ( - dev-python/flaky[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytz[${PYTHON_USEDEP}] - ) -" - -src_prepare() { - # remove vendored versions - # see https://bugs.gentoo.org/717666 - rm -vR "${S}/${PN}/vendor/attr/" || die - rm -vR "${S}/${PN}/vendor/colorama/" || die - rm -vR "${S}/${PN}/vendor/requests/" || die - # not actually used by pipenv, but included in pipenv - rm -vR "${S}/${PN}/vendor/jinja2/" || die - rm -vR "${S}/${PN}/vendor/wheel/" || die - distutils-r1_src_prepare -} - -python_test() { - pytest -vvv -x -m "not cli and not needs_internet" tests/unit/ || die -} diff --git a/dev-python/pipenv/pipenv-2022.4.8.ebuild b/dev-python/pipenv/pipenv-2022.4.8.ebuild new file mode 100644 index 000000000000..c361313a4def --- /dev/null +++ b/dev-python/pipenv/pipenv-2022.4.8.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 multiprocessing + +MY_PV=${PV/_beta/b} +DESCRIPTION="Python Development Workflow for Humans" +HOMEPAGE="https://github.com/pypa/pipenv https://pypi.org/project/pipenv/" +SRC_URI="https://github.com/pypa/pipenv/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}-${MY_PV} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +RDEPEND=" + dev-python/attrs[${PYTHON_USEDEP}] + dev-python/cached-property[${PYTHON_USEDEP}] + >=dev-python/cerberus-1.3.2[${PYTHON_USEDEP}] + dev-python/click[${PYTHON_USEDEP}] + >=dev-python/colorama-0.4.4[${PYTHON_USEDEP}] + >=dev-python/idna-3.2[${PYTHON_USEDEP}] + dev-python/iso8601[${PYTHON_USEDEP}] + >=dev-python/pexpect-4.8.0[${PYTHON_USEDEP}] + dev-python/pip[${PYTHON_USEDEP}] + >=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}] + >=dev-python/virtualenv-20.0.35[${PYTHON_USEDEP}] + dev-python/virtualenv-clone[${PYTHON_USEDEP}] + >=dev-python/requests-2.26.0[${PYTHON_USEDEP}] + dev-python/toml[${PYTHON_USEDEP}] + >=dev-python/tomli-1.2.2[${PYTHON_USEDEP}] + =dev-python/urllib3-1.26.7[${PYTHON_USEDEP}] + >=dev-python/wheel-0.36.0[${PYTHON_USEDEP}] + >=dev-python/zipp-3.6.0[${PYTHON_USEDEP}] +" + +BDEPEND=" + ${RDEPEND} + test? ( + dev-python/flaky[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +# IMPORTANT: The following sed command patches the vendor direcotry +# in the pipenv source. Attempts to simply bump the version of the +# package without checking that it works is likely to fail +# The vendored packages should eventually all be removed +# see: https://bugs.gentoo.org/717666 +src_prepare() { + local pkgName + local jobs=$(makeopts_jobs) + local packages=( attr cerberus cached_property click colorama idna iso8601 pexpect dateutil requests toml tomli urllib3 zipp ) + for pkgName in ${packages[@]}; do + find ./ -type f -print0 | \ + xargs --max-procs="${jobs}" --null \ + sed --in-place \ + -e "s/from pipenv.vendor import ${pkgName}/import ${pkgName}/g" \ + -e "s/from pipenv.vendor.${pkgName}\(.*\) import \(\w*\)/from ${pkgName}\1 import \2/g"\ + -e "s/import pipenv.vendor.${pkgName} as ${pkgName}/import ${pkgName}/g" \ + -e "s/from .vendor import ${pkgName}/import ${pkgName}/g" || die "Failed to sed for ${pkgName}" + done + + distutils-r1_src_prepare + + # remove vendored versions + for pkgName in ${packages[@]}; do + find ./pipenv/vendor -regextype posix-extended -regex ".*${pkgName}$" -prune -exec rm -rvf {} + || die + # package names can be foo-bar, their module will be however foo_bar + find ./pipenv/vendor -regextype posix-extended -regex ".*${pkgName/_/-}" -prune -exec rm -rvf {} + || die + done + + find ./pipenv/vendor -regextype posix-extended -regex '.*cached[_-]property.*' -prune -exec rm -rvf {} + || die + + # not actually used by pipenv, but included in pipenv + rm -vR "${S}/${PN}/vendor/wheel/" || die +} + +python_test() { + epytest -m "not cli and not needs_internet" tests/unit/ +} diff --git a/dev-python/publicsuffix/Manifest b/dev-python/publicsuffix/Manifest index 28575fb6fe7b..04970e107ee2 100644 --- a/dev-python/publicsuffix/Manifest +++ b/dev-python/publicsuffix/Manifest @@ -1 +1,2 @@ DIST publicsuffix-2.20191221.gh.tar.gz 98142 BLAKE2B 21b0dabb253175ecf427a51bcc7df2de7fa3fc9fe7d9032cc378160c4c53e75efa4c0e657efc93d48bb58f786160d89cb2fd7301e3c270f73802a926c31ea378 SHA512 983bdb17b76d10eb73cf69f0ba7590806bf6786ae0c30526593ce1ab97f3b22c967f9acae83b880dd56be41a29eae9cca5726926667eb74013d0d1078433bf05 +DIST python-publicsuffix2-release-2.2019-12-21.gh.tar.gz 98142 BLAKE2B 21b0dabb253175ecf427a51bcc7df2de7fa3fc9fe7d9032cc378160c4c53e75efa4c0e657efc93d48bb58f786160d89cb2fd7301e3c270f73802a926c31ea378 SHA512 983bdb17b76d10eb73cf69f0ba7590806bf6786ae0c30526593ce1ab97f3b22c967f9acae83b880dd56be41a29eae9cca5726926667eb74013d0d1078433bf05 diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild new file mode 100644 index 000000000000..f33a01dd2239 --- /dev/null +++ b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +PV_DATE=$(ver_cut 2) +MY_PV=release-$(ver_cut 1).${PV_DATE::4}-${PV_DATE:4:2}-${PV_DATE:6:2} +MY_P=python-publicsuffix2-${MY_PV} + +DESCRIPTION="Get a public suffix for a domain name using the Public Suffix List" +HOMEPAGE=" + https://github.com/nexB/python-publicsuffix2/ +" +SRC_URI=" + https://github.com/nexB/python-publicsuffix2/archive/${MY_PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + >=dev-python/requests-2.7.0[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest diff --git a/dev-python/py-amqp/Manifest b/dev-python/py-amqp/Manifest index cc1e6322dd7f..61804329b6fa 100644 --- a/dev-python/py-amqp/Manifest +++ b/dev-python/py-amqp/Manifest @@ -1 +1,2 @@ DIST amqp-5.1.0.tar.gz 128629 BLAKE2B 8fe0b07233fce04b84b46e0ab4da1badf2de8a2ac53494dbb33b246d149ccec728de42c4f9f7d40752701a8e02851805456d8d54c2e519bbbfdbbb1274edf124 SHA512 9f4f3fd4cea6c214ff03a80a9aec7c5bff65a964ff1e77fbc937f1b6daf45f7b06be0b0873b2998afc3de22b4693a3327f0b439f70a4496060997b9f1aa73331 +DIST amqp-5.1.1.tar.gz 127869 BLAKE2B 3ba95874a45f6fce163cf95b0b1fae57e636bc2bec8311f64fc9597025ba36f35daf8d0457af3bc10fa1f1dae604b262ebf205d7b89d4f1745bf3480b542278d SHA512 f549a85e4f04543dd8e844edb68350ca185de9259aa896af31ae5ee5dfdfe73f904d95821c403dc797c7f3ada17ce6bff4e0fd9fcdf2abc1b33a94d079f99179 diff --git a/dev-python/py-amqp/py-amqp-5.1.1.ebuild b/dev-python/py-amqp/py-amqp-5.1.1.ebuild new file mode 100644 index 000000000000..fa1bdc3c1c25 --- /dev/null +++ b/dev-python/py-amqp/py-amqp-5.1.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +MY_P="amqp-${PV}" +DESCRIPTION="Low-level AMQP client for Python (fork of amqplib)" +HOMEPAGE="https://github.com/celery/py-amqp https://pypi.org/project/amqp/" +SRC_URI="mirror://pypi/${MY_P:0:1}/amqp/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="extras" + +BDEPEND=" + >=dev-python/vine-5.0.0[${PYTHON_USEDEP}] + test? ( + >=dev-python/case-1.3.1[${PYTHON_USEDEP}] + dev-python/pytest-mock[${PYTHON_USEDEP}] + >=dev-python/pytest-rerunfailures-6.0[${PYTHON_USEDEP}] + ) +" + +distutils_enable_sphinx docs \ + dev-python/sphinx_celery +distutils_enable_tests pytest + +EPYTEST_IGNORE=( + # rmq tests require a rabbitmq instance + t/integration/test_rmq.py +) + +EPYTEST_DESELECT=( + # fails when gssapi is installed (how does that test make sense?!) + t/unit/test_sasl.py::test_SASL::test_gssapi_missing +) + +python_install_all() { + if use extras; then + insinto /usr/share/${PF}/extras + doins -r extra + fi + distutils-r1_python_install_all +} diff --git a/dev-python/pybind11/pybind11-2.9.2.ebuild b/dev-python/pybind11/pybind11-2.9.2.ebuild index 4d0a3fabb671..0405d7a34596 100644 --- a/dev-python/pybind11/pybind11-2.9.2.ebuild +++ b/dev-python/pybind11/pybind11-2.9.2.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/pybind/pybind11/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" RDEPEND=" dev-cpp/eigen:3 diff --git a/dev-python/pyfakefs/pyfakefs-4.5.6.ebuild b/dev-python/pyfakefs/pyfakefs-4.5.6.ebuild index bc616b332663..297faf254177 100644 --- a/dev-python/pyfakefs/pyfakefs-4.5.6.ebuild +++ b/dev-python/pyfakefs/pyfakefs-4.5.6.ebuild @@ -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 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" distutils_enable_tests pytest diff --git a/dev-python/pymongo/Manifest b/dev-python/pymongo/Manifest index 7652cb1b0ff7..891daa7767e5 100644 --- a/dev-python/pymongo/Manifest +++ b/dev-python/pymongo/Manifest @@ -1,4 +1,3 @@ -DIST mongo-python-driver-4.0.1.tar.gz 1030722 BLAKE2B b820901a433ffa2e82db0ef3c014aaa1e7d53bbc3ab94a5432fcb713d9789cbbf411a4ad5085ef3896cbf2aeff6d0e79f3f7bd5936d3aa615080a0421d8818c2 SHA512 1aead66d21c032e6d42b3aa408b0193bcac6a5a293ecfc513fadb634c574dccdcd351c693352f23cfe577c73fec901cdc2aa635dfe9afe8d9108ed917f55b53b DIST mongo-python-driver-4.0.2.tar.gz 1027101 BLAKE2B d95eea08e09101f1db5df5dcbd5d843273ebd0c63b228420748a1663620ea18e05853372e876abc8b6480238de2b035c4e5a3c9f9b7c206228870a66e5d5f053 SHA512 eacb24d110de645a70b16b4d11f7a6b019f741fba2222f8ecee47d9f638fd71e579d3a46f5f539bc89d1ea53ddf0b72745b667a0f05479bb4b53ed72fb075b5b DIST mongo-python-driver-4.1.0.tar.gz 1069416 BLAKE2B ea7d81e405f4db4ec0e03591909541f5452f516d359e42fc6fde74435899353f4718b7dbfe3dc1802e79c9277fcfe6203ecd33a5e2ad2682c604b9de44c46c7c SHA512 558d321a335742fc3399e9f5cb4917605353f55a1912f9fa34ac46f6107ed6522f952dc9ef584f4cbe1ffcfc600b49963a4bdf606146c38b94379bbb6a382202 DIST mongo-python-driver-4.1.1.tar.gz 1070349 BLAKE2B 9b792343a22c4b0c625376e6f3d10e9c1a88442b63ff2638c29588a26755006507189bf40a8dad96d7f8e4f997efc153c8616826b58114aba32442c05b80ca60 SHA512 b01eb6bc4c39a25cae8350bdc2f37dd5d78da38a6eddbd8a26f91cb6ee067f7b4b1d97eb603defca16e05abc992b8f11b2e3558f9697c99697b3e876838de737 diff --git a/dev-python/pymongo/pymongo-4.0.1.ebuild b/dev-python/pymongo/pymongo-4.0.1.ebuild deleted file mode 100644 index 0ba6ac9eb00a..000000000000 --- a/dev-python/pymongo/pymongo-4.0.1.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit check-reqs distutils-r1 - -MY_P=mongo-python-driver-${PV} -DESCRIPTION="Python driver for MongoDB" -HOMEPAGE="https://github.com/mongodb/mongo-python-driver https://pypi.org/project/pymongo/" -SRC_URI=" - https://github.com/mongodb/mongo-python-driver/archive/${PV}.tar.gz - -> ${MY_P}.tar.gz" -S=${WORKDIR}/${MY_P} - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm64 ~hppa ~riscv x86" -IUSE="doc kerberos" - -RDEPEND=" - kerberos? ( dev-python/pykerberos[${PYTHON_USEDEP}] ) -" -BDEPEND=" - test? ( - >=dev-db/mongodb-2.6.0 - ) -" -DISTUTILS_IN_SOURCE_BUILD=1 - -distutils_enable_sphinx doc -distutils_enable_tests unittest - -reqcheck() { - if use test; then - # During the tests, database size reaches 1.5G. - local CHECKREQS_DISK_BUILD=1536M - - check-reqs_${1} - fi -} - -pkg_pretend() { - reqcheck pkg_pretend -} - -pkg_setup() { - reqcheck pkg_setup -} - -src_prepare() { - # network-sandbox - rm test/test_srv_polling.py || die - sed -e 's:test_connection_timeout_ms_propagates_to_DNS_resolver:_&:' \ - -e 's:test_service_name_from_kwargs:_&:' \ - -e 's:test_srv_max_hosts_kwarg:_&:' \ - -i test/test_client.py || die - sed -e '/SRV_SCHEME/s:_HAVE_DNSPYTHON:False:' \ - -i test/test_uri_spec.py || die - distutils-r1_src_prepare -} - -python_test() { - # Yes, we need TCP/IP for that... - local DB_IP=127.0.0.1 - local DB_PORT=27000 - - export DB_IP DB_PORT - - local dbpath=${TMPDIR}/mongo.db - local logpath=${TMPDIR}/mongod.log - - # Now, the hard part: we need to find a free port for mongod. - # We're just trying to run it random port numbers and check the log - # for bind errors. It shall be noted that 'mongod --fork' does not - # return failure when it fails to bind. - - mkdir -p "${dbpath}" || die - while true; do - ebegin "Trying to start mongod on port ${DB_PORT}" - - LC_ALL=C \ - mongod --dbpath "${dbpath}" --nojournal \ - --bind_ip ${DB_IP} --port ${DB_PORT} \ - --unixSocketPrefix "${TMPDIR}" \ - --logpath "${logpath}" --fork \ - && sleep 2 - - # Now we need to check if the server actually started... - if [[ ${?} -eq 0 && -S "${TMPDIR}"/mongodb-${DB_PORT}.sock ]]; then - # yay! - eend 0 - break - elif grep -q 'Address already in use' "${logpath}"; then - # ay, someone took our port! - eend 1 - : $(( DB_PORT += 1 )) - continue - else - eend 1 - eerror "Unable to start mongod for tests. See the server log:" - eerror " ${logpath}" - die "Unable to start mongod for tests." - fi - done - - local failed - DB_PORT2=$(( DB_PORT + 1 )) DB_PORT3=$(( DB_PORT + 2 )) esetup.py test || failed=1 - - mongod --dbpath "${dbpath}" --shutdown || die - - [[ ${failed} ]] && die "Tests fail with ${EPYTHON}" - - rm -rf "${dbpath}" || die -} diff --git a/dev-python/pymongo/pymongo-4.0.2.ebuild b/dev-python/pymongo/pymongo-4.0.2.ebuild index aa1ab0501109..a28d8eaf4f63 100644 --- a/dev-python/pymongo/pymongo-4.0.2.ebuild +++ b/dev-python/pymongo/pymongo-4.0.2.ebuild @@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P} LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="amd64 arm64 ~hppa ~riscv ~x86" +KEYWORDS="amd64 arm64 ~hppa ~riscv x86" IUSE="doc kerberos" RDEPEND=" diff --git a/dev-python/pyqtgraph/pyqtgraph-0.12.4.ebuild b/dev-python/pyqtgraph/pyqtgraph-0.12.4.ebuild index 5c5065d886e1..e13cb3d1376e 100644 --- a/dev-python/pyqtgraph/pyqtgraph-0.12.4.ebuild +++ b/dev-python/pyqtgraph/pyqtgraph-0.12.4.ebuild @@ -22,7 +22,7 @@ S=${WORKDIR}/${PN}-${P} LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="examples opengl svg" +IUSE="opengl svg" REQUIRED_USE="test? ( opengl svg )" RDEPEND=" @@ -86,8 +86,3 @@ src_test() { distutils-r1_src_test } - -python_install_all() { - use examples && DOCS+=( examples/ ) - distutils-r1_python_install_all -} diff --git a/dev-python/pystache/metadata.xml b/dev-python/pystache/metadata.xml index 48edd0510f34..dab46bcdc6d0 100644 --- a/dev-python/pystache/metadata.xml +++ b/dev-python/pystache/metadata.xml @@ -1,5 +1,5 @@ - - + + nerdboy@gentoo.org diff --git a/dev-python/pytest-codeblocks/Manifest b/dev-python/pytest-codeblocks/Manifest index 489c4ed512c1..8ce2530eb409 100644 --- a/dev-python/pytest-codeblocks/Manifest +++ b/dev-python/pytest-codeblocks/Manifest @@ -1,2 +1,3 @@ DIST pytest-codeblocks-0.13.0.tar.gz 8407 BLAKE2B 5ba3c41f7b4af908172799036331c6605fcd7d9c0fb0bdfc5cf3697e97181ec099b580a30d9dcd83ed568a5ee8fe736843d26b7d39163581adeb5d75a9a321f6 SHA512 092035e5cf3d1d35fedbc6f867ff77a40751df5b4a3b922d5f960fdaa5d1ca9e599c7b813ae60a4da3cd43e3e7884f38260f77bc466e234422480b5edebee24a DIST pytest-codeblocks-0.14.0.tar.gz 8432 BLAKE2B cb63d68e61a909bd199240470be6f09a0e48a6ef7ab4f2360940030a384919939e2274a604499bbeaf533cbf5e15b7402fd2294841ca21bc9d65c54977353549 SHA512 740b6a74a3451cee25e37969706d7b603f258c76bb8b1cd608eaf63021aaaed99136a41885b453a2708302f53e8d9516a3487dc3f5cc8ad39ca6c3ab9721ae86 +DIST pytest-codeblocks-0.15.0.tar.gz 8559 BLAKE2B 0f8cf91d333e233e480353ab55283f9d97af17e5265f7a9e6db5c7cd98aaf6075b33a44e850aad21de5112fcc233fe7f65e23710f6b1804a85fd6269d042c406 SHA512 57d14aefc0cd49aa1b8fc54dfaec47965d4b1c867cad78ba9e8fd53da85898b7eac303ac402abe10b2d63d7621979bb8bad91f66f1e264568d56f4ff70488021 diff --git a/dev-python/pytest-codeblocks/pytest-codeblocks-0.15.0.ebuild b/dev-python/pytest-codeblocks/pytest-codeblocks-0.15.0.ebuild new file mode 100644 index 000000000000..63e1535ce48a --- /dev/null +++ b/dev-python/pytest-codeblocks/pytest-codeblocks-0.15.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 2019-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Extract code blocks from markdown" +HOMEPAGE=" + https://github.com/nschloe/pytest-codeblocks/ + https://pypi.org/project/pytest_codeblocks/ +" +SRC_URI=" + https://github.com/nschloe/pytest-codeblocks/archive/v${PV}.tar.gz + -> ${P}.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + >=dev-python/pytest-7.0.0[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +python_test() { + epytest -p pytester +} diff --git a/dev-python/pytest-console-scripts/pytest-console-scripts-1.3.1.ebuild b/dev-python/pytest-console-scripts/pytest-console-scripts-1.3.1.ebuild index 7c7afb1e0666..0061459e1907 100644 --- a/dev-python/pytest-console-scripts/pytest-console-scripts-1.3.1.ebuild +++ b/dev-python/pytest-console-scripts/pytest-console-scripts-1.3.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86" RDEPEND=" >=dev-python/pytest-4.0.0[${PYTHON_USEDEP}] diff --git a/dev-python/pytools/Manifest b/dev-python/pytools/Manifest index 6c9820142e33..85650ba1eb55 100644 --- a/dev-python/pytools/Manifest +++ b/dev-python/pytools/Manifest @@ -1,3 +1,4 @@ DIST pytools-2022.1.1.tar.gz 67883 BLAKE2B 915d0a40de77589b3ec7d463f44b677cf47663458895b3f0aed0667eaaae6e6e34a44896f98b5e07016022f48074780c7d24082df616178308b34507713dab8d SHA512 6d69e84124b0894250e82fb9d0f23776b0fee90fa0d7176d83669d3538eeb5e8a3ff706aba88f61442b9889b524cedcbcae635cf6886145deab310319dc2268f DIST pytools-2022.1.2.tar.gz 67910 BLAKE2B 7c8cb65ae2ce5a790a2f5985c9d464d156ea49e9d8f17d5ff1bb456fc9d8f297fc2aa738aeadab45b472c08ced4995de487a6d59f1cb62aeb92a783b01292f6c SHA512 eb594188f55fa4d4e5696dbe7ac322675e75683a932369d641b52787af9fbb9eaa9e2697e1db811fd61065472836aaf9875edd73538db40d3b0760fa937547c9 DIST pytools-2022.1.3.tar.gz 68522 BLAKE2B 49223fa3763e40e613708323e755f3cf4df2da4642110742fc9f4dd2275caa171e394023edd62f9cb254e475c9167b49cb9a0d10285d516fb282347c47a919f0 SHA512 d50c4e89714ad7190d2011c3d1c5e572f615c6e1b53d5e4457d784499b796c740f425c53799d74c3376a350eb15591aa6bda64c9458519c0d0aa6d7e98468b33 +DIST pytools-2022.1.4.tar.gz 68840 BLAKE2B 27205ec5e4af2f9193c5ca3e2ca33f8511f49105b7252d3fd95006e6eb6086c1650e39050be3cb469b2906ce946144d5c5d5c155380d3e8b62b0af85975cb736 SHA512 feb1d2f10175700d8fea1e531b9f0c78a57f4f1547976ac0c4d2e40b870cba95b99b7484ba2268fb36e62894d074856acfbfeb1219b23011cddb16cea597bb2c diff --git a/dev-python/pytools/pytools-2022.1.4.ebuild b/dev-python/pytools/pytools-2022.1.4.ebuild new file mode 100644 index 000000000000..c12bd0efdfc5 --- /dev/null +++ b/dev-python/pytools/pytools-2022.1.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_REQ_USE='sqlite' + +inherit distutils-r1 + +DESCRIPTION="Collection of tools missing from the Python standard library" +HOMEPAGE="https://mathema.tician.de/software/pytools/ + https://github.com/inducer/pytools" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=dev-python/numpy-1.6.0[${PYTHON_USEDEP}] + >=dev-python/platformdirs-2.2.0[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/typing-extensions[${PYTHON_USEDEP}] + ' 3.8 3.9 3.10) +" + +distutils_enable_tests pytest diff --git a/dev-python/pytz/pytz-2022.1.ebuild b/dev-python/pytz/pytz-2022.1.ebuild index 9b90370f8669..f5343912016d 100644 --- a/dev-python/pytz/pytz-2022.1.ebuild +++ b/dev-python/pytz/pytz-2022.1.ebuild @@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" IUSE="" DEPEND=" diff --git a/dev-python/repoze-lru/repoze-lru-0.7-r2.ebuild b/dev-python/repoze-lru/repoze-lru-0.7-r2.ebuild index 56c9542c3f1b..f4b8ab043c1a 100644 --- a/dev-python/repoze-lru/repoze-lru-0.7-r2.ebuild +++ b/dev-python/repoze-lru/repoze-lru-0.7-r2.ebuild @@ -21,7 +21,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="repoze" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86" +KEYWORDS="~amd64 arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86" distutils_enable_tests unittest diff --git a/dev-python/setuptools/setuptools-62.1.0.ebuild b/dev-python/setuptools/setuptools-62.1.0.ebuild index 0bcb480a73c4..6b7d4e64e2c0 100644 --- a/dev-python/setuptools/setuptools-62.1.0.ebuild +++ b/dev-python/setuptools/setuptools-62.1.0.ebuild @@ -23,7 +23,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~m68k ~s390 ~x86 ~x64-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-solaris" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest index 21ca7e8e9e52..a9bdbbe1a848 100644 --- a/dev-python/stripe/Manifest +++ b/dev-python/stripe/Manifest @@ -2,3 +2,4 @@ DIST stripe-2.67.0.tar.gz 235426 BLAKE2B ee396b0b7d3991afdd81e6b051fad0168a7b3dc DIST stripe-2.70.0.tar.gz 239653 BLAKE2B d59d7b452e91169e83e4d4bc10b544fc94c48aa3a967c899136b1b9ea60e835d998c1a5a0c5e131989d9628c36b77e3fe133952dddbede69d0bcfa11dc9fc640 SHA512 62f40d82e4a5d37ce070a2457b8372d903993e209f6a042ab97a93f5ee98eb994c0cac070451e2b130df9a72f4a9ece65600266735b438aff3cc5cf09e217b27 DIST stripe-2.71.0.tar.gz 239817 BLAKE2B c1b8fad45e7e9fee79f841502aaad1a849f345357d2facfab833bc50129c5d9eac6c2af128ef572f9d295da966b8a38b095786b44bf026eac6f6d001470ae60a SHA512 5acbaba1e2a5e063beafd0b67994a4a4c7d207f220a49e84b7ab3c0288a92150fd10048f7782e32c3033f4a920f5e81a0893610545e5d1f49ee6dbe62aa4b3a5 DIST stripe-2.72.0.tar.gz 239987 BLAKE2B 8eb1ea8446cb106c75b0a005478ae28c893338ecc0bb2d0017ad7e9a775108ed0eac1d3e05a5038330b89a47ffc311d4d0367df63c9d0ce01552afd7e4f3e82e SHA512 b9f98ce94002cbebdad5e2b7dc90b4f4d1b4c637db7509881a346c772f90d2154a49109aee15f650559ed8c253e82f466a5a4b6409efc8e00442c80195e1a3a8 +DIST stripe-2.73.0.tar.gz 240478 BLAKE2B d85b31670b3e055c42ccaeeb49ca34ed48e0ca299ab2a4e5d87e7f8e8121c52a072027b390bd21e8b7cab4fd77952fa2b6273eccf1a1c933129326a051ebb8d3 SHA512 e2b41d28c9a63564a86e2acd1f36727b34f9133b43104ad6736ad9f706396ce534e59252728342ffea1ce766fcc15b9fc24a00a7797547e8e3fc05943a462a9c diff --git a/dev-python/stripe/stripe-2.73.0.ebuild b/dev-python/stripe/stripe-2.73.0.ebuild new file mode 100644 index 000000000000..4334fec8fe41 --- /dev/null +++ b/dev-python/stripe/stripe-2.73.0.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Stripe python bindings" +HOMEPAGE="https://github.com/stripe/stripe-python" +SRC_URI="mirror://pypi/s/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=dev-python/requests-2.20[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + >=dev-util/stripe-mock-0.123.0 + dev-python/pytest-mock[${PYTHON_USEDEP}] + net-misc/curl + ) +" + +distutils_enable_tests pytest + +DOCS=( LONG_DESCRIPTION.rst CHANGELOG.md README.md ) + +python_test() { + epytest tests +} + +src_test() { + local stripe_mock_port=12111 + local stripe_mock_max_port=12121 + local stripe_mock_logfile="${T}/stripe_mock_${EPYTHON}.log" + # Try to start stripe-mock until we find a free port + while [[ "${stripe_mock_port}" -le "${stripe_mock_max_port}" ]]; do + ebegin "Trying to start stripe-mock on port ${stripe_mock_port}" + stripe-mock --http-port ${stripe_mock_port} &> "${stripe_mock_logfile}" & + local stripe_mock_pid=$! + sleep 2 + # Did stripe-mock start? + curl --fail -u "sk_test_123:" \ + http://127.0.0.1:${stripe_mock_port}/v1/customers &> /dev/null + eend $? "Port ${stripe_mock_port} unavailable" + if [[ $? -eq 0 ]]; then + einfo "stripe-mock running on port ${stripe_mock_port}" + break + fi + (( stripe_mock_port++ )) + done + if [[ "${stripe_mock_port}" -gt "${stripe_mock_max_port}" ]]; then + eerror "Unable to start stripe-mock for tests" + die "Please see the logfile located at: ${stripe_mock_logfile}" + fi + + local -x STRIPE_MOCK_PORT=${stripe_mock_port} + distutils-r1_src_test + + # Tear down stripe-mock + kill "${stripe_mock_pid}" || die "Unable to stop stripe-mock" +} diff --git a/dev-python/typing-extensions/Manifest b/dev-python/typing-extensions/Manifest index 235acc55c533..b1de2cb7624b 100644 --- a/dev-python/typing-extensions/Manifest +++ b/dev-python/typing-extensions/Manifest @@ -1 +1,2 @@ DIST typing-extensions-4.1.1.gh.tar.gz 78687 BLAKE2B 94a486a746ff76d8ad1c416b61ec3e22864246c531536d7db6f0aa5113adf0f4bcb9e8e843b9c7fdbbbe915375fa303211d66b9f838629ac0d43a768a4bc82cc SHA512 251e7bd0216d0b2a83d963bd528d94700f113cc0ccc98959d5512faf5c738e1332673f42709ce8b3b7f5c7573edb794c34f5c02d82fef8d4bbae03db50b1ce92 +DIST typing-extensions-4.2.0.gh.tar.gz 77169 BLAKE2B 3b7e91d0b410daf749d61213e8dc2bce069c05db7626a6c3a380fe1955ad97871f3c90782a8ba5114b11c42e0775558fd6fb1fd28a7cc0fbf2ec97480ef72298 SHA512 52e67eaeb3159e5effdcf180fc43d9881453c7efc00546335a8f31d5f7ab9859c2f89b29612861015ba490cdfd596720aa577630b424323256930b036b119776 diff --git a/dev-python/typing-extensions/typing-extensions-4.2.0.ebuild b/dev-python/typing-extensions/typing-extensions-4.2.0.ebuild new file mode 100644 index 000000000000..e99fcab363c1 --- /dev/null +++ b/dev-python/typing-extensions/typing-extensions-4.2.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +MY_P=typing-${PV} +DESCRIPTION="Backported and Experimental Type Hints for Python 3.7+" +HOMEPAGE=" + https://pypi.org/project/typing-extensions/ + https://github.com/python/typing/ +" +SRC_URI=" + https://github.com/python/typing/archive/${PV}.tar.gz -> ${P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P}/typing_extensions + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" + +python_test() { + cd "${S}"/src || die + "${EPYTHON}" test_typing_extensions.py -v || die "tests failed under ${EPYTHON}" +} diff --git a/dev-python/uri_template/metadata.xml b/dev-python/uri_template/metadata.xml index 582b879aa5bb..efd1dd6075af 100644 --- a/dev-python/uri_template/metadata.xml +++ b/dev-python/uri_template/metadata.xml @@ -1,5 +1,5 @@ - - + + gentoo@chymera.eu diff --git a/dev-python/watchgod/Manifest b/dev-python/watchgod/Manifest index 1a53095d71cc..8a8555ac2c7b 100644 --- a/dev-python/watchgod/Manifest +++ b/dev-python/watchgod/Manifest @@ -1,3 +1,2 @@ -DIST watchgod-0.7.gh.tar.gz 14362 BLAKE2B 0c16b7ef2a7e1d0ca2c9d27b1503a9710662364318d5021e916aabf90c8f917b0bf69559a545658f839953832edc579b0014a0736b3b155f097d1d29c2e4b4f7 SHA512 afa225b30cf796ce95861c61fbe8eb22ed72011522de53d53c41148311793db10e41b66e9eb1237c4372f142edaec992de79715c568e435ddb1695666be1cdd8 DIST watchgod-0.8.1.gh.tar.gz 15414 BLAKE2B 237b03a08b053f6979b884a02818b8651ce7415dbd08a848c2d754361c3f9aaf315db2b352a8f159f6245f2db92ea2f5485daacfb8924edcc361049f307467bb SHA512 a30ac1093df1e26ce78bbc09f5b1155cd5a9becad13da54ab3009012a5630404bb94695474be05133ad3e57c1727743efc408235a19a25f276265d752f0624cc DIST watchgod-0.8.gh.tar.gz 15354 BLAKE2B 1325f452593e54e8cc40eca0fc9867aff0c93d89de767b9512508fee02efe94e43284b30c316b2cce31a15acc2ee9ff19ca7f9cc6fb46cfffdb0458e502d85ca SHA512 0e86d9dd3eba0cd3aaeccc009ebdba8528ba23d63ad19ff789dffda075b4a01c32be0dfabf38f15e7966bc09e7fb5ae3a94a9dd89a55358a95622aaf5cad0947 diff --git a/dev-python/watchgod/watchgod-0.7.ebuild b/dev-python/watchgod/watchgod-0.7.ebuild deleted file mode 100644 index 563cc8deb366..000000000000 --- a/dev-python/watchgod/watchgod-0.7.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Simple, modern file watching and code reload in Python" -HOMEPAGE=" - https://pypi.org/project/watchgod/ - https://github.com/samuelcolvin/watchgod/" -SRC_URI=" - https://github.com/samuelcolvin/watchgod/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86" - -BDEPEND=" - test? ( - dev-python/pytest-asyncio[${PYTHON_USEDEP}] - dev-python/pytest-mock[${PYTHON_USEDEP}] - dev-python/pytest-toolbox[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -EPYTEST_DESELECT=( - # flaky test on slow systems, https://github.com/samuelcolvin/watchgod/issues/84 - tests/test_watch.py::test_awatch_log -) - -src_prepare() { - # increase timeout - sed -e '/sleep/s/0.01/1.0/' -i tests/test_watch.py || die - - distutils-r1_src_prepare -} diff --git a/dev-python/watchgod/watchgod-0.8.ebuild b/dev-python/watchgod/watchgod-0.8.ebuild index 34afc99b5723..76bf162438aa 100644 --- a/dev-python/watchgod/watchgod-0.8.ebuild +++ b/dev-python/watchgod/watchgod-0.8.ebuild @@ -18,7 +18,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86" +KEYWORDS="amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86" RDEPEND=" =dev-python/anyio-3*[${PYTHON_USEDEP}] diff --git a/dev-python/websockets/Manifest b/dev-python/websockets/Manifest index 8b086337648b..510018fac960 100644 --- a/dev-python/websockets/Manifest +++ b/dev-python/websockets/Manifest @@ -1 +1,2 @@ DIST websockets-10.2-src.tar.gz 302766 BLAKE2B 2313bab904de3671f973191f1c43d275ede44c87811d82f22c6bd76145610ba5d4ba4d7a1b3a564bfc8c4a9b7921b2edc640af9304733e85deac1e728f0050f3 SHA512 b8c7fbe627e1c411112b0d66e561aa9bcf15d6de07a9cccd203211e0e6af49762774e09f8c5f4523fe214731ae7a96ed4b63639c7ed66fee062cdda3e5fba350 +DIST websockets-10.3.gh.tar.gz 304375 BLAKE2B db6075304613ff74ad5928a0c57e90a7d418ac0b9532adba4c6a17b3c3f1982cc94db8ac4c0da5f65343a915f3b2e7ccedce4e6d5d4960cb72fc93c3db6e041c SHA512 75a11dd7605808954c5f59decda5b115db73de96ed4023d8d7ee3c9966551a9ded2d771f76b086c76f49b0787f19349dadcd9010eb5fea8eeddf3d9bba1c6cbb diff --git a/dev-python/websockets/websockets-10.3.ebuild b/dev-python/websockets/websockets-10.3.ebuild new file mode 100644 index 000000000000..1723d0a7cdd0 --- /dev/null +++ b/dev-python/websockets/websockets-10.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Library for building WebSocket servers and clients in Python" +HOMEPAGE=" + https://websockets.readthedocs.io/ + https://github.com/aaugustin/websockets/ + https://pypi.org/project/websockets/ +" +SRC_URI=" + https://github.com/aaugustin/websockets/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + # very fragile to speed + tests/legacy/test_protocol.py::ServerTests::test_local_close_receive_close_frame_timeout + ) + + epytest tests +} diff --git a/dev-python/werkzeug/werkzeug-2.1.1.ebuild b/dev-python/werkzeug/werkzeug-2.1.1.ebuild index f8c6fc65a104..d5c1773d6f4e 100644 --- a/dev-python/werkzeug/werkzeug-2.1.1.ebuild +++ b/dev-python/werkzeug/werkzeug-2.1.1.ebuild @@ -21,7 +21,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" BDEPEND=" test? ( diff --git a/dev-python/wrapt/wrapt-1.14.0.ebuild b/dev-python/wrapt/wrapt-1.14.0.ebuild index 8ae916b078af..e0c4a5aabb78 100644 --- a/dev-python/wrapt/wrapt-1.14.0.ebuild +++ b/dev-python/wrapt/wrapt-1.14.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.t LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" distutils_enable_tests pytest distutils_enable_sphinx docs dev-python/sphinx_rtd_theme diff --git a/dev-python/wsproto/wsproto-1.0.0-r1.ebuild b/dev-python/wsproto/wsproto-1.0.0-r1.ebuild index b28abfcd3c2d..0c959077a0a6 100644 --- a/dev-python/wsproto/wsproto-1.0.0-r1.ebuild +++ b/dev-python/wsproto/wsproto-1.0.0-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv sparc ~x86" RDEPEND=" >=dev-python/h11-0.9[${PYTHON_USEDEP}] diff --git a/dev-python/wxpython/wxpython-4.0.7-r1.ebuild b/dev-python/wxpython/wxpython-4.0.7-r1.ebuild index cf5ea393f6b4..701e3339e6bb 100644 --- a/dev-python/wxpython/wxpython-4.0.7-r1.ebuild +++ b/dev-python/wxpython/wxpython-4.0.7-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{8,9} ) +PYTHON_COMPAT=( python3_{8..10} ) WX_GTK_VER="3.0-gtk3" DISTUTILS_IN_SOURCE_BUILD="1" diff --git a/dev-python/zstd/Manifest b/dev-python/zstd/Manifest index 4f70ec3b4e2f..a775391b336d 100644 --- a/dev-python/zstd/Manifest +++ b/dev-python/zstd/Manifest @@ -1,2 +1,3 @@ DIST zstd-1.5.1.0.tar.gz 604039 BLAKE2B 5f3e2f2848d67d2455bab721d011946fa8138729566243046e2b294e51c1144a0a0576f9e64e15472c8da4b45514a052a751b2ac3d87f17301ab634f560bf19a SHA512 4775f9db3b924116272060fd46885a601ec5153b350974ef5fe41878f10aad0fee428f053ce71aaf881eb73bfc11ae1d89148f65447fc6febe3f53a50ffa0a63 DIST zstd-1.5.2.0.tar.gz 605453 BLAKE2B 1564bf6f5d37ca5c55a161373f10ff99ffc942abf3d177bf15943570bc30367f0d6aee88cbfd28f1a57483945e0d3de5fde0dfc78bc2b0066faef12de2684fbd SHA512 99df709b889732dc5d6e682e79c52731b918458ccf720431a6afc757dd4cd58bd3ffe1ad45158d28a87d7baaa883fd074cb94717e023ee80eef1561d651504e1 +DIST zstd-1.5.2.2.tar.gz 605458 BLAKE2B b302edd73d303dffe66564217b03c4477e2679788ab58782bd620ae8e5e0410da3c672715622ad5cff1bfd24835bfe61255b1df4ba7c6d452c08dee42d45a1e0 SHA512 fc5d60db491adefbf9af5d46600701075418986ffe5042d74eae75e2d1ec3347141dea3bf0a384f87ffbf833be398157f9b3d7277e6a30994b1287b14b6a2d21 diff --git a/dev-python/zstd/zstd-1.5.2.2.ebuild b/dev-python/zstd/zstd-1.5.2.2.ebuild new file mode 100644 index 000000000000..8dd524a01c03 --- /dev/null +++ b/dev-python/zstd/zstd-1.5.2.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Simple python bindings to Yann Collet ZSTD compression library" +HOMEPAGE=" + https://github.com/sergey-dryabzhinsky/python-zstd/ + https://pypi.org/project/zstd/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +DEPEND=" + app-arch/zstd:= +" +RDEPEND=" + ${DEPEND} + !/dev/null || die - eqmake5 - popd >/dev/null || die - - qtchooser_make check -} - -src_install() { - qtchooser_make INSTALL_ROOT="${D}" install - - # install configuration file - cat > "${T}/qt5-${CHOST}.conf" <<-_EOF_ || die - $(qt5_get_bindir) - $(qt5_get_libdir) - _EOF_ - - ( - insinto /etc/xdg/qtchooser - doins "${T}/qt5-${CHOST}.conf" - ) - - # convenience symlinks - dosym qt5-"${CHOST}".conf /etc/xdg/qtchooser/5.conf - dosym qt5-"${CHOST}".conf /etc/xdg/qtchooser/qt5.conf - dosym qt5.conf /etc/xdg/qtchooser/default.conf - - # TODO: bash and zsh completion - # newbashcomp scripts/${PN}.bash ${PN} -} diff --git a/dev-qt/qtcore/files/qtcore-5.14.1-cmake-macro-backward-compat.patch b/dev-qt/qtcore/files/qtcore-5.14.1-cmake-macro-backward-compat.patch deleted file mode 100644 index 30b5abc39759..000000000000 --- a/dev-qt/qtcore/files/qtcore-5.14.1-cmake-macro-backward-compat.patch +++ /dev/null @@ -1,50 +0,0 @@ -From: Andreas Sturmlechner -Date: Sun, 9 Feb 2020 11:45:00 +0100 -Subject: [PATCH] qtcore: Fix cmake macro compat. for upgrade from =Qt-5.14, as a consequence of slot upgrade rebuilds, some -reverse dependencies are slated for rebuild before these Qt consumers have been rebuilt and their -cmake files regenerated, leading to cmake errors like: - -https://bugs.gentoo.org/703306 -https://bugs.gentoo.org/705198 - -From mkspecs/features/create_cmake.prf: - -# CMAKE_DEBUG_AND_RELEASE is used to tell the _populate_$${CMAKE_MODULE_NAME}_target_properties -# functions whether a Configuration specific generator expression needs to be added to the values -# of INTERFACE_LINK_LIBRARIES and INTERFACE_LINK_OPTIONS. For debug_and_release builds, we do need -# configuration specific values. For singular builds (only release or only debug), we want the -# values to be applied regardless of the configuration. -# This would allow on Linux and macOS (and with a recent enough version of CMake on Windows) to -# build a Debug configuration of an application, even if Qt was built in a Release configuration. - -qt5-build.eclass is configuring either as 'release' or as 'debug', so we make IsDebugAndRelease -optional and default to FALSE. - ---- a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in 2020-01-23 13:37:32.000000000 +0100 -+++ b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in 2020-02-09 15:15:21.156219814 +0100 -@@ -538,8 +538,14 @@ - - file(GLOB pluginTargets \"${CMAKE_CURRENT_LIST_DIR}/Qt5$${CMAKE_MODULE_NAME}_*Plugin.cmake\") - -- macro(_populate_$${CMAKE_MODULE_NAME}_plugin_properties Plugin Configuration PLUGIN_LOCATION -- IsDebugAndRelease) -+ macro(_populate_$${CMAKE_MODULE_NAME}_plugin_properties Plugin Configuration PLUGIN_LOCATION) -+ set(IsDebugAndRelease FALSE) -+ set (list_var ${ARGN}) -+ list(LENGTH list_var num_extra_arg) -+ if (${num_extra_arg} GREATER 0) -+ list(GET list_var 0 IsDebugAndRelease) -+ endif() -+ - set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration}) - - !!IF isEmpty(CMAKE_PLUGIN_DIR_IS_ABSOLUTE) diff --git a/dev-qt/qtcore/files/qtcore-5.15.1-timezone-1.patch b/dev-qt/qtcore/files/qtcore-5.15.1-timezone-1.patch deleted file mode 100644 index 1c8f1e89e7d5..000000000000 --- a/dev-qt/qtcore/files/qtcore-5.15.1-timezone-1.patch +++ /dev/null @@ -1,271 +0,0 @@ -From c337f6fae51b987ce7dbed1fd9bea41e6073efbb Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= -Date: Sat, 10 Oct 2020 19:26:13 +0200 -Subject: [PATCH 1/2] Revert "Cache system zone ID when fetched from the - file-system" - -This reverts commit c70ce3d042025c858faffe661f85d2482a2a0d8c. ---- - src/corelib/time/qtimezoneprivate_tz.cpp | 205 +++++++---------------- - 1 file changed, 64 insertions(+), 141 deletions(-) - -diff --git a/src/corelib/time/qtimezoneprivate_tz.cpp b/src/corelib/time/qtimezoneprivate_tz.cpp -index c5c70b7364..01f9a6cce0 100644 ---- a/src/corelib/time/qtimezoneprivate_tz.cpp -+++ b/src/corelib/time/qtimezoneprivate_tz.cpp -@@ -1,6 +1,5 @@ - /**************************************************************************** - ** --** Copyright (C) 2020 The Qt Company Ltd. - ** Copyright (C) 2019 Crimson AS - ** Copyright (C) 2013 John Layt - ** Contact: https://www.qt.io/licensing/ -@@ -43,19 +42,18 @@ - #include "qtimezoneprivate_p.h" - #include "private/qlocale_tools_p.h" - --#include --#include - #include --#include - #include -+#include -+#include -+#include - - #include --#include - - #include - #include - #include --#ifndef Q_OS_INTEGRITY -+#if !defined(Q_OS_INTEGRITY) - #include // to use MAXSYMLINKS constant - #endif - #include // to use _SC_SYMLOOP_MAX constant -@@ -1102,146 +1100,28 @@ QTimeZonePrivate::Data QTzTimeZonePrivate::previousTransition(qint64 beforeMSecs - return last > tranCache().cbegin() ? dataForTzTransition(*--last) : invalidData(); - } - --bool QTzTimeZonePrivate::isTimeZoneIdAvailable(const QByteArray &ianaId) const --{ -- return tzZones->contains(ianaId); --} -- --QList QTzTimeZonePrivate::availableTimeZoneIds() const --{ -- QList result = tzZones->keys(); -- std::sort(result.begin(), result.end()); -- return result; --} -- --QList QTzTimeZonePrivate::availableTimeZoneIds(QLocale::Country country) const -+static long getSymloopMax() - { -- // TODO AnyCountry -- QList result; -- for (auto it = tzZones->cbegin(), end = tzZones->cend(); it != end; ++it) { -- if (it.value().country == country) -- result << it.key(); -- } -- std::sort(result.begin(), result.end()); -- return result; --} -- --// Getting the system zone's ID: -- --namespace { --class ZoneNameReader : public QObject --{ --public: -- QByteArray name() -- { -- /* Assumptions: -- a) Systems don't change which of localtime and TZ they use without a -- reboot. -- b) When they change, they use atomic renames, hence a new device and -- inode for the new file. -- c) If we change which *name* is used for a zone, while referencing -- the same final zoneinfo file, we don't care about the change of -- name (e.g. if Europe/Oslo and Europe/Berlin are both symlinks to -- the same CET file, continuing to use the old name, after -- /etc/localtime changes which of the two it points to, is -- harmless). -- -- The alternative would be to use a file-system watcher, but they are a -- scarce resource. -- */ -- const StatIdent local = identify("/etc/localtime"); -- const StatIdent tz = identify("/etc/TZ"); -- if (!m_name.isEmpty() && m_last.isValid() && (m_last == local || m_last == tz)) -- return m_name; -- -- m_name = etcLocalTime(); -- if (!m_name.isEmpty()) { -- m_last = local; -- return m_name; -- } -- -- m_name = etcTZ(); -- m_last = m_name.isEmpty() ? StatIdent() : tz; -- return m_name; -- } -- -- --private: -- QByteArray m_name; -- struct StatIdent -- { -- static constexpr unsigned long bad = ~0ul; -- unsigned long m_dev, m_ino; -- StatIdent() : m_dev(bad), m_ino(bad) {} -- StatIdent(const QT_STATBUF &data) : m_dev(data.st_dev), m_ino(data.st_ino) {} -- bool isValid() { return m_dev != bad || m_ino != bad; } -- bool operator==(const StatIdent &other) -- { return other.m_dev == m_dev && other.m_ino == m_ino; } -- }; -- StatIdent m_last; -- -- static StatIdent identify(const char *path) -- { -- QT_STATBUF data; -- return QT_STAT(path, &data) == -1 ? StatIdent() : StatIdent(data); -- } -- -- static QByteArray etcLocalTime() -- { -- // On most distros /etc/localtime is a symlink to a real file so extract -- // name from the path -- const QLatin1String zoneinfo("/zoneinfo/"); -- QString path = QStringLiteral("/etc/localtime"); -- long iteration = getSymloopMax(); -- // Symlink may point to another symlink etc. before being under zoneinfo/ -- // We stop on the first path under /zoneinfo/, even if it is itself a -- // symlink, like America/Montreal pointing to America/Toronto -- do { -- path = QFile::symLinkTarget(path); -- int index = path.indexOf(zoneinfo); -- if (index >= 0) // Found zoneinfo file; extract zone name from path: -- return path.midRef(index + zoneinfo.size()).toUtf8(); -- } while (!path.isEmpty() && --iteration > 0); -- -- return QByteArray(); -- } -- -- static QByteArray etcTZ() -- { -- // Some systems (e.g. uClibc) have a default value for $TZ in /etc/TZ: -- const QString path = QStringLiteral("/etc/TZ"); -- QFile zone(path); -- if (zone.open(QIODevice::ReadOnly)) -- return zone.readAll().trimmed(); -- -- return QByteArray(); -- } -- -- // Any chain of symlinks longer than this is assumed to be a loop: -- static long getSymloopMax() -- { --#ifdef SYMLOOP_MAX -- // If defined, at runtime it can only be greater than this, so this is a safe bet: -- return SYMLOOP_MAX; -+#if defined(SYMLOOP_MAX) -+ return SYMLOOP_MAX; // if defined, at runtime it can only be greater than this, so this is a safe bet - #else -- errno = 0; -- long result = sysconf(_SC_SYMLOOP_MAX); -- if (result >= 0) -- return result; -- // result is -1, meaning either error or no limit -- Q_ASSERT(!errno); // ... but it can't be an error, POSIX mandates _SC_SYMLOOP_MAX -- -- // therefore we can make up our own limit --# ifdef MAXSYMLINKS -- return MAXSYMLINKS; -+ errno = 0; -+ long result = sysconf(_SC_SYMLOOP_MAX); -+ if (result >= 0) -+ return result; -+ // result is -1, meaning either error or no limit -+ Q_ASSERT(!errno); // ... but it can't be an error, POSIX mandates _SC_SYMLOOP_MAX -+ -+ // therefore we can make up our own limit -+# if defined(MAXSYMLINKS) -+ return MAXSYMLINKS; - # else -- return 8; -+ return 8; - # endif - #endif -- } --}; - } - -+// TODO Could cache the value and monitor the required files for any changes - QByteArray QTzTimeZonePrivate::systemTimeZoneId() const - { - // Check TZ env var first, if not populated try find it -@@ -1256,9 +1136,28 @@ QByteArray QTzTimeZonePrivate::systemTimeZoneId() const - else if (ianaId.startsWith(':')) - ianaId = ianaId.mid(1); - -+ // On most distros /etc/localtime is a symlink to a real file so extract name from the path -+ if (ianaId.isEmpty()) { -+ const QLatin1String zoneinfo("/zoneinfo/"); -+ QString path = QFile::symLinkTarget(QStringLiteral("/etc/localtime")); -+ int index = -1; -+ long iteration = getSymloopMax(); -+ // Symlink may point to another symlink etc. before being under zoneinfo/ -+ // We stop on the first path under /zoneinfo/, even if it is itself a -+ // symlink, like America/Montreal pointing to America/Toronto -+ while (iteration-- > 0 && !path.isEmpty() && (index = path.indexOf(zoneinfo)) < 0) -+ path = QFile::symLinkTarget(path); -+ if (index >= 0) { -+ // /etc/localtime is a symlink to the current TZ file, so extract from path -+ ianaId = path.midRef(index + zoneinfo.size()).toUtf8(); -+ } -+ } -+ -+ // Some systems (e.g. uClibc) have a default value for $TZ in /etc/TZ: - if (ianaId.isEmpty()) { -- thread_local static ZoneNameReader reader; -- ianaId = reader.name(); -+ QFile zone(QStringLiteral("/etc/TZ")); -+ if (zone.open(QIODevice::ReadOnly)) -+ ianaId = zone.readAll().trimmed(); - } - - // Give up for now and return UTC -@@ -1268,4 +1167,28 @@ QByteArray QTzTimeZonePrivate::systemTimeZoneId() const - return ianaId; - } - -+bool QTzTimeZonePrivate::isTimeZoneIdAvailable(const QByteArray &ianaId) const -+{ -+ return tzZones->contains(ianaId); -+} -+ -+QList QTzTimeZonePrivate::availableTimeZoneIds() const -+{ -+ QList result = tzZones->keys(); -+ std::sort(result.begin(), result.end()); -+ return result; -+} -+ -+QList QTzTimeZonePrivate::availableTimeZoneIds(QLocale::Country country) const -+{ -+ // TODO AnyCountry -+ QList result; -+ for (auto it = tzZones->cbegin(), end = tzZones->cend(); it != end; ++it) { -+ if (it.value().country == country) -+ result << it.key(); -+ } -+ std::sort(result.begin(), result.end()); -+ return result; -+} -+ - QT_END_NAMESPACE --- -2.28.0 - diff --git a/dev-qt/qtcore/files/qtcore-5.15.1-timezone-2.patch b/dev-qt/qtcore/files/qtcore-5.15.1-timezone-2.patch deleted file mode 100644 index 611c979a469c..000000000000 --- a/dev-qt/qtcore/files/qtcore-5.15.1-timezone-2.patch +++ /dev/null @@ -1,47 +0,0 @@ -From ffc9093a199a542791920b30d1835c3248920aa0 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= -Date: Sat, 10 Oct 2020 19:26:35 +0200 -Subject: [PATCH 2/2] Revert "Purge two old time-zone lookup fallbacks" - -This reverts commit b0383cbd388336f698ceeac11a4f50cdff931dd9. ---- - src/corelib/time/qtimezoneprivate_tz.cpp | 23 +++++++++++++++++++++++ - 1 file changed, 23 insertions(+) - -diff --git a/src/corelib/time/qtimezoneprivate_tz.cpp b/src/corelib/time/qtimezoneprivate_tz.cpp -index 01f9a6cce0..eea6f5e962 100644 ---- a/src/corelib/time/qtimezoneprivate_tz.cpp -+++ b/src/corelib/time/qtimezoneprivate_tz.cpp -@@ -1153,6 +1153,29 @@ QByteArray QTzTimeZonePrivate::systemTimeZoneId() const - } - } - -+ // On Debian Etch up to Jessie, /etc/localtime is a copy of the relevant -+ // zoneinfo file, whose name is recorded in /etc/timezone: -+ if (ianaId.isEmpty()) { -+ QFile tzif(QStringLiteral("/etc/timezone")); -+ if (tzif.open(QIODevice::ReadOnly)) -+ ianaId = tzif.readAll().trimmed(); -+ } -+ -+ // On some Red Hat distros /etc/localtime is real file with name held in /etc/sysconfig/clock -+ // in a line like ZONE="Europe/Oslo" or TIMEZONE="Europe/Oslo" -+ if (ianaId.isEmpty()) { -+ QFile tzif(QStringLiteral("/etc/sysconfig/clock")); -+ if (tzif.open(QIODevice::ReadOnly)) { -+ while (ianaId.isEmpty() && !tzif.atEnd()) { -+ const QByteArray line(tzif.readLine().trimmed()); -+ if (line.startsWith("ZONE=")) -+ ianaId = line.mid(6, line.length() - 7); -+ else if (line.startsWith("TIMEZONE=")) -+ ianaId = line.mid(10, line.length() - 11); -+ } -+ } -+ } -+ - // Some systems (e.g. uClibc) have a default value for $TZ in /etc/TZ: - if (ianaId.isEmpty()) { - QFile zone(QStringLiteral("/etc/TZ")); --- -2.28.0 - diff --git a/dev-qt/qtdeclarative/files/qtdeclarative-5.15.2-riscv-atomic.patch b/dev-qt/qtdeclarative/files/qtdeclarative-5.15.2-riscv-atomic.patch deleted file mode 100644 index a619f3db833c..000000000000 --- a/dev-qt/qtdeclarative/files/qtdeclarative-5.15.2-riscv-atomic.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/src/qml/qml.pro b/src/qml/qml.pro -index 7d5a92a..01f3b79 100644 ---- a/src/qml/qml.pro -+++ b/src/qml/qml.pro -@@ -19,6 +19,7 @@ solaris-cc*:QMAKE_CXXFLAGS_RELEASE -= -O2 - - # Ensure this gcc optimization is switched off for mips platforms to avoid trouble with JIT. - gcc:isEqual(QT_ARCH, "mips"): QMAKE_CXXFLAGS += -fno-reorder-blocks -+gcc:isEqual(QT_ARCH, "riscv64"): LIBS += -latomic - - DEFINES += QT_NO_FOREACH - diff --git a/dev-qt/qtdeclarative/files/qtdeclarative-5.4.2-disable-jit.patch b/dev-qt/qtdeclarative/files/qtdeclarative-5.4.2-disable-jit.patch deleted file mode 100644 index 7799ef71b7e4..000000000000 --- a/dev-qt/qtdeclarative/files/qtdeclarative-5.4.2-disable-jit.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff --git a/src/qml/jsruntime/qv4global_p.h b/src/qml/jsruntime/qv4global_p.h -index 4b08194..224ddb1 100644 ---- a/src/qml/jsruntime/qv4global_p.h -+++ b/src/qml/jsruntime/qv4global_p.h -@@ -96,8 +96,13 @@ inline double trunc(double d) { return d > 0 ? floor(d) : ceil(d); } - # undef V4_ENABLE_JIT - #endif - #endif - -+// Gentoo note: disable the JIT due to USE="-jit" -+#ifdef V4_ENABLE_JIT -+#undef V4_ENABLE_JIT -+#endif -+ - // Do certain things depending on whether the JIT is enabled or disabled - - #ifdef V4_ENABLE_JIT - #define ENABLE_YARR_JIT 1 diff --git a/dev-qt/qtgui/files/qtgui-5.14.1-cmake-macro-backward-compat.patch b/dev-qt/qtgui/files/qtgui-5.14.1-cmake-macro-backward-compat.patch deleted file mode 100644 index 30b5abc39759..000000000000 --- a/dev-qt/qtgui/files/qtgui-5.14.1-cmake-macro-backward-compat.patch +++ /dev/null @@ -1,50 +0,0 @@ -From: Andreas Sturmlechner -Date: Sun, 9 Feb 2020 11:45:00 +0100 -Subject: [PATCH] qtcore: Fix cmake macro compat. for upgrade from =Qt-5.14, as a consequence of slot upgrade rebuilds, some -reverse dependencies are slated for rebuild before these Qt consumers have been rebuilt and their -cmake files regenerated, leading to cmake errors like: - -https://bugs.gentoo.org/703306 -https://bugs.gentoo.org/705198 - -From mkspecs/features/create_cmake.prf: - -# CMAKE_DEBUG_AND_RELEASE is used to tell the _populate_$${CMAKE_MODULE_NAME}_target_properties -# functions whether a Configuration specific generator expression needs to be added to the values -# of INTERFACE_LINK_LIBRARIES and INTERFACE_LINK_OPTIONS. For debug_and_release builds, we do need -# configuration specific values. For singular builds (only release or only debug), we want the -# values to be applied regardless of the configuration. -# This would allow on Linux and macOS (and with a recent enough version of CMake on Windows) to -# build a Debug configuration of an application, even if Qt was built in a Release configuration. - -qt5-build.eclass is configuring either as 'release' or as 'debug', so we make IsDebugAndRelease -optional and default to FALSE. - ---- a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in 2020-01-23 13:37:32.000000000 +0100 -+++ b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in 2020-02-09 15:15:21.156219814 +0100 -@@ -538,8 +538,14 @@ - - file(GLOB pluginTargets \"${CMAKE_CURRENT_LIST_DIR}/Qt5$${CMAKE_MODULE_NAME}_*Plugin.cmake\") - -- macro(_populate_$${CMAKE_MODULE_NAME}_plugin_properties Plugin Configuration PLUGIN_LOCATION -- IsDebugAndRelease) -+ macro(_populate_$${CMAKE_MODULE_NAME}_plugin_properties Plugin Configuration PLUGIN_LOCATION) -+ set(IsDebugAndRelease FALSE) -+ set (list_var ${ARGN}) -+ list(LENGTH list_var num_extra_arg) -+ if (${num_extra_arg} GREATER 0) -+ list(GET list_var 0 IsDebugAndRelease) -+ endif() -+ - set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration}) - - !!IF isEmpty(CMAKE_PLUGIN_DIR_IS_ABSOLUTE) diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz index 0e656d692573..b278f67c6aac 100644 Binary files a/dev-ruby/Manifest.gz and b/dev-ruby/Manifest.gz differ diff --git a/dev-ruby/childprocess/childprocess-4.1.0.ebuild b/dev-ruby/childprocess/childprocess-4.1.0.ebuild index 65ae8e67a21f..beead554ef88 100644 --- a/dev-ruby/childprocess/childprocess-4.1.0.ebuild +++ b/dev-ruby/childprocess/childprocess-4.1.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/ethon/ethon-0.15.0.ebuild b/dev-ruby/ethon/ethon-0.15.0.ebuild index 0527c5d42892..ff6b1a7b59ba 100644 --- a/dev-ruby/ethon/ethon-0.15.0.ebuild +++ b/dev-ruby/ethon/ethon-0.15.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27" +USE_RUBY="ruby26 ruby27 ruby30" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" diff --git a/dev-ruby/git/Manifest b/dev-ruby/git/Manifest index b5385782744f..0488f1bdc080 100644 --- a/dev-ruby/git/Manifest +++ b/dev-ruby/git/Manifest @@ -1,3 +1,4 @@ DIST git-1.10.0.tar.gz 207412 BLAKE2B e18406a9690d4c0fc3009b57629515e701f41113592fd7533b6b2ae659b90ec1b635410deb7bcb3bd711ce291aaec2010bfcfb4bfb812b9fffdafac167d33bb9 SHA512 717ae5df3cf2b700395df91e8f6e9632062c804955c8f18215c5220ec373a33c2a991534f2a63155111643a867f45f2e7056e2dd6e297340372143770bb70021 DIST git-1.10.2.tar.gz 212738 BLAKE2B 4059066fac1a22e8f19ecce1ebaed648fedc30767b91cb38cf9cf4c9f7091f55f5e9682183e188357dd12ed06dc1ad905d9b688db0c536623487e3c5431ba6f8 SHA512 5d8150a8f974c9b9f531d169e2899b311965a9e9d48d1e45c8bb778a48ea0887ccecf7681baf7cbfad4d22509ba0aafb9886559565e918b84f740b3da7430d86 +DIST git-1.11.0.tar.gz 214161 BLAKE2B 69471f89fddf18bf31d74e318141046395281ba64de1f91fd49cb866508dca9cf7c568c113ed7d7e928bf1d7dfdb0e130a193d4069b87155a4dbc046d6dd6ce9 SHA512 a71da8890622b6ad5a341908e968040ef6c00e2f9edd0bfee1a0c1e9f110cc12b9c01015605b0fb902fdf04fab6011adfbffcf5e8f853c550bff7c263d2e6bd6 DIST git-1.9.1.tar.gz 206509 BLAKE2B 3f8739286f3197fa86a3fccfab357510d562415f568726126cf96c8b74c716c4fbb592f854cafda26cf2f0371e4bc9b52a9f5efdea860d0ea6836198ca48b887 SHA512 ee1df3e704b8bf0687c9fce83d73502d3d46e7f3291da90906961dda057d8e6ec3a0fda5b68c258dd8542559055f1bfabf8915a7e594edafa4b3f267f302f397 diff --git a/dev-ruby/git/git-1.10.2.ebuild b/dev-ruby/git/git-1.10.2.ebuild index e8578adcddc4..d643d9294e7c 100644 --- a/dev-ruby/git/git-1.10.2.ebuild +++ b/dev-ruby/git/git-1.10.2.ebuild @@ -18,7 +18,7 @@ RUBY_S="ruby-git-${PV}" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~ppc ~ppc64 ~x86" IUSE="test" DEPEND+="test? ( >=dev-vcs/git-1.6.0.0 app-arch/tar )" diff --git a/dev-ruby/git/git-1.11.0.ebuild b/dev-ruby/git/git-1.11.0.ebuild new file mode 100644 index 000000000000..6029dfa5687c --- /dev/null +++ b/dev-ruby/git/git-1.11.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_BINWRAP="" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" + +RUBY_FAKEGEM_GEMSPEC="git.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Library for using Git in Ruby" +HOMEPAGE="https://github.com/schacon/ruby-git" +SRC_URI="https://github.com/schacon/ruby-git/archive/v${PV}.tar.gz -> ${P}.tar.gz" +RUBY_S="ruby-git-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="test" + +DEPEND+="test? ( >=dev-vcs/git-1.6.0.0 app-arch/tar )" +RDEPEND+=">=dev-vcs/git-1.6.0.0" + +ruby_add_rdepend ">=dev-ruby/rchardet-1.8:1" + +ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/minitar dev-ruby/test-unit:2 )" + +all_ruby_prepare() { + # Don't use hardcoded /tmp directory. + sed -i -e "s:/tmp:${TMPDIR}:" tests/units/test_archive.rb tests/test_helper.rb || die + + sed -i -e 's/__dir__/"."/' -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die +} + +each_ruby_test() { + git config --global user.email "git@example.com" || die + git config --global user.name "GitExample" || die + ${RUBY} -Ilib:.:test -e 'Dir["tests/**/test_*.rb"].each {|f| require f}' || die +} diff --git a/dev-ruby/gruff/Manifest b/dev-ruby/gruff/Manifest index e7b45205c693..bec2b540fd27 100644 --- a/dev-ruby/gruff/Manifest +++ b/dev-ruby/gruff/Manifest @@ -1 +1,2 @@ DIST gruff-0.14.0.tar.gz 20193671 BLAKE2B b8cdaaca71c5b034206c4f88b1e50e09f8d9c5a3227eaa59a5c66718468ffa643509acfe8bd6919fd012a50daa27709569c210b030e25207c17a0ce13b60616f SHA512 e3c3acbce0888698e2aa92b8e86d2ada5499f394d100209b94ac4284f05a6a4f64c2bdcce91f76be7cec860d0546ebf5fa24aab73b51c0ca9763dc07855c8a68 +DIST gruff-0.15.0.tar.gz 20408532 BLAKE2B 979d027b7763a03dc98e42b195df36d8095f85118187ba63c10fb504ce5e12191691d1a512e780b95030129e2c30a6b9525a4ff3424cd2638e4fa5e42578b33f SHA512 05fadae5895340130dedf2d75a4c99852602334148c7a3179e48001abdb885d519400883067599044f660ea2ef6aded815cdef96dffda307f749af3d2e7751d0 diff --git a/dev-ruby/gruff/gruff-0.15.0.ebuild b/dev-ruby/gruff/gruff-0.15.0.ebuild new file mode 100644 index 000000000000..7823d71da2ac --- /dev/null +++ b/dev-ruby/gruff/gruff-0.15.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_TASK_DOC="" + +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" + +RUBY_FAKEGEM_EXTRAINSTALL="assets rails_generators" + +RUBY_FAKEGEM_GEMSPEC="gruff.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Beautiful graphs for one or multiple datasets" +HOMEPAGE="https://github.com/topfunky/gruff" +SRC_URI="https://github.com/topfunky/gruff/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# imagemagick is an indirect dependency through rmagick. However, for +# gruff to work properly imagemagick needs to be compiled with truetype +# support and this cannot be expressed in the rmagick dependency. Tests +# also require imagemagick to have jpeg and png support. +DEPEND="${DEPEND} test? ( media-gfx/imagemagick[jpeg,png,truetype,webp] )" +RDEPEND="${RDEPEND} media-gfx/imagemagick[truetype]" + +ruby_add_rdepend "dev-ruby/histogram >=dev-ruby/rmagick-4.2:*" +ruby_add_bdepend " + test? ( + dev-ruby/test-unit + )" + +all_ruby_prepare() { + sed -i -e '/\(reporters\|simplecov\)/I s:^:#:' test/gruff_test_case.rb || die + sed -i -e '2irequire "date"' test/test_scatter.rb || die + + sed -e 's/git ls-files/find . -print/' \ + -i ${RUBY_FAKEGEM_GEMSPEC} || die +} + +each_ruby_test() { + # Skip the image comparison checks since the images are not + # pixel-perfect identical, most likely due to the use of a slightly + # different font. + SKIP_CHECK=true ${RUBY} -Ilib:. -e "Dir['test/test_*.rb'].each{|f| require f}" || die +} diff --git a/dev-ruby/mime-types-data/mime-types-data-3.2022.0105.ebuild b/dev-ruby/mime-types-data/mime-types-data-3.2022.0105.ebuild index 8b427a509007..8f246b00ff9a 100644 --- a/dev-ruby/mime-types-data/mime-types-data-3.2022.0105.ebuild +++ b/dev-ruby/mime-types-data/mime-types-data-3.2022.0105.ebuild @@ -3,7 +3,7 @@ EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_EXTRADOC="History.md README.md" @@ -18,5 +18,5 @@ HOMEPAGE="https://github.com/mime-types/mime-types-data" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" diff --git a/dev-ruby/mime-types/mime-types-3.4.1.ebuild b/dev-ruby/mime-types/mime-types-3.4.1.ebuild index 1fe0d52a87de..bb89a8724c19 100644 --- a/dev-ruby/mime-types/mime-types-3.4.1.ebuild +++ b/dev-ruby/mime-types/mime-types-3.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/mime-types/ruby-mime-types" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv sparc ~x86" IUSE="" ruby_add_bdepend "test? ( dev-ruby/minitest:5 dev-ruby/minitest-bonus-assertions:2 dev-ruby/minitest-hooks:1 )" diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild deleted file mode 100644 index 3650de712461..000000000000 --- a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="README.md" - -inherit ruby-fakegem - -DESCRIPTION="Alternative for setup/teardown dance" -HOMEPAGE="https://github.com/splattael/minitest-around" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86" -IUSE="" - -ruby_add_rdepend "dev-ruby/minitest:5" - -ruby_add_bdepend "test? ( dev-ruby/bundler dev-util/cucumber )" - -all_ruby_prepare() { - sed -i -e '/bump/ s:^:#:' \ - -e '/ls-files/d' \ - -e '/cucumber/ s/,.*$//' minitest-around.gemspec Rakefile || die -} - -each_ruby_test() { - for f in test/*_{test,spec}.rb ; do - ${RUBY} -S rake test:isolated TEST="${f}" || die - done -} diff --git a/dev-ruby/minitest-pretty_diff/minitest-pretty_diff-0.1-r1.ebuild b/dev-ruby/minitest-pretty_diff/minitest-pretty_diff-0.1-r1.ebuild index bd3f0187a0bf..a28b6f30328d 100644 --- a/dev-ruby/minitest-pretty_diff/minitest-pretty_diff-0.1-r1.ebuild +++ b/dev-ruby/minitest-pretty_diff/minitest-pretty_diff-0.1-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" inherit ruby-fakegem diff --git a/dev-ruby/multi_test/multi_test-0.1.2-r1.ebuild b/dev-ruby/multi_test/multi_test-0.1.2-r1.ebuild index 9e445324333c..664266595016 100644 --- a/dev-ruby/multi_test/multi_test-0.1.2-r1.ebuild +++ b/dev-ruby/multi_test/multi_test-0.1.2-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_EXTRADOC="History.md README.md" diff --git a/dev-ruby/pastel/Manifest b/dev-ruby/pastel/Manifest index bb354ada0143..df3b0908ba9c 100644 --- a/dev-ruby/pastel/Manifest +++ b/dev-ruby/pastel/Manifest @@ -1,2 +1 @@ -DIST pastel-0.7.4.tar.gz 48176 BLAKE2B 3564aba28f9315d2f988dabdd0686e6c7a53c1b200e6e03519c1ebcde917503760d4f0d790e456c7a732b47535f692d7f5b88cf786e5b4236e9b2e8b5eee66d7 SHA512 a1ad8487babd1e788282e141538855370e09bb2745731670b814cb4572c54e0568955108f7657809b98f92b94d9d94cdd555e2db8146b20f80db98bbab3512ea DIST pastel-0.8.0.tar.gz 49560 BLAKE2B 646cdf5f7cd1e62e83d87cdcdbbdc2cb2619fd570b4715191825344346053b7bf8f8f18b177a8bad6416c13858ab007d94ccf5c16b71c123e4a3d2fd03cd0720 SHA512 8066b372f08e1d6312b87744309692e3e6fd5e2737374bce53087af45141ea4f14e67ead6dccb11df70f73cbb0611ab9e20f7fb553d87a349996bda0f7a3862d diff --git a/dev-ruby/pastel/pastel-0.7.4.ebuild b/dev-ruby/pastel/pastel-0.7.4.ebuild deleted file mode 100644 index fdd5b02e3bc1..000000000000 --- a/dev-ruby/pastel/pastel-0.7.4.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_GEMSPEC="pastel.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Terminal strings styling with intuitive and clean API" -HOMEPAGE="https://github.com/piotrmurach/pastel" -SRC_URI="https://github.com/piotrmurach/pastel/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -ruby_add_rdepend " - >=dev-ruby/equatable-0.6:0 - >=dev-ruby/tty-color-0.5:0 -" - -all_ruby_prepare() { - echo '-rspec_helper' > .rspec || die - sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/pastel/pastel-0.8.0.ebuild b/dev-ruby/pastel/pastel-0.8.0.ebuild index 76a2edfab1dc..ef170d9a83f2 100644 --- a/dev-ruby/pastel/pastel-0.8.0.ebuild +++ b/dev-ruby/pastel/pastel-0.8.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/rb-inotify/rb-inotify-0.10.1.ebuild b/dev-ruby/rb-inotify/rb-inotify-0.10.1.ebuild index 4562d5b272af..22087f9dcd20 100644 --- a/dev-ruby/rb-inotify/rb-inotify-0.10.1.ebuild +++ b/dev-ruby/rb-inotify/rb-inotify-0.10.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/rchardet/rchardet-1.8.0.ebuild b/dev-ruby/rchardet/rchardet-1.8.0.ebuild index a5d21dd0fdfd..f7406102881c 100644 --- a/dev-ruby/rchardet/rchardet-1.8.0.ebuild +++ b/dev-ruby/rchardet/rchardet-1.8.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_EXTRADOC="Readme.md" diff --git a/dev-ruby/roadie-rails/roadie-rails-3.0.0-r1.ebuild b/dev-ruby/roadie-rails/roadie-rails-3.0.0-r1.ebuild new file mode 100644 index 000000000000..8163df599dfb --- /dev/null +++ b/dev-ruby/roadie-rails/roadie-rails-3.0.0-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby26 ruby27" +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_RECIPE_DOC="yard" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Hooks Roadie into your Rails application to help with email generation" +HOMEPAGE="https://github.com/Mange/roadie-rails" +SRC_URI="https://github.com/Mange/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64" + +ruby_add_rdepend "dev-ruby/roadie:5 + || ( dev-ruby/railties:7.0 dev-ruby/railties:6.1 dev-ruby/railties:6.0 dev-ruby/railties:5.2 )" +ruby_add_bdepend " + test? ( + dev-ruby/bundler + || ( dev-ruby/rails:7.0 dev-ruby/rails:6.1 dev-ruby/rails:6.0 dev-ruby/rails:5.2 ) + dev-ruby/rspec-rails + dev-ruby/rspec-collection_matchers + dev-ruby/sass-rails )" + +all_ruby_prepare() { + sed -i -e '/\(simplecov\|standard\)/ s:^:#:' Gemfile || die + sed -i -e 's/git ls-files/find * -print/' ${RUBY_FAKEGEM_GEMSPEC} || die + + # Avoid already removed rails version + sed -i -e '/rails_51/ s:^:#:' spec/integration_spec.rb || die + + # Avoid dependency on optional bootsnap + sed -i -e '/bootsnap/ s:^:#:' spec/railsapps/rails_*/Gemfile spec/railsapps/rails_*/config/boot.rb || die + + # Fix versioned sass-rails dependency + sed -i -e '/sass-rails/ s/>= 6/>=5/' spec/railsapps/*/Gemfile || die + + # Revert https://github.com/Mange/roadie-rails/commit/03acd8fddf651d43919e92db35d541ec4281c5fc for now + # Fragile test which is affected by dependency versions (unclear which) + sed -e 's/cd95a25e70dfe61add5a96e11d3fee0f29e9ba2b05099723d57bba7dfa725c8a/322506f9917889126e81df2833a6eecdf2e394658d53dad347e9882dd4dbf28e/' \ + -i spec/integration_spec.rb || die + +} + +each_ruby_prepare() { + sed -i -e '/run_in_app_context/ s:bin/rails:'${RUBY}' -S bin/rails:' spec/support/rails_app.rb || die +} + +each_ruby_test() { + ${RUBY} -S bundle exec rspec-3 spec || die +} diff --git a/dev-ruby/sass-listen/sass-listen-4.0.0.ebuild b/dev-ruby/sass-listen/sass-listen-4.0.0.ebuild deleted file mode 100644 index 2f6616005a3d..000000000000 --- a/dev-ruby/sass-listen/sass-listen-4.0.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -SRC_URI="https://github.com/sass/listen/archive/v${PV}.tar.gz -> ${P}.tar.gz" -DESCRIPTION="Fork of guard/listen provides a stable API for users of the ruby Sass CLI" -HOMEPAGE="https://github.com/guard/listen" -RUBY_S="listen-${PV}" - -LICENSE="MIT" -SLOT="4" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86" -IUSE="test" - -PATCHES=( "${FILESDIR}/listen-3.1.5-ruby26.patch" ) - -ruby_add_rdepend ">=dev-ruby/rb-inotify-0.9.7" - -ruby_add_bdepend "test? ( dev-ruby/thor )" - -all_ruby_prepare() { - rm -f Gemfile || die - sed -i -e "/git/,+3d" -e "/rb-fsevent/d" ${PN}.gemspec || die - sed -i -e "/rb-fsevent/d" lib/sass-listen/adapter/darwin.rb || die - rm -rf spec/lib/listen/adapter/darwin_spec.rb || die -} - -each_ruby_prepare() { - mkdir spec/.fixtures || die -} - -each_ruby_test() { - RSPEC_VERSION=3 ruby-ng_rspec - rm -rf spec/.fixtures || die -} diff --git a/dev-ruby/selenium-webdriver/selenium-webdriver-4.1.0.ebuild b/dev-ruby/selenium-webdriver/selenium-webdriver-4.1.0.ebuild index 14dd5338589a..4e6109e913ef 100644 --- a/dev-ruby/selenium-webdriver/selenium-webdriver-4.1.0.ebuild +++ b/dev-ruby/selenium-webdriver/selenium-webdriver-4.1.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" # NOTE: this package contains precompiled code. It appears that all # source code can be found at https://code.google.com/p/selenium/ but the @@ -28,7 +28,7 @@ HOMEPAGE="https://github.com/seleniumhq/selenium" LICENSE="Apache-2.0" SLOT="$(ver_cut 1)" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="" ruby_add_rdepend ">=dev-ruby/childprocess-0.5:2 diff --git a/dev-ruby/semantic_puppet/semantic_puppet-1.0.4.ebuild b/dev-ruby/semantic_puppet/semantic_puppet-1.0.4.ebuild index 14f02e1fa911..a1c0f89e14d4 100644 --- a/dev-ruby/semantic_puppet/semantic_puppet-1.0.4.ebuild +++ b/dev-ruby/semantic_puppet/semantic_puppet-1.0.4.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/semver2/semver2-3.4.2-r1.ebuild b/dev-ruby/semver2/semver2-3.4.2-r1.ebuild new file mode 100644 index 000000000000..745ef372efb5 --- /dev/null +++ b/dev-ruby/semver2/semver2-3.4.2-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_GEMSPEC="semver2.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="maintain versions as per http://semver.org" +HOMEPAGE="https://github.com/haf/semver" +SRC_URI="https://github.com/haf/semver/archive/v${PV}.tar.gz -> ${P}.tar.gz" +RUBY_S="semver-${PV}" + +LICENSE="MIT" +SLOT="3" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="" diff --git a/dev-ruby/serialport/serialport-1.3.2.ebuild b/dev-ruby/serialport/serialport-1.3.2.ebuild index 994ac57e0394..812e30d502b9 100644 --- a/dev-ruby/serialport/serialport-1.3.2.ebuild +++ b/dev-ruby/serialport/serialport-1.3.2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_TASK_TEST="" @@ -11,7 +11,7 @@ RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md" RUBY_FAKEGEM_EXTENSIONS=(ext/native/extconf.rb) -inherit multilib ruby-fakegem +inherit ruby-fakegem DESCRIPTION="a library for serial port (rs232) access in ruby" HOMEPAGE="https://github.com/hparra/ruby-serialport/" diff --git a/dev-ruby/serverengine/Manifest b/dev-ruby/serverengine/Manifest index 470655079f18..46ebcf03af8d 100644 --- a/dev-ruby/serverengine/Manifest +++ b/dev-ruby/serverengine/Manifest @@ -1,2 +1 @@ -DIST serverengine-2.2.4.gem 40960 BLAKE2B 66e3b10c4396b4613b734d3d2764293de2935b0e99bc33c9ba0e79f69c2af6fbb53dee8e356ab351d65195124e139ec4b0aa7976594387432b88a3875e985ef9 SHA512 39f5abe2e15bf1ea6524563a7f86e441f93479160976421d41aa092e04a0fca8d4beda3b20487c45b6cd3bdffdb175d98fbebdd36ef9a85fa242ef3cf356a9c8 DIST serverengine-2.2.5.gem 40960 BLAKE2B a7b256c1029c38b35673d104f6aba118bc5644947db7feb185d57456af60baebafb3c6a74996998630b7a0dbe3ee0baa5d4f260538ca7a8abf542b7528cd7204 SHA512 fb4abbf35553b8d69447be195a14018e335cbce0756b9ae91160bc4dc8253968a4b94c383f40aad1e1bd20aaeb700efced91341f3b26077a0d44b3dc00aa89c7 diff --git a/dev-ruby/serverengine/serverengine-2.2.4.ebuild b/dev-ruby/serverengine/serverengine-2.2.4.ebuild deleted file mode 100644 index 511a0437825e..000000000000 --- a/dev-ruby/serverengine/serverengine-2.2.4.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby26 ruby27" - -RUBY_FAKEGEM_EXTRADOC="Changelog README.md" - -RUBY_FAKEGEM_RECIPE_TEST="rspec" - -inherit ruby-fakegem - -DESCRIPTION="A framework to implement robust multiprocess servers" -HOMEPAGE="https://github.com/fluent/serverengine" -LICENSE="Apache-2.0" - -KEYWORDS="~amd64" -SLOT="0" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/sigdump-0.2.2:0" - -ruby_add_bdepend "test? ( dev-ruby/bundler )" - -all_ruby_prepare() { - sed -i -e '/rake/ s/~>/>=/' \ - -e '/rspec/ s/2.13.0/2.13/' \ - -e '/rake-compiler/ s:^:#:' serverengine.gemspec || die -} - -each_ruby_test() { - # The specs spawn ruby processes with bundler support - ${RUBY} -S bundle exec rspec-2 spec || die -} diff --git a/dev-ruby/settingslogic/settingslogic-2.0.9-r1.ebuild b/dev-ruby/settingslogic/settingslogic-2.0.9-r1.ebuild deleted file mode 100644 index 87a72d7dacf6..000000000000 --- a/dev-ruby/settingslogic/settingslogic-2.0.9-r1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby26 ruby27" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="README.rdoc" - -RUBY_FAKEGEM_RECIPE_TEST="rspec" - -inherit ruby-fakegem - -DESCRIPTION="A simple configuration / settings solution that uses an ERB enabled YAML file" -HOMEPAGE="https://github.com/binarylogic/settingslogic" -LICENSE="MIT" - -KEYWORDS="~amd64 ~x86" -SLOT="0" -IUSE="" - -all_ruby_prepare() { - sed -i -e '/check_dependencies/d' Rakefile || die -} diff --git a/dev-ruby/shoulda-matchers/Manifest b/dev-ruby/shoulda-matchers/Manifest index 15e912ea538f..d53346569fbf 100644 --- a/dev-ruby/shoulda-matchers/Manifest +++ b/dev-ruby/shoulda-matchers/Manifest @@ -1,5 +1,5 @@ DIST shoulda-matchers-3.1.3.gem 208384 BLAKE2B 0ce7cb91ec8a311ecd4872ca45b178686fedb126fd5a05d55cc8654f5a40d1ed7e0a1da2b2c47c34ce3e5ed13a302a1d309f4afa67bafb37d5ed8a724945e97f SHA512 c61397d20724f3048172a8a20ef8abaeafdba3a1d5d4b923b1b11480b25c70820fd372eb2851c6eb307894bc0b7e1aae515e23a3581a83db1b65a2c778b22d67 -DIST shoulda-matchers-4.3.0.tar.gz 235212 BLAKE2B 03d634a851d5b79baac7fb3c5017be2ba8ce5b36905597eb759ea6ed22d543af5ce02c0c2af0f560d913d17713a8b3c417770adb7f247a6548d0666164e0866f SHA512 ffc90760ec47502d0820decfb8ab0620fa65fd9f45f3435c1d905ce0fe96010a3e059c690e9dbab7b30146b09a9e511ed4687a220d7cdf000f2fe1060e0b5ada DIST shoulda-matchers-4.4.1.tar.gz 240423 BLAKE2B 5fca9389601f35c536fa8a37adc6a14282fdb4aba21453223d739e503fc226c74473791880d2fc0b4f308bf9deccc1bd640c320e86f586f075b5d1add69e33f2 SHA512 3103bbad862848d00f9ab8c71c20fef1fdc131c6ed13a5d6ae9e11c3da8ecd2aa09e5996f8b28ad08a5588b02ab5783dcc37d04357d13357ea3fa8ca28a02e3d DIST shoulda-matchers-4.5.1.tar.gz 243634 BLAKE2B 32d846d0dc3c8725a9bd0d60e858eb9fe4106a20222503ac908d1a9c9c310d8e1477aa6264f06961812151b9bd1a1a33488707d9c96524cd3431ed7b3246e534 SHA512 8c240fe7699094a63db824145ca28c245526e95d489fac82e1a28a2418ae40524ba0a184a7f9b269b7c31ad7ae2cbc24b453547cab0845639fdea442bada483a DIST shoulda-matchers-5.0.0.tar.gz 241021 BLAKE2B 68d70f0ac503deaf05a769b39ad905ee87108b2e2a3f5d76d23b2772c0374e83e3c5cb0b0024a771e7c04958da0b890f3b564287230fffa0d207d501bb8d4c0d SHA512 c81c514071c297a2372b05caa987fc39cf03af25ba0d7ba4ef1f23deebbad81013d80ac5b360a00f5fc0a155e75f3ff65b782c56a5682348f683ea11814ba710 +DIST shoulda-matchers-5.1.0.tar.gz 241567 BLAKE2B 5e778175ca80619b5e3da04fc235a6c68ef150e4abbe34520502fda5a86f44530dec3b0d4d448f87c30c54e062085a00bf6cfe3dee83c82825e238050480e10c SHA512 2abb23126aabc83d1787838468c1959442a32ecdafb244a6f20a08e382990a716ccf2219abee6f8121ff0a3f720e86a6775dee5ae351299416e51df12ad21b32 diff --git a/dev-ruby/shoulda-matchers/shoulda-matchers-3.1.3-r2.ebuild b/dev-ruby/shoulda-matchers/shoulda-matchers-3.1.3-r2.ebuild index 647c9076f618..a31d3bb3e9ed 100644 --- a/dev-ruby/shoulda-matchers/shoulda-matchers-3.1.3-r2.ebuild +++ b/dev-ruby/shoulda-matchers/shoulda-matchers-3.1.3-r2.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/thoughtbot/shoulda-matchers" LICENSE="MIT" SLOT="3" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="" ruby_add_rdepend ">=dev-ruby/activesupport-4.0.0:*" diff --git a/dev-ruby/shoulda-matchers/shoulda-matchers-4.3.0-r1.ebuild b/dev-ruby/shoulda-matchers/shoulda-matchers-4.3.0-r1.ebuild deleted file mode 100644 index c58c911acacf..000000000000 --- a/dev-ruby/shoulda-matchers/shoulda-matchers-4.3.0-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_TEST="none" - -RUBY_FAKEGEM_EXTRAINSTALL="NEWS.md README.md" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -RUBY_FAKEGEM_BINWRAP="" - -inherit ruby-fakegem - -DESCRIPTION="Making tests easy on the fingers and eyes" -HOMEPAGE="https://github.com/thoughtbot/shoulda-matchers" -SRC_URI="https://github.com/thoughtbot/shoulda-matchers/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="$(ver_cut 1)" -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc ~x86" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/activesupport-4.2.0:*" - -all_ruby_prepare() { - sed -i -e '/pry/ s:^:#:' spec/spec_helper.rb || die - sed -i -e '/s.files/,/^ end/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/shoulda-matchers/shoulda-matchers-4.5.1.ebuild b/dev-ruby/shoulda-matchers/shoulda-matchers-5.1.0.ebuild similarity index 76% rename from dev-ruby/shoulda-matchers/shoulda-matchers-4.5.1.ebuild rename to dev-ruby/shoulda-matchers/shoulda-matchers-5.1.0.ebuild index 3664014594e7..ff1abe80e35a 100644 --- a/dev-ruby/shoulda-matchers/shoulda-matchers-4.5.1.ebuild +++ b/dev-ruby/shoulda-matchers/shoulda-matchers-5.1.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -USE_RUBY="ruby25 ruby26 ruby27" +USE_RUBY="ruby26 ruby27 ruby30" RUBY_FAKEGEM_RECIPE_TEST="none" @@ -21,10 +21,10 @@ SRC_URI="https://github.com/thoughtbot/shoulda-matchers/archive/v${PV}.tar.gz -> LICENSE="MIT" SLOT="$(ver_cut 1)" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="" -ruby_add_rdepend ">=dev-ruby/activesupport-4.2.0:*" +ruby_add_rdepend ">=dev-ruby/activesupport-5.2.0:*" all_ruby_prepare() { sed -i -e '/pry/ s:^:#:' spec/spec_helper.rb || die diff --git a/dev-ruby/sigar/sigar-0.7.3-r1.ebuild b/dev-ruby/sigar/sigar-0.7.3-r1.ebuild index 887ece679573..5a197ce6e33b 100644 --- a/dev-ruby/sigar/sigar-0.7.3-r1.ebuild +++ b/dev-ruby/sigar/sigar-0.7.3-r1.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="" RUBY_FAKEGEM_EXTRADOC="README" RUBY_FAKEGEM_EXTENSIONS=(bindings/ruby/extconf.rb) -inherit multilib ruby-fakegem +inherit ruby-fakegem DESCRIPTION="System Information Gatherer And Reporter" HOMEPAGE="http://sigar.hyperic.com/" diff --git a/dev-ruby/sys-uname/sys-uname-1.2.2.ebuild b/dev-ruby/sys-uname/sys-uname-1.2.2.ebuild index 78c2c52a08be..53b1c1018d72 100644 --- a/dev-ruby/sys-uname/sys-uname-1.2.2.ebuild +++ b/dev-ruby/sys-uname/sys-uname-1.2.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_DOC="none" RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md doc/uname.rdoc" diff --git a/dev-ruby/ttfunk/ttfunk-1.7.0.ebuild b/dev-ruby/ttfunk/ttfunk-1.7.0.ebuild index 6b3e58eed0f2..cdd977a619a5 100644 --- a/dev-ruby/ttfunk/ttfunk-1.7.0.ebuild +++ b/dev-ruby/ttfunk/ttfunk-1.7.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/tty-color/tty-color-0.6.0.ebuild b/dev-ruby/tty-color/tty-color-0.6.0.ebuild index 79503c8b0eb4..5beccea83d87 100644 --- a/dev-ruby/tty-color/tty-color-0.6.0.ebuild +++ b/dev-ruby/tty-color/tty-color-0.6.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/tty-command/tty-command-0.10.1-r1.ebuild b/dev-ruby/tty-command/tty-command-0.10.1-r1.ebuild index 0b30996d4768..af35c67359f5 100644 --- a/dev-ruby/tty-command/tty-command-0.10.1-r1.ebuild +++ b/dev-ruby/tty-command/tty-command-0.10.1-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/tty-command/tty-command-0.10.1.ebuild b/dev-ruby/tty-command/tty-command-0.10.1.ebuild deleted file mode 100644 index 3b7a3370f289..000000000000 --- a/dev-ruby/tty-command/tty-command-0.10.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_BINWRAP="" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Terminal color capabilities detection" -HOMEPAGE="https://github.com/piotrmurach/tty-command" -SRC_URI="https://github.com/piotrmurach/tty-command/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/pastel-0.8:0" - -all_ruby_prepare() { - echo '-rspec_helper' > .rspec || die - - sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/tty-cursor/tty-cursor-0.7.1.ebuild b/dev-ruby/tty-cursor/tty-cursor-0.7.1.ebuild index 1830b2b54402..df93cfe31699 100644 --- a/dev-ruby/tty-cursor/tty-cursor-0.7.1.ebuild +++ b/dev-ruby/tty-cursor/tty-cursor-0.7.1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/tty-editor/tty-editor-0.7.0.ebuild b/dev-ruby/tty-editor/tty-editor-0.7.0.ebuild index 97bce9d0768c..28d97ce920bc 100644 --- a/dev-ruby/tty-editor/tty-editor-0.7.0.ebuild +++ b/dev-ruby/tty-editor/tty-editor-0.7.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_BINWRAP="" RUBY_FAKEGEM_EXTRADOC="README.md" RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" diff --git a/dev-ruby/tty-file/tty-file-0.10.0.ebuild b/dev-ruby/tty-file/tty-file-0.10.0.ebuild index fb4bb577f7f0..4e38cd835b46 100644 --- a/dev-ruby/tty-file/tty-file-0.10.0.ebuild +++ b/dev-ruby/tty-file/tty-file-0.10.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27" +USE_RUBY="ruby26 ruby27 ruby30" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/tty-prompt/tty-prompt-0.23.1.ebuild b/dev-ruby/tty-prompt/tty-prompt-0.23.1.ebuild index c9ddb1410361..2c65ddd67c3f 100644 --- a/dev-ruby/tty-prompt/tty-prompt-0.23.1.ebuild +++ b/dev-ruby/tty-prompt/tty-prompt-0.23.1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/tty-reader/tty-reader-0.9.0.ebuild b/dev-ruby/tty-reader/tty-reader-0.9.0.ebuild index bca162eaa83b..a52955abdd41 100644 --- a/dev-ruby/tty-reader/tty-reader-0.9.0.ebuild +++ b/dev-ruby/tty-reader/tty-reader-0.9.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/tty-screen/Manifest b/dev-ruby/tty-screen/Manifest index 1ec807c76489..a7e9122631be 100644 --- a/dev-ruby/tty-screen/Manifest +++ b/dev-ruby/tty-screen/Manifest @@ -1,2 +1 @@ -DIST tty-screen-0.7.1.tar.gz 11377 BLAKE2B 485b5610bc81524cfe525f8a837e99d13788da499dd8fa0f7c3be3f580ada63861f04652031e84817ef6ee49ce099c5fa97104b6634fc306d9ee0bbed0828ac3 SHA512 1ef5ce12cdd6337c47f09e5b6ae116985a80efe9f493d52c404496319f1377d4308cd829343d84f5c653b70327c033955232ca62fc8a134503a87a33a264130a DIST tty-screen-0.8.1.tar.gz 13019 BLAKE2B 9c9ccb49ae323ebc67c5bca918303586fb749813539aed32a892f3135aa392f6c77b078bab2c7bd116d9f152ee2745d72aae38a91cf4292d1f360085d88060ba SHA512 b0a01c49bb0c56f23c8b384a2d4f4b5c7168863a35c3ab7160d0f34c7d63a2b10b3b9f0f54c6d56e2424a8b16e6ba74268ac81af631976876fb37eb9c347c393 diff --git a/dev-ruby/tty-screen/tty-screen-0.7.1.ebuild b/dev-ruby/tty-screen/tty-screen-0.7.1.ebuild deleted file mode 100644 index d2da38e96cae..000000000000 --- a/dev-ruby/tty-screen/tty-screen-0.7.1.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 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_BINWRAP="" - -RUBY_FAKEGEM_GEMSPEC="tty-screen.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Terminal screen size detection which works on Linux, OS X and Windows/Cygwin" -HOMEPAGE="https://github.com/piotrmurach/tty-screen" -SRC_URI="https://github.com/piotrmurach/tty-screen/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -all_ruby_prepare() { - echo '-rspec_helper' > .rspec || die - sed -i -e 's:require_relative ":require "./:' ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/tty-screen/tty-screen-0.8.1.ebuild b/dev-ruby/tty-screen/tty-screen-0.8.1.ebuild index 7b248316baa6..a0b3ffa5e9a0 100644 --- a/dev-ruby/tty-screen/tty-screen-0.8.1.ebuild +++ b/dev-ruby/tty-screen/tty-screen-0.8.1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/tty-which/Manifest b/dev-ruby/tty-which/Manifest index 3196deab2a8a..837a6ca96d32 100644 --- a/dev-ruby/tty-which/Manifest +++ b/dev-ruby/tty-which/Manifest @@ -1,2 +1 @@ -DIST tty-which-0.4.2.tar.gz 9820 BLAKE2B 07ac2aa7a3e42127f456045fbdb92db2ea9834b08e0fccbe81767e01817ec2bf7304fb8a41408b0c4da8ecba3caf8bc236de9cb5637c6f197fe3835d0e9b231e SHA512 573b4ed1bfd4dd66dc3337d076a6559bda57b76c95c75f1aeef8bb6d4e0c81ef72057f5ef0521a10afb2a550b8850e6311aaa56ef2499146221f33403621ee54 DIST tty-which-0.5.0.tar.gz 11560 BLAKE2B 0b8d821168759ff744ded5a5d7b0864303ed71510dd233b39b6f12fe42f044c4fb48da8f9b0cb16875ae9cce5c66060af8cff858aaa88bdaddfc971886f2ce8b SHA512 a5be30dc857eed2aa8ce81f1c62467451760482b1f51f1c0654c57001a9ab828d31b22b35cd9e37ea2fe91a7514a1a15107b5fc948a561a2ee4e58e0748bacd3 diff --git a/dev-ruby/tty-which/tty-which-0.4.2.ebuild b/dev-ruby/tty-which/tty-which-0.4.2.ebuild deleted file mode 100644 index 73775797dcca..000000000000 --- a/dev-ruby/tty-which/tty-which-0.4.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_GEMSPEC="tty-which.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Platform independent implementation of Unix which command" -HOMEPAGE="https://github.com/piotrmurach/tty-which" -SRC_URI="https://github.com/piotrmurach/tty-which/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -all_ruby_prepare() { - echo '-rspec_helper' > .rspec || die - sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die - - # Fix running specs without bundler, fixed upstream - sed -e 's/receive(:join)$/receive(:join).and_call_original/' \ - -e '96iallow(::File).to receive(:join).and_call_original' \ - -e '115iallow(::File).to receive(:join).and_call_original' \ - -i spec/unit/which_spec.rb || die - sed -e '5iallow(::File).to receive(:join).and_call_original' \ - -i spec/unit/executable_file_spec.rb || die -} diff --git a/dev-ruby/tty-which/tty-which-0.5.0.ebuild b/dev-ruby/tty-which/tty-which-0.5.0.ebuild index f09b9e2955ad..b4021869b1a5 100644 --- a/dev-ruby/tty-which/tty-which-0.5.0.ebuild +++ b/dev-ruby/tty-which/tty-which-0.5.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/turbolinks-source/turbolinks-source-5.2.0-r1.ebuild b/dev-ruby/turbolinks-source/turbolinks-source-5.2.0-r1.ebuild new file mode 100644 index 000000000000..c0fcdd64a0db --- /dev/null +++ b/dev-ruby/turbolinks-source/turbolinks-source-5.2.0-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30" + +# The gem does not contain runnable tests. +RUBY_FAKEGEM_TASK_TEST="" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem + +DESCRIPTION="Turbolinks JavaScript assets" +HOMEPAGE="https://github.com/rails/turbolinks-source-gem" + +LICENSE="MIT" +SLOT="5" +KEYWORDS="~amd64" +IUSE="test" diff --git a/dev-ruby/turbolinks/turbolinks-5.2.1.ebuild b/dev-ruby/turbolinks/turbolinks-5.2.1.ebuild index 540a360a31e4..a15cd68746f5 100644 --- a/dev-ruby/turbolinks/turbolinks-5.2.1.ebuild +++ b/dev-ruby/turbolinks/turbolinks-5.2.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27" +USE_RUBY="ruby26 ruby27 ruby30" # The gem does not contain runnable tests. RUBY_FAKEGEM_TASK_TEST="" diff --git a/dev-ruby/twitter-text/twitter-text-3.1.0-r1.ebuild b/dev-ruby/twitter-text/twitter-text-3.1.0-r1.ebuild index 96cf39c2af87..bf9b100b8fcd 100644 --- a/dev-ruby/twitter-text/twitter-text-3.1.0-r1.ebuild +++ b/dev-ruby/twitter-text/twitter-text-3.1.0-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" @@ -25,8 +25,7 @@ ruby_add_rdepend " =dev-ruby/unf-0.1* " -ruby_add_bdepend "test? ( >=dev-ruby/multi_json-1.3 - >=dev-ruby/nokogiri-1.8.0 )" +ruby_add_bdepend "test? ( >=dev-ruby/nokogiri-1.8.0 )" PATCHES=( "${FILESDIR}/${PN}-3.1.0-frozen-string.patch" diff --git a/dev-ruby/typed-array/typed-array-0.1.2-r2.ebuild b/dev-ruby/typed-array/typed-array-0.1.2-r2.ebuild index 5bcf095b0711..c0025e9f5408 100644 --- a/dev-ruby/typed-array/typed-array-0.1.2-r2.ebuild +++ b/dev-ruby/typed-array/typed-array-0.1.2-r2.ebuild @@ -7,7 +7,7 @@ RUBY_FAKEGEM_DOCDIR="doc" RUBY_FAKEGEM_EXTRADOC="README.rdoc" RUBY_FAKEGEM_RECIPE_TEST="rspec3" -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" inherit ruby-fakegem DESCRIPTION="Gem provides enforced-type functionality to Arrays" diff --git a/dev-ruby/typeprof/Manifest b/dev-ruby/typeprof/Manifest index 1061cb827a90..eb6133c7c116 100644 --- a/dev-ruby/typeprof/Manifest +++ b/dev-ruby/typeprof/Manifest @@ -1,5 +1,2 @@ -DIST typeprof-0.13.0.tar.gz 498218 BLAKE2B f6b8566dd25cf08952c136bf59cc7f10f01609d8c2e7633054892f296c6c35cc0f0121e086f465d9ee97776d803829f27895e1544772bff33e3fdb562ad0b9df SHA512 dda9b5d84a2fc6473ddf71b897e13aac9675a4e4ef5dfe71fe6929a3025ac2b3ab051a5882d936112de86ecddb96e0b665741ba08748a6d94c6540bc13c171b0 -DIST typeprof-0.14.1.tar.gz 499209 BLAKE2B 5c6332f6c91ebb0fb451e108d3f4ea2523740c4097f09ccedd76821f79a9f94bf9eaba6dd0ffd6ea8e9985ec56d618c802accf08dd70c92bea860fb3729f219f SHA512 071d379b304a5b37770bc86001c3e2074f11749e439f0debf311c4afdd183814c5e168baefbe3f4866e57c3b82e3d7d006201dc1cf25c6ce924e92e61c945344 -DIST typeprof-0.15.1.tar.gz 502007 BLAKE2B ffea92db2fd227f0632b07e086d51dc11c2cd21f737296cc3eae9839c52eaa085a383b460a88776387a58281d75b13cc62838e069fa5e8d575f443e799adead4 SHA512 281dd8ee4b5393c6ec177ce50018f95ed8aa8ba393bf1eca1b4f24d5431de38a76c3f87cc55c4546e41364cb921b707b6850c24fb727597a6d24c62785d09f06 DIST typeprof-0.15.2.tar.gz 501984 BLAKE2B 4139de379539dce54c350fb1da09d87ca7251274738b81b9c098f27539f8cc20757aaf053efd4c089b88a7c08050a8e612ea6c1b71ad1a007c4c634ecd6e7564 SHA512 c94b74f0a0f8f87477f80615677a5c6479d3e326564f2d67c17e4e7f7e71ef5817fe6163d14fdd45fc9bb3de2420f8b09f68f0d031962fb5bafc478679cee331 DIST typeprof-0.21.2.tar.gz 1073317 BLAKE2B fda97cf6535937deca51f922f39ad580383420e025f8c5a418e483108e82f5d38063064102698f2ef405f7a0bf2f83ebcbb7ac7fabc32ead320e3af9d74b7cfb SHA512 53e9657ee0c98e131e8ec70400cb775cf643910e8985767742b50fda99285f33f787d810bcad08d9d633265577731a95fcf9a4e7568e4d6b0b603f14a6c10828 diff --git a/dev-ruby/typeprof/typeprof-0.13.0.ebuild b/dev-ruby/typeprof/typeprof-0.13.0.ebuild deleted file mode 100644 index 495c43dbf0b6..000000000000 --- a/dev-ruby/typeprof/typeprof-0.13.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_DOC="none" -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_BINDIR="exe" - -RUBY_FAKEGEM_GEMSPEC="typeprof.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Performs a type analysis of non-annotated Ruby code" -HOMEPAGE="https://github.com/ruby/typeprof" -SRC_URI="https://github.com/ruby/typeprof/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -IUSE="test" - -ruby_add_rdepend ">=dev-ruby/rbs-1.0.0" - -all_ruby_prepare() { - # Avoid tests that download live code using git - rm -r test/typeprof/{goodcheck,diff-lcs}_test.rb || die - - sed -i -e "s:_relative ': './:" -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/typeprof/typeprof-0.14.1.ebuild b/dev-ruby/typeprof/typeprof-0.14.1.ebuild deleted file mode 100644 index 54c0c82ba183..000000000000 --- a/dev-ruby/typeprof/typeprof-0.14.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_DOC="none" -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_BINDIR="exe" - -RUBY_FAKEGEM_GEMSPEC="typeprof.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Performs a type analysis of non-annotated Ruby code" -HOMEPAGE="https://github.com/ruby/typeprof" -SRC_URI="https://github.com/ruby/typeprof/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -IUSE="test" - -ruby_add_rdepend ">=dev-ruby/rbs-1.2.0" - -all_ruby_prepare() { - # Avoid tests that download live code using git - rm -r test/typeprof/{goodcheck,diff-lcs}_test.rb || die - - sed -i -e "s:_relative ': './:" -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/typeprof/typeprof-0.15.1.ebuild b/dev-ruby/typeprof/typeprof-0.15.1.ebuild deleted file mode 100644 index ac6c1869b325..000000000000 --- a/dev-ruby/typeprof/typeprof-0.15.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_DOC="none" -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_BINDIR="exe" - -RUBY_FAKEGEM_GEMSPEC="typeprof.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Performs a type analysis of non-annotated Ruby code" -HOMEPAGE="https://github.com/ruby/typeprof" -SRC_URI="https://github.com/ruby/typeprof/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -IUSE="test" - -ruby_add_rdepend ">=dev-ruby/rbs-1.3.1" - -all_ruby_prepare() { - # Avoid tests that download live code using git - rm -r test/typeprof/{goodcheck,diff-lcs}_test.rb || die - - sed -i -e "s:_relative ': './:" -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/tzinfo/tzinfo-1.2.9.ebuild b/dev-ruby/tzinfo/tzinfo-1.2.9.ebuild index 097e9add9d51..740c0956497c 100644 --- a/dev-ruby/tzinfo/tzinfo-1.2.9.ebuild +++ b/dev-ruby/tzinfo/tzinfo-1.2.9.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ HOMEPAGE="https://tzinfo.github.io/" LICENSE="MIT" SLOT="1" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="sys-libs/timezone-data" diff --git a/dev-ruby/tzinfo/tzinfo-2.0.4.ebuild b/dev-ruby/tzinfo/tzinfo-2.0.4.ebuild index 75a202a26d5f..199edd766974 100644 --- a/dev-ruby/tzinfo/tzinfo-2.0.4.ebuild +++ b/dev-ruby/tzinfo/tzinfo-2.0.4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_TASK_TEST="test_zoneinfo" diff --git a/dev-util/FlameGraph/metadata.xml b/dev-util/FlameGraph/metadata.xml index 87a759d410cf..a7fa285c7476 100644 --- a/dev-util/FlameGraph/metadata.xml +++ b/dev-util/FlameGraph/metadata.xml @@ -1,5 +1,5 @@ - + Florian Schmaus diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz index 872ea40197a8..0f2ac0683845 100644 Binary files a/dev-util/Manifest.gz and b/dev-util/Manifest.gz differ diff --git a/dev-util/Tensile/metadata.xml b/dev-util/Tensile/metadata.xml index 9bbebec502ca..97a4d2e3c600 100644 --- a/dev-util/Tensile/metadata.xml +++ b/dev-util/Tensile/metadata.xml @@ -1,5 +1,5 @@ - + sci@gentoo.org diff --git a/dev-util/argouml/argouml-0.34-r1.ebuild b/dev-util/argouml/argouml-0.34-r1.ebuild index 1ed077a3de26..dfaa5bb87100 100644 --- a/dev-util/argouml/argouml-0.34-r1.ebuild +++ b/dev-util/argouml/argouml-0.34-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI="${BASE_URI}/ArgoUML-${PV}.tar.gz LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="doc" RDEPEND=">=virtual/jre-1.8:*" diff --git a/dev-util/argouml/argouml-0.34.ebuild b/dev-util/argouml/argouml-0.34.ebuild deleted file mode 100644 index a10475095a98..000000000000 --- a/dev-util/argouml/argouml-0.34.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit desktop xdg-utils java-pkg-2 - -DESCRIPTION="Modelling tool that helps you do your design using UML" -HOMEPAGE="http://argouml.tigris.org" -BASE_URI="http://argouml-downloads.tigris.org/nonav/${P}" -SRC_URI="${BASE_URI}/ArgoUML-${PV}.tar.gz - http://argouml-downloads.tigris.org/nonav/argouml-db-1.0/dbuml-module-1.0.4.zip - doc? ( - ${BASE_URI}/manual-${PV}.pdf - ${BASE_URI}/quickguide-${PV}.pdf - )" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="doc" - -DEPEND="app-arch/unzip" -RDEPEND=">=virtual/jre-1.6" - -S="${WORKDIR}" - -src_compile() { :; } - -src_install() { - java-pkg_jarinto /opt/${PN}/lib - java-pkg_dojar ${P}/*.jar - - java-pkg_jarinto /opt/${PN}/lib/ext - java-pkg_dojar ${P}/ext/*.jar release/ext/*.jar - - java-pkg_dolauncher ${PN} --main org.argouml.application.Main - - dodoc ${P}/README.txt - - if use doc; then - find release/ \( -name Thumbs.db -o -name filelist.xml \) \ - -delete || die - HTML_DOCS=( release/{Readme.htm,www} ) - DOCS=( - "${DISTDIR}"/manual-${PV}.pdf - "${DISTDIR}"/quickguide-${PV}.pdf - ) - einstalldocs - fi - - newicon ${P}/icon/ArgoIcon128x128.png ${PN}.png || die - make_desktop_entry ${PN} "ArgoUML" -} - -pkg_postinst() { - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_desktop_database_update -} diff --git a/dev-util/bcc/bcc-0.24.0.ebuild b/dev-util/bcc/bcc-0.24.0-r1.ebuild similarity index 94% rename from dev-util/bcc/bcc-0.24.0.ebuild rename to dev-util/bcc/bcc-0.24.0-r1.ebuild index ffaf9d8d99ff..86a3d50ede4f 100644 --- a/dev-util/bcc/bcc-0.24.0.ebuild +++ b/dev-util/bcc/bcc-0.24.0-r1.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 LUA_COMPAT=( luajit ) -PYTHON_COMPAT=( python3_{7..10} ) -LLVM_MAX_SLOT=13 +PYTHON_COMPAT=( python3_{8..10} ) +LLVM_MAX_SLOT=14 -inherit cmake eapi8-dosym linux-info llvm lua-single python-r1 toolchain-funcs +inherit cmake linux-info llvm lua-single python-r1 toolchain-funcs DESCRIPTION="Tools for BPF-based Linux IO analysis, networking, monitoring, and more" HOMEPAGE="https://iovisor.github.io/bcc/" @@ -126,7 +126,7 @@ src_install() { [[ ! -x ${tool} && ! -L ${tool} || -d ${tool} ]] && continue name=${tool##*/} [[ -n ${rename_tools[${name}]} ]] && name=bcc-${name} - dosym8 -r "${tool#${ED}}" /usr/sbin/${name} + dosym -r "${tool#${ED}}" /usr/sbin/${name} done docompress /usr/share/${PN}/man diff --git a/dev-util/bpftool/Manifest b/dev-util/bpftool/Manifest index 538f9d81a6b4..38e770c99309 100644 --- a/dev-util/bpftool/Manifest +++ b/dev-util/bpftool/Manifest @@ -2,5 +2,4 @@ DIST linux-5.16.tar.xz 123114100 BLAKE2B 07a90cc640ff89e1359c06cee8c38abd33e51f9 DIST linux-5.17.tar.xz 128399340 BLAKE2B 82dc4a45cc25c781ac67aa6ed1e4c369544154960f41c4634d47621f381159687a227054976d078524cda28884d395a15f7542fe44ca74ce98ca6ff54a81d6d0 SHA512 89f0a7ca69d20a539d4b612a7028a30a5e98b402e4b6b88516f14237e5da4b626d7929eab8b40fccc90766e8f3bae87e9858a19077ffad20d8204acf18794f5b DIST patch-5.16.14.xz 685480 BLAKE2B 5659f5fc0287ca2f8512d213ae535c82380496314b641f6f796ab5e4d6be28cbb06c1f2ae0edf86e90780b0301ff7d395e0001d08f6b8f6d83bbc2d06c74c2e5 SHA512 e6e4a5ff64fb9e0112a2688c8ceeb26425bb52d9981d34026a973e13b76891795c599ac5edbe22b57ef56bede99c44f8fe98825b3c5db8aadb359d84fbb776b2 DIST patch-5.16.15.xz 721632 BLAKE2B 650cc70fd15c2f3ee527589e122c0a60543d6aae918eff51a9136a8187402b1812d6439bfc9a10882c20c444fd5dcdb9570e4f53024ee7f2ecc8e2f17b3f1a25 SHA512 e5dcae0e6ed3ccb9956f2c9848df0dbc93de55dc704214fa248ac73a8b9de3fdd829a9e9cfa2c15f452548e5ac871ad1594d6a622271bf98fbd07ae747f18520 -DIST patch-5.16.2.xz 20432 BLAKE2B 9c9f697e4dd0a78a94ac0bd361ec69683c6904d9af02da55c3001394e6a6efcc1fccd5d44747fff6ea47271b7655bd7866d161a90196cecaddde1c630ef5c425 SHA512 50d3c386e391603fbfe86780bbfa69c3a7caa83a7eea6c239af133dde3a7aa4746f4a3f1483589018d5ac27caa7ee69d869f8f64f4b5121ddab52224f5302222 DIST patch-5.17.1.xz 15244 BLAKE2B f340b8a103754122153dd381fe210b18ba37b7262dae4fc7a1f99c5a62868c9bdb178e83865b35f00b82bd2d67ae127c440515d1740093825f7ec7fa4c4a490d SHA512 fb9a28ce7c68daeca82586e7631dc0be00a1a8393b4cef4c659fc1f9dac6e1f941bd60671c0350d1dea9cb035f56d627f64a394a9acb00b2b5dea8a1d44c065f diff --git a/dev-util/bpftool/bpftool-5.16.14.ebuild b/dev-util/bpftool/bpftool-5.16.14.ebuild index d4a6b8926868..6e1462d1df87 100644 --- a/dev-util/bpftool/bpftool-5.16.14.ebuild +++ b/dev-util/bpftool/bpftool-5.16.14.ebuild @@ -25,7 +25,7 @@ S="${S_K}/tools/bpf/bpftool" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="caps" RDEPEND=" diff --git a/dev-util/bpftool/bpftool-5.16.2.ebuild b/dev-util/bpftool/bpftool-5.16.2.ebuild deleted file mode 100644 index 6e1462d1df87..000000000000 --- a/dev-util/bpftool/bpftool-5.16.2.ebuild +++ /dev/null @@ -1,117 +0,0 @@ -# Copyright 2021-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit estack linux-info optfeature python-any-r1 toolchain-funcs - -MY_PV="${PV/_/-}" -MY_PV="${MY_PV/-pre/-git}" - -DESCRIPTION="Tool for inspection and simple manipulation of eBPF programs and maps" -HOMEPAGE="https://kernel.org/" - -LINUX_V="${PV:0:1}.x" -LINUX_VER=$(ver_cut 1-2) -LINUX_PATCH=patch-${PV}.xz -SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}" - -LINUX_SOURCES="linux-${LINUX_VER}.tar.xz" -SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}" - -S_K="${WORKDIR}/linux-${LINUX_VER}" -S="${S_K}/tools/bpf/bpftool" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="caps" - -RDEPEND=" - sys-libs/binutils-libs:= - sys-libs/zlib:= - virtual/libelf:= - caps? ( sys-libs/libcap:= ) -" -DEPEND=" - ${RDEPEND} - >=sys-kernel/linux-headers-5.8 -" -BDEPEND=" - ${LINUX_PATCH+dev-util/patchutils} - ${PYTHON_DEPS} - dev-python/docutils -" - -CONFIG_CHECK="~DEBUG_INFO_BTF" - -# src_unpack and src_prepare are copied from dev-util/perf since -# it's building from the same tarball, please keep it in sync with perf -src_unpack() { - local paths=( - tools/bpf kernel/bpf - tools/{arch,build,include,lib,perf,scripts} {scripts,include,lib} "arch/*/lib" - ) - - # We expect the tar implementation to support the -j option (both - # GNU tar and libarchive's tar support that). - echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}" - tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \ - "${paths[@]/#/linux-${LINUX_VER}/}" || die - - if [[ -n ${LINUX_PATCH} ]] ; then - eshopts_push -o noglob - ebegin "Filtering partial source patch" - filterdiff -p1 ${paths[@]/#/-i } -z "${DISTDIR}"/${LINUX_PATCH} \ - > ${P}.patch - eend $? || die "filterdiff failed" - eshopts_pop - fi - - local a - for a in ${A}; do - [[ ${a} == ${LINUX_SOURCES} ]] && continue - [[ ${a} == ${LINUX_PATCH} ]] && continue - unpack ${a} - done -} - -src_prepare() { - default - - if [[ -n ${LINUX_PATCH} ]] ; then - pushd "${S_K}" >/dev/null || die - eapply "${WORKDIR}"/${P}.patch - popd || die - fi - - # dev-python/docutils installs rst2man.py, not rst2man - sed -i -e 's/rst2man/rst2man.py/g' Documentation/Makefile || die -} - -bpftool_make() { - local arch=$(tc-arch-kernel) - tc-export AR CC LD - - emake V=1 VF=1 \ - HOSTCC="$(tc-getBUILD_CC)" HOSTLD="$(tc-getBUILD_LD)" \ - EXTRA_CFLAGS="${CFLAGS}" ARCH="${arch}" BPFTOOL_VERSION="${MY_PV}" \ - prefix="${EPREFIX}"/usr \ - feature-libcap="$(usex caps 1 0)" \ - "$@" -} - -src_compile() { - bpftool_make - bpftool_make -C Documentation -} - -src_install() { - bpftool_make DESTDIR="${D}" install - bpftool_make mandir="${ED}"/usr/share/man -C Documentation install -} - -pkg_postinst() { - optfeature "clang-bpf-co-re support" sys-devel/clang[llvm_targets_BPF] -} diff --git a/dev-util/cdecl/metadata.xml b/dev-util/cdecl/metadata.xml index c51407642daa..7921f9bc343a 100644 --- a/dev-util/cdecl/metadata.xml +++ b/dev-util/cdecl/metadata.xml @@ -1,5 +1,5 @@ - + Florian Schmaus diff --git a/dev-util/colm/colm-0.14.7-r1.ebuild b/dev-util/colm/colm-0.14.7-r1.ebuild index cccddd15cee0..1904f500b44d 100644 --- a/dev-util/colm/colm-0.14.7-r1.ebuild +++ b/dev-util/colm/colm-0.14.7-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://www.colm.net/files/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="doc" BDEPEND=" diff --git a/dev-util/cscope/cscope-15.9.ebuild b/dev-util/cscope/cscope-15.9.ebuild index 99bb7aa518e4..a1c06ea237cf 100644 --- a/dev-util/cscope/cscope-15.9.ebuild +++ b/dev-util/cscope/cscope-15.9.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/cscope/${P}.tar.gz" LICENSE="BSD GPL-2+" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" IUSE="emacs" RDEPEND=">=sys-libs/ncurses-5.2:0= diff --git a/dev-util/cucumber-core/Manifest b/dev-util/cucumber-core/Manifest index 3a3425aaa8e4..91b31b81daa7 100644 --- a/dev-util/cucumber-core/Manifest +++ b/dev-util/cucumber-core/Manifest @@ -1,6 +1,3 @@ -DIST cucumber-core-10.0.0.tar.gz 47173 BLAKE2B 3ce81c4ae9de1dafe444fcae4b2609b786e34d8efdf16e02c05ceaf7f077c13289bea23f6fc22616cb8ce16598ffd3f07cbc51751b3151455d65ecf396ac0e92 SHA512 7ed559ae5e9071f1697da74aa067fcbc42858d51c9d470280c0695df0ab0836b069be2e1ae8948ff01a674ca45be7eb2ac63c37d666d40c7ac333a0a5315c65a -DIST cucumber-core-10.0.1.tar.gz 47196 BLAKE2B d048c36e3d28871e603b2092062af1e9a754ce642c365c5f71696f450c2f8fbccd27e3d809980c96929f75a2afb11c216a3b1ce40a0b7f81dfff7495d46f531e SHA512 c7ff950f7fd81824822de0ec485c1890808126c36be4c25ed15048c35491e8891851cf7438ef806bb1456b68281853ac3a0b1f7a598414f794793db83530406b -DIST cucumber-core-10.1.0.tar.gz 202704 BLAKE2B 22aebd78e27ee1f8062128007c42ae6bbcfcf63dfb3dc94618db6bf1803511a08305289105e33e78ebd48e881bd7e93721bf8b654e28c7309b381ae4aaba659b SHA512 6f3973ca69f13dd85b7ecca54064562b80812d5517ca0c64cacf18e0ca0c2ef47ca6f0182d3aacdb385bb16ffc9d98f065e30d9f1bc556554535c0d027dbc39b DIST cucumber-core-10.1.1.tar.gz 202764 BLAKE2B c5704ed4821d056aea7bf537c7193bb8965be5a6d0effad0f85f76c18e62acf7a2de981da05826fbd27c1e55122ba3ca9873729332a9840280d1638838af27c9 SHA512 c7c4de1c53a58b74e632019a9a69b3bac164da72ee3cef839d19c9548707c06ddac5e562013ca86992ca3d78ad96f23521ff69de83b3e9e614a336cc3d6ba9a6 DIST cucumber-core-3.2.1.tar.gz 49868 BLAKE2B e5d18797fb6821fa9c300898bc8c14d57559b790d77a191d7147a987e27893ce89076716f82fa2048632e1b033ad607c748fe29f6b8fc600abd523290c4a9f50 SHA512 ba45e804d8454a6ef306eb90f32e6cdf3ee25fdd6613e9ba8308ecfce4044f27ee3dc012ad7f9ca481e94fe5e1d9deb9e0c46ca811a8e25bb27981a78c528ddb DIST cucumber-core-9.0.1.tar.gz 47009 BLAKE2B 2c78956643dfb08319732af24c08d5df811574891b582ba7ab51281c9a5299a3063c6c607af5cd9659aa0e160c0f3cab1d54b9cbd57d3dbf2768e97bb8f79e8e SHA512 0ac61797cda1d62d2b452d3d843be855f84b12fc9c435e8b5261700a981d94c9c88e36e309d8c2dc637ff195032768d363ffd9e7424c842d5b0ba98c3c678752 diff --git a/dev-util/cucumber-core/cucumber-core-10.0.0.ebuild b/dev-util/cucumber-core/cucumber-core-10.0.0.ebuild deleted file mode 100644 index 2a2acdb21bbb..000000000000 --- a/dev-util/cucumber-core/cucumber-core-10.0.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby26 ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_GEMSPEC="cucumber-core.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Executable feature scenarios" -HOMEPAGE="https://cucumber.io/" -SRC_URI="https://github.com/cucumber/cucumber-ruby-core/archive/v${PV}.tar.gz -> ${P}.tar.gz" -RUBY_S="cucumber-ruby-core-${PV}" -LICENSE="Ruby" - -KEYWORDS="~amd64" -SLOT="$(ver_cut 1)" -IUSE="test" - -ruby_add_bdepend " - test? ( - >=dev-ruby/unindent-1.0 - )" - -ruby_add_rdepend " - >=dev-util/cucumber-gherkin-20.0.0:20 - >=dev-util/cucumber-messages-17.0.0:17 - >=dev-util/cucumber-tag-expressions-3.0.1:3 -" - -all_ruby_prepare() { - # Avoid dependency on kramdown to keep dependency list manageable for all arches. - rm -f spec/readme_spec.rb || die -} diff --git a/dev-util/cucumber-core/cucumber-core-10.0.1.ebuild b/dev-util/cucumber-core/cucumber-core-10.0.1.ebuild deleted file mode 100644 index d9e7377454f9..000000000000 --- a/dev-util/cucumber-core/cucumber-core-10.0.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_GEMSPEC="cucumber-core.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Executable feature scenarios" -HOMEPAGE="https://cucumber.io/" -SRC_URI="https://github.com/cucumber/cucumber-ruby-core/archive/v${PV}.tar.gz -> ${P}.tar.gz" -RUBY_S="cucumber-ruby-core-${PV}" -LICENSE="Ruby" - -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv" -SLOT="$(ver_cut 1)" -IUSE="test" - -ruby_add_bdepend " - test? ( - >=dev-ruby/unindent-1.0 - )" - -ruby_add_rdepend " - >=dev-util/cucumber-gherkin-20.0.1:20 - >=dev-util/cucumber-messages-17.0.1:17 - >=dev-util/cucumber-tag-expressions-3.0.1:3 -" - -all_ruby_prepare() { - # Avoid dependency on kramdown to keep dependency list manageable for all arches. - rm -f spec/readme_spec.rb || die -} diff --git a/dev-util/cucumber-core/cucumber-core-10.1.0.ebuild b/dev-util/cucumber-core/cucumber-core-10.1.0.ebuild deleted file mode 100644 index e4e4c659db79..000000000000 --- a/dev-util/cucumber-core/cucumber-core-10.1.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_GEMSPEC="cucumber-core.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Executable feature scenarios" -HOMEPAGE="https://cucumber.io/" -SRC_URI="https://github.com/cucumber/cucumber-ruby-core/archive/v${PV}.tar.gz -> ${P}.tar.gz" -RUBY_S="cucumber-ruby-core-${PV}" -LICENSE="Ruby" - -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -SLOT="$(ver_cut 1)" -IUSE="test" - -ruby_add_bdepend " - test? ( - >=dev-ruby/unindent-1.0 - )" - -ruby_add_rdepend " - >=dev-util/cucumber-gherkin-22.0.0:22 - >=dev-util/cucumber-messages-17.1.1:17 - >=dev-util/cucumber-tag-expressions-4.0.2:4 -" - -all_ruby_prepare() { - # Avoid dependency on kramdown to keep dependency list manageable for all arches. - rm -f spec/readme_spec.rb || die -} diff --git a/dev-util/cucumber-create-meta/Manifest b/dev-util/cucumber-create-meta/Manifest index 40a7595234c1..4516f3ce6a2a 100644 --- a/dev-util/cucumber-create-meta/Manifest +++ b/dev-util/cucumber-create-meta/Manifest @@ -1,3 +1,2 @@ DIST cucumber-create-meta-4.0.0.gem 8192 BLAKE2B 4809b0f9ec7f922af374ac46bd9d0cb9797f48738596f00c08bf3d861a19141160032421715d4d141b1b1854e77f3798d09308f626188c3ef6b30a491fadcd29 SHA512 0103b8277741d4eb2e590e1d7f9231187482d32f9a2c19c837baab759b3c48c11a39ac7af686d56fefb7b79120110e930c9af25fb895294529a3b5b0612a5b63 -DIST cucumber-create-meta-6.0.1.gem 8704 BLAKE2B 6e438871ffea3723d5466d24a0ccf1d672b05222de5063a6d9587b951357e631a938eac3b93dfc5f01155ace5dafafbf9d4a08f828b972c7f8b3e35f74ece26e SHA512 6e61bf4163a3575a2988c5a8fc351ad360d3b55e5bd615ee915f0f66064675514777868311d53f40d1fbfcdf7ffae2795c0d84c4f90c710f7d27a56009463b1c DIST cucumber-create-meta-6.0.2.gem 8704 BLAKE2B c7c2d64937da00c6d9cd7161eba3d86089900d348fa8c3b3ee9c25912b09045d20e14f0e0d941a6dabb80cec1f69df0601993e90e575526737dd2159a75e73b2 SHA512 aaf61052475c855cf837b87d845e5b03686e1dba0fae3a83028ab89f434116d948d2d235c502310c14315446a9dadb1eb86dcf6441419e5983430192a9c6d448 diff --git a/dev-util/cucumber-create-meta/cucumber-create-meta-6.0.1.ebuild b/dev-util/cucumber-create-meta/cucumber-create-meta-6.0.1.ebuild deleted file mode 100644 index b40761927a1f..000000000000 --- a/dev-util/cucumber-create-meta/cucumber-create-meta-6.0.1.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -inherit ruby-fakegem - -DESCRIPTION="HTML formatter for Cucumber" -HOMEPAGE="https://cucumber.io/" -LICENSE="Ruby" - -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv" -SLOT="$(ver_cut 1)" -IUSE="test" - -ruby_add_rdepend " - >=dev-util/cucumber-messages-17.0.1:17 - >=dev-ruby/sys-uname-1.2.2:1 -" - -all_ruby_prepare() { - sed -i -e '1igem "cucumber-messages", "~>17.0"' spec/cucumber/create_meta_spec.rb || die -} diff --git a/dev-util/cucumber-create-meta/cucumber-create-meta-6.0.2.ebuild b/dev-util/cucumber-create-meta/cucumber-create-meta-6.0.2.ebuild index e332cc020d25..e0d6853a5751 100644 --- a/dev-util/cucumber-create-meta/cucumber-create-meta-6.0.2.ebuild +++ b/dev-util/cucumber-create-meta/cucumber-create-meta-6.0.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-util/cucumber-cucumber-expressions/cucumber-cucumber-expressions-14.0.0.ebuild b/dev-util/cucumber-cucumber-expressions/cucumber-cucumber-expressions-14.0.0.ebuild index bbc09a06178f..f19bc64bba47 100644 --- a/dev-util/cucumber-cucumber-expressions/cucumber-cucumber-expressions-14.0.0.ebuild +++ b/dev-util/cucumber-cucumber-expressions/cucumber-cucumber-expressions-14.0.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" RUBY_FAKEGEM_EXTRADOC="README.md" diff --git a/dev-util/cucumber-gherkin/cucumber-gherkin-22.0.0.ebuild b/dev-util/cucumber-gherkin/cucumber-gherkin-22.0.0.ebuild index 40dc5dff8fdf..b1b6372ba25c 100644 --- a/dev-util/cucumber-gherkin/cucumber-gherkin-22.0.0.ebuild +++ b/dev-util/cucumber-gherkin/cucumber-gherkin-22.0.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-util/cucumber-html-formatter/cucumber-html-formatter-17.0.0.ebuild b/dev-util/cucumber-html-formatter/cucumber-html-formatter-17.0.0.ebuild index 772a79674653..6aaff4f3e5f5 100644 --- a/dev-util/cucumber-html-formatter/cucumber-html-formatter-17.0.0.ebuild +++ b/dev-util/cucumber-html-formatter/cucumber-html-formatter-17.0.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-util/cucumber-messages/Manifest b/dev-util/cucumber-messages/Manifest index 1f7b224eb362..7c21807446fc 100644 --- a/dev-util/cucumber-messages/Manifest +++ b/dev-util/cucumber-messages/Manifest @@ -1,7 +1,4 @@ DIST cucumber-messages-13.2.1.gem 11264 BLAKE2B ed5fdd87a5e9bbeaee2bf39779f24841ea9a40568d6b3d9a7a7146f7d25efb92b3a8700f8573bd5f11f26958b4d6d7975b332fb7499c40220ac6e87a3f434d72 SHA512 449e01ee0704513e430d8f4c33cb7e363b7f15d70e7a6525adc703beaabd6a207a35bac16384577d0d0534c1c33f08ebfc8bead121c196b2bbc709a7d0ec210a DIST cucumber-messages-14.0.1.gem 11264 BLAKE2B aff0eac711df831708126bedccec15f945933df9345924a27398508194849a4a9a0155d20249dbdf2ddc68886affd22f8cc450f87696f4f81049219a7212e107 SHA512 fee0fe8fb0efb3b1bf4b9f2f56e3e2f305ff727767500fa869198b668bcb63e8af80898afc106242724c5aa1c94ff5511be7c3ce0e433be9be03dd66d8e2e09d DIST cucumber-messages-15.0.0.gem 11264 BLAKE2B 41586a540fd4b092a25b3516419e912900f229f43ba3f8699733bdb67a2783d4e83c50df3b0605abb511894c6a466aa7cae7ee82bae8f48a2cab878349a54a63 SHA512 906a09517dfa6b44519b24ad9dbe5092d1ee24f0fa0e08291206f9b81e1611d988074b063f493ddc2034e05429b7c218380fe0412184c07ba8b2f7af2e3c9ead -DIST cucumber-messages-17.0.0.gem 21504 BLAKE2B 3dbe6a8f2e486c790c05bb77105fc5ff9ec0acd5074df5a5fe4048a8ace5ce58267992fabfb58e1ed3881d510e18605d0a3fde69d5335f2f3fe47bba429d367f SHA512 fefd84e07ef8cc9e301ac299e969643b8977cf9ad8f9990401df8c71e4c35e7435a815a5922166f52c49052345451c06df6bafce3c139f28287172594bdc9e85 -DIST cucumber-messages-17.0.1.gem 21504 BLAKE2B 7bcddbc42fe9abb1deee0b4bd02bfc2187236ab0d90357ab5904a4d486dddf91fe60ccbe894c64b6093d98499e79dd7506a7d36d78132c0336044819ab85af95 SHA512 71ec1cd2490ac27e2bbd3b7f498062b4c97c693ede9fa826a2fe859e1ce766a1a5b263fd520d77b0a6a0f3955e528f1729011e60b598aea6a930cd3bf71d4825 -DIST cucumber-messages-17.1.0.gem 21504 BLAKE2B 1e7d0bf18c54310f0a16ae62b58bf5c40204afac72f13cbcc53c533ee2785e2538e48f821dcc3f205c2acca95cacc6967cc38d8fb1f2c7d6eb9a23924d8dd0a4 SHA512 569254a3c45b4aa799cfd24dea505c052ad3db4d818aef9089ffc54347f5e647f36186f48c9959d8b522e8f5a34d9f6f1cbb32ea89628f5c078f3a499690b2bb DIST cucumber-messages-17.1.1.gem 21504 BLAKE2B 343bdb916c1e1a8cfa0aaaa4837d11064d51268a283b9c79b0ff249abe8066ef6a3d56d021d3b9d9b1d8a2dfc1495b08263dc325f6ac8a0e2dbd46281089cee7 SHA512 32d4740bd6aae8bf4273aac9974e181d32c4bd0be5883722ea38aa62df8b915504fd21a655111c03527d3fe1f31f0ec41ac637cb7293b753c7ec4eb6a97e7db9 diff --git a/dev-util/cucumber-messages/cucumber-messages-17.0.0.ebuild b/dev-util/cucumber-messages/cucumber-messages-17.0.0.ebuild deleted file mode 100644 index c9bd3ee6b80f..000000000000 --- a/dev-util/cucumber-messages/cucumber-messages-17.0.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby26 ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_EXTRAINSTALL="VERSION" - -inherit ruby-fakegem - -DESCRIPTION="Protocol Buffer messages for Cucumber's inter-process communication" -HOMEPAGE="https://cucumber.io/" -LICENSE="MIT" - -KEYWORDS="~amd64" -SLOT="$(ver_cut 1)" diff --git a/dev-util/cucumber-messages/cucumber-messages-17.0.1.ebuild b/dev-util/cucumber-messages/cucumber-messages-17.0.1.ebuild deleted file mode 100644 index b410fc23b087..000000000000 --- a/dev-util/cucumber-messages/cucumber-messages-17.0.1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_EXTRAINSTALL="VERSION" - -inherit ruby-fakegem - -DESCRIPTION="Protocol Buffer messages for Cucumber's inter-process communication" -HOMEPAGE="https://cucumber.io/" -LICENSE="MIT" - -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv" -SLOT="$(ver_cut 1)" diff --git a/dev-util/cucumber-messages/cucumber-messages-17.1.0.ebuild b/dev-util/cucumber-messages/cucumber-messages-17.1.0.ebuild deleted file mode 100644 index b410fc23b087..000000000000 --- a/dev-util/cucumber-messages/cucumber-messages-17.1.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_EXTRAINSTALL="VERSION" - -inherit ruby-fakegem - -DESCRIPTION="Protocol Buffer messages for Cucumber's inter-process communication" -HOMEPAGE="https://cucumber.io/" -LICENSE="MIT" - -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv" -SLOT="$(ver_cut 1)" diff --git a/dev-util/cucumber-messages/cucumber-messages-17.1.1.ebuild b/dev-util/cucumber-messages/cucumber-messages-17.1.1.ebuild index 886c02470603..daa2c98b4918 100644 --- a/dev-util/cucumber-messages/cucumber-messages-17.1.1.ebuild +++ b/dev-util/cucumber-messages/cucumber-messages-17.1.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" RUBY_FAKEGEM_EXTRADOC="README.md" diff --git a/dev-util/cucumber-tag-expressions/cucumber-tag-expressions-4.1.0.ebuild b/dev-util/cucumber-tag-expressions/cucumber-tag-expressions-4.1.0.ebuild index 1c32ac8b2488..a838b01b87e5 100644 --- a/dev-util/cucumber-tag-expressions/cucumber-tag-expressions-4.1.0.ebuild +++ b/dev-util/cucumber-tag-expressions/cucumber-tag-expressions-4.1.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" RUBY_FAKEGEM_EXTRADOC="README.md" diff --git a/dev-util/cucumber/Manifest b/dev-util/cucumber/Manifest index fc6b30316d69..a4112879a8ac 100644 --- a/dev-util/cucumber/Manifest +++ b/dev-util/cucumber/Manifest @@ -1,4 +1,2 @@ DIST cucumber-3.2.0.tar.gz 271886 BLAKE2B 0945336e2a4d14c21d22b3af18fb140663fa0c5acd7d29540cb6755fcc50b020640ffc573f4d4ed17af2758df3df410f93cf5067b736cb8005d9a6ae7fa4d397 SHA512 927ca314c56f83e270284921131ec62aa05053d29a77b230799bd1949751f64c964c0f87525c776d7fe260506ddb632b5cc8939df841d131f6a0af8a82110441 -DIST cucumber-6.1.0.tar.gz 250437 BLAKE2B 64b2adfe5b9b78e70bdf6eea5bad4fe96b5598b686e27aee8635c84070c2e20bd8051217db9c79c9f0de62b6a8eed85c327f2adb9965d39f58f74359b935c013 SHA512 45b455f1c1728463a3e0dd9061d30e6438710e137e923d56cee90be4aac4b9f940a79aac60eca8cee3c4800831e7f57c1893276449e18a9f58c3f3664d810b08 -DIST cucumber-7.0.0.tar.gz 406986 BLAKE2B 6d06d40e7b7029f3f5fea782b5060cf8985cd65334c722744132f40048d1d261963dd4baaa80a8fd44b18d66b63b08960350abedfbfd4d95e0a033a22192d010 SHA512 ca083c2de895f11d7cfd955c216e1e2c52ea9e5ed0034aacbec44e5daf1809e6a67a4621a64a5f236c6a0be9d8057beb917fd00a5f03191fe3d9d2c8814fa22b DIST cucumber-7.1.0.tar.gz 410595 BLAKE2B ee1fbca606479f1f07d64a5434051d8466d7056a326424a0235a6e4f860ed3cdc7862495156874b38631e6a0a1b70bda40deb6f5310f7bd6bdafe72c5faa8f2b SHA512 7c124110634259e83ba1986efacf85a73e9a6f36a7c262ba9842e85e73e359a50b5090489f656e5b503cac68e3db9905dd1834db1bfae9ee55e3a4d1b31a4adb diff --git a/dev-util/cucumber/cucumber-6.1.0.ebuild b/dev-util/cucumber/cucumber-6.1.0.ebuild deleted file mode 100644 index c83fc4c1c77c..000000000000 --- a/dev-util/cucumber/cucumber-6.1.0.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby26 ruby27" - -# Documentation task depends on sdoc which we currently don't have. -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_TASK_TEST="none" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_BINWRAP="cucumber" - -RUBY_FAKEGEM_GEMSPEC="cucumber.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Executable feature scenarios" -HOMEPAGE="https://cucumber.io/" -SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P}.tar.gz" -RUBY_S="cucumber-ruby-${PV}" -LICENSE="Ruby" - -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86" -SLOT="0" -IUSE="examples test" - -ruby_add_bdepend " - test? ( - dev-ruby/bundler - dev-ruby/rspec:3 - >=dev-ruby/nokogiri-1.5.2 - >=dev-ruby/syntax-1.0.0 - dev-ruby/json - >=dev-util/cucumber-3 - )" - -ruby_add_rdepend " - >=dev-ruby/builder-3.2.4:3.2 - >=dev-util/cucumber-core-9.0.1:9 - dev-util/cucumber-create-meta:4 - >=dev-util/cucumber-cucumber-expressions-12.1.1:12 - >=dev-util/cucumber-gherkin-18.1.0:18 - >=dev-util/cucumber-html-formatter-13.0.0:13 - >=dev-util/cucumber-messages-15.0.0:15 - >=dev-util/cucumber-wire-5.0.1:5 - >=dev-ruby/diff-lcs-1.4.4:0 - >=dev-ruby/mime-types-3.3.1:3 - >=dev-ruby/multi_test-0.1.2:0 - >=dev-ruby/sys-uname-1.2.2:1 -" - -all_ruby_prepare() { - # Remove development dependencies from the gemspec that we don't - # need or can't satisfy. - sed -e '/\(coveralls\|spork\|simplecov\|bcat\|kramdown\|yard\|capybara\|octokit\|rack-test\|ramaze\|rubocop\|sinatra\|webrat\|mime-types\|rubyzip\)/d' \ - -e '/nokogiri/ s/1.8.1/1.8/' \ - -e "/json/ s/, '~> 1.8.6'//" \ - -i ${RUBY_FAKEGEM_GEMSPEC} || die - - # Avoid dependency on unpackaged packages - sed -i -e '/\(cucumber-pro\|webrick\)/ s:^:#:' Gemfile || die - - # Avoid specs failing due to differing deprecation message - rm -f spec/cucumber/deprecate_spec.rb || die - - # Avoid failing features on new delegate and forwardable behavior in ruby -# rm -f features/docs/defining_steps/ambiguous_steps.feature features/docs/defining_steps/nested_steps.feature || die - - sed -i -e '/pry/ s:^:#:' cucumber.gemspec spec/spec_helper.rb || die - - rm -f Gemfile.lock || die -} - -each_ruby_test() { - RSPEC_VERSION=3 ruby-ng_rspec - CUCUMBER_USE_RELEASED_CORE=true PATH="${S}"/bin:${PATH} RUBYLIB="${S}"/lib ${RUBY} -Ilib bin/cucumber features || die "Features failed" -} - -all_ruby_install() { - all_fakegem_install - - if use examples; then - cp -pPR examples "${D}/usr/share/doc/${PF}" || die "Failed installing example files." - fi -} diff --git a/dev-util/cucumber/cucumber-7.0.0-r1.ebuild b/dev-util/cucumber/cucumber-7.0.0-r1.ebuild deleted file mode 100644 index 41a4ffcb1b85..000000000000 --- a/dev-util/cucumber/cucumber-7.0.0-r1.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby26 ruby27" - -# Documentation task depends on sdoc which we currently don't have. -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_TASK_TEST="none" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_BINWRAP="cucumber" - -RUBY_FAKEGEM_GEMSPEC="cucumber.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Executable feature scenarios" -HOMEPAGE="https://cucumber.io/" -SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P}.tar.gz" -RUBY_S="cucumber-ruby-${PV}" -LICENSE="Ruby" - -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv" -SLOT="0" -IUSE="examples test" - -ruby_add_bdepend " - test? ( - dev-ruby/bundler - dev-ruby/rspec:3 - >=dev-ruby/nokogiri-1.5.2 - >=dev-ruby/syntax-1.0.0 - dev-ruby/json - >=dev-util/cucumber-3 - )" - -ruby_add_rdepend " - >=dev-ruby/builder-3.2.4:3.2 - >=dev-util/cucumber-core-10.0.1:10 - >=dev-util/cucumber-create-meta-6.0.1:6 - >=dev-util/cucumber-cucumber-expressions-12.1.1:12 - >=dev-util/cucumber-gherkin-20.0.1:20 - >=dev-util/cucumber-html-formatter-16.0.1:16 - >=dev-util/cucumber-messages-17.0.0:17 - >=dev-util/cucumber-wire-6.0.1:6 - >=dev-ruby/diff-lcs-1.4.4:0 - >=dev-ruby/mime-types-3.3.1:3 - >=dev-ruby/multi_test-0.1.2:0 - >=dev-ruby/sys-uname-1.2.2:1 -" - -all_ruby_prepare() { - # Remove development dependencies from the gemspec that we don't - # need or can't satisfy. - sed -e '/\(coveralls\|spork\|simplecov\|bcat\|kramdown\|yard\|capybara\|octokit\|rack-test\|ramaze\|rubocop\|sinatra\|webrat\|rubyzip\)/d' \ - -e '/nokogiri/ s/1.8.1/1.8/' \ - -e "/json/ s/, '~> 1.8.6'//" \ - -i ${RUBY_FAKEGEM_GEMSPEC} || die - - # Avoid dependency on unpackaged packages - sed -i -e '/\(cucumber-pro\|webrick\)/ s:^:#:' Gemfile || die - - # Avoid specs failing due to differing deprecation message - rm -f spec/cucumber/deprecate_spec.rb || die - - # Avoid failing features on new delegate and forwardable behavior in ruby -# rm -f features/docs/defining_steps/ambiguous_steps.feature features/docs/defining_steps/nested_steps.feature || die - - sed -i -e '/pry/ s:^:#:' cucumber.gemspec spec/spec_helper.rb || die - - rm -f Gemfile.lock || die -} - -each_ruby_test() { - RSPEC_VERSION=3 ruby-ng_rspec - CUCUMBER_USE_RELEASED_CORE=true PATH="${S}"/bin:${PATH} RUBYLIB="${S}"/lib ${RUBY} -Ilib bin/cucumber features || die "Features failed" -} - -all_ruby_install() { - all_fakegem_install - - if use examples; then - cp -pPR examples "${D}/usr/share/doc/${PF}" || die "Failed installing example files." - fi -} diff --git a/dev-util/cucumber/cucumber-7.0.0.ebuild b/dev-util/cucumber/cucumber-7.0.0.ebuild deleted file mode 100644 index dc1b2aa7fd87..000000000000 --- a/dev-util/cucumber/cucumber-7.0.0.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby26 ruby27" - -# Documentation task depends on sdoc which we currently don't have. -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_TASK_TEST="none" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_BINWRAP="cucumber" - -RUBY_FAKEGEM_GEMSPEC="cucumber.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Executable feature scenarios" -HOMEPAGE="https://cucumber.io/" -SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P}.tar.gz" -RUBY_S="cucumber-ruby-${PV}" -LICENSE="Ruby" - -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv" -SLOT="0" -IUSE="examples test" - -ruby_add_bdepend " - test? ( - dev-ruby/bundler - dev-ruby/rspec:3 - >=dev-ruby/nokogiri-1.5.2 - >=dev-ruby/syntax-1.0.0 - dev-ruby/json - >=dev-util/cucumber-3 - )" - -ruby_add_rdepend " - >=dev-ruby/builder-3.2.4:3.2 - >=dev-util/cucumber-core-10.0.1:10 - >=dev-util/cucumber-create-meta-6.0.1:6 - >=dev-util/cucumber-cucumber-expressions-12.1.1:12 - >=dev-util/cucumber-gherkin-20.0.1:20 - >=dev-util/cucumber-html-formatter-16.0.1:16 - >=dev-util/cucumber-messages-17.0.0:17 - >=dev-util/cucumber-wire-6.0.1:6 - >=dev-ruby/diff-lcs-1.4.4:0 - >=dev-ruby/mime-types-3.3.1:3 - >=dev-ruby/multi_test-0.1.2:0 - >=dev-ruby/sys-uname-1.2.2:1 -" - -all_ruby_prepare() { - # Remove development dependencies from the gemspec that we don't - # need or can't satisfy. - sed -e '/\(coveralls\|spork\|simplecov\|bcat\|kramdown\|yard\|capybara\|octokit\|rack-test\|ramaze\|rubocop\|sinatra\|webrat\|mime-types\|rubyzip\)/d' \ - -e '/nokogiri/ s/1.8.1/1.8/' \ - -e "/json/ s/, '~> 1.8.6'//" \ - -i ${RUBY_FAKEGEM_GEMSPEC} || die - - # Avoid dependency on unpackaged packages - sed -i -e '/\(cucumber-pro\|webrick\)/ s:^:#:' Gemfile || die - - # Avoid specs failing due to differing deprecation message - rm -f spec/cucumber/deprecate_spec.rb || die - - # Avoid failing features on new delegate and forwardable behavior in ruby -# rm -f features/docs/defining_steps/ambiguous_steps.feature features/docs/defining_steps/nested_steps.feature || die - - sed -i -e '/pry/ s:^:#:' cucumber.gemspec spec/spec_helper.rb || die - - rm -f Gemfile.lock || die -} - -each_ruby_test() { - RSPEC_VERSION=3 ruby-ng_rspec - CUCUMBER_USE_RELEASED_CORE=true PATH="${S}"/bin:${PATH} RUBYLIB="${S}"/lib ${RUBY} -Ilib bin/cucumber features || die "Features failed" -} - -all_ruby_install() { - all_fakegem_install - - if use examples; then - cp -pPR examples "${D}/usr/share/doc/${PF}" || die "Failed installing example files." - fi -} diff --git a/dev-util/cucumber/cucumber-7.1.0.ebuild b/dev-util/cucumber/cucumber-7.1.0.ebuild index 858c29e2af04..443bb36814a4 100644 --- a/dev-util/cucumber/cucumber-7.1.0.ebuild +++ b/dev-util/cucumber/cucumber-7.1.0.ebuild @@ -21,7 +21,7 @@ SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P} RUBY_S="cucumber-ruby-${PV}" LICENSE="Ruby" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" SLOT="0" IUSE="examples test" diff --git a/dev-util/difftastic/Manifest b/dev-util/difftastic/Manifest index 22bce9aa5f80..feaa0ace3c46 100644 --- a/dev-util/difftastic/Manifest +++ b/dev-util/difftastic/Manifest @@ -4,9 +4,9 @@ DIST archery-0.4.0.crate 21265 BLAKE2B d5e98cd65b7ae426affc3cd905d7cc4b4296c059a DIST atty-0.2.14.crate 5470 BLAKE2B 2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab SHA512 d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9 DIST autocfg-1.0.1.crate 12908 BLAKE2B 40c53cab298e4f26634c3acff3ece6a3371188d91dbf377ed664eabedcde20536edaa93daf406618f37edde019f049a6e7b9a47f627344587dbd126bee2b5e3a SHA512 630b348acb98b012e97804e6325d03c89abc22f2157762c59144c04e6c733daf550bdc7f0fe0b9f3b50e15dae8c1c3c4bdfce3d805b02f0fc987311f5332419b DIST bitflags-1.3.2.crate 23021 BLAKE2B eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda SHA512 3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62 -DIST cc-1.0.72.crate 57495 BLAKE2B b2057ca53aacafa063a4eaa907bfb65aa32ce01a74a90b9085c8243a87723cee8ce79e4904f9d205f9d451598ee34495f8879d27c189477ca43bd39b88b5ea2e SHA512 e9a5b283b2a1fee1030009068c1f87291ec1dab7584a0892f27cc7e523c8fdfd5d986281d9aec1a00af706af1e61d7e64c245c74be7b39c8c022ae2d4f87de8d +DIST cc-1.0.73.crate 57880 BLAKE2B be8d7a25a54afdd759844e76aec61526fc2bd5ca09480e6cdd3bdcf27e5f9d3a88dc16cbcbf54cd021470a7cc521e1ad468116c112bbd30752bac0d5486939ac SHA512 980f012b90c6410144f6de4995048337e09214f19603076db6d4edb88e9ef9ac9e8c6e25569f66c2be3a47e99298f5886dafc102e1a9122316179aa26bc1c985 DIST cfg-if-1.0.0.crate 7934 BLAKE2B e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b SHA512 0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff -DIST clap-3.0.13.crate 191249 BLAKE2B 5ffa3cc1e550bee2eaa89fdb8cd008fe55fbc3f50ed9d7aa702de68f61e996b826ca6d728de899590c1843ae095f70dec3d84ff342095c35a0a811dab1061038 SHA512 10a7a0211377d524d3b2938dc19e94f7ee0ab6416c169050224c6952302c547ee7e7e5c1d150b59edc552ca66bfb176fef82faf237a5496a89ad3956cb7f1c63 +DIST clap-3.1.8.crate 206494 BLAKE2B efead669adb2f2acd231f8161da79022768d2438bd73a3f8d4e0edec91a3a7f9220b90b5993501749dc350fa09b46e24fdab3a33b7c9a78213dfe8671ac4dba8 SHA512 74787dd0a8cd25952a0019c7ec6bce454de2b3b9ce452d2f736b52bdac668d16abe00c08ca42439805296af8bcbc69bbe7f9110baead1296b93abad6b5f84271 DIST const_format-0.2.22.crate 72234 BLAKE2B 89d6f58458777d10e21bcf960e57d24069bf2325fd63904dddef10b6186570bf937fb1dc99d5302a1184d2946c35175d92970db583288bf5af45139aa8ac6e7f SHA512 3ed65106b3fa49fe7cbc0592a8a5b0fc9b99d9d44cb51c1fbdb2fb2eb916d801aa19d9ec568560d6df33373324ea226de3db6e82cbeb9a850426589472a1ec9c DIST const_format_proc_macros-0.2.22.crate 24274 BLAKE2B 61a41f89bb1302cd8a9b2b5b2bb6a90eea2aa6e331840c2b0033acdaef5ddb9cb7a63df028db9e6065a4883aa53002330c6af0bc0b8b3479ef8260c5d088cd71 SHA512 a0382a50502cff46c966fca1518ae1102cc749a9fff142a7fc29c3f3dce4b947ef05576e27248ed682aa9db2e1c0af149f41981d02d8415b63734a0ceccb68f4 DIST crossbeam-channel-0.5.1.crate 86919 BLAKE2B b223d0dcacbb09850d457825cb2a018494d798d0000a20eed3f54b1152e41ebca4698e7d50e81f467b86543779155ad08566da9496eee36aa06644b69cf5d7eb SHA512 f15aff67e9105584f5fe41e1ee650ae4fdd0d0ca0fa9202ee83c6f6025398a300decaa50d1b4682e8afb9bd6e11e95b69bcf23f68ae117419aa84df14ee7747b @@ -15,7 +15,7 @@ DIST crossbeam-epoch-0.9.5.crate 43883 BLAKE2B c0ee0879c583bd1051b63d29eccac37ce DIST crossbeam-utils-0.8.7.crate 39751 BLAKE2B 79e1d6454887e8c61f498be0f4475726529e1c45d5b24bb0799cebedacc8d92db735bbc0ececf2d64a9601dfffd142b372bd2802fd0aa0e98dd4994158846a3e SHA512 b9c999f570640513c38c95fe5e50d0e89adfd27a9370952a8ee441118ffc0f092d21f6dbe7c68f653a6e766e5c1aeb209145d49542f1bdaa1f561e6707ad482b DIST ctor-0.1.21.crate 9303 BLAKE2B 8feeaacd3d870b721ecfed7c8df60a27005de1f2a099eef816bd6df2d7b07dbfa00badeef44027398ff4505871a69814d7d4ec90b07d36e371099e4d0aebfae6 SHA512 18a914f5bd55172e5ff199778babad9a20dd4214f36f24cc00531db5e169af66f77eacab425e8e64d053907366ebd3b448a0c3275ee1f8244822778b62c4cb71 DIST diff-0.1.12.crate 10223 BLAKE2B 369f305661f1da31207f3801ed1841dbce12451ac9c3e9d3736f7158ece433af9b2e42c29063e5d93bb86b1d300e503caa9c3ce7dd0b25553f91d72a9eea5298 SHA512 0e81331c0424e9369963e23894a6412b65a3ed4f3154ccc184fc84cf1c5985b81c586a6b34e8c6c0e5c3afba38fb15277cfd89e7f50c85bd5d8d4d24ba670d16 -DIST difftastic-0.26.3.tar.gz 10100584 BLAKE2B 9121a9747f761f13830028d8ae01655d6d15ceb846f966b92d905224f54280a354873afb19419fb3a496e67ebca12df1cf15369e69588a1066d7682bea0fee93 SHA512 91ef6c359e709f0f63d3627621ed6a03627248cb31ef90ce1a617294425d5ca8803f3f7608d1b2c1326fd1247ee89a8fc200f1188c659028d9af43bc69fa9467 +DIST difftastic-0.27.0.tar.gz 12444097 BLAKE2B e00aa08699ee4935d8908c4e91bad03ce7e0463e98eaee823cb8f27a3525f55db61cbc22e8c08604e707a05ba1d7b0a23ec89acba744b950c590dc9cbe07070e SHA512 8c11d382feea69153e48da4a7585d812ebaf3f0430912f308d7737386a5205383b575ebe5900087a720b16a9cf01f5430953749599bcaa95d1147a20223f547a DIST either-1.6.1.crate 13641 BLAKE2B e5f40c40a5edb6dcb07a10bf79183cbe42438f1f70f3932dce72f6f6e91f75f24d17d82bc447507def4dad4345ffc9dd9162dde778afb253bdb1218e91887949 SHA512 4bfe56920e30cbc8eb4f90162db618f7dca653b42db35ab6a7045d3fd9a24ceb1778b1f79613850bdb1a87ad3794fa0d73015e46c48d513f368d8c3776fc9ddf DIST env_logger-0.7.1.crate 32281 BLAKE2B 6f1894c64f301ca4b687270c911dbe230f674662aa0561b97c4d2537886e404664b5773d4e223e2018047c222a951232c3cb52ec5bddbfb6665e34c3e7ea52f5 SHA512 604060d2ee83ab337a2d20d6784d1b7541534d2fd9e1662fc5c709fa681672a9db5e34d00face864b56ae321962e644ebe29fbb6d68a0d556419cf5d71c6149f DIST hashbrown-0.11.2.crate 85713 BLAKE2B 402f9f1bdcb92631206f9b72923ee35e28db8623e87469c0f1496664bc7185077013ab3c8aea68268241e5b2504f10cddc613a350abd4291050deda6c112e559 SHA512 c21ca68fd49bbb741901f59fed04cc124b8da99e2a4dfc26e2e5e1140637872b344612a01691bd30cc771575c571be15f756c84dde225441699cd2322af2ad6c @@ -25,23 +25,23 @@ DIST indexmap-1.8.0.crate 52583 BLAKE2B fce94d24af0ae74f8173dcdfd35bcc51a23451cd DIST itertools-0.10.3.crate 118661 BLAKE2B 0095d6e7f14ddda69605d09f74e8cc881eec1a1d234f705e667d7f9e738ef157b7ddee066855cbcad7f134bf79b99a4a4c77bff3371397a567cd34d98b68bf97 SHA512 9d17357eb68159edf4f4ccd2eb9895672c7fb633803166d5e24ee12350639eaf66f1c822910518185cd1f1ca5d9c3e228dd37525e6c337ba3fc7ce967f9bfc85 DIST lazy_static-1.4.0.crate 10443 BLAKE2B 25b2e61bbac48f0dcbc79c81d7bf01f2403d8269ecb6be3ea6147bd00f7a588df15a91f44dfc18ada19b21faa71de4637c7d493a8628cbecd0e547d74e616a23 SHA512 e124c0521ec7c950f3c4a066821918da7a9c6e711115d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8 DIST libc-0.2.112.crate 571445 BLAKE2B 3936f4fd08cda0ad5be7b1ff417b6dfc9abad14ea5cf647425d8a2e7306275e958fb5cab4de9eeaab95065176bc295065bafec3846ebadb6e15cba20de495280 SHA512 6c1a027eff21d3ef8078ad19b90b06d90790919a848e95a4c878e8c8b850d2e9be3fca36d8db39b24e472f15e5352ead1182d5491a0b382e06f8c3ead379c45f -DIST libmimalloc-sys-0.1.23.crate 913601 BLAKE2B 9f531556eebb46b6c17e7b5f204aa7bbbdf6b8c0442c4761684de55b815ed05e67238d96f13d3db2ec1b6a7f5697fbab36088ebf6fc011ae851fe675714925aa SHA512 4861e791721f0cda1ced5d0a0fdd054f2203a938033739445946baec693d5e0ab7ff35e0aa50e418e99d8cb8767447d867ff2f0024e03582088ada90a8caf3e6 +DIST libmimalloc-sys-0.1.24.crate 1119801 BLAKE2B a7ac3bfb48805c85566916b4ad7aa14434d21d7758d1c2f96a8b4889cdc1950ef27661223166fb2671040788e8f6a6fdfed3a0a42e5dc38b525e6100d1d9b6de SHA512 b35b72948581ec3505f569af21a1e55cab9024d3f2fe543972863e74e2c1620fc295a3632122e5548b01dbafc6230a1e2a39456070cbc9d3aadafa10fe166900 DIST log-0.4.14.crate 34582 BLAKE2B ddfba35947ae1f5905cd9ecb9eb862a78af6f00ee8b8fe6258b369b140928fe677a02b1b3ca5bdec36ff2b16abd85a9f49688fd5f3d1ba2b2905e7f96b8a84c1 SHA512 796100167663d85a7bc4244cd305e9b3f0a1b1520764b63464698eb136318d0928c40c16f5d19d9f602a5bf769851275bbd48d66b088b0c37be7a6fb62def7cc DIST memchr-2.4.1.crate 64977 BLAKE2B 31479718c118093b684bed946eae0706d77d9d275bd49f5aeff4de490f479abd60c7dc462150eafffc6d6fc1da0853123b78be038826b775d2a41a4c39d93ab5 SHA512 d8912e3902a2126f86159bdc998532a2890b882cbb7d59b5a470fffcad4c32281e045f2fff48a235aa4189f1928866bf3d33b699d50866ad6b6c272bba7adb11 DIST memoffset-0.6.5.crate 7686 BLAKE2B 9a797388702389076c426052c3d54dc62802d5db8bc5c9c83990429f2ffaec4fab4c7dd3f09cd0704d1ea555e87976563bb43408ba54b5e66ce7e406d4604009 SHA512 11bdd9185b99dfee8e659e051b09ee301c7142a372a8117864745a5085c015436d2efbb1478192886f09cbc562529e209d2e3325d94938a64bc75b1d91d2bf3f -DIST mimalloc-0.1.27.crate 4968 BLAKE2B 35122f591d8afd55b97fef3e9d31ce8fb309cf153160b95b2b134e82e6660089097f0e62a169f9d5ca7379b02fb7dea20c963064a8d6c5f85fdf66a383accd6a SHA512 ca835665a84b9d5fe25b4e781ac84e9356204bba7542741b37a74f175c05612bf6f6d16f986c1814a2ccf10942ae6c2aa6d5fa7335e7ecd5d42d502cf47a9800 +DIST mimalloc-0.1.28.crate 4987 BLAKE2B 01c419515664332335f4f017c2a651ad84607230640921d9d3cfd8c95d319473e1892dc64da1333132b9b7e0bc3641eab1e558258f3b87eff2b05eab20069229 SHA512 07725666f13c3681c58dc646aae9cd916459932140fed34a41eb651d1a5b03b36e48e8bb3fb470d95923140c9c1368c0ee6e526d5ffcc7df2242aabc71918a39 DIST num_cpus-1.13.1.crate 14752 BLAKE2B 27490aeee349d944c29e50b44e9a84371030459353a9316ffaa0245ce499df4424e39c25a81be59cd0f9a19c3214c78bdc7a84b632059282be476d8f918c44d6 SHA512 91ffe0ec792228621d6c2d5cc544ef4744203d19fc9c86e0aad2610038c43aca0448b6c27d82979417a0f6c939ea73523303a44c28df0d1c1b8d09814d5306d9 DIST os_str_bytes-6.0.0.crate 21046 BLAKE2B 9d2a9f47aac852ca2e27e63a22c7267e1a4affde2277d50e128b54f377758322f07ca7263478c39c91e11a2b32b0e7a5fc5ba1b31e0ee014b412a4151642e605 SHA512 d2d3741a1190092cf251e035d2c55a7d022d99512160ed4ddccccb44ca85f664f94f8a937a76eff88581b593e2ebaddab6e753009f3046a8a2ebf451418e41d8 DIST output_vt100-0.1.2.crate 4062 BLAKE2B eed08c0a1800560d4f623f451d818e3c7f0dcd72fa99f4e5e6dd4934e50a9649011ec955e06728fd017d58bb9f36cecbeb9b4aa8c13c040225c24019f774e63a SHA512 b8eb00a541bebef2e0bb44975c4547fadfd4ab88a14aa8e31945f3c73531a550cf5729f1f3d18fae5cf36286b82d1a54fb08b28720f1592ab6cfe0814c8d3036 -DIST owo-colors-3.2.0.crate 26928 BLAKE2B 7a415f1acc6adbfcfed53613de62e4e927fe3c09274130d2e1d192cc9890e5d3f1352cfc2614608ac7604a3b575eb927908312f1d0fcc32346adf798b65090e4 SHA512 bac9c5f653447d98a9c324c217b47d40e9df4990593f17a973ae8cf998290cf1ec078221b9608ae548a1ed9c8d2e88feba765a60e118ced946dc48ef6c9edcb1 +DIST owo-colors-3.3.0.crate 27287 BLAKE2B 7b557c7bf358797bf259d520f6bde27b9fc1322e5dcea2934e4c71c89e549509f295aee9c8704f32bb6375fc70311a1dbd887426c8a6dca3cfaa4116e35e9359 SHA512 177b23fe7c665da52b489f274d013b3d52cf126af6cf185cd842658ac3dbf1bcbe9a9b341870e3f7ad978270fb78cb302f7e7a28e83be84105e76b6d357234fe DIST pretty_assertions-1.0.0.crate 73836 BLAKE2B bfe519373be45508354c160acde346c17bea9c1d6b1b3c8e1b96025a6d690e42759cbc54369b458308fab3db1df734d6d6640b8d3c544d0dd696ec83290a4f35 SHA512 65065b7efc5e7003499063464e4b996c84f22637143a01f8857552369960425156e0ce0571a62e876df3a8ac9d1361548bf5d4676749b0baf5bdd3a22f66b1a5 DIST pretty_env_logger-0.4.0.crate 8690 BLAKE2B bd6cff07f3a9ad860378cd0bc7d44c1fe9ea346aba2970adfc1f23e6fbd3613f11cf8fb19a401f006ea69e8f05f687636d0ef870c25ccdc97c8b60505e2e0447 SHA512 770de8e256cedfb21fc89cc1ecc564ae1a8e67263705b4234b91867996c4db77ec703b70a46aef6b018c6ce09aab6a232fd1eedf8324c39f119a6807daa534f9 DIST proc-macro2-1.0.36.crate 41411 BLAKE2B d7d99aed41080b65680736d92dd027e21c9e9e0b03601915c000f5dea8f2b2d9126b116af32f2fb04b4fa407775f0131423055d0b62fdbfe87fa4ba7ec098beb SHA512 f31b0f2356af2746321c4f808ac9af87d21a5657c103ed6bc1383855e40caf49246cc8ec1edff58eacf193424abfc2163148b7298e527714e65e602f14b2e50a DIST quick-error-1.2.3.crate 15066 BLAKE2B 1c61525d383f3588c1c5017f016f60b484bbf2035e7f63c553bd9a49b638ab0c6106ac3676a41072b24da4e13dde78706e0f99fd1ec9ee329d5be81d45a85866 SHA512 f8aaf9024d20ccd42b706c756eed8320aee339f8776392b47a41cc82ca06b03df1a5b1f00854cea96689c5af261b4d8c5d2b1a242d10f2755e7e33dc41be35b9 DIST quote-1.0.13.crate 28042 BLAKE2B fd0e1674c073e26732270591a79744daae7d129976dd35586a8e37d607eaab7e4c2d8f466f80646d3669f874bf4fbb648bc75a0e9f1d07c98394f178d55e7609 SHA512 a0a67ce4ff5e7cfc97467505cbdcf8880cd9be40fac8cb7e5bd57ef398fa1201854ec96a51dc4b163552c237ba19300253c8d87bed777d7eecc7e21a36a6ba06 DIST radix-heap-0.4.2.crate 9323 BLAKE2B 5d891bd823cd4a564f139457f01a8fe59256f51516265398586ace2077aab9e2ef19d303a8efeebc8849c2255383154d97ab3c5eedacd72dc91945e4012aa04b SHA512 ce80f6abe1d631374aa814830b4e354e4604d8a29b70e3fdc0544d7441fbda9ef3311f5ae55b671c26e543aa54548764c95675b638a8aa060f9047eb077fc715 -DIST rayon-1.5.1.crate 160424 BLAKE2B 1c31c8e3290f76d02347271cb020e50e8f915b7a064f133a196c12e07ae1551c0e7c31883a31ec419a05198d6c71f0057be1b8ddb21f451db9ba40da511a0e1a SHA512 a68e65aae7040a6f6b0cc33b53b4c22929c15504ed4fdf54f5eb5fcaeab137c220b00c716aed96246b6a762c4f1e8be920356231d6c4a0b3e01132b9ab96ffc9 -DIST rayon-core-1.9.1.crate 64961 BLAKE2B 7201024124324d2cf2d5785b7e79d2195adc7de576b826a9c28603dc44f1b5de46d277b791a741413c85facb4f4a552bfd55989a190f6f5ea3df4bbd32042f66 SHA512 c24c34dc488171ce476df145e8c6953d35fea93412805f6c411ba8b8e9dbbd733610b291203ee91bd265b766b78e14ba15a7b587e8f0ae8bde53f60e0644ef78 +DIST rayon-1.5.2.crate 165456 BLAKE2B 0a08064df966422d32f582f44570504bb405c59f35f20fcd792f4aa980b62fbd8797e8e01f01a9c3ec4f87eb3a1557f485a16ca2191749759beb31f4d704f082 SHA512 3c11bd89692af7e245be2c0b26d96e864a6353eb901706fe6394e3ff8bba13a829609d2a086aa69fbf716ca4286a1977123a950080d673814edf6bd55d29d459 +DIST rayon-core-1.9.2.crate 65221 BLAKE2B 44b1bcf748e0bf19e7341c032eed6ea348f284ff9f834af628baa2484d3b468d6c8c31ed0309e226def441ee7a94e2ad0b9a2adf107493bef1ae27882d93a7ed SHA512 83c17e71e3da636d97ad77b64d988bfaa78addfd0c512f0fc09b1755614dab2a35532a4dcb126fa15da4e62461e59f5683b922a1fb4a5381a629992617d0383f DIST regex-1.5.5.crate 238119 BLAKE2B 175cec668da4321930a070993feb1671e14348b78e8b432f9fa25afd764863ff233b0d1d8931951ff99a3b5bc2e18774f68a6c0a4e31125ffcdb990b5b1b009c SHA512 a5873edc75a64f03be77151c318bc90c7dff565f838d811f5973ebca2e86247efd58830b0a8ba41e372f5a72f5402d93873f8d34c36481fa4359874b2fa5d571 DIST regex-syntax-0.6.25.crate 293293 BLAKE2B d5ca0dbc26b03c6a1818026f9a69cd226ec934e7c64094d0ebe843052b648617ffae7aa3a074f8da46d03c46996d8b547d8916576342000bd9711089b3e57d73 SHA512 a3d31f82aadc6be1796f76c03152ff24f37fe42d6ce27fb98e2f55ab102f86502bc37ccd563f6e0eba61aab20d002184c618517b678b3b93cb8f0497cc046ca5 DIST rpds-0.10.0.crate 67570 BLAKE2B 6728d606f1795668a5aceb44c63f5480d4fa3c5dbd7c84da59138117b240d7fbe7cf050573037b3fd095f9073f4c6db89660b7633fd85238d7c9b8ae76d77f4e SHA512 6f0edf48240be43f373e9f329baa42d32e09ae434e1d6982a5f1ddbd92cc89dae7413877c0e9a53662a6ce6431702dc5ed8bd587fbde711ac413af9fb8253bea @@ -53,8 +53,8 @@ DIST strsim-0.10.0.crate 11355 BLAKE2B bcb25ad0a7284e24e4f17ebe0ccb621bdc4118e49 DIST syn-1.0.84.crate 235025 BLAKE2B 98fb0ff91c6b103588a12b718445d9cfefced59b2e66fbfff75d44b65f8c411cebb70eaa1bb0e19fbae076c87f179e8ba6231f696ad97a687b58b394c2eaca7c SHA512 c1bfbe6896e8b7e414b2241462aefe9552a5292ba58214e5ee3c70ea54f9cb5d4c77dfc3ebf3b2809bf6fbf297222b4570f2e6e3eb91931cc686d28a58c7dffb DIST term_size-0.3.2.crate 10917 BLAKE2B 2302faf4cc03e0e40e4b4b0ca79cea5e70caed8087a16f2b985673476041d19ee6908bb17931b453e63a89e33158f7e01875716879964664487fb26395ff7f49 SHA512 7e820ca667f841719e82cf97e90bd2546cdd7ecd4834c68f8eeadd2e530bb13ced1d058ea7beda5db77eabacfaef64b8c3699c482bd912ff570f6ab78149dc88 DIST termcolor-1.1.2.crate 17287 BLAKE2B 5ff748064c9fb6663befce2fd299edf6a6deb06ea72d21a62d6e77642934cca0933e10340fa84f636631cc08c76ba83ef2284b2212759129d54248e5fccb4c49 SHA512 f37b034345382cd621b1344a3fb301ca3d4d9db8b5858ac1ea82372c983229fce3c0ea8213d6b7e91291b6034affe11e2c3e593dbd95256294ce5c584b33e14c -DIST textwrap-0.14.2.crate 52016 BLAKE2B db80b15ba23db718064ef0214578ea6aa4f0ee3b76723adaca131be26b770324205f2ead13c8f5c1e438ae1b5c9476cf1ede8f4ed82426c9d99d9406f2b83191 SHA512 521ab37e03aae8fcce5b909541399fc90a23020e353f95102c658fa94ffc56b9bdff43f47fb3da6e30f5c9cc9447fab72fe21d7276dfa21fe5a1a5a1c874e371 -DIST tree-sitter-0.20.5.crate 130915 BLAKE2B 072b2a4980a96569f5c09e0aa7d64758b6887b4a9c1840daa35743e440c02d93d81c3223c84c9852f2761a1cfa2439503caf315758447374e49b3307cb294d21 SHA512 f0447b9cbeb1cc276f3617583003d345acfcee954fd021665e695f543a9a70a2220bfda795707dd58cfa20496799456a3572c31f9edcc066d19233402add7c7f +DIST textwrap-0.15.0.crate 52998 BLAKE2B f6c3057ea6ffde88dd9824cd3159d398316d9d21f327d2af59239ff84d79f893a9d0e96dfbd883aab6c64b631dc99457018e38baf14d40789f02d633425ded86 SHA512 f44271c542c22f17a4e3a459255f95e6c02d999f7d6bc8414d3973fd4ac9353aa4ef436932a45340738126905463d776902715feaa9329371f8a14f14b5a7bfd +DIST tree-sitter-0.20.6.crate 130955 BLAKE2B e925baa4fb92627b8fecaa9076fac741752f8e015cf2e9b548ca2a3307974c784448dc900a12427a70d1b2c44f22cd1c1c4e1070dc8365e7df3e590ad0b2e0b5 SHA512 b1c7425db2903b889c90cd283ab557ad34d0dead01ec1313571fd537f2b783df88849caf4f253d27c65cd84fc43eeb3c5073e2df876b5a5d716186563b37b92a DIST typed-arena-2.0.1.crate 11439 BLAKE2B b5bd230a22894c5545966279b40a8493940719fdf79bed144ad41c363e7f73bfd40e1492efa8d96fb9b5b32e3a31405ef9dbddd55d10bb900ac082d41a034b03 SHA512 182fdac0ef9b494fc2966005ece2107a3c53b6eafe4eebe9be3d552aebe143e05f3db2b51693c253831744fc265ec2a557d31ee42cf0ba5991b38d075278415d DIST unicode-xid-0.2.2.crate 14955 BLAKE2B 6c6da49ac08dbd8b3248272224d6bff96b9cd1f36029b1937a58a0b929c3a48326053305ed49e73edd70f572f5abbc4817cedc899c69e3457805ad056669f6af SHA512 92ffd0dd34e3ca235ecf110b38c447d3ec1faa23d76c112457f28d432f92fa6b5f428bc5e1bfd278f361f55426dd96e19ecb0d3eff6cf250892f069c52bd89a8 DIST walkdir-2.3.2.crate 23516 BLAKE2B 473f2b51aafd6ac17e5c3da8d545d179b31486b3a65ab39fbd8bd7fbb2ebcc24bebf01781200a26a68f0b1cb464f5763a919aead3b03eba5a7e1be6efec5500b SHA512 6c44071354faf37720ec4117ded34c8d530489542ee107ac26a7a56ef4a882b9003e22e84f1d61f6078643521343e35aa1f7b57c838779e78e5937a667bf82da diff --git a/dev-util/difftastic/difftastic-0.26.3.ebuild b/dev-util/difftastic/difftastic-0.27.0.ebuild similarity index 89% rename from dev-util/difftastic/difftastic-0.26.3.ebuild rename to dev-util/difftastic/difftastic-0.27.0.ebuild index cfca879d4a2f..474608648011 100644 --- a/dev-util/difftastic/difftastic-0.26.3.ebuild +++ b/dev-util/difftastic/difftastic-0.27.0.ebuild @@ -12,9 +12,9 @@ CRATES=" atty-0.2.14 autocfg-1.0.1 bitflags-1.3.2 - cc-1.0.72 + cc-1.0.73 cfg-if-1.0.0 - clap-3.0.13 + clap-3.1.8 const_format-0.2.22 const_format_proc_macros-0.2.22 crossbeam-channel-0.5.1 @@ -32,23 +32,23 @@ CRATES=" itertools-0.10.3 lazy_static-1.4.0 libc-0.2.112 - libmimalloc-sys-0.1.23 + libmimalloc-sys-0.1.24 log-0.4.14 memchr-2.4.1 memoffset-0.6.5 - mimalloc-0.1.27 + mimalloc-0.1.28 num_cpus-1.13.1 os_str_bytes-6.0.0 output_vt100-0.1.2 - owo-colors-3.2.0 + owo-colors-3.3.0 pretty_assertions-1.0.0 pretty_env_logger-0.4.0 proc-macro2-1.0.36 quick-error-1.2.3 quote-1.0.13 radix-heap-0.4.2 - rayon-1.5.1 - rayon-core-1.9.1 + rayon-1.5.2 + rayon-core-1.9.2 regex-1.5.5 regex-syntax-0.6.25 rpds-0.10.0 @@ -60,8 +60,8 @@ CRATES=" syn-1.0.84 term_size-0.3.2 termcolor-1.1.2 - textwrap-0.14.2 - tree-sitter-0.20.5 + textwrap-0.15.0 + tree-sitter-0.20.6 typed-arena-2.0.1 unicode-xid-0.2.2 walkdir-2.3.2 @@ -88,12 +88,11 @@ SRC_URI=" LICENSE="Apache-2.0 MIT MPL-2.0 Unlicense ZLIB" SLOT="0" KEYWORDS="~amd64" -RESTRICT="mirror" QA_FLAGS_IGNORED="usr/bin/difft" PATCHES=( - "${FILESDIR}/difftastic-0.26.3-regex-dep.patch" + "${FILESDIR}/difftastic-0.27.0-regex-dep.patch" ) DOCS=( diff --git a/dev-util/difftastic/files/difftastic-0.26.3-regex-dep.patch b/dev-util/difftastic/files/difftastic-0.27.0-regex-dep.patch similarity index 78% rename from dev-util/difftastic/files/difftastic-0.26.3-regex-dep.patch rename to dev-util/difftastic/files/difftastic-0.27.0-regex-dep.patch index e5f25935074b..535368179951 100644 --- a/dev-util/difftastic/files/difftastic-0.26.3-regex-dep.patch +++ b/dev-util/difftastic/files/difftastic-0.27.0-regex-dep.patch @@ -1,8 +1,8 @@ diff --git a/Cargo.lock b/Cargo.lock -index b31dab30f..a3e7795aa 100644 +index f307f4a86..49cc65fae 100644 --- a/Cargo.lock +++ b/Cargo.lock -@@ -418,9 +418,9 @@ dependencies = [ +@@ -417,9 +417,9 @@ dependencies = [ [[package]] name = "regex" @@ -15,7 +15,7 @@ index b31dab30f..a3e7795aa 100644 "aho-corasick", "memchr", diff --git a/Cargo.toml b/Cargo.toml -index f5916fa44..8d7cf3ea2 100644 +index a84b8716e..2db0dbf33 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ include = [ @@ -24,6 +24,6 @@ index f5916fa44..8d7cf3ea2 100644 [dependencies] -regex = "1.5.4" +regex = "1.5.5" - clap = { version = "3.0.13", features = ["cargo"] } + clap = { version = "3.1.8", features = ["cargo", "env"] } itertools = "0.10.1" typed-arena = "2.0.1" diff --git a/dev-util/gitchangelog/metadata.xml b/dev-util/gitchangelog/metadata.xml index 32c48c0aca94..14d417cfceb2 100644 --- a/dev-util/gitchangelog/metadata.xml +++ b/dev-util/gitchangelog/metadata.xml @@ -1,5 +1,5 @@ - - + + nerdboy@gentoo.org diff --git a/dev-util/gitlab-runner/metadata.xml b/dev-util/gitlab-runner/metadata.xml index 1b9e74b5f096..f741d80d3b6a 100644 --- a/dev-util/gitlab-runner/metadata.xml +++ b/dev-util/gitlab-runner/metadata.xml @@ -1,5 +1,5 @@ - + williamh@gentoo.org diff --git a/dev-util/hfstospell/Manifest b/dev-util/hfstospell/Manifest index 7f331cb0510e..ad85e4212a25 100644 --- a/dev-util/hfstospell/Manifest +++ b/dev-util/hfstospell/Manifest @@ -1,2 +1 @@ -DIST hfstospell-0.5.2.tar.gz 152115 BLAKE2B 667c01672fd6fd6ee743a6542677ffe74e3900c27ab2754f8fa7dcc57081074bd98e8d82827fe176b2a6c9abc4565efcb3204df43110906f5a333405ec8a6bf2 SHA512 307aff3aec91ac6ffed3ebabdc2baa1a6e913431f57a80a0d0254be57fbd72e28d7592c35e0d72e5979f7e0b4c585f11b8eb91183b0877f9670a9cd5206c0140 DIST hfstospell-0.5.3.tar.gz 152654 BLAKE2B f77c86e18b9dcb098460bdaec2f6a148b4bf515670aad3d17002b3027026483658d0df924a5d71b12251128ba89bee3a9d7c1d03a5983830accf0340445a1331 SHA512 f25bae6c083894139ba1e3dbd24f010e1c4695bdfe4c2499d31f2f0bd2f5688b662ea15666b46f174fc75f0aa6f5cd114456f735b1d49bcf33322221b6f57ff5 diff --git a/dev-util/hfstospell/hfstospell-0.5.2-r1.ebuild b/dev-util/hfstospell/hfstospell-0.5.2-r1.ebuild deleted file mode 100644 index 5d44b4da283a..000000000000 --- a/dev-util/hfstospell/hfstospell-0.5.2-r1.ebuild +++ /dev/null @@ -1,47 +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="HFST spell checker library and command line tool" -HOMEPAGE="https://github.com/hfst/hfst-ospell" -SRC_URI="https://github.com/hfst/hfst-ospell/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~riscv x86" -IUSE="clang" - -DEPEND="app-arch/libarchive - dev-libs/icu:= - !clang? ( - dev-cpp/libxmlpp:2.6 - dev-libs/tinyxml2 - )" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -S="${WORKDIR}/hfst-ospell-${PV}" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # https://github.com/hfst/hfst-ospell/issues/48 - if tc-is-clang; then - econf --without-libxmlpp --without-tinyxml2 - elif use clang; then - econf --without-libxmlpp --without-tinyxml2 - else - default - fi -} - -src_install() { - default - find "${D}" -name '*.la' -delete -o -name '*.a' -delete || die -} diff --git a/dev-util/patdiff/patdiff-0.14.0-r1.ebuild b/dev-util/patdiff/patdiff-0.14.0-r1.ebuild index 30a2be625868..221c6234c808 100644 --- a/dev-util/patdiff/patdiff-0.14.0-r1.ebuild +++ b/dev-util/patdiff/patdiff-0.14.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/janestreet/patdiff/archive/v${PV}.tar.gz -> ${P}.tar LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~riscv" IUSE="+ocamlopt" RDEPEND=" diff --git a/dev-util/ragel/ragel-7.0.4-r1.ebuild b/dev-util/ragel/ragel-7.0.4-r1.ebuild index 48a3e7cfcf0b..349189368c90 100644 --- a/dev-util/ragel/ragel-7.0.4-r1.ebuild +++ b/dev-util/ragel/ragel-7.0.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -11,7 +11,7 @@ SRC_URI="https://www.colm.net/files/ragel/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc ~x86" IUSE="doc" # Notes from bug #766090 diff --git a/dev-util/tree-sitter-cli/tree-sitter-cli-0.20.6.ebuild b/dev-util/tree-sitter-cli/tree-sitter-cli-0.20.6.ebuild index fd19cfa6ac77..2278eb04bd0f 100644 --- a/dev-util/tree-sitter-cli/tree-sitter-cli-0.20.6.ebuild +++ b/dev-util/tree-sitter-cli/tree-sitter-cli-0.20.6.ebuild @@ -124,7 +124,7 @@ S="${WORKDIR}"/${MY_P}/cli LICENSE="Apache-2.0 BSD-2 CC0-1.0 ISC MIT" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" # Test seems to require files (grammar definitions) that we don't have. RESTRICT="test" diff --git a/dev-vcs/Manifest.gz b/dev-vcs/Manifest.gz index 2086e39ecf51..15c4c5aba5e6 100644 Binary files a/dev-vcs/Manifest.gz and b/dev-vcs/Manifest.gz differ diff --git a/dev-vcs/git/Manifest b/dev-vcs/git/Manifest index 0e5ccc3424a1..67d73c524d99 100644 --- a/dev-vcs/git/Manifest +++ b/dev-vcs/git/Manifest @@ -4,18 +4,18 @@ DIST git-2.34.1.tar.xz 6623760 BLAKE2B 9b5d7a450ec495898bcc0e1f6ae87c0ad102d039c DIST git-2.35.1.tar.xz 6874520 BLAKE2B 028ff97b47748871da145720d0d258a0dcf4acc60b10c787dee5703fcab5f6e621c5671ee9e7a25009e82a2830400f35fa232d88c62606a6687260c744680025 SHA512 926c6813ef61931e1a1c43dfd7b15e20dc5878c1752876bd08f039249c9ed09f20f096b2f01947de9c9522c942e9fa8c1363d7d31a488bbe3f93c0cff31fcbcb DIST git-2.35.2.tar.xz 6876028 BLAKE2B 2d59f0ef195770b3bd57ef8160ab24da5e14025316bb0cce30048116c71e9c45f0818a12a95a84f680071454ef80e3071b615c64a165771c1c8720c20ff4dba8 SHA512 fac143daf547f4f1952101bc0006b53ac50c1741394a8c75dc517f595ce58b183c7daabcb23a7f9fc87fe22250e298441b0b7cc7af93820110877d65c036b76a DIST git-2.35.3.tar.xz 6876328 BLAKE2B f584e9d94d167ba19bd2a00377f04eb4edf69cddbd2993a324178338b2e20e7fd126b51882ac7c7914c5118d0eab1ff9beddeb96a901a18fdfe027e21351ab61 SHA512 c92f8663988c57702bb5ee542ac8f36e8a43d377d16106ee462ce0b0a575b9d51baaafc654bf1821fbea2fe476ffd64d7fb87084c7de4dd8065b01d5083492c5 -DIST git-2.36.0.rc2.tar.xz 6960596 BLAKE2B 72373db94576a96aafacf3eb63c2041ca0577c647e07d2f23187b29507245fbf5f5a000726d6d61037be14b762f3bebbee1b2997ac4bf265ddf840c2e6c91055 SHA512 dfdd49fc7d25c6e2c4291afd5e9c234f4180226d9219cb6e70328dfdeb585a982a2f3b375ede578570825fff9f68ea126b3342512644906dc4333f9f953fe4a3 +DIST git-2.36.0.tar.xz 7003024 BLAKE2B 72bb148fc5fded2976554788eaf599d20fe9f200ac1dd1ddd4ed89f7f5c8d6c1025907080620bab477b4efadf41d883e890dff73c80d0ff5f0becd83f13ebd88 SHA512 dce0d7dbe684af070271830a01bf1b9cc289182f5106f6e3303b1b3a0d5dc74bebf6ac0174373db05a28f5acc62acb095bc9385dabeeecc1d6e8567dce29b766 DIST git-htmldocs-2.32.0.tar.xz 1381664 BLAKE2B d1b47aa99d32a252fd20df26eff44a558044f3a389379b161bb43621eb28375eb0621969849a31938ba7fc9fc58b140d27d703559ea5735d0a0ffd2e93cd9692 SHA512 12b84e342f0d19afe385ab8a685ae625e86c3295d1555992e0c427b361aa2cdfc89a679e7dbc468d3568a325dafbf699468aadcdb02f93e372eff3dd96a7cf7f DIST git-htmldocs-2.33.1.tar.xz 1396744 BLAKE2B cbd65cf08fc7ea466fcd72820ba3e2135ade37f69c436a4ee7276dc71fb62f6270b71e2f46d981f5681a0fd3c30613d61680c2ef2460d0d7d292f7455e114128 SHA512 5b856b919067e1f644539d43a85aab6f602537ea0970b6248b471e3fa6756a8494f0525a69d22ad3795fcf9e106ff8439e0f6716ba0b8c895d7aad8c59e5bd74 DIST git-htmldocs-2.34.1.tar.xz 1406464 BLAKE2B 6ee2f58df3c1622d96ac4b1a70d4dc3d0c973635774dd6bb89fea3e502dd82d99d676e2f9cb33c14c429c3d4680cd6020213154099b3f7fe71ad67602ca9bc6c SHA512 cf9fa952d43e477528deece9f22d1bb63fa50b3a831fae20812c6af31c1dbaf193abe2fed48ac9966bcf1787442ceed19f00c00e524a1911f0ea31952a52fc8f DIST git-htmldocs-2.35.1.tar.xz 1410148 BLAKE2B 68c3d12341271b861f42135bd4bd6e68ebcc6466931d383378b49aac42f77187f3fadc237974349cb0b50e4c5fb7a8ab185114341dd3012d159e420405d9ef91 SHA512 52a40644a7cd38caddecc43182863ca2f456644fff918ed4c8f826cbf269352c73d6bdc9119d25fcf537bc2fa38750791013329e4b0e32c8d14f0769dab85804 DIST git-htmldocs-2.35.2.tar.xz 1411248 BLAKE2B d4f318f6277015bb6aef3a556bbf7a9a6b02a7cf2f1ed696bb730b6a5fb32fe3dbdf01cf1737e2931f182bf451589349de53e7d02a868d40b013018973c5fe89 SHA512 118576bfeafd92b8b0dd92318504d74341a003358d937545c16fefcfde6b956fbaee0601e50b9a21719d2575a5a37585e36628b4ade8e42d9d0fec4ae616eaa0 DIST git-htmldocs-2.35.3.tar.xz 1411664 BLAKE2B c7d849b9573a257de47fc8d654f7f791d21917cf65315b4ae6909ba2ebbe90970bc9e6c9949266913b1e529e662bfc375acee26ebf9304162eeccc87ce3da067 SHA512 52b97dab838fff1a865ae4d449fbb77fbac3c528666d1b936c73bffac856f16583d1b182379bc4e6851f78bccab519c3ea7e5902fc502b2e8ab7bb85043c7eea -DIST git-htmldocs-2.36.0.rc2.tar.xz 1425784 BLAKE2B 9fe3f1e24c063776bb84fdbea6e624dc1c6ea22e88602dbcb3879861610bb75c497b93c6a795041c2da55829345682312fbb3a513359abe67c5ad056b332cca3 SHA512 cd7dfe6169e2c4818a4aa9bd561b564a4ef9e1c199301e55ddc11bb8608e6195a9258aea7b90d6e512dd99c38997ff0c3bf847f02740d8f60261d685aec8f042 +DIST git-htmldocs-2.36.0.tar.xz 1426148 BLAKE2B ba121e8f7d6a232f3df2b5a50c0f4a798c80808562c710f306f26fa79c124e5e1580c0626a2fce04f4a17b96d40a2683809550f37028cbc436b359de91100599 SHA512 62ee14c2f1ff34c0fbdf281ea2bb08bf6a24850d1d8dc68ffb12ae15e343c167ac869559395769fb352bd441baa8f2d45d696923a04e2f04bca921c990d75a9d DIST git-manpages-2.32.0.tar.xz 491868 BLAKE2B 7598a864246aed771371924604ee13d3f51b839b10b254bb1159dd47266513f5cd6484aab200a7b4ed427edc76538a98e39a040a17201483965175f5e1c5f484 SHA512 5c9950bd5d6904972cddf4afad534197d843c0dee8198d14ec5a3448873cab37dac88295b2a4df3658749f048bda4800b54fdc850517be7208906c911832c66e DIST git-manpages-2.33.1.tar.xz 494288 BLAKE2B 1f8bd4f23de31a285d3f4327e562dddafdf9f28e8b36334e54f5e280c81fc8170e8b153ca42baa642d02d8e6fdfcac9a8fdd3cee1e32c29bcd53f689d1a6c463 SHA512 d465a7b491046b7a5da6ad1fc6c62b351c69905932e0672263de5a1d3abe1113660cff9fe30c7be1d1695c6170ceca5a11b3f65e9b2d1545f35cc653e4c6ad62 DIST git-manpages-2.34.1.tar.xz 497280 BLAKE2B aa3c67cec861eb40eda3e7827d3e380fdfb6f189027fb7e5618258b80ac33918cb3c2ca4d2f8dc5fbee959578766564137e9c4818672f5138304270c486658fe SHA512 8f3b56fa477e5aafec3ef29933234c362a372f59ed95694c4fb82ebb82d2a8ebc0ac17ae36caa9185964eef1700ea8732816e73df4ddd918afc949a8371fa0d8 DIST git-manpages-2.35.1.tar.xz 497284 BLAKE2B 2d0d633320982243316575cc278df6c6a9ef181bf45ea9c1c8288e2677e4e71a33af96bada9bd90b03310be7dd33f2762b6b95489e267e2c191dcc7d1a715fe7 SHA512 0f4c46880f0e6d493112dcd4753fbe3702c06aa68be09bcbfc90263a355deba080995a08916b1f2404e4e17d720ee0de46a55e450c6cabeb1c147dcb2cd919d5 DIST git-manpages-2.35.2.tar.xz 497548 BLAKE2B 5e7c9e85879e57e5b157dc8d0a8b836d86e56e91c512079e46869b6e251cfd40d3a7016996cdb2d2323ca47180e50eb5d5f4bc93ce87713d61b34dcf714ba90e SHA512 70d483f2b14f5957c0b71cfc1131b0cfd8038e824ed93dea4b866fa539d582eb531edc284d89b70c188c85d0bd74096c171bbe42f0be550c6c14711b101a4046 DIST git-manpages-2.35.3.tar.xz 497672 BLAKE2B aef5a7c579392f55fa63f1ce36c03579f4fcce443e867ac2a162a3d72344639ee11949748a51547315579b37e0fc6d5915ea203ddc556b2511125781428ce001 SHA512 25ac8f1690ccbc0e36b7d05115aebde1911909307ac29d930158b61ecd68972b8a9c3af018d73f34251d42cabf8d3d392173a448ec948df0a3119c2a2b87bd60 -DIST git-manpages-2.36.0.rc2.tar.xz 503736 BLAKE2B b376ab4d805b574ade1201daef6af7b06d16d0e742418a28410b7627ec3752679327d622e1ea436ac2dace0e3549254e310acd9bb79608b37a70595caf60c016 SHA512 f19669a46f3f0a44d850689029ef489592154271c519d3c2feac68bca9aefd97dadaa81e59f7c20689134656d447341e3a876aa7b5fbefd17789654edbc2e8d2 +DIST git-manpages-2.36.0.tar.xz 503604 BLAKE2B 438f533dce6628143c0ca348bc372017f049126933bf07a63ce9150114632a048778d8e0876970b406144aa584d512470ae4426be9c5bb8a3a581680ac9443a1 SHA512 67c2fb1c974ffe15aa09b9c36338f3ae9805573b35291e128210fc99c9fd97b1e26be571819d6b073c5adfe4c6f688c15e31790aa9eb62c1effacfb8aa21eb1c diff --git a/dev-vcs/git/git-2.36.0_rc2.ebuild b/dev-vcs/git/git-2.36.0.ebuild similarity index 100% rename from dev-vcs/git/git-2.36.0_rc2.ebuild rename to dev-vcs/git/git-2.36.0.ebuild diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz index bca9e1757fe1..2299cf46d070 100644 Binary files a/eclass/Manifest.gz and b/eclass/Manifest.gz differ diff --git a/eclass/edo.eclass b/eclass/edo.eclass new file mode 100644 index 000000000000..c2e7ed60083f --- /dev/null +++ b/eclass/edo.eclass @@ -0,0 +1,48 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# @ECLASS: edo.eclass +# @MAINTAINER: +# QA Team +# @AUTHOR: +# Sam James +# @SUPPORTED_EAPIS: 7 8 +# @BLURB: Convenience function to run commands verbosely and die on failure +# @DESCRIPTION: +# This eclass provides the 'edo' command, and an 'edob' variant for ebegin/eend, +# which logs the command used verbosely and dies (exits) on failure. +# +# This eclass should be used only where needed to give a more verbose log, e.g. +# for invoking non-standard ./configure scripts, or building objects/binaries +# directly within ebuilds via compiler invocations. It is NOT to be used +# in place of generic 'command || die' where verbosity is unnecessary. +case ${EAPI} in + 7|8) ;; + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; +esac + +if [[ -z ${_EDO_ECLASS} ]] ; then +_EDO_ECLASS=1 + +# @FUNCTION: edo +# @USAGE: [...] +# @DESCRIPTION: +# Executes a short 'command' with any given arguments and exits on failure +# unless called under 'nonfatal'. +edo() { + einfo "$@" + "$@" || die -n "Failed to run command: $@" +} + +# @FUNCTION: edob +# @USAGE: [...] +# @DESCRIPTION: +# Executes 'command' with ebegin & eend with any given arguments and exits +# on failure unless called under 'nonfatal'. +edob() { + ebegin "Running $@" + "$@" + eend $? || die -n "Failed to run command: $@" +} + +fi diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index 775bcbdb889c..47c8132192ca 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: elisp-common.eclass @@ -10,7 +10,7 @@ # Mamoru Komachi # Christian Faulhammer # Ulrich Müller -# @SUPPORTED_EAPIS: 5 6 7 8 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Emacs-related installation utilities # @DESCRIPTION: # @@ -165,8 +165,8 @@ # Again, with optional Emacs support, you should prepend "use emacs &&" # to above calls of elisp-site-regen(). -case ${EAPI:-0} in - 5|6) inherit eapi7-ver ;; +case ${EAPI} in + 6) inherit eapi7-ver ;; 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac @@ -360,10 +360,6 @@ elisp-install() { elisp-modules-install() { local subdir="$1" shift - # Don't bother inheriting multilib.eclass for get_libdir(), but - # error out in old EAPIs that don't support it natively. - [[ ${EAPI} == 5 ]] \ - && die "${ECLASS}: Dynamic modules not supported in EAPI ${EAPI}" ebegin "Installing dynamic modules for GNU Emacs support" ( # subshell to avoid pollution of calling environment exeinto "${EMACSMODULES//@libdir@/$(get_libdir)}/${subdir}" @@ -391,12 +387,7 @@ elisp-site-file-install() { sf="${T}/${sf}" ebegin "Installing site initialisation file for GNU Emacs" [[ $1 == "${sf}" ]] || cp "$1" "${sf}" - if [[ ${EAPI} == 5 ]]; then - grep -q "@EMACSMODULES@" "${sf}" \ - && die "${ECLASS}: Dynamic modules not supported in EAPI ${EAPI}" - else - modules=${EMACSMODULES//@libdir@/$(get_libdir)} - fi + modules=${EMACSMODULES//@libdir@/$(get_libdir)} sed -i -e "1{:x;/^\$/{n;bx;};/^;.*${PN}/I!s:^:${header}\n\n:;1s:^:\n:;}" \ -e "s:@SITELISP@:${EPREFIX}${SITELISP}/${my_pn}:g" \ -e "s:@SITEETC@:${EPREFIX}${SITEETC}/${my_pn}:g" \ diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 2fea311305f1..6b6679df5c5d 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -1,4 +1,4 @@ -# Copyright 2002-2021 Gentoo Authors +# Copyright 2002-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: elisp.eclass @@ -64,7 +64,7 @@ inherit elisp-common -case ${EAPI:-0} in +case ${EAPI} in 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 279ece28e1dd..6da97387c1ab 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -98,20 +98,7 @@ inherit estack flag-o-matic toolchain-funcs virtualx if [[ ${PN} != qtwebengine ]]; then case ${PV} in *9999 ) - # kde/5.15 branch on invent.kde.org - inherit kde.org - ;; - 5.15.2* ) - if [[ -n ${KDE_ORG_COMMIT} ]]; then - # KDE Qt5PatchCollection snapshot based on Qt 5.15.2 - inherit kde.org - else - # official stable release - _QT5_P=${QT5_MODULE}-everywhere-src-${PV} - HOMEPAGE="https://www.qt.io/" - SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}/submodules/${_QT5_P}.tar.xz" - S=${WORKDIR}/${_QT5_P} - fi + inherit kde.org # kde/5.15 branch ;; 5.15.[3-9]* ) # official stable release @@ -136,22 +123,15 @@ fi LICENSE="|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3" -case ${PV} in - 5.15.2*) - SLOT=5/$(ver_cut 1-2) - ;; +case ${PN} in + assistant|linguist|qdbus|qdbusviewer|pixeltool) + SLOT=0 ;; + linguist-tools|qdoc|qtdiag|qtgraphicaleffects|qtimageformats| \ + qtpaths|qtplugininfo|qtquickcontrols|qtquicktimeline| \ + qttranslations|qtwaylandscanner|qtxmlpatterns) + SLOT=5 ;; *) - case ${PN} in - assistant|linguist|qdbus|qdbusviewer|pixeltool) - SLOT=0 ;; - linguist-tools|qdoc|qtdiag|qtgraphicaleffects|qtimageformats| \ - qtpaths|qtplugininfo|qtquickcontrols|qtquicktimeline| \ - qttranslations|qtwaylandscanner|qtxmlpatterns) - SLOT=5 ;; - *) - SLOT=5/$(ver_cut 1-2) ;; - esac - ;; + SLOT=5/$(ver_cut 1-2) ;; esac IUSE="debug test" @@ -185,10 +165,6 @@ qt5-build_src_prepare() { einfo "Preparing KDE Qt5PatchCollection snapshot at ${KDE_ORG_COMMIT}" mkdir -p .git || die # need to fake a git repository for configure fi - # Ensure our ${QT5_PV} is not contradicted by any upstream (Qt) commit - # bumping version in 5.15 branch after release (probably can be dropped - # after 5.15.2_p* are gone) - sed -e "/^MODULE_VERSION/s/5\.15\.[3456789]/${QT5_PV}/" -i .qmake.conf || die fi if [[ ${QT5_MODULE} == qtbase ]]; then @@ -300,24 +276,6 @@ qt5-build_src_install() { sed -i -e '1i #include \n' \ "${D}${QT5_HEADERDIR}"/QtCore/qconfig.h \ || die "sed failed (qconfig.h)" - - if ver_test -lt 5.15.2-r10; then - # install qtchooser configuration file - cat > "${T}/qt5-${CHOST}.conf" <<-_EOF_ || die - ${QT5_BINDIR} - ${QT5_LIBDIR} - _EOF_ - - ( - insinto /etc/xdg/qtchooser - doins "${T}/qt5-${CHOST}.conf" - ) - - # convenience symlinks - dosym qt5-"${CHOST}".conf /etc/xdg/qtchooser/5.conf - dosym qt5-"${CHOST}".conf /etc/xdg/qtchooser/qt5.conf - dosym qt5.conf /etc/xdg/qtchooser/default.conf - fi fi qt5_install_module_config diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass index 72e714129715..70cb5be74b87 100644 --- a/eclass/ruby-ng.eclass +++ b/eclass/ruby-ng.eclass @@ -412,6 +412,7 @@ _ruby_invoke_environment() { ebegin "Running ${_PHASE:-${EBUILD_PHASE}} phase for $environment" "$@" + eend $? popd &>/dev/null || die S=${old_S} diff --git a/eclass/tree-sitter-grammar.eclass b/eclass/tree-sitter-grammar.eclass index f1ec619be02c..69ad467f8be7 100644 --- a/eclass/tree-sitter-grammar.eclass +++ b/eclass/tree-sitter-grammar.eclass @@ -10,6 +10,8 @@ # @SUPPORTED_EAPIS: 8 # @BLURB: Common functions and variables for Tree Sitter grammars +inherit edo + if [[ -z ${_TREE_SITTER_GRAMMAR_ECLASS} ]]; then _TREE_SITTER_GRAMMAR_ECLASS=1 @@ -74,7 +76,7 @@ tree-sitter-grammar_src_compile() { fi local soname=lib${PN}$(get_libname $(_get_tsg_abi_ver)) - ${link} ${LDFLAGS} \ + edo ${link} ${LDFLAGS} \ -shared \ *.o \ -Wl,--soname=${soname} \ diff --git a/games-fps/Manifest.gz b/games-fps/Manifest.gz index 96e82813edc2..ce133971af48 100644 Binary files a/games-fps/Manifest.gz and b/games-fps/Manifest.gz differ diff --git a/games-fps/yamagi-quake2/Manifest b/games-fps/yamagi-quake2/Manifest index adc6933fda86..0574ba5f5b12 100644 --- a/games-fps/yamagi-quake2/Manifest +++ b/games-fps/yamagi-quake2/Manifest @@ -1,4 +1,5 @@ DIST quake2-8.00.tar.xz 2086776 BLAKE2B 6a525b0d3703e17ca6ff85cbef7cf0c0522308fb71f8db4649e7bfbe3326c610d878d6a4af36ed6a578c700c5e1d004be7c0a9dd86cb495a27c8deb8b761eab9 SHA512 886c0df687e7e64a534f6e6f0b212084212d4d5c1278d2567b25bdd48df9ffab9ce75894ab6cfc2fd3a070adf9c1e3d7bb2e823d4f5aef8ef2cbc21c21c063bd +DIST quake2-8.01.tar.xz 2109408 BLAKE2B a68fe6ea3a0ab44ba9776bf99a3a826afe0ee25c842d6169296eb8837a3b22146f481defd7a66294dc9e42e75e5848225199e4314bf94756606e7325ba789db2 SHA512 8f616f8f09ad9e44bb34227d5492cc0d63180cecebcc39760582590078f4a63a0a4433d66cdffefb26a68d070b2ea1223334de9ae7c32e6c46e42a5aab721a06 DIST quake2-ctf-1.08.tar.xz 136468 BLAKE2B cce9f75333c03494dccc1a693c3c0a62194457673c17c59cd5d08a06a11daa769dabaf787c04d9de291c7cc255b4decef06ae5f045c5bc7bc3f4008f0e6babdb SHA512 3d3343ae5287c5f01efd3363ede19f2e41cc8d083691c928afd9e4a81c0b46f6002eb2ed99d11742b7c04f8ea728a1dbb3b5d26ce4fd1066b4f49e3fb664317e DIST quake2-ref_vk-1.0.1.tar.gz 290799 BLAKE2B 0716d539704a58067fd2d6d4f21b27976c6bd073b2722584a804c9702f2886b252701d81f2fe1e5aba22ab83fbddd1e35ce3574c3e3d41b609ebac417ee7cfe4 SHA512 99a6b7191a2eed714f70ec389a1f1972f430b9ba324e6880ce96101336beac640fef2d45adc1a6bf04c386a1d088fafd401d303704079ed7207fe7b56d2758db DIST quake2-rogue-2.08.tar.xz 282140 BLAKE2B e4ead304f35028010f4ffea6eed15753feac99cfa301975f8cae88d9ac10313c9e1a9e29e37d4f186df34abf659dd45b79bda04b5f420565f256bde8b69ab199 SHA512 216b8a9862c7f189bdabc68770306ead4fa2173f9051a8fd2a7927eae8aa4e42116bbde947591432d200832a3038c79316325549822fa531fc0e76a2bec57762 diff --git a/games-fps/yamagi-quake2/yamagi-quake2-8.01.ebuild b/games-fps/yamagi-quake2/yamagi-quake2-8.01.ebuild new file mode 100644 index 000000000000..2b7bbeeab057 --- /dev/null +++ b/games-fps/yamagi-quake2/yamagi-quake2-8.01.ebuild @@ -0,0 +1,143 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop toolchain-funcs wrapper + +CTF_V="1.08" +ROGUE_V="2.08" +XATRIX_V="2.09" +REF_VK_V="1.0.1" + +DESCRIPTION="Quake 2 engine focused on single player" +HOMEPAGE="https://www.yamagi.org/quake2/" +SRC_URI="https://deponie.yamagi.org/quake2/quake2-${PV}.tar.xz + ctf? ( https://deponie.yamagi.org/quake2/quake2-ctf-${CTF_V}.tar.xz ) + rogue? ( https://deponie.yamagi.org/quake2/quake2-rogue-${ROGUE_V}.tar.xz ) + xatrix? ( https://deponie.yamagi.org/quake2/quake2-xatrix-${XATRIX_V}.tar.xz ) + vulkan? ( https://github.com/yquake2/ref_vk/archive/refs/tags/v${REF_VK_V}.tar.gz -> + quake2-ref_vk-${REF_VK_V}.tar.gz ) +" +S="${WORKDIR}/quake2-${PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="+client ctf dedicated openal +opengl rogue softrender vulkan xatrix" +REQUIRED_USE=" + || ( client dedicated ) + client? ( || ( opengl softrender vulkan ) ) +" + +RDEPEND=" + client? ( + media-libs/libsdl2[opengl?,video,vulkan?] + net-misc/curl + openal? ( media-libs/openal ) + !openal? ( media-libs/libsdl2[sound] ) + opengl? ( virtual/opengl ) + ) +" +DEPEND="${RDEPEND} + client? ( vulkan? ( dev-util/vulkan-headers ) ) +" + +DOCS=( CHANGELOG README.md doc ) + +src_compile() { + tc-export CC + + local targets=( game ) + local emakeargs=( + VERBOSE=1 + WITH_SYSTEMWIDE=yes + WITH_SYSTEMDIR="${EPREFIX}"/usr/share/quake2 + WITH_OPENAL=$(usex openal) + ) + + if use client; then + targets+=( client ) + use opengl && targets+=( ref_gl1 ref_gl3 ) + use softrender && targets+=( ref_soft ) + fi + use dedicated && targets+=( server ) + + emake "${emakeargs[@]}" config + emake "${emakeargs[@]}" "${targets[@]}" + + if use client && use vulkan; then + emake -C "${WORKDIR}"/ref_vk-${REF_VK_V} VERBOSE=1 + fi + + local addon + for addon in $(usev ctf) $(usev rogue) $(usev xatrix); do + emake -C "${WORKDIR}"/quake2-${addon}-* VERBOSE=1 + done +} + +src_install() { + insinto /usr/lib/yamagi-quake2 + # Yamagi Quake II expects all binaries to be in the same directory + # See doc/070_packaging.md for more info + exeinto /usr/lib/yamagi-quake2 + doins -r release/. + + if use client; then + doexe release/quake2 + dosym ../lib/yamagi-quake2/quake2 /usr/bin/yquake2 + + newicon stuff/icon/Quake2.svg "yamagi-quake2.svg" + make_desktop_entry "yquake2" "Yamagi Quake II" + + if use vulkan; then + doins "${WORKDIR}"/ref_vk-${REF_VK_V}/release/ref_vk.so + fi + fi + + if use dedicated; then + doexe release/q2ded + dosym ../lib/yamagi-quake2/q2ded /usr/bin/yq2ded + fi + + insinto /usr/lib/yamagi-quake2/baseq2 + doins stuff/yq2.cfg + + local addon + for addon in $(usev ctf) $(usev rogue) $(usev xatrix); do + insinto /usr/lib/yamagi-quake2/${addon} + doins "${WORKDIR}"/quake2-${addon}-*/release/game.so + + if use client; then + local addon_name + case ${addon} in + ctf) addon_name="CTF" ;; + rogue) addon_name="Ground Zero" ;; + xatrix) addon_name="The Reckoning" ;; + esac + + make_wrapper "yquake2-${addon}" "yquake2 +set game ${addon}" + make_desktop_entry "yquake2-${addon}" "Yamagi Quake II: ${addon_name}" + fi + done + + keepdir /usr/share/quake2 + + einstalldocs + if use client; then + docinto examples + dodoc stuff/cdripper.sh + fi +} + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog + elog "In order to play, you should do one of the following things:" + elog " - install games-fps/quake2-data or games-fps/quake2-demodata;" + elog " - manually copy game data files into ~/.yq2/ or" + elog " ${EROOT}/usr/share/quake2/." + elog "Read ${EROOT}/usr/share/doc/${PF}/README.md* for more information." + elog + fi +} diff --git a/games-strategy/Manifest.gz b/games-strategy/Manifest.gz index b67be4281fc6..feda3a8d4947 100644 Binary files a/games-strategy/Manifest.gz and b/games-strategy/Manifest.gz differ diff --git a/games-strategy/naev/Manifest b/games-strategy/naev/Manifest index ef66f2b36f61..609d3dd7ae65 100644 --- a/games-strategy/naev/Manifest +++ b/games-strategy/naev/Manifest @@ -1,2 +1 @@ -DIST naev-0.9.2-source.tar.xz 394764972 BLAKE2B 003a82cfc1fcfb6b597732d2e6691efb0f11867be6d82f7c18bc6c943e9a48dbaa5c126a39740a8d5f7a6e6ac0d3ff2f0b5f6c7c0504787c4d6872543fe99f3d SHA512 2bc31b78ee069d5d5b983e41b456a077101688dee31ad12d54016aa517d6cc3c970c7ff3b4a89b80ab04315e2e227a397c8202e7cbe3ee57cdac6c153032fc29 DIST naev-0.9.3-source.tar.xz 394876456 BLAKE2B 9648ee9a93a02ec5ace552b25033cae16c38a48a869763bc381050f2724445fd5cf08708053ad4c939cdc99a27244126819e9416bc61d8d6148078eeea26e50e SHA512 150091f10ce05cbd5b2c4c434abe83124db56618b80f727994c135d1331c594406c9e8f03596feddb5739061c866e19b115fd0a86a19ea306cc811bb3dd944aa diff --git a/games-strategy/naev/naev-0.9.2.ebuild b/games-strategy/naev/naev-0.9.2.ebuild deleted file mode 100644 index 179f379d639e..000000000000 --- a/games-strategy/naev/naev-0.9.2.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LUA_COMPAT=( lua5-1 luajit ) -PYTHON_COMPAT=( python3_{8..10} ) -inherit lua-single meson python-any-r1 virtualx xdg - -DESCRIPTION="2D space trading and combat game, in a similar vein to Escape Velocity" -HOMEPAGE="https://naev.org/" -SRC_URI="https://github.com/naev/naev/releases/download/v${PV}/${P}-source.tar.xz" - -LICENSE=" - GPL-3+ BSD BSD-2 CC-BY-2.0 CC-BY-3.0 CC-BY-4.0 CC-BY-SA-2.0 - CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 MIT public-domain" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" -REQUIRED_USE="${LUA_REQUIRED_USE}" - -RDEPEND=" - ${LUA_DEPS} - dev-games/physfs - dev-libs/libunibreak:= - dev-libs/libxml2 - media-libs/freetype:2 - media-libs/libsdl2[joystick,opengl,video] - media-libs/libvorbis - media-libs/openal - media-libs/sdl2-image[png,webp] - sci-libs/cholmod - sci-libs/cxsparse - sci-libs/openblas - sci-libs/suitesparse - sci-mathematics/glpk:= - virtual/libintl - virtual/opengl" -DEPEND=" - ${RDEPEND} - test? ( - dev-games/physfs[zip] - media-libs/libsdl2[X] - media-libs/mesa[llvm] - )" -BDEPEND=" - $(python_gen_any_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]') - sys-devel/gettext - doc? ( - app-doc/doxygen[dot] - dev-lua/ldoc - )" - -python_check_deps() { - has_version -b "dev-python/pyyaml[${PYTHON_USEDEP}]" -} - -pkg_setup() { - lua-single_pkg_setup - python-any-r1_pkg_setup -} - -src_prepare() { - default - - sed -i "s/'lua51'/'lua'/" meson.build || die -} - -src_configure() { - local emesonargs=( - $(meson_feature doc docs_c) - $(meson_feature doc docs_lua) - $(meson_feature lua_single_target_luajit luajit) - ) - - meson_src_configure -} - -src_test() { - virtx meson_src_test -} - -src_install() { - local DOCS=( CHANGELOG Readme.md ) - meson_src_install - - if use doc; then - mv "${ED}"/usr/{doc/naev/{c,lua},share/doc/${PF}} || die - rm -r "${ED}"/usr/doc || die - fi - rm -r "${ED}"/usr/share/doc/naev || die -} diff --git a/gnome-base/Manifest.gz b/gnome-base/Manifest.gz index dd4074bbe43c..aa14b468ea16 100644 Binary files a/gnome-base/Manifest.gz and b/gnome-base/Manifest.gz differ diff --git a/gnome-base/gnome-control-center/gnome-control-center-42.0-r1.ebuild b/gnome-base/gnome-control-center/gnome-control-center-42.0-r1.ebuild index 70008f3ef6ff..97ebfb3fe3b6 100644 --- a/gnome-base/gnome-control-center/gnome-control-center-42.0-r1.ebuild +++ b/gnome-base/gnome-control-center/gnome-control-center-42.0-r1.ebuild @@ -17,7 +17,7 @@ RESTRICT="!test? ( test )" REQUIRED_USE=" ^^ ( elogind systemd ) " # Theoretically "?? ( elogind systemd )" is fine too, lacking some functionality at runtime, but needs testing if handled gracefully enough -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" # meson.build depends on python unconditionally BDEPEND="${PYTHON_DEPS}" diff --git a/gnome-base/gnome-desktop/gnome-desktop-42.0-r400.ebuild b/gnome-base/gnome-desktop/gnome-desktop-42.0-r400.ebuild index 3b63a89f7c9a..f6e75723a277 100644 --- a/gnome-base/gnome-desktop/gnome-desktop-42.0-r400.ebuild +++ b/gnome-base/gnome-desktop/gnome-desktop-42.0-r400.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-desktop/" LICENSE="GPL-2+ LGPL-2+ FDL-1.1+" SLOT="4/1" # subslot = libgnome-desktop-4 soname version IUSE="debug gtk-doc +introspection seccomp systemd udev" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~x86-solaris" COMMON_DEPEND=" >=x11-libs/gdk-pixbuf-2.36.5:2[introspection?] diff --git a/gnome-extra/Manifest.gz b/gnome-extra/Manifest.gz index 3f8cb2b979b4..6505490dc5df 100644 Binary files a/gnome-extra/Manifest.gz and b/gnome-extra/Manifest.gz differ diff --git a/gnome-extra/gnome-clocks/gnome-clocks-42.0.ebuild b/gnome-extra/gnome-clocks/gnome-clocks-42.0.ebuild index 2433248fc543..6c59c7f71b53 100644 --- a/gnome-extra/gnome-clocks/gnome-clocks-42.0.ebuild +++ b/gnome-extra/gnome-clocks/gnome-clocks-42.0.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Clocks" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" RDEPEND=" >=dev-libs/glib-2.68:2 diff --git a/gnome-extra/gnome-contacts/gnome-contacts-42.0.ebuild b/gnome-extra/gnome-contacts/gnome-contacts-42.0.ebuild index aaadfc5e4004..40ca17c34556 100644 --- a/gnome-extra/gnome-contacts/gnome-contacts-42.0.ebuild +++ b/gnome-extra/gnome-contacts/gnome-contacts-42.0.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Design/Apps/Contacts" LICENSE="GPL-2+" SLOT="0" IUSE="telepathy" -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~riscv" VALA_DEPEND=" $(vala_depend) diff --git a/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest b/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest index 255b09d8048e..5246f94822a4 100644 --- a/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest +++ b/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest @@ -1,2 +1,3 @@ DIST gnome-shell-extension-alphabetical-grid-19.0.tar.gz 288661 BLAKE2B b3df5594422f7d5ba249ec5a3eebf178e845fc2f36f838f61c86c0aa1918f9ca7e942a6af358e3f1744ce7f25a507f3e97bac71848cf6c0bac6339139ffd0d3d SHA512 139f1d06ebeef3b76ac84f71190cf77ebc77571ff3b489bb86f578cfa01ce7de47e53798fece93cb6c45bd82cb6b2a425ba255c1485d5b8739da28bd9959fce8 DIST gnome-shell-extension-alphabetical-grid-22.0.tar.gz 208959 BLAKE2B 08ab108c0e51249531950ecdec18cdf9b205c0727aeb3e359fd8fb0a1ca9c0d4afec7c3a54b4ee130bc9b63ad58d6619e2d15d17622ccf68172aed38fcc5b97f SHA512 ae8cc174d5c003debe7e78ff415fbde66b495d93ea7130b2aef459ce42b6e7970c4c14221ec7f5febb3f6d2ff05365b738c92e7bc2357867495185e05a82ffea +DIST gnome-shell-extension-alphabetical-grid-23.0.tar.gz 209076 BLAKE2B 82fd5fdd4d10cb134bd47221d0ecdf651f86e7c77872373a27489aec526df715eedd3d7e4407fc4c53617d14984d2690ff0fe6db5ba3c92dabf13d175f0d7a21 SHA512 6c932216956f421838c608fc8e6426039761e6233305dfb1ea0a0bf6c8afc65632983fed12d3f5a3605ff1ef73f8ebc11715ff47ac7570960ff2361e436760f8 diff --git a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-23.0.ebuild b/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-23.0.ebuild new file mode 100644 index 000000000000..f52096ee48db --- /dev/null +++ b/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-23.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome2-utils + +# Useful specially to prevent +# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4684 +# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3180 +DESCRIPTION="Restore the alphabetical ordering of the app grid" +HOMEPAGE="https://github.com/stuarthayhurst/alphabetical-grid-extension" +SRC_URI="https://github.com/stuarthayhurst/alphabetical-grid-extension/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND=" + app-eselect/eselect-gnome-shell-extensions + >=gnome-base/gnome-shell-3.38 +" +DEPEND="${COMMON_DEPEND}" +BDEPEND="" + +S="${WORKDIR}/alphabetical-grid-extension-${PV}" +extension_uuid="AlphabeticalAppGrid@stuarthayhurst" + +# Tests are only useful for upstream +RESTRICT="test" + +# Not useful for us +src_compile() { :; } + +src_install() { + einstalldocs + mv docs/icon.svg extension || die + cd extension || die + insinto /usr/share/glib-2.0/schemas + doins schemas/*.xml + rm -rf schemas || die + insinto /usr/share/gnome-shell/extensions/"${extension_uuid}" + doins -r * +} + +pkg_preinst() { + gnome2_schemas_savelist +} + +pkg_postinst() { + gnome2_schemas_update + ebegin "Updating list of installed extensions" + eselect gnome-shell-extensions update + eend $? +} + +pkg_postrm() { + gnome2_schemas_update +} diff --git a/gnome-extra/gnome-shell-extension-bluetooth-quick-connect/Manifest b/gnome-extra/gnome-shell-extension-bluetooth-quick-connect/Manifest index 388e2a3767c6..1484ef261ad8 100644 --- a/gnome-extra/gnome-shell-extension-bluetooth-quick-connect/Manifest +++ b/gnome-extra/gnome-shell-extension-bluetooth-quick-connect/Manifest @@ -1,2 +1,3 @@ DIST gnome-shell-extension-bluetooth-quick-connect-26.tar.gz 22163 BLAKE2B 7a0ab7bd1090a1a4f9736b33fd31e26da358212b62c0b9dfb13f4c009faeffc85c294f59e9d91bd21302e9dbc7c00146e5cd2c625ed982ef5e330e70be20f001 SHA512 9f1360a6b1c6f714923277159275aa87ea78a234b58e01d6804e122fd5f4428664c95bbd43c99e54117811676bb26a85658abdc58d4ab60fb6e37ae34877ab6a DIST gnome-shell-extension-bluetooth-quick-connect-27.tar.gz 22088 BLAKE2B 332a2ca33a6635484d43829275ff284f5117f04eeb7e25136ff52ebbb97759a4f04a48b5aa84a44cc7234129f84f71693cbe6febfef9081581a3f986395e7a92 SHA512 b81bd8a978b7ac672f04e3621c3cb195e027e44b15ac3c37f624e9014ccf7f20e5d4e6cebef1ed2607cd141e958d4c25b1663de9bc0b7aa904216b5f66fc6ef2 +DIST gnome-shell-extension-bluetooth-quick-connect-29.tar.gz 22626 BLAKE2B 9bc2e08b9fe04f742431a61a84846b09fea43d7735ad907bcbff0e9f5456f4068dbc999d407152965ba07dcbea609fb2c6f3bf14ab209f40beb65c2dbfc83f33 SHA512 01efe1eb9e2982da9c75119268c3748af5f25ceb21bef8aeffe322429572eae871b148fc92668a211739761f42691731815fd74eaf91870bd14e55f3ee557256 diff --git a/gnome-extra/gnome-shell-extension-bluetooth-quick-connect/gnome-shell-extension-bluetooth-quick-connect-29.ebuild b/gnome-extra/gnome-shell-extension-bluetooth-quick-connect/gnome-shell-extension-bluetooth-quick-connect-29.ebuild new file mode 100644 index 000000000000..a485c63f1867 --- /dev/null +++ b/gnome-extra/gnome-shell-extension-bluetooth-quick-connect/gnome-shell-extension-bluetooth-quick-connect-29.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome2-utils + +DESCRIPTION="Allow to connect bluetooth paired devices from gnome control panel" +HOMEPAGE="https://github.com/bjarosze/gnome-bluetooth-quick-connect" +SRC_URI="https://github.com/bjarosze/gnome-bluetooth-quick-connect/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" +IUSE="" + +RDEPEND=" + net-wireless/bluez + app-eselect/eselect-gnome-shell-extensions + >=gnome-base/gnome-shell-40 +" +DEPEND="${COMMON_DEPEND}" +BDEPEND="" + +S="${WORKDIR}/${P/shell-extension-}" +extension_uuid="bluetooth-quick-connect@bjarosze.gmail.com" + +src_install() { + einstalldocs + insinto /usr/share/glib-2.0/schemas + doins schemas/*.xml + rm -rf README.md LICENSE Makefile schemas || die + insinto /usr/share/gnome-shell/extensions/"${extension_uuid}" + doins -r * + dosym ../../../../../usr/share/glib-2.0/schemas /usr/share/gnome-shell/extensions/"${extension_uuid}"/schemas +} + +pkg_preinst() { + gnome2_schemas_savelist +} + +pkg_postinst() { + gnome2_schemas_update + ebegin "Updating list of installed extensions" + eselect gnome-shell-extensions update + eend $? +} + +pkg_postrm() { + gnome2_schemas_update +} diff --git a/kde-apps/Manifest.gz b/kde-apps/Manifest.gz index 456b6d0be584..2e5fda8a6829 100644 Binary files a/kde-apps/Manifest.gz and b/kde-apps/Manifest.gz differ diff --git a/kde-apps/krfb/krfb-21.12.3-r1.ebuild b/kde-apps/krfb/krfb-21.12.3-r1.ebuild index 6f6a08686ca1..da105bee7778 100644 --- a/kde-apps/krfb/krfb-21.12.3-r1.ebuild +++ b/kde-apps/krfb/krfb-21.12.3-r1.ebuild @@ -61,12 +61,7 @@ DEPEND="${COMMON_DEPEND} RDEPEND="${COMMON_DEPEND} wayland? ( sys-apps/xdg-desktop-portal[screencast] ) " -BDEPEND=" - wayland? ( || ( - >=dev-qt/qtwaylandscanner-${QTMIN}:5 - +Date: Mon, 14 Mar 2022 14:12:17 -0300 +Subject: [PATCH] Remove upper-limits for RunnerManagerTest's timeouts + +Those upper-limits timeouts were not conservative enough for the Continuous Integration environment which can be slow and this test was failing sometimes. + +The upper-limits timing verifications were removed without too much prejudice to the overall test. It should still serve its purpose to guarantee there will be no regression on this functionality. +--- + autotests/runnermanagertest.cpp | 13 ++++++------- + 1 file changed, 6 insertions(+), 7 deletions(-) + +diff --git a/autotests/runnermanagertest.cpp b/autotests/runnermanagertest.cpp +index 02c0985..82bd2a4 100644 +--- a/autotests/runnermanagertest.cpp ++++ b/autotests/runnermanagertest.cpp +@@ -74,8 +74,9 @@ private Q_SLOTS: + // However not yet a matcheschanged, it should be stalled for 250ms + QCOMPARE(spyMatchesChanged.count(), 0); + +- // After 250ms it will emit with empty matches, we wait for that +- QVERIFY(spyMatchesChanged.wait(265)); // 265ms as a margin of safety for 250ms ++ // After 250ms it will emit with empty matches, we wait for that. ++ // We can't put a low upper limit on these wait() calls because the CI environment can be slow. ++ QVERIFY(spyMatchesChanged.wait()); // This should take just a tad longer than 250ms. + + // This should have taken no less than 250ms. It waits for 250s before "giving up" and emitting an empty matches list. + QVERIFY(timer.elapsed() >= 250); +@@ -84,20 +85,18 @@ private Q_SLOTS: + QCOMPARE(spyQueryFinished.count(), 1); // Still the same, query is not done + + // We programmed it to emit the result after 300ms, so we need to wait 50ms more for the next emission +- QVERIFY(spyQueryFinished.wait(100)); // 100ms as a margin of safety for 50ms ++ QVERIFY(spyQueryFinished.wait()); + + // This should have taken at least 300ms total, as we requested via the special query string + QVERIFY(timer.elapsed() >= 300); + +- // RunnerManager::jobDone() should have anticipated the final emission, so it should not have waited the full 250+250 ms. +- QVERIFY(timer.elapsed() <= 330); // This total should be just a tad bigger than 300ms, we put a 10% margin of safety +- ++ // At this point RunnerManager::jobDone() should have anticipated the final emission. + QCOMPARE(spyMatchesChanged.count(), 2); // We had the second matchesChanged emission, now with the query result + QCOMPARE(manager->matches().count(), 1); // The result is here + QCOMPARE(spyQueryFinished.count(), 2); // Will have emited queryFinished, job is done + + // Now we will make sure that RunnerManager::scheduleMatchesChanged() emits matchesChanged instantly +- // if we start a query with an empty string. It will never produce results, stalling is meaninless ++ // if we start a query with an empty string. It will never produce results, stalling is meaningless + manager->launchQuery(""); + QCOMPARE(spyMatchesChanged.count(), 3); // One more, instantly, without stall + QCOMPARE(manager->matches().count(), 0); // Empty results for empty query string +-- +GitLab + diff --git a/kde-frameworks/krunner/files/krunner-5.92.0-increase-runnermanagertest-timeout.patch b/kde-frameworks/krunner/files/krunner-5.92.0-increase-runnermanagertest-timeout.patch new file mode 100644 index 000000000000..7a586598c15e --- /dev/null +++ b/kde-frameworks/krunner/files/krunner-5.92.0-increase-runnermanagertest-timeout.patch @@ -0,0 +1,26 @@ +From c1f589a7cda3a5d47479ab1188716df533ceb8b1 Mon Sep 17 00:00:00 2001 +From: David Faure +Date: Sun, 13 Mar 2022 13:08:26 +0100 +Subject: [PATCH] autotests: urgh, this test is really timing dependent, and + fails if CI is slow + +--- + autotests/runnermanagertest.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/autotests/runnermanagertest.cpp b/autotests/runnermanagertest.cpp +index b9ccbc5..02c0985 100644 +--- a/autotests/runnermanagertest.cpp ++++ b/autotests/runnermanagertest.cpp +@@ -84,7 +84,7 @@ private Q_SLOTS: + QCOMPARE(spyQueryFinished.count(), 1); // Still the same, query is not done + + // We programmed it to emit the result after 300ms, so we need to wait 50ms more for the next emission +- QVERIFY(spyQueryFinished.wait(65)); // 65ms as a margin of safety for 50ms ++ QVERIFY(spyQueryFinished.wait(100)); // 100ms as a margin of safety for 50ms + + // This should have taken at least 300ms total, as we requested via the special query string + QVERIFY(timer.elapsed() >= 300); +-- +GitLab + diff --git a/kde-frameworks/krunner/krunner-5.92.0.ebuild b/kde-frameworks/krunner/krunner-5.92.0.ebuild index 2f9c5b2e8930..61926d0583a6 100644 --- a/kde-frameworks/krunner/krunner-5.92.0.ebuild +++ b/kde-frameworks/krunner/krunner-5.92.0.ebuild @@ -31,6 +31,11 @@ DEPEND=" " RDEPEND="${DEPEND}" +PATCHES=( + "${FILESDIR}/${P}-increase-runnermanagertest-timeout.patch" + "${FILESDIR}/${P}-drop-runnermanagertest-timeouts.patch" +) + src_configure() { local mycmakeargs=( $(cmake_use_find_package activities KF5Activities) @@ -39,9 +44,9 @@ src_configure() { } src_test() { - # requires virtual dbus, otherwise hangs; bugs #630672, #789351 + # requires virtual dbus, otherwise hangs; bugs #630672, #789351, #838502 local myctestargs=( - -E "(dbusrunnertest|runnermanagersinglerunnermodetest)" + -E "(dbusrunnertest|runnermanagersinglerunnermodetest|runnermanagertest)" ) ecm_src_test } diff --git a/kde-frameworks/kwayland/kwayland-5.90.0.ebuild b/kde-frameworks/kwayland/kwayland-5.90.0.ebuild index 9f3cc1c739dd..07ae8574a7a3 100644 --- a/kde-frameworks/kwayland/kwayland-5.90.0.ebuild +++ b/kde-frameworks/kwayland/kwayland-5.90.0.ebuild @@ -32,9 +32,6 @@ DEPEND="${RDEPEND} sys-kernel/linux-headers " BDEPEND=" - || ( - >=dev-qt/qtwaylandscanner-${QTMIN}:5 - =dev-qt/qtwaylandscanner-${QTMIN}:5 >=dev-util/wayland-scanner-1.19.0 " diff --git a/kde-frameworks/kwayland/kwayland-5.92.0.ebuild b/kde-frameworks/kwayland/kwayland-5.92.0.ebuild index b99be2cf1a42..a48dcb79d169 100644 --- a/kde-frameworks/kwayland/kwayland-5.92.0.ebuild +++ b/kde-frameworks/kwayland/kwayland-5.92.0.ebuild @@ -32,9 +32,6 @@ DEPEND="${RDEPEND} sys-kernel/linux-headers " BDEPEND=" - || ( - >=dev-qt/qtwaylandscanner-${QTMIN}:5 - =dev-qt/qtwaylandscanner-${QTMIN}:5 >=dev-util/wayland-scanner-1.19.0 " diff --git a/kde-frameworks/kwayland/kwayland-5.93.0-r1.ebuild b/kde-frameworks/kwayland/kwayland-5.93.0-r1.ebuild index b8ea897904cf..d1168d736615 100644 --- a/kde-frameworks/kwayland/kwayland-5.93.0-r1.ebuild +++ b/kde-frameworks/kwayland/kwayland-5.93.0-r1.ebuild @@ -32,10 +32,7 @@ DEPEND="${RDEPEND} sys-kernel/linux-headers " BDEPEND=" - || ( - >=dev-qt/qtwaylandscanner-${QTMIN}:5 - =dev-qt/qtwaylandscanner-${QTMIN}:5 >=dev-util/wayland-scanner-1.19.0 " diff --git a/kde-plasma/Manifest.gz b/kde-plasma/Manifest.gz index a2959fdd5fb2..a25088397509 100644 Binary files a/kde-plasma/Manifest.gz and b/kde-plasma/Manifest.gz differ diff --git a/kde-plasma/kwayland-integration/kwayland-integration-5.23.5.ebuild b/kde-plasma/kwayland-integration/kwayland-integration-5.23.5.ebuild index 913a35584290..5e4a97832944 100644 --- a/kde-plasma/kwayland-integration/kwayland-integration-5.23.5.ebuild +++ b/kde-plasma/kwayland-integration/kwayland-integration-5.23.5.ebuild @@ -40,9 +40,6 @@ DEPEND=" " RDEPEND="${DEPEND}" BDEPEND=" - || ( - >=dev-qt/qtwaylandscanner-${QTMIN}:5 - =dev-qt/qtwaylandscanner-${QTMIN}:5 virtual/pkgconfig " diff --git a/kde-plasma/kwayland-integration/kwayland-integration-5.24.4.ebuild b/kde-plasma/kwayland-integration/kwayland-integration-5.24.4.ebuild index e635d8fd2e52..84eca0211ad6 100644 --- a/kde-plasma/kwayland-integration/kwayland-integration-5.24.4.ebuild +++ b/kde-plasma/kwayland-integration/kwayland-integration-5.24.4.ebuild @@ -40,9 +40,6 @@ DEPEND=" " RDEPEND="${DEPEND}" BDEPEND=" - || ( - >=dev-qt/qtwaylandscanner-${QTMIN}:5 - =dev-qt/qtwaylandscanner-${QTMIN}:5 virtual/pkgconfig " diff --git a/kde-plasma/kwayland-server/files/kwayland-server-5.24.4-fix-race-in-wp_drm_lease_v1.patch b/kde-plasma/kwayland-server/files/kwayland-server-5.24.4-fix-race-in-wp_drm_lease_v1.patch new file mode 100644 index 000000000000..1799a711b472 --- /dev/null +++ b/kde-plasma/kwayland-server/files/kwayland-server-5.24.4-fix-race-in-wp_drm_lease_v1.patch @@ -0,0 +1,73 @@ +From dc09ce85f00b3a790e2817888067c3826280dd8e Mon Sep 17 00:00:00 2001 +From: Weng Xuetian +Date: Sat, 16 Apr 2022 00:01:12 -0700 +Subject: [PATCH] Fix race in wp_drm_lease_v1. + +Basically this is a well known issue in wayland for globals. If bind +comes after destroyed, it will raise a invalid global error. The common +practice is to delay the destroy of global. Similar technique is also +applied to wl_output. + +CCBUG: 452435 +(cherry picked from commit cdc9dcfb0a1f0445c46ee2cefa114329a2408555) +--- + src/server/drmleasedevice_v1_interface.cpp | 14 +++++--------- + src/server/drmleasedevice_v1_interface_p.h | 2 +- + 2 files changed, 6 insertions(+), 10 deletions(-) + +diff --git a/src/server/drmleasedevice_v1_interface.cpp b/src/server/drmleasedevice_v1_interface.cpp +index bffd22cd..7e338022 100644 +--- a/src/server/drmleasedevice_v1_interface.cpp ++++ b/src/server/drmleasedevice_v1_interface.cpp +@@ -84,10 +84,6 @@ void DrmLeaseDeviceV1InterfacePrivate::remove() + request->connectors.clear(); + } + globalRemove(); +- removed = true; +- if (resourceMap().isEmpty()) { +- delete this; +- } + } + + void DrmLeaseDeviceV1InterfacePrivate::registerConnector(DrmLeaseConnectorV1Interface *connector) +@@ -144,6 +140,9 @@ void DrmLeaseDeviceV1InterfacePrivate::wp_drm_lease_device_v1_release(Resource * + + void DrmLeaseDeviceV1InterfacePrivate::wp_drm_lease_device_v1_bind_resource(Resource *resource) + { ++ if (isGlobalRemoved()) { ++ return; ++ } + if (!hasDrmMaster) { + pendingFds << resource->handle; + return; +@@ -161,12 +160,9 @@ void DrmLeaseDeviceV1InterfacePrivate::wp_drm_lease_device_v1_bind_resource(Reso + } + } + +-void DrmLeaseDeviceV1InterfacePrivate::wp_drm_lease_device_v1_destroy_resource(Resource *resource) ++void DrmLeaseDeviceV1InterfacePrivate::wp_drm_lease_device_v1_destroy_global() + { +- Q_UNUSED(resource) +- if (removed && resourceMap().isEmpty()) { +- delete this; +- } ++ delete this; + } + + +diff --git a/src/server/drmleasedevice_v1_interface_p.h b/src/server/drmleasedevice_v1_interface_p.h +index 4bef36e4..085aac85 100644 +--- a/src/server/drmleasedevice_v1_interface_p.h ++++ b/src/server/drmleasedevice_v1_interface_p.h +@@ -44,7 +44,7 @@ protected: + void wp_drm_lease_device_v1_create_lease_request(Resource *resource, uint32_t id) override; + void wp_drm_lease_device_v1_release(Resource *resource) override; + void wp_drm_lease_device_v1_bind_resource(Resource *resource) override; +- void wp_drm_lease_device_v1_destroy_resource(Resource *resource) override; ++ void wp_drm_lease_device_v1_destroy_global() override; + }; + + class DrmLeaseConnectorV1InterfacePrivate : public QObject, public QtWaylandServer::wp_drm_lease_connector_v1 +-- +GitLab + diff --git a/kde-plasma/kwayland-server/kwayland-server-5.23.5.ebuild b/kde-plasma/kwayland-server/kwayland-server-5.23.5.ebuild index 749ea067790f..a62984a70af7 100644 --- a/kde-plasma/kwayland-server/kwayland-server-5.23.5.ebuild +++ b/kde-plasma/kwayland-server/kwayland-server-5.23.5.ebuild @@ -34,9 +34,6 @@ DEPEND="${RDEPEND} >=dev-libs/wayland-protocols-1.21 " BDEPEND=" - || ( - >=dev-qt/qtwaylandscanner-${QTMIN}:5 - =dev-qt/qtwaylandscanner-${QTMIN}:5 dev-util/wayland-scanner " diff --git a/kde-plasma/kwayland-server/kwayland-server-5.24.4-r1.ebuild b/kde-plasma/kwayland-server/kwayland-server-5.24.4-r2.ebuild similarity index 77% rename from kde-plasma/kwayland-server/kwayland-server-5.24.4-r1.ebuild rename to kde-plasma/kwayland-server/kwayland-server-5.24.4-r2.ebuild index 033b2c03dc1c..5fd1e1c9c476 100644 --- a/kde-plasma/kwayland-server/kwayland-server-5.24.4-r1.ebuild +++ b/kde-plasma/kwayland-server/kwayland-server-5.24.4-r2.ebuild @@ -34,15 +34,13 @@ DEPEND="${RDEPEND} >=dev-libs/wayland-protocols-1.24 " BDEPEND=" - || ( - >=dev-qt/qtwaylandscanner-${QTMIN}:5 - =dev-qt/qtwaylandscanner-${QTMIN}:5 dev-util/wayland-scanner " PATCHES=( "${FILESDIR}"/${P}-fix-layer-shell-reset.patch - "${FILESDIR}"/${P}-guard-subsurface-parent-access.patch # bug 452044 - "${FILESDIR}"/${P}-fix-crash-on-screen-setup-change.patch # bug 452318 + "${FILESDIR}"/${P}-guard-subsurface-parent-access.patch # KDE-bug 452044 + "${FILESDIR}"/${P}-fix-crash-on-screen-setup-change.patch # KDE-bug 452318 + "${FILESDIR}"/${P}-fix-race-in-wp_drm_lease_v1.patch # KDE-bug 452435 ) diff --git a/kde-plasma/kwin/files/kwin-5.24.4-backends-drm-dont-perm-disable-vrr.patch b/kde-plasma/kwin/files/kwin-5.24.4-backends-drm-dont-perm-disable-vrr.patch new file mode 100644 index 000000000000..38d4771c2345 --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.24.4-backends-drm-dont-perm-disable-vrr.patch @@ -0,0 +1,32 @@ +From a5404234dbd26e170acb97789599fbcd705cf6cb Mon Sep 17 00:00:00 2001 +From: Xaver Hugl +Date: Fri, 8 Apr 2022 17:47:09 +0200 +Subject: [PATCH] backends/drm: don't permanently disable VRR when the test + commit fails + +In 5.24, the same code path is used for testing direct scanout, so that +causes false negatives. Generally though, the user setting shouldn't be +touched, it's not really proper feedback for the driver or KWin having +problems. + + +(cherry picked from commit 2ef6215a517e4220f147f5327e7ecdad02762b64) +--- + src/backends/drm/drm_output.cpp | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/src/backends/drm/drm_output.cpp b/src/backends/drm/drm_output.cpp +index bd08631cf7..048803883b 100644 +--- a/src/backends/drm/drm_output.cpp ++++ b/src/backends/drm/drm_output.cpp +@@ -337,7 +337,6 @@ bool DrmOutput::present(const QSharedPointer &buffer, QRegion damaged + m_pipeline->applyPendingChanges(); + } else { + m_pipeline->revertPendingChanges(); +- setVrrPolicy(RenderLoop::VrrPolicy::Never); + } + } + if (m_pipeline->present(buffer)) { +-- +GitLab + diff --git a/kde-plasma/kwin/files/kwin-5.24.4-backends-drm-fetch-immutable-blobs.patch b/kde-plasma/kwin/files/kwin-5.24.4-backends-drm-fetch-immutable-blobs.patch new file mode 100644 index 000000000000..16c7756d33e2 --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.24.4-backends-drm-fetch-immutable-blobs.patch @@ -0,0 +1,214 @@ +From 82c2324b5675ea2d5e3b962f270bda1d186e7326 Mon Sep 17 00:00:00 2001 +From: Xaver Hugl +Date: Mon, 4 Apr 2022 20:19:05 +0200 +Subject: [PATCH] backends/drm: fetch immutable blobs in DrmProperty + +If the blob is fetched while there is no kernel-visible reference to it, +the driver may re-use the blob ID. When DrmProperty is created or updated, +KWin holds a reference on the blob via drmModeObjectProperties, so this +should prevent any possible issues. + +CCBUG: 449285 +--- + src/backends/drm/drm_object_connector.cpp | 13 +++----- + src/backends/drm/drm_object_plane.cpp | 39 +++++++++++------------ + src/backends/drm/drm_property.cpp | 27 +++++++++++++++- + src/backends/drm/drm_property.h | 7 +++- + 4 files changed, 54 insertions(+), 32 deletions(-) + +diff --git a/src/backends/drm/drm_object_connector.cpp b/src/backends/drm/drm_object_connector.cpp +index a0045290df..0cdbd70b4f 100644 +--- a/src/backends/drm/drm_object_connector.cpp ++++ b/src/backends/drm/drm_object_connector.cpp +@@ -337,16 +337,11 @@ bool DrmConnector::updateProperties() + } + + // parse edid +- auto edidProp = getProp(PropertyIndex::Edid); +- if (edidProp) { +- DrmScopedPointer blob(drmModeGetPropertyBlob(gpu()->fd(), edidProp->current())); +- if (blob && blob->data) { +- m_edid = Edid(blob->data, blob->length); +- if (!m_edid.isValid()) { +- qCWarning(KWIN_DRM) << "Couldn't parse EDID for connector" << this; +- } ++ if (const auto edidProp = getProp(PropertyIndex::Edid); edidProp && edidProp->immutableBlob()) { ++ m_edid = Edid(edidProp->immutableBlob()->data, edidProp->immutableBlob()->length); ++ if (!m_edid.isValid()) { ++ qCWarning(KWIN_DRM) << "Couldn't parse EDID for connector" << this; + } +- deleteProp(PropertyIndex::Edid); + } else { + qCDebug(KWIN_DRM) << "Could not find edid for connector" << this; + } +diff --git a/src/backends/drm/drm_object_plane.cpp b/src/backends/drm/drm_object_plane.cpp +index 6967fdd50d..c4dcca96d4 100644 +--- a/src/backends/drm/drm_object_plane.cpp ++++ b/src/backends/drm/drm_object_plane.cpp +@@ -73,29 +73,26 @@ bool DrmPlane::init() + checkSupport(5, Transformation::ReflectY); + + // read formats from blob if available and if modifiers are supported, and from the plane object if not +- if (auto formatProp = getProp(PropertyIndex::In_Formats); formatProp && gpu()->addFB2ModifiersSupported()) { +- DrmScopedPointer propertyBlob(drmModeGetPropertyBlob(gpu()->fd(), formatProp->current())); +- if (propertyBlob && propertyBlob->data) { +- auto blob = static_cast(propertyBlob->data); +- auto modifiers = reinterpret_cast(reinterpret_cast(blob) + blob->modifiers_offset); +- uint32_t *formatarr = reinterpret_cast(reinterpret_cast(blob) + blob->formats_offset); +- +- for (uint32_t f = 0; f < blob->count_formats; f++) { +- auto format = formatarr[f]; +- QVector mods; +- for (uint32_t m = 0; m < blob->count_modifiers; m++) { +- auto modifier = &modifiers[m]; +- // The modifier advertisement blob is partitioned into groups of 64 formats +- if (m < modifier->offset || m > modifier->offset + 63) { +- continue; +- } +- if (!(modifier->formats & (1 << (f - modifier->offset)))) { +- continue; +- } +- mods << modifier->modifier; ++ if (const auto formatProp = getProp(PropertyIndex::In_Formats); formatProp && formatProp->immutableBlob() && gpu()->addFB2ModifiersSupported()) { ++ auto blob = static_cast(formatProp->immutableBlob()->data); ++ auto modifiers = reinterpret_cast(reinterpret_cast(blob) + blob->modifiers_offset); ++ uint32_t *formatarr = reinterpret_cast(reinterpret_cast(blob) + blob->formats_offset); ++ ++ for (uint32_t f = 0; f < blob->count_formats; f++) { ++ auto format = formatarr[f]; ++ QVector mods; ++ for (uint32_t m = 0; m < blob->count_modifiers; m++) { ++ auto modifier = &modifiers[m]; ++ // The modifier advertisement blob is partitioned into groups of 64 formats ++ if (m < modifier->offset || m > modifier->offset + 63) { ++ continue; + } +- m_supportedFormats.insert(format, mods); ++ if (!(modifier->formats & (1 << (f - modifier->offset)))) { ++ continue; ++ } ++ mods << modifier->modifier; + } ++ m_supportedFormats.insert(format, mods); + } + } else { + for (uint32_t i = 0; i < p->count_formats; i++) { +diff --git a/src/backends/drm/drm_property.cpp b/src/backends/drm/drm_property.cpp +index 28af8ec07f..8ab0dc0e5a 100644 +--- a/src/backends/drm/drm_property.cpp ++++ b/src/backends/drm/drm_property.cpp +@@ -24,6 +24,7 @@ DrmProperty::DrmProperty(DrmObject *obj, drmModePropertyRes *prop, uint64_t val, + , m_next(val) + , m_current(val) + , m_immutable(prop->flags & DRM_MODE_PROP_IMMUTABLE) ++ , m_isBlob(prop->flags & DRM_MODE_PROP_BLOB) + , m_obj(obj) + { + if (!enumNames.isEmpty()) { +@@ -35,6 +36,7 @@ DrmProperty::DrmProperty(DrmObject *obj, drmModePropertyRes *prop, uint64_t val, + m_minValue = prop->values[0]; + m_maxValue = prop->values[1]; + } ++ updateBlob(); + } + + DrmProperty::~DrmProperty() = default; +@@ -110,7 +112,10 @@ bool DrmProperty::needsCommit() const + + void DrmProperty::setCurrent(uint64_t value) + { +- m_current = value; ++ if (m_current != value) { ++ updateBlob(); ++ m_current = value; ++ } + } + + uint64_t DrmProperty::current() const +@@ -122,10 +127,12 @@ QVector DrmProperty::enumNames() const + { + return m_enumNames; + } ++ + bool DrmProperty::hasEnum(uint64_t value) const + { + return m_enumMap.contains(value); + } ++ + bool DrmProperty::hasAllEnums() const + { + return m_enumMap.count() == m_enumNames.count(); +@@ -166,4 +173,22 @@ uint64_t DrmProperty::maxValue() const + return m_maxValue; + } + ++void DrmProperty::updateBlob() ++{ ++ if (m_immutable && m_isBlob) { ++ if (m_current != 0) { ++ m_immutableBlob.reset(drmModeGetPropertyBlob(m_obj->gpu()->fd(), m_current)); ++ if (m_immutableBlob && (!m_immutableBlob->data || !m_immutableBlob->length)) { ++ m_immutableBlob.reset(); ++ } ++ } else { ++ m_immutableBlob.reset(); ++ } ++ } ++} ++ ++drmModePropertyBlobRes *DrmProperty::immutableBlob() const ++{ ++ return m_immutableBlob.get(); ++} + } +diff --git a/src/backends/drm/drm_property.h b/src/backends/drm/drm_property.h +index 48bdeafdc2..1ae547f41e 100644 +--- a/src/backends/drm/drm_property.h ++++ b/src/backends/drm/drm_property.h +@@ -9,9 +9,9 @@ + */ + + #pragma once ++#include "drm_pointer.h" + + #include +- + #include + #include + #include +@@ -59,6 +59,7 @@ public: + + void setCurrent(uint64_t value); + uint64_t current() const; ++ drmModePropertyBlobRes *immutableBlob() const; + + uint64_t minValue() const; + uint64_t maxValue() const; +@@ -78,6 +79,8 @@ public: + } + + private: ++ void updateBlob(); ++ + uint32_t m_propId = 0; + QByteArray m_propName; + +@@ -89,6 +92,7 @@ private: + uint64_t m_next = 0; + // the value currently set for or by the kernel + uint64_t m_current = 0; ++ DrmScopedPointer m_immutableBlob; + + uint64_t m_minValue = -1; + uint64_t m_maxValue = -1; +@@ -96,6 +100,7 @@ private: + QMap m_enumMap; + QVector m_enumNames; + const bool m_immutable; ++ const bool m_isBlob; + bool m_legacy = false; + const DrmObject *m_obj; + }; +-- +GitLab + diff --git a/kde-plasma/kwin/files/kwin-5.24.4-dont-send-geom-to-text-input.patch b/kde-plasma/kwin/files/kwin-5.24.4-dont-send-geom-to-text-input.patch new file mode 100644 index 000000000000..acd7bf4149ab --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.24.4-dont-send-geom-to-text-input.patch @@ -0,0 +1,26 @@ +From a35e3075a7aa4616c8930ccd3869dc4cca5d287e Mon Sep 17 00:00:00 2001 +From: Weng Xuetian +Date: Sat, 9 Apr 2022 07:25:44 -0700 +Subject: [PATCH] Do not send overlay geometry to text input. + +(cherry picked from commit 374e94918238f3ddb9d00c542f281d3d8a309efb) +--- + src/inputmethod.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/inputmethod.cpp b/src/inputmethod.cpp +index e7951d9580..5b8e54efbc 100644 +--- a/src/inputmethod.cpp ++++ b/src/inputmethod.cpp +@@ -615,7 +615,7 @@ void InputMethod::updateInputPanelState() + const bool bottomKeyboard = m_inputClient && m_inputClient->mode() != InputPanelV1Client::Overlay && m_inputClient->isShown(); + m_trackedClient->setVirtualKeyboardGeometry(bottomKeyboard ? m_inputClient->inputGeometry() : QRect()); + +- if (m_inputClient) { ++ if (m_inputClient && m_inputClient->mode() != InputPanelV1Client::Overlay) { + overlap = m_trackedClient->frameGeometry() & m_inputClient->inputGeometry(); + overlap.moveTo(m_trackedClient->mapToLocal(overlap.topLeft())); + } +-- +GitLab + diff --git a/kde-plasma/kwin/files/kwin-5.24.4-dont-use-xcb-in-wayland.patch b/kde-plasma/kwin/files/kwin-5.24.4-dont-use-xcb-in-wayland.patch new file mode 100644 index 000000000000..667b91b8dc5c --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.24.4-dont-use-xcb-in-wayland.patch @@ -0,0 +1,41 @@ +From 7a26f93cb579cf6b1cbc1e32790f93be70013157 Mon Sep 17 00:00:00 2001 +From: Xaver Hugl +Date: Tue, 12 Apr 2022 15:45:52 +0200 +Subject: [PATCH] effects/kscreen: don't use xcb on Wayland + +BUG: 450564 +FIXED-IN: 5.24.5 +(cherry picked from commit db3f27336f2172fd70be3411874d9bbeb3db6a24) +--- + src/effects/kscreen/kscreen.cpp | 12 ++++++------ + 1 file changed, 6 insertions(+), 6 deletions(-) + +diff --git a/src/effects/kscreen/kscreen.cpp b/src/effects/kscreen/kscreen.cpp +index 9484399756..0673915aad 100644 +--- a/src/effects/kscreen/kscreen.cpp ++++ b/src/effects/kscreen/kscreen.cpp +@@ -44,15 +44,15 @@ namespace KWin + + KscreenEffect::KscreenEffect() + : Effect() +- , m_atom(effects->announceSupportProperty("_KDE_KWIN_KSCREEN_SUPPORT", this)) ++ , m_atom(effects->waylandDisplay() ? XCB_ATOM_NONE : effects->announceSupportProperty("_KDE_KWIN_KSCREEN_SUPPORT", this)) + { + initConfig(); +- connect(effects, &EffectsHandler::propertyNotify, this, &KscreenEffect::propertyNotify); +- connect(effects, &EffectsHandler::xcbConnectionChanged, this, +- [this] { ++ if (!effects->waylandDisplay()) { ++ connect(effects, &EffectsHandler::propertyNotify, this, &KscreenEffect::propertyNotify); ++ connect(effects, &EffectsHandler::xcbConnectionChanged, this, [this]() { + m_atom = effects->announceSupportProperty(QByteArrayLiteral("_KDE_KWIN_KSCREEN_SUPPORT"), this); +- } +- ); ++ }); ++ } + reconfigure(ReconfigureAll); + + const QList screens = effects->screens(); +-- +GitLab + diff --git a/kde-plasma/kwin/files/kwin-5.24.4-fix-current-VD-always-added.patch b/kde-plasma/kwin/files/kwin-5.24.4-fix-current-VD-always-added.patch new file mode 100644 index 000000000000..195d33b1f3a2 --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.24.4-fix-current-VD-always-added.patch @@ -0,0 +1,50 @@ +From c1d7919ad7cc8a7e55f5b93ec84de63547bc53b9 Mon Sep 17 00:00:00 2001 +From: Ismael Asensio +Date: Fri, 8 Apr 2022 22:53:08 +0200 +Subject: [PATCH] AbstractClient: Fix the current VD being always added to the + plasma interface + +When setting-up the plasma window interface we need to call +`setOnAllDesktops()` after the actual virtual desktops have +been set. + +Otherwise, the current desktop would be always added to the +interface (as if the user were unsetting the "onAllDesktops" +flag) and the plasma interface and KWin can get un-synced, +specially if there are specific window rules. + +BUG: 452171 +FIXED-IN: 5.24.5 + + +(cherry picked from commit 4c8711f121430caa658f9848070e4e25c4a12208) +--- + src/abstract_client.cpp | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/src/abstract_client.cpp b/src/abstract_client.cpp +index 7e8a7eec04..0714b9ac3f 100644 +--- a/src/abstract_client.cpp ++++ b/src/abstract_client.cpp +@@ -1488,7 +1488,6 @@ void AbstractClient::setupWindowManagementInterface() + w->setKeepBelow(keepBelow()); + w->setMaximized(maximizeMode() == KWin::MaximizeFull); + w->setMinimized(isMinimized()); +- w->setOnAllDesktops(isOnAllDesktops()); + w->setDemandsAttention(isDemandingAttention()); + w->setCloseable(isCloseable()); + w->setMaximizeable(isMaximizable()); +@@ -1620,6 +1619,10 @@ void AbstractClient::setupWindowManagementInterface() + for (const auto vd : qAsConst(m_desktops)) { + w->addPlasmaVirtualDesktop(vd->id()); + } ++ // We need to set `OnAllDesktops` after the actual VD list has been added. ++ // Otherwise it will unconditionally add the current desktop to the interface ++ // which may not be the case, for example, when using rules ++ w->setOnAllDesktops(isOnAllDesktops()); + + //Plasma Virtual desktop management + //show/hide when the window enters/exits from desktop +-- +GitLab + diff --git a/kde-plasma/kwin/files/kwin-5.24.4-fix-unlocking-wayland-sessions.patch b/kde-plasma/kwin/files/kwin-5.24.4-fix-unlocking-wayland-sessions.patch new file mode 100644 index 000000000000..9e9a4dabc998 --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.24.4-fix-unlocking-wayland-sessions.patch @@ -0,0 +1,44 @@ +From ee625b2d8acad2ba81693107740a12d8a03863c0 Mon Sep 17 00:00:00 2001 +From: Aleix Pol +Date: Mon, 28 Mar 2022 03:40:12 +0200 +Subject: [PATCH] Fix unlocking wayland sessions + +We were never issuing a repaint which confused thoroughly the +compositor. + +BUG: 447705 +--- + src/wayland_server.cpp | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/src/wayland_server.cpp b/src/wayland_server.cpp +index eb3600f824..9e60787465 100644 +--- a/src/wayland_server.cpp ++++ b/src/wayland_server.cpp +@@ -15,6 +15,7 @@ + #include "inputpanelv1integration.h" + #include "keyboard_input.h" + #include "screens.h" ++#include "scene.h" + #include "layershellv1integration.h" + #include "main.h" + #include "xdgshellintegration.h" +@@ -610,6 +611,7 @@ void WaylandServer::initScreenLocker() + connect(seat, &KWaylandServer::SeatInterface::timestampChanged, + screenLockerApp, &ScreenLocker::KSldApp::userActivity); + } ++ Compositor::self()->scene()->addRepaintFull(); + } + ); + +@@ -627,6 +629,7 @@ void WaylandServer::initScreenLocker() + screenLockerApp, &ScreenLocker::KSldApp::userActivity); + } + ScreenLocker::KSldApp::self()->setWaylandFd(-1); ++ Compositor::self()->scene()->addRepaintFull(); + } + ); + +-- +GitLab + diff --git a/kde-plasma/kwin/files/kwin-5.24.4-waylandserver-lockScreenShown.patch b/kde-plasma/kwin/files/kwin-5.24.4-waylandserver-lockScreenShown.patch new file mode 100644 index 000000000000..4defd5ae5945 --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.24.4-waylandserver-lockScreenShown.patch @@ -0,0 +1,93 @@ +From 9d38f57d84fb9a6f2c4e60f7051f685842f34e0f Mon Sep 17 00:00:00 2001 +From: Xaver Hugl +Date: Mon, 28 Mar 2022 18:08:59 +0200 +Subject: [PATCH] waylandserver: only signal lockScreenShown once it has + actually been shown + +When the system goes to suspend and screen locking for suspend is enabled, +suspend is inhibited until ScreenLocker::KSldApp::self()->lockScreenShown() +gets called, in order to make sure that the lockscreen is shown before the +system goes to standby, and thus also when the system wakes (instead of +potentially sensitive user information). +However, signalling that when the lockscreen gets mapped can't work reliably, +as it's then a matter of timing whether or not KWin actually presents an +image with the lockscreen before suspending. To fix that, this commit replaces +that logic with only calling lockScreenShown once every output actually got a +lockscreen presented. +--- + src/wayland_server.cpp | 25 +++++++++++++++++++++---- + src/wayland_server.h | 10 ++++++++++ + 2 files changed, 31 insertions(+), 4 deletions(-) + +diff --git a/src/wayland_server.cpp b/src/wayland_server.cpp +index c850a1b697..6d5e1206a5 100644 +--- a/src/wayland_server.cpp ++++ b/src/wayland_server.cpp +@@ -213,10 +213,6 @@ KWaylandServer::ClientConnection *WaylandServer::inputMethodConnection() const + + void WaylandServer::registerShellClient(AbstractClient *client) + { +- if (client->isLockScreen()) { +- ScreenLocker::KSldApp::self()->lockScreenShown(); +- } +- + if (client->readyForPainting()) { + Q_EMIT shellClientAdded(client); + } else { +@@ -623,6 +619,8 @@ void WaylandServer::initScreenLocker() + m_screenLockerClientConnection = nullptr; + } + ++ new LockScreenPresentationWatcher(this); ++ + const QVector seatIfaces = m_display->seats(); + for (auto *seat : seatIfaces) { + disconnect(seat, &KWaylandServer::SeatInterface::timestampChanged, +@@ -797,4 +795,23 @@ QString WaylandServer::socketName() const + return QString(); + } + ++WaylandServer::LockScreenPresentationWatcher::LockScreenPresentationWatcher(WaylandServer *server) ++{ ++ connect(server, &WaylandServer::shellClientAdded, this, [this](AbstractClient *client) { ++ if (client->isLockScreen()) { ++ connect(client->output()->renderLoop(), &RenderLoop::framePresented, this, [this, client]() { ++ // only signal lockScreenShown once all outputs have been presented at least once ++ m_signaledOutputs << client->output(); ++ if (m_signaledOutputs.size() == kwinApp()->platform()->enabledOutputs().size()) { ++ ScreenLocker::KSldApp::self()->lockScreenShown(); ++ delete this; ++ } ++ }); ++ } ++ }); ++ QTimer::singleShot(1000, this, [this]() { ++ ScreenLocker::KSldApp::self()->lockScreenShown(); ++ delete this; ++ }); ++} + } +diff --git a/src/wayland_server.h b/src/wayland_server.h +index bf1ba6eee5..58dda9a7a2 100644 +--- a/src/wayland_server.h ++++ b/src/wayland_server.h +@@ -243,6 +243,16 @@ private: + void handleOutputRemoved(AbstractOutput *output); + void handleOutputEnabled(AbstractOutput *output); + void handleOutputDisabled(AbstractOutput *output); ++ ++ class LockScreenPresentationWatcher : public QObject ++ { ++ public: ++ LockScreenPresentationWatcher(WaylandServer *server); ++ ++ private: ++ QSet m_signaledOutputs; ++ }; ++ + KWaylandServer::Display *m_display = nullptr; + KWaylandServer::CompositorInterface *m_compositor = nullptr; + KWaylandServer::SeatInterface *m_seat = nullptr; +-- +GitLab + diff --git a/kde-plasma/kwin/files/kwin-5.24.4-waylandserver-move-LockScreenPresentationWatcher.patch b/kde-plasma/kwin/files/kwin-5.24.4-waylandserver-move-LockScreenPresentationWatcher.patch new file mode 100644 index 000000000000..0607e2ff3030 --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.24.4-waylandserver-move-LockScreenPresentationWatcher.patch @@ -0,0 +1,36 @@ +From 388402c3b1b37d9f72597aae8d6670e8c0edeb14 Mon Sep 17 00:00:00 2001 +From: Xaver Hugl +Date: Wed, 6 Apr 2022 21:08:25 +0200 +Subject: [PATCH] waylandserver: move LockScreenPresentationWatcher to the + correct place + +CCBUG: 452334 +--- + src/wayland_server.cpp | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/wayland_server.cpp b/src/wayland_server.cpp +index 6d5e1206a5..eb3600f824 100644 +--- a/src/wayland_server.cpp ++++ b/src/wayland_server.cpp +@@ -603,6 +603,8 @@ void WaylandServer::initScreenLocker() + } + ScreenLocker::KSldApp::self()->setWaylandFd(clientFd); + ++ new LockScreenPresentationWatcher(this); ++ + const QVector seatIfaces = m_display->seats(); + for (auto *seat : seatIfaces) { + connect(seat, &KWaylandServer::SeatInterface::timestampChanged, +@@ -619,8 +621,6 @@ void WaylandServer::initScreenLocker() + m_screenLockerClientConnection = nullptr; + } + +- new LockScreenPresentationWatcher(this); +- + const QVector seatIfaces = m_display->seats(); + for (auto *seat : seatIfaces) { + disconnect(seat, &KWaylandServer::SeatInterface::timestampChanged, +-- +GitLab + diff --git a/kde-plasma/kwin/files/kwin-5.24.4-xdgactivation-demand-attention.patch b/kde-plasma/kwin/files/kwin-5.24.4-xdgactivation-demand-attention.patch new file mode 100644 index 000000000000..8efa6b637222 --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.24.4-xdgactivation-demand-attention.patch @@ -0,0 +1,32 @@ +From 5390a4978f3a3903ede15ecd94a750b37931fbd2 Mon Sep 17 00:00:00 2001 +From: Aleix Pol +Date: Wed, 6 Apr 2022 00:33:21 +0200 +Subject: [PATCH] xdgactivation: Demand attention when a process fails to + resolve its token + +In xdg_activation_v1, if a process fails to negotiate activation, at +least decorate it as demanding attention. +This will give apps ways to indicate attention is required. It can can also +help detect clients doing weird things. + + +(cherry picked from commit 52035f43b90738e2efb4fd7b482719c1ea458578) +--- + src/xdgactivationv1.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/xdgactivationv1.cpp b/src/xdgactivationv1.cpp +index e2270a3393..97f8575c29 100644 +--- a/src/xdgactivationv1.cpp ++++ b/src/xdgactivationv1.cpp +@@ -76,6 +76,7 @@ void XdgActivationV1Integration::activateSurface(SurfaceInterface *surface, cons + + if (!m_currentActivationToken || m_currentActivationToken->token != token) { + qCDebug(KWIN_CORE) << "Refusing to activate " << client << " (provided token: " << token << ", current token:" << (m_currentActivationToken ? m_currentActivationToken->token : QStringLiteral("null")) << ")"; ++ client->demandAttention(); + return; + } + +-- +GitLab + diff --git a/kde-plasma/kwin/kwin-5.23.5-r1.ebuild b/kde-plasma/kwin/kwin-5.23.5-r1.ebuild index 744aefd646ac..f324a0c619ad 100644 --- a/kde-plasma/kwin/kwin-5.23.5-r1.ebuild +++ b/kde-plasma/kwin/kwin-5.23.5-r1.ebuild @@ -95,12 +95,7 @@ DEPEND="${COMMON_DEPEND} >=dev-libs/wayland-protocols-1.19 ) " -BDEPEND=" - test? ( || ( - >=dev-qt/qtwaylandscanner-${QTMIN}:5 - +Date: Tue, 12 Apr 2022 15:01:15 +0000 +Subject: [PATCH] Folder View: save desktop containment icon positions on a + per-resolution basis + +BUG: 360478 +BUG: 354802 +FIXED-IN: 5.24.5 +(cherry picked from commit 2dca17060c06f85abc365bab9484ee4446d78772) +--- + .../package/contents/ui/FolderView.qml | 15 +-------- + .../package/contents/ui/FolderViewLayer.qml | 32 +++++++++++++++++-- + .../desktop/plugins/folder/positioner.cpp | 1 + + 3 files changed, 31 insertions(+), 17 deletions(-) + +diff --git a/containments/desktop/package/contents/ui/FolderView.qml b/containments/desktop/package/contents/ui/FolderView.qml +index 218a3da77..72ae4903a 100644 +--- a/containments/desktop/package/contents/ui/FolderView.qml ++++ b/containments/desktop/package/contents/ui/FolderView.qml +@@ -30,6 +30,7 @@ FocusScope { + property alias currentIndex: gridView.currentIndex + property alias url: dir.url + property alias status: dir.status ++ property alias perStripe: positioner.perStripe + property alias positions: positioner.positions + property alias errorString: dir.errorString + property alias dragging: dir.dragging +@@ -828,20 +829,6 @@ FocusScope { + } + } + +- onFlowChanged: { +- // FIXME TODO: Preserve positions. +- if (positioner.enabled) { +- positioner.reset(); +- } +- } +- +- onLayoutDirectionChanged: { +- // FIXME TODO: Preserve positions. +- if (positioner.enabled) { +- positioner.reset(); +- } +- } +- + onCurrentIndexChanged: { + positionViewAtIndex(currentIndex, GridView.Contain); + } +diff --git a/containments/desktop/package/contents/ui/FolderViewLayer.qml b/containments/desktop/package/contents/ui/FolderViewLayer.qml +index 3f9b29937..f2044e1b0 100644 +--- a/containments/desktop/package/contents/ui/FolderViewLayer.qml ++++ b/containments/desktop/package/contents/ui/FolderViewLayer.qml +@@ -29,6 +29,8 @@ FocusScope { + property alias overflowing: folderView.overflowing + property alias flow: folderView.flow + ++ property string resolution: Math.round(plasmoid.screenGeometry.width) + "x" + Math.round(plasmoid.screenGeometry.height) ++ + readonly property bool lockedByKiosk: !KAuthorized.authorize("editable_desktop_icons") + + focus: true +@@ -178,6 +180,26 @@ FocusScope { + } + } + ++ function getPositions() { ++ try { ++ var allPositions = JSON.parse(plasmoid.configuration.positions); ++ } catch (err) { ++ var allPositions = {}; ++ allPositions[resolution] = plasmoid.configuration.positions; ++ } ++ return allPositions[resolution] || ""; ++ } ++ ++ function savePositions(positions) { ++ try { ++ var allPositions = JSON.parse(plasmoid.configuration.positions); ++ } catch (err) { ++ var allPositions = {}; ++ } ++ allPositions[resolution] = positions; ++ plasmoid.configuration.positions = JSON.stringify(allPositions, Object.keys(allPositions).sort()); ++ } ++ + Connections { + target: plasmoid.configuration + +@@ -211,7 +233,7 @@ FocusScope { + } + + function onPositionsChanged() { +- folderView.positions = plasmoid.configuration.positions; ++ folderView.positions = getPositions(); + } + } + +@@ -241,12 +263,16 @@ FocusScope { + } + + onPositionsChanged: { +- plasmoid.configuration.positions = folderView.positions; ++ savePositions(folderView.positions); ++ } ++ ++ onPerStripeChanged: { ++ folderView.positions = getPositions(); + } + + Component.onCompleted: { + folderView.sortMode = plasmoid.configuration.sortMode; +- folderView.positions = plasmoid.configuration.positions; ++ folderView.positions = getPositions(); + } + } + +diff --git a/containments/desktop/plugins/folder/positioner.cpp b/containments/desktop/plugins/folder/positioner.cpp +index 859c16754..3b2df8c5a 100644 +--- a/containments/desktop/plugins/folder/positioner.cpp ++++ b/containments/desktop/plugins/folder/positioner.cpp +@@ -854,6 +854,7 @@ void Positioner::applyPositions() + } + + if (pos > m_perStripe) { ++ qDebug() << "Some items did not fit, rearranging"; + name = positions.at(offset); + + if (!sourceIndices.contains(name)) { +-- +GitLab + diff --git a/kde-plasma/plasma-desktop/plasma-desktop-5.24.4-r1.ebuild b/kde-plasma/plasma-desktop/plasma-desktop-5.24.4-r1.ebuild new file mode 100644 index 000000000000..bdd617d2cb0f --- /dev/null +++ b/kde-plasma/plasma-desktop/plasma-desktop-5.24.4-r1.ebuild @@ -0,0 +1,179 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_HANDBOOK="forceoptional" +ECM_TEST="true" +KFMIN=5.90.0 +PVCUT=$(ver_cut 1-3) +QTMIN=5.15.2 +VIRTUALX_REQUIRED="test" +inherit ecm kde.org optfeature + +DESCRIPTION="KDE Plasma desktop" +XORGHDRS="${PN}-override-include-dirs-1" +SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${XORGHDRS}.tar.xz" + +LICENSE="GPL-2" # TODO: CHECK +SLOT="5" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +IUSE="emoji ibus +kaccounts scim +semantic-desktop telemetry" + +COMMON_DEPEND=" + >=dev-qt/qtconcurrent-${QTMIN}:5 + >=dev-qt/qtdbus-${QTMIN}:5 + >=dev-qt/qtdeclarative-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtprintsupport-${QTMIN}:5 + >=dev-qt/qtsql-${QTMIN}:5 + >=dev-qt/qtsvg-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + >=dev-qt/qtx11extras-${QTMIN}:5 + >=dev-qt/qtxml-${QTMIN}:5 + >=kde-frameworks/attica-${KFMIN}:5 + >=kde-frameworks/kactivities-${KFMIN}:5 + >=kde-frameworks/kactivities-stats-${KFMIN}:5 + >=kde-frameworks/karchive-${KFMIN}:5 + >=kde-frameworks/kauth-${KFMIN}:5 + >=kde-frameworks/kbookmarks-${KFMIN}:5 + >=kde-frameworks/kcmutils-${KFMIN}:5 + >=kde-frameworks/kcodecs-${KFMIN}:5 + >=kde-frameworks/kcompletion-${KFMIN}:5 + >=kde-frameworks/kconfig-${KFMIN}:5 + >=kde-frameworks/kconfigwidgets-${KFMIN}:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/kcrash-${KFMIN}:5 + >=kde-frameworks/kdbusaddons-${KFMIN}:5 + >=kde-frameworks/kdeclarative-${KFMIN}:5 + >=kde-frameworks/kded-${KFMIN}:5 + >=kde-frameworks/kdelibs4support-${KFMIN}:5 + >=kde-frameworks/kglobalaccel-${KFMIN}:5 + >=kde-frameworks/kguiaddons-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kiconthemes-${KFMIN}:5 + >=kde-frameworks/kio-${KFMIN}:5 + >=kde-frameworks/kitemmodels-${KFMIN}:5 + >=kde-frameworks/kitemviews-${KFMIN}:5 + >=kde-frameworks/kjobwidgets-${KFMIN}:5 + >=kde-frameworks/knewstuff-${KFMIN}:5 + >=kde-frameworks/knotifications-${KFMIN}:5 + >=kde-frameworks/knotifyconfig-${KFMIN}:5 + >=kde-frameworks/kparts-${KFMIN}:5 + >=kde-frameworks/krunner-${KFMIN}:5 + >=kde-frameworks/kservice-${KFMIN}:5 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 + >=kde-frameworks/kwindowsystem-${KFMIN}:5 + >=kde-frameworks/kxmlgui-${KFMIN}:5 + >=kde-frameworks/plasma-${KFMIN}:5 + >=kde-frameworks/solid-${KFMIN}:5 + >=kde-frameworks/sonnet-${KFMIN}:5 + >=kde-plasma/kwin-${PVCUT}:5 + >=kde-plasma/libksysguard-${PVCUT}:5 + >=kde-plasma/libkworkspace-${PVCUT}:5 + >=kde-plasma/plasma-workspace-${PVCUT}:5 + >=media-libs/phonon-4.11.0 + x11-libs/libX11 + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libxcb[xkb] + x11-libs/libxkbfile + emoji? ( + app-i18n/ibus[emoji] + dev-libs/glib:2 + media-fonts/noto-emoji + ) + ibus? ( + app-i18n/ibus + dev-libs/glib:2 + >=dev-qt/qtx11extras-${QTMIN}:5 + x11-libs/libxcb + x11-libs/xcb-util-keysyms + ) + kaccounts? ( + kde-apps/kaccounts-integration:5 + net-libs/accounts-qt + ) + scim? ( app-i18n/scim ) + semantic-desktop? ( >=kde-frameworks/baloo-${KFMIN}:5 ) + telemetry? ( dev-libs/kuserfeedback:5 ) +" +DEPEND="${COMMON_DEPEND} + dev-libs/boost + x11-base/xorg-proto +" +RDEPEND="${COMMON_DEPEND} + !kde-plasma/user-manager + >=dev-qt/qtgraphicaleffects-${QTMIN}:5 + >=dev-qt/qtquickcontrols2-${QTMIN}:5 + >=kde-frameworks/kirigami-${KFMIN}:5 + >=kde-frameworks/qqc2-desktop-style-${KFMIN}:5 + >=kde-plasma/kde-cli-tools-${PVCUT}:5 + >=kde-plasma/oxygen-${PVCUT}:5 + sys-apps/util-linux + x11-apps/setxkbmap + x11-misc/xdg-user-dirs + kaccounts? ( net-libs/signon-oauth2 ) +" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${WORKDIR}/${XORGHDRS}/override-include-dirs.patch" # downstream patch + "${FILESDIR}/${P}-folderview-icons-per-resolution.patch" # KDE-bug 354802, 360478 +) + +src_prepare() { + ecm_src_prepare + + if ! use ibus; then + sed -e "s/Qt5X11Extras_FOUND AND XCB_XCB_FOUND AND XCB_KEYSYMS_FOUND/false/" \ + -i applets/kimpanel/backend/ibus/CMakeLists.txt || die + fi + + use emoji || cmake_run_in applets/kimpanel/backend/ibus \ + cmake_comment_add_subdirectory emojier + + # TODO: try to get a build switch upstreamed + if ! use scim; then + sed -e "s/^pkg_check_modules.*SCIM/#&/" -i CMakeLists.txt || die + fi +} + +src_configure() { + local mycmakeargs=( + -DCMAKE_DISABLE_FIND_PACKAGE_PackageKitQt5=ON # not packaged + -DEVDEV_INCLUDE_DIRS="${WORKDIR}/${XORGHDRS}"/include + -DXORGLIBINPUT_INCLUDE_DIRS="${WORKDIR}/${XORGHDRS}"/include + -DXORGSERVER_INCLUDE_DIRS="${WORKDIR}/${XORGHDRS}"/include + -DSYNAPTICS_INCLUDE_DIRS="${WORKDIR}/${XORGHDRS}"/include + $(cmake_use_find_package kaccounts AccountsQt5) + $(cmake_use_find_package kaccounts KAccounts) + $(cmake_use_find_package semantic-desktop KF5Baloo) + $(cmake_use_find_package telemetry KUserFeedback) + ) + if ! use emoji && ! use ibus; then + mycmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_GLIB2=ON ) + fi + + ecm_src_configure +} + +src_test() { + # parallel tests fail, foldermodeltest,positionertest hang, bug #646890 + # test_kio_fonts needs D-Bus, bug #634166 + # lookandfeel-kcmTest is unreliable for a long time, bug #607918 + local myctestargs=( + -j1 + -E "(foldermodeltest|positionertest|test_kio_fonts|lookandfeel-kcmTest)" + ) + + ecm_src_test +} + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + optfeature "screen reader support" app-accessibility/orca + fi + ecm_pkg_postinst +} diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.23.5-r2.ebuild b/kde-plasma/plasma-workspace/plasma-workspace-5.23.5-r2.ebuild index d3c17ff48ed8..13be0e401a84 100644 --- a/kde-plasma/plasma-workspace/plasma-workspace-5.23.5-r2.ebuild +++ b/kde-plasma/plasma-workspace/plasma-workspace-5.23.5-r2.ebuild @@ -145,10 +145,7 @@ RDEPEND="${COMMON_DEPEND} ! - + + rtgiskard@gmail.com diff --git a/media-gfx/Manifest.gz b/media-gfx/Manifest.gz index 296f57146786..e7d529f47ca4 100644 Binary files a/media-gfx/Manifest.gz and b/media-gfx/Manifest.gz differ diff --git a/media-gfx/freecad/freecad-0.19.4.ebuild b/media-gfx/freecad/freecad-0.19.4-r1.ebuild similarity index 99% rename from media-gfx/freecad/freecad-0.19.4.ebuild rename to media-gfx/freecad/freecad-0.19.4-r1.ebuild index fb3ed461c41c..44b0a46fcd71 100644 --- a/media-gfx/freecad/freecad-0.19.4.ebuild +++ b/media-gfx/freecad/freecad-0.19.4-r1.ebuild @@ -267,6 +267,7 @@ src_install() { if ! use headless; then dosym -r /usr/$(get_libdir)/${PN}/bin/FreeCAD /usr/bin/freecad + mv "${ED}"/usr/$(get_libdir)/${PN}/share/* "${ED}"/usr/share || die "failed to move shared resources" fi dosym -r /usr/$(get_libdir)/${PN}/bin/FreeCADCmd /usr/bin/freecadcmd diff --git a/media-gfx/gnome-font-viewer/gnome-font-viewer-42.0.ebuild b/media-gfx/gnome-font-viewer/gnome-font-viewer-42.0.ebuild index 13695ffc5105..67e115276727 100644 --- a/media-gfx/gnome-font-viewer/gnome-font-viewer-42.0.ebuild +++ b/media-gfx/gnome-font-viewer/gnome-font-viewer-42.0.ebuild @@ -9,7 +9,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-font-viewer" LICENSE="GPL-2+ LGPL-2.1+" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" DEPEND=" >=dev-libs/glib-2.56.0:2 diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index 9fe024deb7e6..ead96296f998 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/amdgpu-pro-vulkan/metadata.xml b/media-libs/amdgpu-pro-vulkan/metadata.xml index 03e31d9fc34c..6d07c8aa6259 100644 --- a/media-libs/amdgpu-pro-vulkan/metadata.xml +++ b/media-libs/amdgpu-pro-vulkan/metadata.xml @@ -1,5 +1,5 @@ - + Adel Kara Slimane diff --git a/media-libs/amf-headers/metadata.xml b/media-libs/amf-headers/metadata.xml index 2e81ecdb16ab..4c80ed580014 100644 --- a/media-libs/amf-headers/metadata.xml +++ b/media-libs/amf-headers/metadata.xml @@ -1,5 +1,5 @@ - + Adel Kara Slimane diff --git a/media-libs/harfbuzz/harfbuzz-3.4.0-r1.ebuild b/media-libs/harfbuzz/harfbuzz-3.4.0-r1.ebuild index 68b9e0f0ae42..48db1225bda6 100644 --- a/media-libs/harfbuzz/harfbuzz-3.4.0-r1.ebuild +++ b/media-libs/harfbuzz/harfbuzz-3.4.0-r1.ebuild @@ -15,7 +15,7 @@ if [[ ${PV} = 9999 ]] ; then inherit git-r3 else SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi LICENSE="Old-MIT ISC icu" diff --git a/media-libs/lcms/lcms-2.13.1.ebuild b/media-libs/lcms/lcms-2.13.1.ebuild index d1f7d6df39a5..915f7d934e27 100644 --- a/media-libs/lcms/lcms-2.13.1.ebuild +++ b/media-libs/lcms/lcms-2.13.1.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}/lcms2-${PV}" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="doc jpeg static-libs test +threads tiff zlib" REQUIRED_USE="tiff? ( zlib )" diff --git a/media-libs/libavif/Manifest b/media-libs/libavif/Manifest index 343db8559ca7..d5266f05d564 100644 --- a/media-libs/libavif/Manifest +++ b/media-libs/libavif/Manifest @@ -1 +1,2 @@ +DIST libavif-0.10.1.tar.gz 2085698 BLAKE2B 5be3f9adf7e0a5747e42c90ce2768eba90053c821805cc8e39915d6cbc4cd42554b1473118b41eb25010d20a2b5a3c141b9cbd6ff55c46abd79eb97cdee6b0e5 SHA512 2f6f248c56c983761149d3c201fc2a2ea5072a32516578a7fdb2c66e3cd22491540f400e23581f873b15454250eeec8d433924ae2c1de9371b7924a5d82bef6b DIST libavif-0.9.3.tar.gz 2000521 BLAKE2B b9dbaf01e58058a1ab9191081242a0f669b714d319075b6330963bc8ae31f576fb77b108de4745125eb42d39682e74a3174d062a029ccb765b3030f4092a96b8 SHA512 8e95666c784d1badc7e18d27a7c21cae3b8ef3b8da9a762eb8f7216d77fba29b9ca309c01d13bcf4890e03c6bc335ba4baf3f5877396bd0584be9ea60018daa7 diff --git a/media-libs/libavif/libavif-0.10.1.ebuild b/media-libs/libavif/libavif-0.10.1.ebuild new file mode 100644 index 000000000000..0b126b8eea65 --- /dev/null +++ b/media-libs/libavif/libavif-0.10.1.ebuild @@ -0,0 +1,104 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake-multilib gnome2-utils + +DESCRIPTION="Library for encoding and decoding .avif files" +HOMEPAGE="https://github.com/AOMediaCodec/libavif" +SRC_URI="https://github.com/AOMediaCodec/libavif/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +# See bug #822336 re subslot +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +IUSE="+aom dav1d examples extras gdk-pixbuf rav1e svt-av1" + +REQUIRED_USE="|| ( aom dav1d )" + +DEPEND="media-libs/libpng[${MULTILIB_USEDEP}] + sys-libs/zlib[${MULTILIB_USEDEP}] + virtual/jpeg[${MULTILIB_USEDEP}] + aom? ( >=media-libs/libaom-3.3.0:=[${MULTILIB_USEDEP}] ) + dav1d? ( >=media-libs/dav1d-1.0.0:=[${MULTILIB_USEDEP}] ) + gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}] ) + rav1e? ( >=media-video/rav1e-0.5.1[capi] ) + svt-av1? ( >=media-libs/svt-av1-0.9.1 )" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +multilib_src_configure() { + local mycmakeargs=( + -DBUILD_SHARED_LIBS=ON + -DAVIF_CODEC_AOM=$(usex aom ON OFF) + -DAVIF_CODEC_DAV1D=$(usex dav1d ON OFF) + -DAVIF_CODEC_LIBGAV1=OFF + + # Use system libraries. + -DAVIF_LOCAL_ZLIBPNG=OFF + -DAVIF_LOCAL_JPEG=OFF + + -DAVIF_BUILD_GDK_PIXBUF=$(usex gdk-pixbuf ON OFF) + + -DAVIF_ENABLE_WERROR=OFF + ) + + if multilib_is_native_abi; then + mycmakeargs+=( + -DAVIF_CODEC_RAV1E=$(usex rav1e ON OFF) + -DAVIF_CODEC_SVT=$(usex svt-av1 ON OFF) + + -DAVIF_BUILD_EXAMPLES=$(usex examples ON OFF) + -DAVIF_BUILD_APPS=$(usex extras ON OFF) + -DAVIF_BUILD_TESTS=$(usex extras ON OFF) + ) + else + mycmakeargs+=( + -DAVIF_CODEC_RAV1E=OFF + -DAVIF_CODEC_SVT=OFF + + -DAVIF_BUILD_EXAMPLES=OFF + -DAVIF_BUILD_APPS=OFF + -DAVIF_BUILD_TESTS=OFF + ) + + if ! use aom ; then + if use rav1e || use svt-av1 ; then + ewarn "libavif on ${MULTILIB_ABI_FLAG} will work in read-only mode." + ewarn "Support for rav1e and/or svt-av1 is is not available on ${MULTILIB_ABI_FLAG}" + ewarn "Enable aom flag for full support on ${MULTILIB_ABI_FLAG}" + fi + fi + fi + + cmake_src_configure +} + +pkg_preinst() { + if use gdk-pixbuf ; then + gnome2_gdk_pixbuf_savelist + fi +} + +pkg_postinst() { + if ! use aom && ! use rav1e && ! use svt-av1 ; then + ewarn "No AV1 encoder is set," + ewarn "libavif will work in read-only mode." + ewarn "Enable aom, rav1e or svt-av1 flag if you want to save .AVIF files." + fi + + if use gdk-pixbuf ; then + # causes segfault if set, see bug 375615 + unset __GL_NO_DSO_FINALIZER + multilib_foreach_abi gnome2_gdk_pixbuf_update + fi +} + +pkg_postrm() { + if use gdk-pixbuf ; then + # causes segfault if set, see bug 375615 + unset __GL_NO_DSO_FINALIZER + multilib_foreach_abi gnome2_gdk_pixbuf_update + fi +} diff --git a/media-libs/libavif/libavif-9999.ebuild b/media-libs/libavif/libavif-9999.ebuild index 80ef7d093431..1caa84d6e040 100644 --- a/media-libs/libavif/libavif-9999.ebuild +++ b/media-libs/libavif/libavif-9999.ebuild @@ -21,11 +21,11 @@ REQUIRED_USE="|| ( aom dav1d )" DEPEND="media-libs/libpng[${MULTILIB_USEDEP}] sys-libs/zlib[${MULTILIB_USEDEP}] virtual/jpeg[${MULTILIB_USEDEP}] - aom? ( >=media-libs/libaom-3.1.2:=[${MULTILIB_USEDEP}] ) - dav1d? ( media-libs/dav1d:=[${MULTILIB_USEDEP}] ) + aom? ( >=media-libs/libaom-3.3.0:=[${MULTILIB_USEDEP}] ) + dav1d? ( >=media-libs/dav1d-1.0.0:=[${MULTILIB_USEDEP}] ) gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}] ) - rav1e? ( media-video/rav1e[capi] ) - svt-av1? ( >=media-libs/svt-av1-0.8.6 )" + rav1e? ( >=media-video/rav1e-0.5.1[capi] ) + svt-av1? ( >=media-libs/svt-av1-0.9.1 )" RDEPEND="${DEPEND}" BDEPEND="virtual/pkgconfig" diff --git a/media-libs/libjxl/metadata.xml b/media-libs/libjxl/metadata.xml index fe211671a1a3..f39fa860738c 100644 --- a/media-libs/libjxl/metadata.xml +++ b/media-libs/libjxl/metadata.xml @@ -1,5 +1,5 @@ - + dnovomesky@gmail.com diff --git a/media-libs/libvmaf/libvmaf-2.3.0-r1.ebuild b/media-libs/libvmaf/libvmaf-2.3.0-r2.ebuild similarity index 66% rename from media-libs/libvmaf/libvmaf-2.3.0-r1.ebuild rename to media-libs/libvmaf/libvmaf-2.3.0-r2.ebuild index d83062357877..9276f49b516c 100644 --- a/media-libs/libvmaf/libvmaf-2.3.0-r1.ebuild +++ b/media-libs/libvmaf/libvmaf-2.3.0-r2.ebuild @@ -20,20 +20,33 @@ fi LICENSE="BSD-2-with-patent" SLOT="0" +IUSE="+embed-models test" + +RESTRICT="!test? ( test )" BDEPEND=" dev-lang/nasm - app-editors/vim-core + embed-models? ( app-editors/vim-core ) " -# The app-editors/vim-core dep is needed to embed models within the library -# could be made into a useflag if someones express the need for it -# see https://github.com/Netflix/vmaf/blob/master/libvmaf/meson_options.txt#L21 RDEPEND="${BDEPEND}" S="${WORKDIR}/vmaf-${PV}" +src_prepare() { + default + + # Workaround for https://bugs.gentoo.org/837221 + # The paths in the tests are hard coded to look for the model folder as "../../model" + sed -i "s|\"../../model|\"../vmaf-${PV}/model|g" ${S}/libvmaf/test/* || die +} + multilib_src_configure() { + local emesonargs=( + $(meson_use embed-models built_in_models) + $(meson_use test enable_tests) + ) + EMESON_SOURCE="${S}/libvmaf" meson_src_configure } diff --git a/media-libs/libvmaf/metadata.xml b/media-libs/libvmaf/metadata.xml index fe7546eb5ac1..01039a20cb19 100644 --- a/media-libs/libvmaf/metadata.xml +++ b/media-libs/libvmaf/metadata.xml @@ -1,5 +1,5 @@ - + adel.ks@zegrapher.com @@ -16,4 +16,7 @@ Netflix/vmaf https://github.com/Netflix/vmaf/issues + + Compile default vmaf models into the library (needs app-editors/vim-core) + diff --git a/media-libs/libvpx/metadata.xml b/media-libs/libvpx/metadata.xml index 994223d7cd1f..fd4d8b9106d1 100644 --- a/media-libs/libvpx/metadata.xml +++ b/media-libs/libvpx/metadata.xml @@ -11,7 +11,6 @@ Enable 10 and 12 bit support for VP9. Enable additional post processing filters - Enable spatial-svc support (experimental) cpe:/a:john_koleszar:libvpx diff --git a/media-libs/opencv/Manifest b/media-libs/opencv/Manifest index 4d32599e1140..cf43ea8cfd9e 100644 --- a/media-libs/opencv/Manifest +++ b/media-libs/opencv/Manifest @@ -1,10 +1,6 @@ DIST opencv-3.4.0-face_landmark_model.tar.gz 63299830 BLAKE2B 58f08cd8c030ee1c8b66e76a561fd625e112face427d001185f8d7c0eaace55adbd8474663021841a1382bfe393a210e64c51223441713cdb9156fac866a845c SHA512 2cd29ce42c08b2966db3ef4a2bc217ab3d07051819757ec6de8f3deea29e28f60abab39f101dba03f766f17018598e411bd687a7eaab0c681c113e10a2de2b23 DIST opencv-3.4.0-res10_300x300-caffeemodel.tar.gz 10036604 BLAKE2B 2a2de48fc420f13e7be146ac88f311901c5b4e409c30e466152e33cae1f8afd87dcb6d758af447c268d90bd67989c8798cd80cab172b10499a6ad5224509dbdf SHA512 96fee9f447d5739bc01a5cab37c453cf7237457dfb5d2bf93ac37f8e5aa557ac222316f449cd58e37e856abe4d8e9d4a7820daaba32f0b22cbcde8e340287d4b DIST opencv-4.4.0_extdep.tar.gz 65334871 BLAKE2B 89fa0083da428e986bb4287295bdbff626d0f84866377413649c1d7ca77338288141f22d2a3c0b64d6d0fc1db98f918c8b33a665274cee4c4aefb44359e4333d SHA512 7b758099ce4abef151051e3e9e1e45b73e4054669d3aa53051e4d4c5f43d9373c9bda5ecbce51f6b024562cb566bd1117505af29ab5f3c36a493f185111a3b4e -DIST opencv-4.5.2.tar.gz 88925795 BLAKE2B 625d3e1d98d4438ebfa165e595fc661658ae1f218d3c50c0b8dfedf936019093c1e61ead86b19c643205f0d77e40c69ea15c3d95454129a23a2c4e17885b65f3 SHA512 07788ec49801bdab963a057871e81fc2b081149c75764810197766d987e54db0d6fd142d2397bbbacefcea6a8be100235ea886ee7e5d5c07ed1156e76249dfec -DIST opencv-4.5.2_contrib.tar.gz 60800680 BLAKE2B d96b3c440090d3ab26f99a3822d1d85581e370dc0fde7cf3a0ff89e79cd598942be7d9bc9f892510f2d66474ceb59c645483a94131ccbbe09f1cf4eeaaa44879 SHA512 72ce91dfefc1c3e12cc8e965d90392cfed6c236daafb512aafc14cdad83242bfa0fc1adea308cd07a5483e010633e2996c3b239b2ce12cea47e6e21c36ed398b -DIST opencv-4.5.4.tar.gz 89724634 BLAKE2B 76ce5ab8182c87e5f9e18faf62f2ee0eb629e4997877c59aa0f6ac334c27d737cf5205f4b85f64cabfdd587a57096fa3241ae6e48cebbd963ec8ad3ebe07ad35 SHA512 39a7af95bc30d427c6df5e5d481469ab1ceea7878a93ae5c119991333e877a88d0a644e17dc6bd316e64b2840e48411a97f1b2397a8000719c5cec32751fa954 -DIST opencv-4.5.4_contrib.tar.gz 61054226 BLAKE2B c553bfc6fd1b5fd17f562b27248ddd4bd946089cd8cce346f152b47d4a8a22faa35ceb9bd501c31901189b884d782fbfec1dc041d69e1b8cc0ac0d5d079e610e SHA512 a48d4b5d764170814d9027fdf50f61bb4a24f0b5a547dded79d06b948f86443f14734efc7bbb708b3870781cafc6bc9e3092d35dac34a81da2bf1740d5f93ff9 DIST opencv-4.5.5.tar.gz 89879893 BLAKE2B 6f2ce34b33132ad544d661417f730e17aedfbe17a22048ad0b8d287970626756c51309410d0fb5bf487af773ff4415d36b6768158ebc3cb963b37bb888ee4ba6 SHA512 4d1783fd78425cc43bb2153446dd634cedd366a49592bccc0c538a40aa161fcf67db8f1b6b68f1ce0b4a93504b3f06f65931709277afb1a1ee9fe963094bca02 DIST opencv-4.5.5_contrib.tar.gz 60563220 BLAKE2B 4a020824688e379f1d127fb834b0008b3cbf78acea4847cb4994e9e0b6ddfeec3f06867967b8546725cf050c1fd0df042a18caff80463ad101cf14dc66daea9a SHA512 8469de524e8e6f4c50a74b8cbec5e4cfc48a63a6dfc787609696099eca40dc02b9dc7a347a014d4416fd4efd66955d3af5f4847f44612312a8362f453e6c2e35 DIST vgg_boostdesc-3.2.0.tar.gz 1867770 BLAKE2B 1fa5b58e73b6fa56ecf8d19af22298f729942ee1369082e173445d09d3de767bf844bad3d2b462efc1199c392f37c88ba49a9996ba8bfd84b4abeba7de94db63 SHA512 4a046aedd639c8eb4b295b0f499e756deb66210ca083f0124c75531e540663367cb58f6d175f66c4713324177036cd89a8869bdab2de8d1736dafc7f00ef9f44 diff --git a/media-libs/opencv/files/opencv-4.5.2-lapack-3.10.patch b/media-libs/opencv/files/opencv-4.5.2-lapack-3.10.patch deleted file mode 100644 index 31e2fc60d121..000000000000 --- a/media-libs/opencv/files/opencv-4.5.2-lapack-3.10.patch +++ /dev/null @@ -1,123 +0,0 @@ -https://bugs.gentoo.org/800539 - ---- a/modules/core/src/hal_internal.cpp -+++ b/modules/core/src/hal_internal.cpp -@@ -163,9 +163,9 @@ - if(n == 1 && b_step == sizeof(fptype)) - { - if(typeid(fptype) == typeid(float)) -- sposv_(L, &m, &n, (float*)a, &lda, (float*)b, &m, &lapackStatus); -+ LAPACK_sposv_(L, &m, &n, (float*)a, &lda, (float*)b, &m, &lapackStatus); - else if(typeid(fptype) == typeid(double)) -- dposv_(L, &m, &n, (double*)a, &lda, (double*)b, &m, &lapackStatus); -+ LAPACK_dposv_(L, &m, &n, (double*)a, &lda, (double*)b, &m, &lapackStatus); - } - else - { -@@ -174,9 +174,9 @@ - transpose(b, ldb, tmpB, m, m, n); - - if(typeid(fptype) == typeid(float)) -- sposv_(L, &m, &n, (float*)a, &lda, (float*)tmpB, &m, &lapackStatus); -+ LAPACK_sposv_(L, &m, &n, (float*)a, &lda, (float*)tmpB, &m, &lapackStatus); - else if(typeid(fptype) == typeid(double)) -- dposv_(L, &m, &n, (double*)a, &lda, (double*)tmpB, &m, &lapackStatus); -+ LAPACK_dposv_(L, &m, &n, (double*)a, &lda, (double*)tmpB, &m, &lapackStatus); - - transpose(tmpB, m, b, ldb, n, m); - delete[] tmpB; -@@ -185,9 +185,9 @@ - else - { - if(typeid(fptype) == typeid(float)) -- spotrf_(L, &m, (float*)a, &lda, &lapackStatus); -+ LAPACK_spotrf_(L, &m, (float*)a, &lda, &lapackStatus); - else if(typeid(fptype) == typeid(double)) -- dpotrf_(L, &m, (double*)a, &lda, &lapackStatus); -+ LAPACK_dpotrf_(L, &m, (double*)a, &lda, &lapackStatus); - } - - if(lapackStatus == 0) *info = true; -@@ -227,17 +227,17 @@ - } - - if(typeid(fptype) == typeid(float)) -- sgesdd_(mode, &m, &n, (float*)a, &lda, (float*)w, (float*)u, &ldu, (float*)vt, &ldv, (float*)&work1, &lwork, iworkBuf, info); -+ LAPACK_sgesdd_(mode, &m, &n, (float*)a, &lda, (float*)w, (float*)u, &ldu, (float*)vt, &ldv, (float*)&work1, &lwork, iworkBuf, info); - else if(typeid(fptype) == typeid(double)) -- dgesdd_(mode, &m, &n, (double*)a, &lda, (double*)w, (double*)u, &ldu, (double*)vt, &ldv, (double*)&work1, &lwork, iworkBuf, info); -+ LAPACK_dgesdd_(mode, &m, &n, (double*)a, &lda, (double*)w, (double*)u, &ldu, (double*)vt, &ldv, (double*)&work1, &lwork, iworkBuf, info); - - lwork = (int)round(work1); //optimal buffer size - fptype* buffer = new fptype[lwork + 1]; - - if(typeid(fptype) == typeid(float)) -- sgesdd_(mode, &m, &n, (float*)a, &lda, (float*)w, (float*)u, &ldu, (float*)vt, &ldv, (float*)buffer, &lwork, iworkBuf, info); -+ LAPACK_sgesdd_(mode, &m, &n, (float*)a, &lda, (float*)w, (float*)u, &ldu, (float*)vt, &ldv, (float*)buffer, &lwork, iworkBuf, info); - else if(typeid(fptype) == typeid(double)) -- dgesdd_(mode, &m, &n, (double*)a, &lda, (double*)w, (double*)u, &ldu, (double*)vt, &ldv, (double*)buffer, &lwork, iworkBuf, info); -+ LAPACK_dgesdd_(mode, &m, &n, (double*)a, &lda, (double*)w, (double*)u, &ldu, (double*)vt, &ldv, (double*)buffer, &lwork, iworkBuf, info); - - if(!(flags & CV_HAL_SVD_NO_UV)) - transpose_square_inplace(vt, ldv, n); -@@ -288,18 +288,18 @@ - if (k == 1 && b_step == sizeof(fptype)) - { - if (typeid(fptype) == typeid(float)) -- sgels_(mode, &m, &n, &k, (float*)tmpA, &ldtmpA, (float*)b, &m, (float*)&work1, &lwork, info); -+ LAPACK_sgels_(mode, &m, &n, &k, (float*)tmpA, &ldtmpA, (float*)b, &m, (float*)&work1, &lwork, info); - else if (typeid(fptype) == typeid(double)) -- dgels_(mode, &m, &n, &k, (double*)tmpA, &ldtmpA, (double*)b, &m, (double*)&work1, &lwork, info); -+ LAPACK_dgels_(mode, &m, &n, &k, (double*)tmpA, &ldtmpA, (double*)b, &m, (double*)&work1, &lwork, info); - - lwork = cvRound(work1); //optimal buffer size - std::vector workBufMemHolder(lwork + 1); - fptype* buffer = &workBufMemHolder.front(); - - if (typeid(fptype) == typeid(float)) -- sgels_(mode, &m, &n, &k, (float*)tmpA, &ldtmpA, (float*)b, &m, (float*)buffer, &lwork, info); -+ LAPACK_sgels_(mode, &m, &n, &k, (float*)tmpA, &ldtmpA, (float*)b, &m, (float*)buffer, &lwork, info); - else if (typeid(fptype) == typeid(double)) -- dgels_(mode, &m, &n, &k, (double*)tmpA, &ldtmpA, (double*)b, &m, (double*)buffer, &lwork, info); -+ LAPACK_dgels_(mode, &m, &n, &k, (double*)tmpA, &ldtmpA, (double*)b, &m, (double*)buffer, &lwork, info); - } - else - { -@@ -309,18 +309,18 @@ - transpose(b, ldb, tmpB, m, m, k); - - if (typeid(fptype) == typeid(float)) -- sgels_(mode, &m, &n, &k, (float*)tmpA, &ldtmpA, (float*)tmpB, &m, (float*)&work1, &lwork, info); -+ LAPACK_sgels_(mode, &m, &n, &k, (float*)tmpA, &ldtmpA, (float*)tmpB, &m, (float*)&work1, &lwork, info); - else if (typeid(fptype) == typeid(double)) -- dgels_(mode, &m, &n, &k, (double*)tmpA, &ldtmpA, (double*)tmpB, &m, (double*)&work1, &lwork, info); -+ LAPACK_dgels_(mode, &m, &n, &k, (double*)tmpA, &ldtmpA, (double*)tmpB, &m, (double*)&work1, &lwork, info); - - lwork = cvRound(work1); //optimal buffer size - std::vector workBufMemHolder(lwork + 1); - fptype* buffer = &workBufMemHolder.front(); - - if (typeid(fptype) == typeid(float)) -- sgels_(mode, &m, &n, &k, (float*)tmpA, &ldtmpA, (float*)tmpB, &m, (float*)buffer, &lwork, info); -+ LAPACK_sgels_(mode, &m, &n, &k, (float*)tmpA, &ldtmpA, (float*)tmpB, &m, (float*)buffer, &lwork, info); - else if (typeid(fptype) == typeid(double)) -- dgels_(mode, &m, &n, &k, (double*)tmpA, &ldtmpA, (double*)tmpB, &m, (double*)buffer, &lwork, info); -+ LAPACK_dgels_(mode, &m, &n, &k, (double*)tmpA, &ldtmpA, (double*)tmpB, &m, (double*)buffer, &lwork, info); - - transpose(tmpB, m, b, ldb, k, m); - } ---- a/cmake/checks/lapack_check.cpp -+++ b/cmake/checks/lapack_check.cpp -@@ -2,9 +2,9 @@ - #include "opencv_lapack.h" - - static char* check_fn1 = (char*)sgesv_; --static char* check_fn2 = (char*)sposv_; --static char* check_fn3 = (char*)spotrf_; --static char* check_fn4 = (char*)sgesdd_; -+static char* check_fn2 = (char*)LAPACK_sposv_; -+static char* check_fn3 = (char*)LAPACK_spotrf_; -+static char* check_fn4 = (char*)LAPACK_sgesdd_; - - int main(int argc, char* argv[]) - { diff --git a/media-libs/opencv/opencv-4.5.2-r3.ebuild b/media-libs/opencv/opencv-4.5.2-r3.ebuild deleted file mode 100644 index 9b3f36c342d0..000000000000 --- a/media-libs/opencv/opencv-4.5.2-r3.ebuild +++ /dev/null @@ -1,573 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) -CMAKE_ECLASS=cmake -inherit flag-o-matic java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs - -DESCRIPTION="A collection of algorithms and sample code for various computer vision problems" -HOMEPAGE="https://opencv.org" -TINY_DNN_PV="1.0.0a3" -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz - dnnsamples? ( https://dev.gentoo.org/~amynka/snap/${PN}-3.4.0-res10_300x300-caffeemodel.tar.gz ) - download? ( https://github.com/rossbridger/opencv-extdep/archive/4.4.0.tar.gz -> ${PN}-4.4.0_extdep.tar.gz ) - contrib? ( - https://github.com/${PN}/${PN}_contrib/archive/${PV}.tar.gz -> ${P}_contrib.tar.gz - contribdnn? ( https://dev.gentoo.org/~amynka/snap/${PN}-3.4.0-face_landmark_model.tar.gz ) - contribxfeatures2d? ( https://dev.gentoo.org/~amynka/snap/vgg_boostdesc-3.2.0.tar.gz ) - )" - -LICENSE="Apache-2.0" -SLOT="0/${PV}" # subslot = libopencv* soname version -KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86" -IUSE="contrib contribcvv contribdnn contribfreetype contribhdf contribovis contribsfm contribxfeatures2d cuda debug dnnsamples download +eigen examples +features2d ffmpeg gdal gflags glog gphoto2 gstreamer gtk3 ieee1394 jpeg jpeg2k lapack lto opencl openexr opengl openmp opencvapps png +python qt5 tesseract testprograms threads tiff vaapi v4l vtk webp xine" - -# The following lines are shamelessly stolen from ffmpeg-9999.ebuild with modifications -ARM_CPU_FEATURES=( - cpu_flags_arm_neon:NEON - cpu_flags_arm_vfpv3:VFPV3 -) -PPC_CPU_FEATURES=( - cpu_flags_ppc_vsx:VSX - cpu_flags_ppc_vsx3:VSX3 -) -X86_CPU_FEATURES_RAW=( - avx:AVX - avx2:AVX2 - avx512f:AVX_512F - f16c:FP16 - fma3:FMA3 - popcnt:POPCNT - sse:SSE - sse2:SSE2 - sse3:SSE3 - ssse3:SSSE3 - sse4_1:SSE4_1 - sse4_2:SSE4_2 -) -X86_CPU_FEATURES=( ${X86_CPU_FEATURES_RAW[@]/#/cpu_flags_x86_} ) -CPU_FEATURES_MAP=( - ${ARM_CPU_FEATURES[@]} - ${PPC_CPU_FEATURES[@]} - ${X86_CPU_FEATURES[@]} -) -IUSE="${IUSE} ${CPU_FEATURES_MAP[@]%:*}" - -# OpenGL needs gtk or Qt installed to activate, otherwise build system -# will silently disable it Wwithout the user knowing, which defeats the -# purpose of the opengl use flag. -# cuda needs contrib, bug #701712 -REQUIRED_USE=" - cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) - cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) - cuda? ( contrib - tesseract? ( opencl ) ) - dnnsamples? ( examples ) - gflags? ( contrib ) - glog? ( contrib ) - contribcvv? ( contrib qt5 ) - contribdnn? ( contrib ) - contribfreetype? ( contrib ) - contribhdf? ( contrib ) - contribovis? ( contrib ) - contribsfm? ( contrib eigen gflags glog ) - contribxfeatures2d? ( contrib download ) - examples? ( contribdnn ) - java? ( python ) - opengl? ( qt5 ) - python? ( ${PYTHON_REQUIRED_USE} ) - tesseract? ( contrib ) - ?? ( gtk3 qt5 )" - -# The following logic is intrinsic in the build system, but we do not enforce -# it on the useflags since this just blocks emerging pointlessly: -# openmp? ( !threads ) - -RDEPEND=" - app-arch/bzip2[${MULTILIB_USEDEP}] - =virtual/jre-1.8:* ) - jpeg? ( virtual/jpeg:0[${MULTILIB_USEDEP}] ) - jpeg2k? ( media-libs/openjpeg:2=[${MULTILIB_USEDEP}] ) - lapack? ( - virtual/cblas - virtual/lapack - ) - opencl? ( virtual/opencl[${MULTILIB_USEDEP}] ) - openexr? ( =media-libs/libv4l-0.8.3[${MULTILIB_USEDEP}] ) - vaapi? ( x11-libs/libva[${MULTILIB_USEDEP}] ) - vtk? ( sci-libs/vtk[rendering] ) - webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] ) - xine? ( media-libs/xine-lib )" -# bug #747949 for eigen (eigen-3.3.8 was broken upstream) -DEPEND="${RDEPEND} - eigen? ( - || ( - >=dev-cpp/eigen-3.3.8-r1:3 - =virtual/jdk-1.8:* )" -BDEPEND="virtual/pkgconfig" - -MULTILIB_WRAPPED_HEADERS=( - # [opencv4] - /usr/include/opencv4/opencv2/cvconfig.h - /usr/include/opencv4/opencv2/opencv_modules.hpp - # [cudev] - /usr/include/opencv4/opencv2/cudaarithm.hpp - /usr/include/opencv4/opencv2/cudabgsegm.hpp - /usr/include/opencv4/opencv2/cudacodec.hpp - /usr/include/opencv4/opencv2/cudafeatures2d.hpp - /usr/include/opencv4/opencv2/cudafilters.hpp - /usr/include/opencv4/opencv2/cudaimgproc.hpp - /usr/include/opencv4/opencv2/cudalegacy.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVBroxOpticalFlow.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVHaarObjectDetection.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCV.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVPyramid.hpp - /usr/include/opencv4/opencv2/cudalegacy/NPP_staging.hpp - /usr/include/opencv4/opencv2/cudaobjdetect.hpp - /usr/include/opencv4/opencv2/cudaoptflow.hpp - /usr/include/opencv4/opencv2/cudastereo.hpp - /usr/include/opencv4/opencv2/cudawarping.hpp - /usr/include/opencv4/opencv2/cudev/block/block.hpp - /usr/include/opencv4/opencv2/cudev/block/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/block/detail/reduce_key_val.hpp - /usr/include/opencv4/opencv2/cudev/block/dynamic_smem.hpp - /usr/include/opencv4/opencv2/cudev/block/reduce.hpp - /usr/include/opencv4/opencv2/cudev/block/scan.hpp - /usr/include/opencv4/opencv2/cudev/block/vec_distance.hpp - /usr/include/opencv4/opencv2/cudev/common.hpp - /usr/include/opencv4/opencv2/cudev/expr/binary_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/binary_op.hpp - /usr/include/opencv4/opencv2/cudev/expr/color.hpp - /usr/include/opencv4/opencv2/cudev/expr/deriv.hpp - /usr/include/opencv4/opencv2/cudev/expr/expr.hpp - /usr/include/opencv4/opencv2/cudev/expr/per_element_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/reduction.hpp - /usr/include/opencv4/opencv2/cudev/expr/unary_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/unary_op.hpp - /usr/include/opencv4/opencv2/cudev/expr/warping.hpp - /usr/include/opencv4/opencv2/cudev/functional/color_cvt.hpp - /usr/include/opencv4/opencv2/cudev/functional/detail/color_cvt.hpp - /usr/include/opencv4/opencv2/cudev/functional/functional.hpp - /usr/include/opencv4/opencv2/cudev/functional/tuple_adapter.hpp - /usr/include/opencv4/opencv2/cudev/grid/copy.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/copy.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/histogram.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/integral.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/minmaxloc.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/pyr_down.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/pyr_up.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce_to_column.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce_to_row.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/split_merge.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/transform.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/transpose.hpp - /usr/include/opencv4/opencv2/cudev/grid/histogram.hpp - /usr/include/opencv4/opencv2/cudev/grid/integral.hpp - /usr/include/opencv4/opencv2/cudev/grid/pyramids.hpp - /usr/include/opencv4/opencv2/cudev/grid/reduce.hpp - /usr/include/opencv4/opencv2/cudev/grid/reduce_to_vec.hpp - /usr/include/opencv4/opencv2/cudev/grid/split_merge.hpp - /usr/include/opencv4/opencv2/cudev/grid/transform.hpp - /usr/include/opencv4/opencv2/cudev/grid/transpose.hpp - /usr/include/opencv4/opencv2/cudev.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/constant.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/deriv.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/detail/gpumat.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/extrapolation.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/glob.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/gpumat.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/interpolation.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/lut.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/mask.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/remap.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/resize.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/texture.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/traits.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/transform.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/warping.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/zip.hpp - /usr/include/opencv4/opencv2/cudev/util/atomic.hpp - /usr/include/opencv4/opencv2/cudev/util/detail/tuple.hpp - /usr/include/opencv4/opencv2/cudev/util/detail/type_traits.hpp - /usr/include/opencv4/opencv2/cudev/util/limits.hpp - /usr/include/opencv4/opencv2/cudev/util/saturate_cast.hpp - /usr/include/opencv4/opencv2/cudev/util/simd_functions.hpp - /usr/include/opencv4/opencv2/cudev/util/tuple.hpp - /usr/include/opencv4/opencv2/cudev/util/type_traits.hpp - /usr/include/opencv4/opencv2/cudev/util/vec_math.hpp - /usr/include/opencv4/opencv2/cudev/util/vec_traits.hpp - /usr/include/opencv4/opencv2/cudev/warp/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/warp/detail/reduce_key_val.hpp - /usr/include/opencv4/opencv2/cudev/warp/reduce.hpp - /usr/include/opencv4/opencv2/cudev/warp/scan.hpp - /usr/include/opencv4/opencv2/cudev/warp/shuffle.hpp - /usr/include/opencv4/opencv2/cudev/warp/warp.hpp - # [contrib_cvv] - /usr/include/opencv4/opencv2/cvv/call_meta_data.hpp - /usr/include/opencv4/opencv2/cvv/cvv.hpp - /usr/include/opencv4/opencv2/cvv/debug_mode.hpp - /usr/include/opencv4/opencv2/cvv/dmatch.hpp - /usr/include/opencv4/opencv2/cvv/filter.hpp - /usr/include/opencv4/opencv2/cvv/final_show.hpp - /usr/include/opencv4/opencv2/cvv.hpp - /usr/include/opencv4/opencv2/cvv/show_image.hpp - # [contrib_hdf] - /usr/include/opencv4/opencv2/hdf/hdf5.hpp - /usr/include/opencv4/opencv2/hdf.hpp - # [contrib_ovis] - /usr/include/opencv4/opencv2/ovis.hpp - # [vtk] - /usr/include/opencv4/opencv2/viz.hpp - /usr/include/opencv4/opencv2/viz/types.hpp - /usr/include/opencv4/opencv2/viz/viz3d.hpp - /usr/include/opencv4/opencv2/viz/vizcore.hpp - /usr/include/opencv4/opencv2/viz/widget_accessor.hpp - /usr/include/opencv4/opencv2/viz/widgets.hpp -) - -PATCHES=( - "${FILESDIR}"/${PN}-3.4.0-disable-download.patch - "${FILESDIR}"/${PN}-3.4.1-cuda-add-relaxed-constexpr.patch - "${FILESDIR}"/${PN}-4.1.2-opencl-license.patch - "${FILESDIR}"/${PN}-4.4.0-disable-native-cpuflag-detect.patch - "${FILESDIR}"/${PN}-4.5.0-link-with-cblas-for-lapack.patch -) - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp - java-pkg-opt-2_pkg_setup -} - -src_prepare() { - # https://bugs.gentoo.org/838274 - replace-flags -O3 -O2 - - cmake_src_prepare - - # remove bundled stuff - rm -r 3rdparty || die "Removing 3rd party components failed" - sed -e '/add_subdirectory(.*3rdparty.*)/ d' \ - -i CMakeLists.txt cmake/*cmake || die - - if use dnnsamples; then - mv "${WORKDIR}/res10_300x300_ssd_iter_140000.caffemodel" "${WORKDIR}/${P}/samples/dnn/" || die - fi - - if use contrib; then - cd "${WORKDIR}/${PN}_contrib-${PV}" || die - if use contribxfeatures2d; then - mv "${WORKDIR}"/*.i "${WORKDIR}/${PN}_contrib-${PV}"/modules/xfeatures2d/src/ || die - fi - fi - - if use download; then - mv "${WORKDIR}/${PN}-extdep-4.4.0" "${WORKDIR}/${P}/.cache/" || die - fi - - java-pkg-opt-2_src_prepare - - # this really belongs in src_prepare() too - JAVA_ANT_ENCODING="iso-8859-1" - # set encoding so even this cmake build will pick it up. - export ANT_OPTS+=" -Dfile.encoding=iso-8859-1" - java-ant-2_src_configure -} - -multilib_src_configure() { - # please dont sort here, order is the same as in CMakeLists.txt - GLOBALCMAKEARGS=( - # Optional 3rd party components - # =================================================== - -DENABLE_DOWNLOAD=$(usex download) - -DWITH_QUIRC=OFF # Do not have dependencies - -DWITH_1394=$(usex ieee1394) - # -DWITH_AVFOUNDATION=OFF # IOS - -DWITH_VTK=$(multilib_native_usex vtk) - -DWITH_EIGEN=$(usex eigen) - -DWITH_VFW=OFF # Video windows support - -DWITH_FFMPEG=$(usex ffmpeg) - -DWITH_GSTREAMER=$(usex gstreamer) - -DWITH_GSTREAMER_0_10=OFF # Don't want this - -DWITH_GTK=$(usex gtk3) - -DWITH_GTK_2_X=OFF # only want gtk3 nowadays - -DWITH_IPP=OFF - # Jasper was removed from tree because of security problems. - # Upstream were/are making progress. We use openjpeg instead. - # bug 734284 - -DWITH_JASPER=OFF - -DWITH_JPEG=$(usex jpeg) - -DWITH_OPENJPEG=$(usex jpeg2k) - -DWITH_WEBP=$(usex webp) - -DWITH_OPENEXR=$(usex openexr) - -DWITH_OPENGL=$(usex opengl) - -DWITH_OPENVX=OFF - -DWITH_OPENNI=OFF # Not packaged - -DWITH_OPENNI2=OFF # Not packaged - -DWITH_PNG=$(usex png) - -DWITH_GDCM=OFF - -DWITH_PVAPI=OFF - -DWITH_GIGEAPI=OFF - -DWITH_ARAVIS=OFF - -DWITH_QT=$(multilib_native_usex qt5 5 OFF) - -DWITH_WIN32UI=OFF # Windows only - # -DWITH_QUICKTIME=OFF - # -DWITH_QTKIT=OFF - -DWITH_TBB=$(usex threads) - -DWITH_OPENMP=$(usex openmp) - -DWITH_CSTRIPES=OFF - -DWITH_PTHREADS_PF=ON - -DWITH_TIFF=$(usex tiff) - -DWITH_UNICAP=OFF # Not packaged - -DWITH_V4L=$(usex v4l) - -DWITH_LIBV4L=$(usex v4l) - # -DWITH_DSHOW=ON # direct show supp - -DWITH_MSMF=OFF - -DWITH_XIMEA=OFF # Windows only - -DWITH_XINE=$(multilib_native_usex xine) - -DWITH_CLP=OFF - -DWITH_OPENCL=$(usex opencl) - -DWITH_OPENCL_SVM=OFF - -DWITH_OPENCLAMDFFT=$(usex opencl) - -DWITH_OPENCLAMDBLAS=$(usex opencl) - -DWITH_DIRECTX=OFF - -DWITH_INTELPERC=OFF - -DWITH_IPP_A=OFF - -DWITH_MATLAB=OFF - -DWITH_VA=$(usex vaapi) - -DWITH_VA_INTEL=$(usex vaapi) - -DWITH_GDAL=$(multilib_native_usex gdal) - -DWITH_GPHOTO2=$(usex gphoto2) - -DWITH_LAPACK=$(multilib_native_usex lapack) - -DWITH_ITT=OFF # 3dparty libs itt_notify - # =================================================== - # CUDA build components: nvidia-cuda-toolkit takes care of GCC version - # =================================================== - -DWITH_CUDA=$(multilib_native_usex cuda) - -DWITH_CUBLAS=$(multilib_native_usex cuda) - -DWITH_CUFFT=$(multilib_native_usex cuda) - -DWITH_NVCUVID=OFF - # -DWITH_NVCUVID=$(usex cuda) - -DCUDA_NPP_LIBRARY_ROOT_DIR=$(usex cuda "${EPREFIX}/opt/cuda" "") - # =================================================== - # OpenCV build components - # =================================================== - -DBUILD_SHARED_LIBS=ON - -DBUILD_JAVA=$(multilib_native_usex java) # Ant needed, no compile flag - -DBUILD_ANDROID_EXAMPLES=OFF - -DBUILD_opencv_apps=$(usex opencvapps ON OFF) - -DBUILD_DOCS=OFF # Doesn't install anyways. - -DBUILD_EXAMPLES=$(multilib_native_usex examples) - -DBUILD_PERF_TESTS=OFF - -DBUILD_TESTS=$(multilib_native_usex testprograms) - -DBUILD_WITH_DEBUG_INFO=$(usex debug) - # -DBUILD_WITH_STATIC_CRT=OFF - -DBUILD_WITH_DYNAMIC_IPP=OFF - -DBUILD_FAT_JAVA_LIB=OFF - # -DBUILD_ANDROID_SERVICE=OFF - -DBUILD_CUDA_STUBS=$(multilib_native_usex cuda) - -DOPENCV_EXTRA_MODULES_PATH=$(usex contrib "${WORKDIR}/opencv_contrib-${PV}/modules" "") - # =================================================== - # OpenCV installation options - # =================================================== - -DINSTALL_CREATE_DISTRIB=OFF - -DINSTALL_C_EXAMPLES=$(multilib_native_usex examples) - -DINSTALL_TESTS=$(multilib_native_usex testprograms) - -DINSTALL_PYTHON_EXAMPLES=$(multilib_native_usex examples) - # -DINSTALL_ANDROID_EXAMPLES=OFF - -DINSTALL_TO_MANGLED_PATHS=OFF - -DOPENCV_GENERATE_PKGCONFIG=ON - # opencv uses both ${CMAKE_INSTALL_LIBDIR} and ${LIB_SUFFIX} - # to set its destination libdir - -DLIB_SUFFIX= - # =================================================== - # OpenCV build options - # =================================================== - -DENABLE_CCACHE=OFF - # bug 733796, but PCH is a risky game in CMake anyway - -DENABLE_PRECOMPILED_HEADERS=OFF - -DENABLE_SOLUTION_FOLDERS=OFF - -DENABLE_PROFILING=OFF - -DENABLE_COVERAGE=OFF - - -DHAVE_opencv_java=$(multilib_native_usex java YES NO) - -DENABLE_NOISY_WARNINGS=OFF - -DOPENCV_WARNINGS_ARE_ERRORS=OFF - -DENABLE_IMPL_COLLECTION=OFF - -DENABLE_INSTRUMENTATION=OFF - -DGENERATE_ABI_DESCRIPTOR=OFF - -DDOWNLOAD_EXTERNAL_TEST_DATA=OFF - -DENABLE_LTO=$(usex lto) - # =================================================== - # things we want to be hard off or not yet figured out - # =================================================== - -DBUILD_PACKAGE=OFF - # =================================================== - # Not building protobuf but update files bug #631418 - # =================================================== - -DBUILD_PROTOBUF=OFF - -DPROTOBUF_UPDATE_FILES=ON - # =================================================== - # things we want to be hard enabled not worth useflag - # =================================================== - -DCMAKE_SKIP_RPATH=ON - -DOPENCV_DOC_INSTALL_PATH= - -DBUILD_opencv_features2d=$(usex features2d ON OFF) - ) - - # ================================================== - # cpu flags, should solve 633900 - #=================================================== - local CPU_BASELINE="" - for i in "${CPU_FEATURES_MAP[@]}" ; do - if [[ ${ABI} != x86 || ${i%:*} != "cpu_flags_x86_avx2" ]]; then # workaround for Bug 747163 - use ${i%:*} && CPU_BASELINE="${CPU_BASELINE}${i#*:};" - fi - done - - GLOBALCMAKEARGS+=( - -DOPENCV_CPU_OPT_IMPLIES_IGNORE=ON - -DCPU_BASELINE=${CPU_BASELINE} - -DCPU_DISPATCH= - ) - - # =================================================== - # OpenCV Contrib Modules - # =================================================== - if use contrib; then - GLOBALCMAKEARGS+=( - -DBUILD_opencv_dnn=$(usex contribdnn ON OFF) - -DTINYDNN_ROOT="${WORKDIR}/tiny-dnn-${TINY_DNN_PV}" - -DBUILD_opencv_dnns_easily_fooled=OFF - -DBUILD_opencv_xfeatures2d=$(usex contribxfeatures2d ON OFF) - -DBUILD_opencv_cvv=$(usex contribcvv ON OFF) - -DBUILD_opencv_hdf=$(multilib_native_usex contribhdf ON OFF) - -DBUILD_opencv_sfm=$(usex contribsfm ON OFF) - -DBUILD_opencv_freetype=$(usex contribfreetype ON OFF) - -DBUILD_opencv_ovis=$(usex contribovis ON OFF) - ) - - if multilib_is_native_abi; then - GLOBALCMAKEARGS+=( - -DCMAKE_DISABLE_FIND_PACKAGE_Tesseract=$(usex !tesseract) - ) - else - GLOBALCMAKEARGS+=( - -DCMAKE_DISABLE_FIND_PACKAGE_Tesseract=ON - ) - fi - fi - - # workaround for bug 413429 - tc-export CC CXX - - local mycmakeargs=( - ${GLOBALCMAKEARGS[@]} - -DPYTHON_EXECUTABLE=OFF - -DINSTALL_PYTHON_EXAMPLES=OFF - -DBUILD_opencv_python2=OFF - -DBUILD_opencv_python3=OFF - ) - - cmake_src_configure - - # Copy face_land_model to ${CMAKE_BINARY_DIR}/${OPENCV_TEST_DATA_INSTALL_PATH} - # TODO patch ocv_download to copy files into destination dirs - if use contribdnn; then - mkdir -p "${BUILD_DIR}"/share/OpenCV/testdata/cv/face/ || die - cp "${WORKDIR}"/face_landmark_model.dat "${BUILD_DIR}"/share/OpenCV/testdata/cv/face/ || die - fi - -} - -python_module_compile() { - local BUILD_DIR="${orig_BUILD_DIR}" - local mycmakeargs=( ${GLOBALCMAKEARGS[@]} ) - - # Set all python variables to load the correct Gentoo paths - mycmakeargs+=( - # python_setup alters PATH and sets this as wrapper - # to the correct interpreter we are building for - -DPYTHON_DEFAULT_EXECUTABLE=${EPYTHON} - -DINSTALL_PYTHON_EXAMPLES=$(usex examples) - ) - - # Regenerate cache file. Can't use rebuild_cache as it won't - # have the Gentoo specific options. - rm CMakeCache.txt || die "rm failed" - cmake_src_configure - cmake_src_compile - cmake_src_install - - # Remove compiled binary so new version compiles - # Avoid conflicts with new module builds as build system doesn't - # really support it. - rm -r modules/python3 || die "rm failed" - - python_optimize "${ED}"/$(python_get_sitedir) -} - -multilib_src_install() { - cmake_src_install - - # Build and install the python modules for all targets - if multilib_is_native_abi && use python; then - local orig_BUILD_DIR="${BUILD_DIR}" - python_foreach_impl python_module_compile - fi -} diff --git a/media-libs/opencv/opencv-4.5.2-r5.ebuild b/media-libs/opencv/opencv-4.5.2-r5.ebuild deleted file mode 100644 index 2b66d2c57956..000000000000 --- a/media-libs/opencv/opencv-4.5.2-r5.ebuild +++ /dev/null @@ -1,574 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9,10} ) -CMAKE_ECLASS=cmake -inherit flag-o-matic java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs - -DESCRIPTION="A collection of algorithms and sample code for various computer vision problems" -HOMEPAGE="https://opencv.org" -TINY_DNN_PV="1.0.0a3" -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz - dnnsamples? ( https://dev.gentoo.org/~amynka/snap/${PN}-3.4.0-res10_300x300-caffeemodel.tar.gz ) - download? ( https://github.com/rossbridger/opencv-extdep/archive/4.4.0.tar.gz -> ${PN}-4.4.0_extdep.tar.gz ) - contrib? ( - https://github.com/${PN}/${PN}_contrib/archive/${PV}.tar.gz -> ${P}_contrib.tar.gz - contribdnn? ( https://dev.gentoo.org/~amynka/snap/${PN}-3.4.0-face_landmark_model.tar.gz ) - contribxfeatures2d? ( https://dev.gentoo.org/~amynka/snap/vgg_boostdesc-3.2.0.tar.gz ) - )" - -LICENSE="Apache-2.0" -SLOT="0/${PV}" # subslot = libopencv* soname version -KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86" -IUSE="contrib contribcvv contribdnn contribfreetype contribhdf contribovis contribsfm contribxfeatures2d cuda debug dnnsamples download +eigen examples +features2d ffmpeg gdal gflags glog gphoto2 gstreamer gtk3 ieee1394 jpeg jpeg2k lapack lto opencl openexr opengl openmp opencvapps png +python qt5 tesseract testprograms threads tiff vaapi v4l vtk webp xine" - -# The following lines are shamelessly stolen from ffmpeg-9999.ebuild with modifications -ARM_CPU_FEATURES=( - cpu_flags_arm_neon:NEON - cpu_flags_arm_vfpv3:VFPV3 -) -PPC_CPU_FEATURES=( - cpu_flags_ppc_vsx:VSX - cpu_flags_ppc_vsx3:VSX3 -) -X86_CPU_FEATURES_RAW=( - avx:AVX - avx2:AVX2 - avx512f:AVX_512F - f16c:FP16 - fma3:FMA3 - popcnt:POPCNT - sse:SSE - sse2:SSE2 - sse3:SSE3 - ssse3:SSSE3 - sse4_1:SSE4_1 - sse4_2:SSE4_2 -) -X86_CPU_FEATURES=( ${X86_CPU_FEATURES_RAW[@]/#/cpu_flags_x86_} ) -CPU_FEATURES_MAP=( - ${ARM_CPU_FEATURES[@]} - ${PPC_CPU_FEATURES[@]} - ${X86_CPU_FEATURES[@]} -) -IUSE="${IUSE} ${CPU_FEATURES_MAP[@]%:*}" - -# OpenGL needs gtk or Qt installed to activate, otherwise build system -# will silently disable it Wwithout the user knowing, which defeats the -# purpose of the opengl use flag. -# cuda needs contrib, bug #701712 -REQUIRED_USE=" - cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) - cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) - cuda? ( contrib - tesseract? ( opencl ) ) - dnnsamples? ( examples ) - gflags? ( contrib ) - glog? ( contrib ) - contribcvv? ( contrib qt5 ) - contribdnn? ( contrib ) - contribfreetype? ( contrib ) - contribhdf? ( contrib ) - contribovis? ( contrib ) - contribsfm? ( contrib eigen gflags glog ) - contribxfeatures2d? ( contrib download ) - examples? ( contribdnn ) - java? ( python ) - opengl? ( qt5 ) - python? ( ${PYTHON_REQUIRED_USE} ) - tesseract? ( contrib ) - ?? ( gtk3 qt5 )" - -# The following logic is intrinsic in the build system, but we do not enforce -# it on the useflags since this just blocks emerging pointlessly: -# openmp? ( !threads ) - -RDEPEND=" - app-arch/bzip2[${MULTILIB_USEDEP}] - =virtual/jre-1.8:* ) - jpeg? ( virtual/jpeg:0[${MULTILIB_USEDEP}] ) - jpeg2k? ( media-libs/openjpeg:2=[${MULTILIB_USEDEP}] ) - lapack? ( - virtual/cblas - >=virtual/lapack-3.10 - ) - opencl? ( virtual/opencl[${MULTILIB_USEDEP}] ) - openexr? ( =media-libs/libv4l-0.8.3[${MULTILIB_USEDEP}] ) - vaapi? ( x11-libs/libva[${MULTILIB_USEDEP}] ) - vtk? ( sci-libs/vtk[rendering] ) - webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] ) - xine? ( media-libs/xine-lib )" -# bug #747949 for eigen (eigen-3.3.8 was broken upstream) -DEPEND="${RDEPEND} - eigen? ( - || ( - >=dev-cpp/eigen-3.3.8-r1:3 - =virtual/jdk-1.8:* )" -BDEPEND="virtual/pkgconfig" - -MULTILIB_WRAPPED_HEADERS=( - # [opencv4] - /usr/include/opencv4/opencv2/cvconfig.h - /usr/include/opencv4/opencv2/opencv_modules.hpp - # [cudev] - /usr/include/opencv4/opencv2/cudaarithm.hpp - /usr/include/opencv4/opencv2/cudabgsegm.hpp - /usr/include/opencv4/opencv2/cudacodec.hpp - /usr/include/opencv4/opencv2/cudafeatures2d.hpp - /usr/include/opencv4/opencv2/cudafilters.hpp - /usr/include/opencv4/opencv2/cudaimgproc.hpp - /usr/include/opencv4/opencv2/cudalegacy.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVBroxOpticalFlow.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVHaarObjectDetection.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCV.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVPyramid.hpp - /usr/include/opencv4/opencv2/cudalegacy/NPP_staging.hpp - /usr/include/opencv4/opencv2/cudaobjdetect.hpp - /usr/include/opencv4/opencv2/cudaoptflow.hpp - /usr/include/opencv4/opencv2/cudastereo.hpp - /usr/include/opencv4/opencv2/cudawarping.hpp - /usr/include/opencv4/opencv2/cudev/block/block.hpp - /usr/include/opencv4/opencv2/cudev/block/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/block/detail/reduce_key_val.hpp - /usr/include/opencv4/opencv2/cudev/block/dynamic_smem.hpp - /usr/include/opencv4/opencv2/cudev/block/reduce.hpp - /usr/include/opencv4/opencv2/cudev/block/scan.hpp - /usr/include/opencv4/opencv2/cudev/block/vec_distance.hpp - /usr/include/opencv4/opencv2/cudev/common.hpp - /usr/include/opencv4/opencv2/cudev/expr/binary_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/binary_op.hpp - /usr/include/opencv4/opencv2/cudev/expr/color.hpp - /usr/include/opencv4/opencv2/cudev/expr/deriv.hpp - /usr/include/opencv4/opencv2/cudev/expr/expr.hpp - /usr/include/opencv4/opencv2/cudev/expr/per_element_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/reduction.hpp - /usr/include/opencv4/opencv2/cudev/expr/unary_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/unary_op.hpp - /usr/include/opencv4/opencv2/cudev/expr/warping.hpp - /usr/include/opencv4/opencv2/cudev/functional/color_cvt.hpp - /usr/include/opencv4/opencv2/cudev/functional/detail/color_cvt.hpp - /usr/include/opencv4/opencv2/cudev/functional/functional.hpp - /usr/include/opencv4/opencv2/cudev/functional/tuple_adapter.hpp - /usr/include/opencv4/opencv2/cudev/grid/copy.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/copy.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/histogram.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/integral.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/minmaxloc.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/pyr_down.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/pyr_up.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce_to_column.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce_to_row.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/split_merge.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/transform.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/transpose.hpp - /usr/include/opencv4/opencv2/cudev/grid/histogram.hpp - /usr/include/opencv4/opencv2/cudev/grid/integral.hpp - /usr/include/opencv4/opencv2/cudev/grid/pyramids.hpp - /usr/include/opencv4/opencv2/cudev/grid/reduce.hpp - /usr/include/opencv4/opencv2/cudev/grid/reduce_to_vec.hpp - /usr/include/opencv4/opencv2/cudev/grid/split_merge.hpp - /usr/include/opencv4/opencv2/cudev/grid/transform.hpp - /usr/include/opencv4/opencv2/cudev/grid/transpose.hpp - /usr/include/opencv4/opencv2/cudev.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/constant.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/deriv.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/detail/gpumat.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/extrapolation.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/glob.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/gpumat.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/interpolation.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/lut.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/mask.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/remap.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/resize.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/texture.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/traits.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/transform.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/warping.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/zip.hpp - /usr/include/opencv4/opencv2/cudev/util/atomic.hpp - /usr/include/opencv4/opencv2/cudev/util/detail/tuple.hpp - /usr/include/opencv4/opencv2/cudev/util/detail/type_traits.hpp - /usr/include/opencv4/opencv2/cudev/util/limits.hpp - /usr/include/opencv4/opencv2/cudev/util/saturate_cast.hpp - /usr/include/opencv4/opencv2/cudev/util/simd_functions.hpp - /usr/include/opencv4/opencv2/cudev/util/tuple.hpp - /usr/include/opencv4/opencv2/cudev/util/type_traits.hpp - /usr/include/opencv4/opencv2/cudev/util/vec_math.hpp - /usr/include/opencv4/opencv2/cudev/util/vec_traits.hpp - /usr/include/opencv4/opencv2/cudev/warp/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/warp/detail/reduce_key_val.hpp - /usr/include/opencv4/opencv2/cudev/warp/reduce.hpp - /usr/include/opencv4/opencv2/cudev/warp/scan.hpp - /usr/include/opencv4/opencv2/cudev/warp/shuffle.hpp - /usr/include/opencv4/opencv2/cudev/warp/warp.hpp - # [contrib_cvv] - /usr/include/opencv4/opencv2/cvv/call_meta_data.hpp - /usr/include/opencv4/opencv2/cvv/cvv.hpp - /usr/include/opencv4/opencv2/cvv/debug_mode.hpp - /usr/include/opencv4/opencv2/cvv/dmatch.hpp - /usr/include/opencv4/opencv2/cvv/filter.hpp - /usr/include/opencv4/opencv2/cvv/final_show.hpp - /usr/include/opencv4/opencv2/cvv.hpp - /usr/include/opencv4/opencv2/cvv/show_image.hpp - # [contrib_hdf] - /usr/include/opencv4/opencv2/hdf/hdf5.hpp - /usr/include/opencv4/opencv2/hdf.hpp - # [contrib_ovis] - /usr/include/opencv4/opencv2/ovis.hpp - # [vtk] - /usr/include/opencv4/opencv2/viz.hpp - /usr/include/opencv4/opencv2/viz/types.hpp - /usr/include/opencv4/opencv2/viz/viz3d.hpp - /usr/include/opencv4/opencv2/viz/vizcore.hpp - /usr/include/opencv4/opencv2/viz/widget_accessor.hpp - /usr/include/opencv4/opencv2/viz/widgets.hpp -) - -PATCHES=( - "${FILESDIR}"/${PN}-3.4.0-disable-download.patch - "${FILESDIR}"/${PN}-3.4.1-cuda-add-relaxed-constexpr.patch - "${FILESDIR}"/${PN}-4.1.2-opencl-license.patch - "${FILESDIR}"/${PN}-4.4.0-disable-native-cpuflag-detect.patch - "${FILESDIR}"/${PN}-4.5.0-link-with-cblas-for-lapack.patch - "${FILESDIR}"/${PN}-4.5.2-lapack-3.10.patch -) - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp - java-pkg-opt-2_pkg_setup -} - -src_prepare() { - # https://bugs.gentoo.org/838274 - replace-flags -O3 -O2 - - cmake_src_prepare - - # remove bundled stuff - rm -r 3rdparty || die "Removing 3rd party components failed" - sed -e '/add_subdirectory(.*3rdparty.*)/ d' \ - -i CMakeLists.txt cmake/*cmake || die - - if use dnnsamples; then - mv "${WORKDIR}/res10_300x300_ssd_iter_140000.caffemodel" "${WORKDIR}/${P}/samples/dnn/" || die - fi - - if use contrib; then - cd "${WORKDIR}/${PN}_contrib-${PV}" || die - if use contribxfeatures2d; then - mv "${WORKDIR}"/*.i "${WORKDIR}/${PN}_contrib-${PV}"/modules/xfeatures2d/src/ || die - fi - fi - - if use download; then - mv "${WORKDIR}/${PN}-extdep-4.4.0" "${WORKDIR}/${P}/.cache/" || die - fi - - java-pkg-opt-2_src_prepare - - # this really belongs in src_prepare() too - JAVA_ANT_ENCODING="iso-8859-1" - # set encoding so even this cmake build will pick it up. - export ANT_OPTS+=" -Dfile.encoding=iso-8859-1" - java-ant-2_src_configure -} - -multilib_src_configure() { - # please dont sort here, order is the same as in CMakeLists.txt - GLOBALCMAKEARGS=( - # Optional 3rd party components - # =================================================== - -DENABLE_DOWNLOAD=$(usex download) - -DWITH_QUIRC=OFF # Do not have dependencies - -DWITH_1394=$(usex ieee1394) - # -DWITH_AVFOUNDATION=OFF # IOS - -DWITH_VTK=$(multilib_native_usex vtk) - -DWITH_EIGEN=$(usex eigen) - -DWITH_VFW=OFF # Video windows support - -DWITH_FFMPEG=$(usex ffmpeg) - -DWITH_GSTREAMER=$(usex gstreamer) - -DWITH_GSTREAMER_0_10=OFF # Don't want this - -DWITH_GTK=$(usex gtk3) - -DWITH_GTK_2_X=OFF # only want gtk3 nowadays - -DWITH_IPP=OFF - # Jasper was removed from tree because of security problems. - # Upstream were/are making progress. We use openjpeg instead. - # bug 734284 - -DWITH_JASPER=OFF - -DWITH_JPEG=$(usex jpeg) - -DWITH_OPENJPEG=$(usex jpeg2k) - -DWITH_WEBP=$(usex webp) - -DWITH_OPENEXR=$(usex openexr) - -DWITH_OPENGL=$(usex opengl) - -DWITH_OPENVX=OFF - -DWITH_OPENNI=OFF # Not packaged - -DWITH_OPENNI2=OFF # Not packaged - -DWITH_PNG=$(usex png) - -DWITH_GDCM=OFF - -DWITH_PVAPI=OFF - -DWITH_GIGEAPI=OFF - -DWITH_ARAVIS=OFF - -DWITH_QT=$(multilib_native_usex qt5 5 OFF) - -DWITH_WIN32UI=OFF # Windows only - # -DWITH_QUICKTIME=OFF - # -DWITH_QTKIT=OFF - -DWITH_TBB=$(usex threads) - -DWITH_OPENMP=$(usex openmp) - -DWITH_CSTRIPES=OFF - -DWITH_PTHREADS_PF=ON - -DWITH_TIFF=$(usex tiff) - -DWITH_UNICAP=OFF # Not packaged - -DWITH_V4L=$(usex v4l) - -DWITH_LIBV4L=$(usex v4l) - # -DWITH_DSHOW=ON # direct show supp - -DWITH_MSMF=OFF - -DWITH_XIMEA=OFF # Windows only - -DWITH_XINE=$(multilib_native_usex xine) - -DWITH_CLP=OFF - -DWITH_OPENCL=$(usex opencl) - -DWITH_OPENCL_SVM=OFF - -DWITH_OPENCLAMDFFT=$(usex opencl) - -DWITH_OPENCLAMDBLAS=$(usex opencl) - -DWITH_DIRECTX=OFF - -DWITH_INTELPERC=OFF - -DWITH_IPP_A=OFF - -DWITH_MATLAB=OFF - -DWITH_VA=$(usex vaapi) - -DWITH_VA_INTEL=$(usex vaapi) - -DWITH_GDAL=$(multilib_native_usex gdal) - -DWITH_GPHOTO2=$(usex gphoto2) - -DWITH_LAPACK=$(multilib_native_usex lapack) - -DWITH_ITT=OFF # 3dparty libs itt_notify - # =================================================== - # CUDA build components: nvidia-cuda-toolkit takes care of GCC version - # =================================================== - -DWITH_CUDA=$(multilib_native_usex cuda) - -DWITH_CUBLAS=$(multilib_native_usex cuda) - -DWITH_CUFFT=$(multilib_native_usex cuda) - -DWITH_NVCUVID=OFF - # -DWITH_NVCUVID=$(usex cuda) - -DCUDA_NPP_LIBRARY_ROOT_DIR=$(usex cuda "${EPREFIX}/opt/cuda" "") - # =================================================== - # OpenCV build components - # =================================================== - -DBUILD_SHARED_LIBS=ON - -DBUILD_JAVA=$(multilib_native_usex java) # Ant needed, no compile flag - -DBUILD_ANDROID_EXAMPLES=OFF - -DBUILD_opencv_apps=$(usex opencvapps ON OFF) - -DBUILD_DOCS=OFF # Doesn't install anyways. - -DBUILD_EXAMPLES=$(multilib_native_usex examples) - -DBUILD_PERF_TESTS=OFF - -DBUILD_TESTS=$(multilib_native_usex testprograms) - -DBUILD_WITH_DEBUG_INFO=$(usex debug) - # -DBUILD_WITH_STATIC_CRT=OFF - -DBUILD_WITH_DYNAMIC_IPP=OFF - -DBUILD_FAT_JAVA_LIB=OFF - # -DBUILD_ANDROID_SERVICE=OFF - -DBUILD_CUDA_STUBS=$(multilib_native_usex cuda) - -DOPENCV_EXTRA_MODULES_PATH=$(usex contrib "${WORKDIR}/opencv_contrib-${PV}/modules" "") - # =================================================== - # OpenCV installation options - # =================================================== - -DINSTALL_CREATE_DISTRIB=OFF - -DINSTALL_C_EXAMPLES=$(multilib_native_usex examples) - -DINSTALL_TESTS=$(multilib_native_usex testprograms) - -DINSTALL_PYTHON_EXAMPLES=$(multilib_native_usex examples) - # -DINSTALL_ANDROID_EXAMPLES=OFF - -DINSTALL_TO_MANGLED_PATHS=OFF - -DOPENCV_GENERATE_PKGCONFIG=ON - # opencv uses both ${CMAKE_INSTALL_LIBDIR} and ${LIB_SUFFIX} - # to set its destination libdir - -DLIB_SUFFIX= - # =================================================== - # OpenCV build options - # =================================================== - -DENABLE_CCACHE=OFF - # bug 733796, but PCH is a risky game in CMake anyway - -DENABLE_PRECOMPILED_HEADERS=OFF - -DENABLE_SOLUTION_FOLDERS=OFF - -DENABLE_PROFILING=OFF - -DENABLE_COVERAGE=OFF - - -DHAVE_opencv_java=$(multilib_native_usex java YES NO) - -DENABLE_NOISY_WARNINGS=OFF - -DOPENCV_WARNINGS_ARE_ERRORS=OFF - -DENABLE_IMPL_COLLECTION=OFF - -DENABLE_INSTRUMENTATION=OFF - -DGENERATE_ABI_DESCRIPTOR=OFF - -DDOWNLOAD_EXTERNAL_TEST_DATA=OFF - -DENABLE_LTO=$(usex lto) - # =================================================== - # things we want to be hard off or not yet figured out - # =================================================== - -DBUILD_PACKAGE=OFF - # =================================================== - # Not building protobuf but update files bug #631418 - # =================================================== - -DBUILD_PROTOBUF=OFF - -DPROTOBUF_UPDATE_FILES=ON - # =================================================== - # things we want to be hard enabled not worth useflag - # =================================================== - -DCMAKE_SKIP_RPATH=ON - -DOPENCV_DOC_INSTALL_PATH= - -DBUILD_opencv_features2d=$(usex features2d ON OFF) - ) - - # ================================================== - # cpu flags, should solve 633900 - #=================================================== - local CPU_BASELINE="" - for i in "${CPU_FEATURES_MAP[@]}" ; do - if [[ ${ABI} != x86 || ${i%:*} != "cpu_flags_x86_avx2" ]]; then # workaround for Bug 747163 - use ${i%:*} && CPU_BASELINE="${CPU_BASELINE}${i#*:};" - fi - done - - GLOBALCMAKEARGS+=( - -DOPENCV_CPU_OPT_IMPLIES_IGNORE=ON - -DCPU_BASELINE=${CPU_BASELINE} - -DCPU_DISPATCH= - ) - - # =================================================== - # OpenCV Contrib Modules - # =================================================== - if use contrib; then - GLOBALCMAKEARGS+=( - -DBUILD_opencv_dnn=$(usex contribdnn ON OFF) - -DTINYDNN_ROOT="${WORKDIR}/tiny-dnn-${TINY_DNN_PV}" - -DBUILD_opencv_dnns_easily_fooled=OFF - -DBUILD_opencv_xfeatures2d=$(usex contribxfeatures2d ON OFF) - -DBUILD_opencv_cvv=$(usex contribcvv ON OFF) - -DBUILD_opencv_hdf=$(multilib_native_usex contribhdf ON OFF) - -DBUILD_opencv_sfm=$(usex contribsfm ON OFF) - -DBUILD_opencv_freetype=$(usex contribfreetype ON OFF) - -DBUILD_opencv_ovis=$(usex contribovis ON OFF) - ) - - if multilib_is_native_abi; then - GLOBALCMAKEARGS+=( - -DCMAKE_DISABLE_FIND_PACKAGE_Tesseract=$(usex !tesseract) - ) - else - GLOBALCMAKEARGS+=( - -DCMAKE_DISABLE_FIND_PACKAGE_Tesseract=ON - ) - fi - fi - - # workaround for bug 413429 - tc-export CC CXX - - local mycmakeargs=( - ${GLOBALCMAKEARGS[@]} - -DPYTHON_EXECUTABLE=OFF - -DINSTALL_PYTHON_EXAMPLES=OFF - -DBUILD_opencv_python2=OFF - -DBUILD_opencv_python3=OFF - ) - - cmake_src_configure - - # Copy face_land_model to ${CMAKE_BINARY_DIR}/${OPENCV_TEST_DATA_INSTALL_PATH} - # TODO patch ocv_download to copy files into destination dirs - if use contribdnn; then - mkdir -p "${BUILD_DIR}"/share/OpenCV/testdata/cv/face/ || die - cp "${WORKDIR}"/face_landmark_model.dat "${BUILD_DIR}"/share/OpenCV/testdata/cv/face/ || die - fi - -} - -python_module_compile() { - local BUILD_DIR="${orig_BUILD_DIR}" - local mycmakeargs=( ${GLOBALCMAKEARGS[@]} ) - - # Set all python variables to load the correct Gentoo paths - mycmakeargs+=( - # python_setup alters PATH and sets this as wrapper - # to the correct interpreter we are building for - -DPYTHON_DEFAULT_EXECUTABLE=${EPYTHON} - -DINSTALL_PYTHON_EXAMPLES=$(usex examples) - ) - - # Regenerate cache file. Can't use rebuild_cache as it won't - # have the Gentoo specific options. - rm CMakeCache.txt || die "rm failed" - cmake_src_configure - cmake_src_compile - cmake_src_install - - # Remove compiled binary so new version compiles - # Avoid conflicts with new module builds as build system doesn't - # really support it. - rm -r modules/python3 || die "rm failed" - - python_optimize "${ED}"/$(python_get_sitedir) -} - -multilib_src_install() { - cmake_src_install - - # Build and install the python modules for all targets - if multilib_is_native_abi && use python; then - local orig_BUILD_DIR="${BUILD_DIR}" - python_foreach_impl python_module_compile - fi -} diff --git a/media-libs/opencv/opencv-4.5.4.ebuild b/media-libs/opencv/opencv-4.5.4.ebuild deleted file mode 100644 index 24070fe0c2e4..000000000000 --- a/media-libs/opencv/opencv-4.5.4.ebuild +++ /dev/null @@ -1,585 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -CMAKE_ECLASS=cmake -inherit flag-o-matic java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs - -DESCRIPTION="A collection of algorithms and sample code for various computer vision problems" -HOMEPAGE="https://opencv.org" -TINY_DNN_PV="1.0.0a3" -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz - dnnsamples? ( https://dev.gentoo.org/~amynka/snap/${PN}-3.4.0-res10_300x300-caffeemodel.tar.gz ) - download? ( https://github.com/rossbridger/opencv-extdep/archive/4.4.0.tar.gz -> ${PN}-4.4.0_extdep.tar.gz ) - contrib? ( - https://github.com/${PN}/${PN}_contrib/archive/${PV}.tar.gz -> ${P}_contrib.tar.gz - contribdnn? ( https://dev.gentoo.org/~amynka/snap/${PN}-3.4.0-face_landmark_model.tar.gz ) - contribxfeatures2d? ( https://dev.gentoo.org/~amynka/snap/vgg_boostdesc-3.2.0.tar.gz ) - )" - -LICENSE="Apache-2.0" -SLOT="0/${PV}" # subslot = libopencv* soname version -KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86" -IUSE="contrib contribcvv contribdnn contribfreetype contribhdf contribovis contribsfm contribxfeatures2d cuda debug dnnsamples download +eigen examples +features2d ffmpeg gdal gflags glog gphoto2 gstreamer gtk3 ieee1394 jpeg jpeg2k lapack lto opencl openexr opengl openmp opencvapps png +python qt5 tesseract testprograms threads tiff vaapi v4l vtk webp xine" - -# The following lines are shamelessly stolen from ffmpeg-9999.ebuild with modifications -ARM_CPU_FEATURES=( - cpu_flags_arm_neon:NEON - cpu_flags_arm_vfpv3:VFPV3 -) -PPC_CPU_FEATURES=( - cpu_flags_ppc_vsx:VSX - cpu_flags_ppc_vsx3:VSX3 -) -X86_CPU_FEATURES_RAW=( - avx:AVX - avx2:AVX2 - avx512f:AVX_512F - f16c:FP16 - fma3:FMA3 - popcnt:POPCNT - sse:SSE - sse2:SSE2 - sse3:SSE3 - ssse3:SSSE3 - sse4_1:SSE4_1 - sse4_2:SSE4_2 -) -X86_CPU_FEATURES=( ${X86_CPU_FEATURES_RAW[@]/#/cpu_flags_x86_} ) -CPU_FEATURES_MAP=( - ${ARM_CPU_FEATURES[@]} - ${PPC_CPU_FEATURES[@]} - ${X86_CPU_FEATURES[@]} -) -IUSE="${IUSE} ${CPU_FEATURES_MAP[@]%:*}" - -# OpenGL needs gtk or Qt installed to activate, otherwise build system -# will silently disable it Wwithout the user knowing, which defeats the -# purpose of the opengl use flag. -# cuda needs contrib, bug #701712 -REQUIRED_USE=" - cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) - cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) - cuda? ( contrib - tesseract? ( opencl ) ) - dnnsamples? ( examples ) - gflags? ( contrib ) - glog? ( contrib ) - contribcvv? ( contrib qt5 ) - contribdnn? ( contrib ) - contribfreetype? ( contrib ) - contribhdf? ( contrib ) - contribovis? ( contrib ) - contribsfm? ( contrib eigen gflags glog ) - contribxfeatures2d? ( contrib download ) - examples? ( contribdnn ) - java? ( python ) - opengl? ( qt5 ) - python? ( ${PYTHON_REQUIRED_USE} ) - tesseract? ( contrib ) - ?? ( gtk3 qt5 )" - -# The following logic is intrinsic in the build system, but we do not enforce -# it on the useflags since this just blocks emerging pointlessly: -# openmp? ( !threads ) - -RDEPEND=" - app-arch/bzip2[${MULTILIB_USEDEP}] - dev-libs/protobuf:=[${MULTILIB_USEDEP}] - sys-libs/zlib[${MULTILIB_USEDEP}] - cuda? ( dev-util/nvidia-cuda-toolkit:0= ) - contribhdf? ( sci-libs/hdf5:= ) - contribfreetype? ( - media-libs/freetype:2[${MULTILIB_USEDEP}] - media-libs/harfbuzz:=[${MULTILIB_USEDEP}] - ) - contribovis? ( dev-games/ogre:0/1.12 ) - ffmpeg? ( media-video/ffmpeg:0=[${MULTILIB_USEDEP}] ) - gdal? ( sci-libs/gdal:= ) - gflags? ( dev-cpp/gflags[${MULTILIB_USEDEP}] ) - glog? ( dev-cpp/glog[${MULTILIB_USEDEP}] ) - gphoto2? ( media-libs/libgphoto2:=[${MULTILIB_USEDEP}] ) - gstreamer? ( - media-libs/gstreamer:1.0[${MULTILIB_USEDEP}] - media-libs/gst-plugins-base:1.0[${MULTILIB_USEDEP}] - ) - gtk3? ( - dev-libs/glib:2[${MULTILIB_USEDEP}] - x11-libs/gtk+:3[${MULTILIB_USEDEP}] - ) - ieee1394? ( - media-libs/libdc1394:=[${MULTILIB_USEDEP}] - sys-libs/libraw1394[${MULTILIB_USEDEP}] - ) - java? ( >=virtual/jre-1.8:* ) - jpeg? ( virtual/jpeg:0[${MULTILIB_USEDEP}] ) - jpeg2k? ( media-libs/openjpeg:2=[${MULTILIB_USEDEP}] ) - lapack? ( - virtual/cblas - >=virtual/lapack-3.10 - ) - opencl? ( virtual/opencl[${MULTILIB_USEDEP}] ) - openexr? ( =media-libs/libv4l-0.8.3[${MULTILIB_USEDEP}] ) - vaapi? ( x11-libs/libva[${MULTILIB_USEDEP}] ) - vtk? ( sci-libs/vtk[rendering] ) - webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] ) - xine? ( media-libs/xine-lib )" -# bug #747949 for eigen (eigen-3.3.8 was broken upstream) -DEPEND="${RDEPEND} - eigen? ( - || ( - >=dev-cpp/eigen-3.3.8-r1:3 - =virtual/jdk-1.8:* )" -BDEPEND="virtual/pkgconfig" - -MULTILIB_WRAPPED_HEADERS=( - # [opencv4] - /usr/include/opencv4/opencv2/cvconfig.h - /usr/include/opencv4/opencv2/opencv_modules.hpp - # [cudev] - /usr/include/opencv4/opencv2/cudaarithm.hpp - /usr/include/opencv4/opencv2/cudabgsegm.hpp - /usr/include/opencv4/opencv2/cudacodec.hpp - /usr/include/opencv4/opencv2/cudafeatures2d.hpp - /usr/include/opencv4/opencv2/cudafilters.hpp - /usr/include/opencv4/opencv2/cudaimgproc.hpp - /usr/include/opencv4/opencv2/cudalegacy.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVBroxOpticalFlow.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVHaarObjectDetection.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCV.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVPyramid.hpp - /usr/include/opencv4/opencv2/cudalegacy/NPP_staging.hpp - /usr/include/opencv4/opencv2/cudaobjdetect.hpp - /usr/include/opencv4/opencv2/cudaoptflow.hpp - /usr/include/opencv4/opencv2/cudastereo.hpp - /usr/include/opencv4/opencv2/cudawarping.hpp - /usr/include/opencv4/opencv2/cudev/block/block.hpp - /usr/include/opencv4/opencv2/cudev/block/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/block/detail/reduce_key_val.hpp - /usr/include/opencv4/opencv2/cudev/block/dynamic_smem.hpp - /usr/include/opencv4/opencv2/cudev/block/reduce.hpp - /usr/include/opencv4/opencv2/cudev/block/scan.hpp - /usr/include/opencv4/opencv2/cudev/block/vec_distance.hpp - /usr/include/opencv4/opencv2/cudev/common.hpp - /usr/include/opencv4/opencv2/cudev/expr/binary_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/binary_op.hpp - /usr/include/opencv4/opencv2/cudev/expr/color.hpp - /usr/include/opencv4/opencv2/cudev/expr/deriv.hpp - /usr/include/opencv4/opencv2/cudev/expr/expr.hpp - /usr/include/opencv4/opencv2/cudev/expr/per_element_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/reduction.hpp - /usr/include/opencv4/opencv2/cudev/expr/unary_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/unary_op.hpp - /usr/include/opencv4/opencv2/cudev/expr/warping.hpp - /usr/include/opencv4/opencv2/cudev/functional/color_cvt.hpp - /usr/include/opencv4/opencv2/cudev/functional/detail/color_cvt.hpp - /usr/include/opencv4/opencv2/cudev/functional/functional.hpp - /usr/include/opencv4/opencv2/cudev/functional/tuple_adapter.hpp - /usr/include/opencv4/opencv2/cudev/grid/copy.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/copy.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/histogram.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/integral.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/minmaxloc.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/pyr_down.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/pyr_up.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce_to_column.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce_to_row.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/split_merge.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/transform.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/transpose.hpp - /usr/include/opencv4/opencv2/cudev/grid/histogram.hpp - /usr/include/opencv4/opencv2/cudev/grid/integral.hpp - /usr/include/opencv4/opencv2/cudev/grid/pyramids.hpp - /usr/include/opencv4/opencv2/cudev/grid/reduce.hpp - /usr/include/opencv4/opencv2/cudev/grid/reduce_to_vec.hpp - /usr/include/opencv4/opencv2/cudev/grid/split_merge.hpp - /usr/include/opencv4/opencv2/cudev/grid/transform.hpp - /usr/include/opencv4/opencv2/cudev/grid/transpose.hpp - /usr/include/opencv4/opencv2/cudev.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/constant.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/deriv.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/detail/gpumat.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/extrapolation.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/glob.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/gpumat.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/interpolation.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/lut.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/mask.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/remap.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/resize.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/texture.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/traits.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/transform.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/warping.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/zip.hpp - /usr/include/opencv4/opencv2/cudev/util/atomic.hpp - /usr/include/opencv4/opencv2/cudev/util/detail/tuple.hpp - /usr/include/opencv4/opencv2/cudev/util/detail/type_traits.hpp - /usr/include/opencv4/opencv2/cudev/util/limits.hpp - /usr/include/opencv4/opencv2/cudev/util/saturate_cast.hpp - /usr/include/opencv4/opencv2/cudev/util/simd_functions.hpp - /usr/include/opencv4/opencv2/cudev/util/tuple.hpp - /usr/include/opencv4/opencv2/cudev/util/type_traits.hpp - /usr/include/opencv4/opencv2/cudev/util/vec_math.hpp - /usr/include/opencv4/opencv2/cudev/util/vec_traits.hpp - /usr/include/opencv4/opencv2/cudev/warp/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/warp/detail/reduce_key_val.hpp - /usr/include/opencv4/opencv2/cudev/warp/reduce.hpp - /usr/include/opencv4/opencv2/cudev/warp/scan.hpp - /usr/include/opencv4/opencv2/cudev/warp/shuffle.hpp - /usr/include/opencv4/opencv2/cudev/warp/warp.hpp - # [contrib_cvv] - /usr/include/opencv4/opencv2/cvv/call_meta_data.hpp - /usr/include/opencv4/opencv2/cvv/cvv.hpp - /usr/include/opencv4/opencv2/cvv/debug_mode.hpp - /usr/include/opencv4/opencv2/cvv/dmatch.hpp - /usr/include/opencv4/opencv2/cvv/filter.hpp - /usr/include/opencv4/opencv2/cvv/final_show.hpp - /usr/include/opencv4/opencv2/cvv.hpp - /usr/include/opencv4/opencv2/cvv/show_image.hpp - # [contrib_hdf] - /usr/include/opencv4/opencv2/hdf/hdf5.hpp - /usr/include/opencv4/opencv2/hdf.hpp - # [contrib_ovis] - /usr/include/opencv4/opencv2/ovis.hpp - # [contrib_sfm] - /usr/include/opencv4/opencv2/sfm.hpp - /usr/include/opencv4/opencv2/sfm/conditioning.hpp - /usr/include/opencv4/opencv2/sfm/fundamental.hpp - /usr/include/opencv4/opencv2/sfm/io.hpp - /usr/include/opencv4/opencv2/sfm/numeric.hpp - /usr/include/opencv4/opencv2/sfm/projection.hpp - /usr/include/opencv4/opencv2/sfm/reconstruct.hpp - /usr/include/opencv4/opencv2/sfm/robust.hpp - /usr/include/opencv4/opencv2/sfm/simple_pipeline.hpp - /usr/include/opencv4/opencv2/sfm/triangulation.hpp - # [vtk] - /usr/include/opencv4/opencv2/viz.hpp - /usr/include/opencv4/opencv2/viz/types.hpp - /usr/include/opencv4/opencv2/viz/viz3d.hpp - /usr/include/opencv4/opencv2/viz/vizcore.hpp - /usr/include/opencv4/opencv2/viz/widget_accessor.hpp - /usr/include/opencv4/opencv2/viz/widgets.hpp -) - -PATCHES=( - "${FILESDIR}"/${PN}-3.4.0-disable-download.patch - "${FILESDIR}"/${PN}-3.4.1-cuda-add-relaxed-constexpr.patch - "${FILESDIR}"/${PN}-4.1.2-opencl-license.patch - "${FILESDIR}"/${PN}-4.4.0-disable-native-cpuflag-detect.patch - "${FILESDIR}"/${PN}-4.5.0-link-with-cblas-for-lapack.patch - "${FILESDIR}"/${PN}-4.5.2-lapack-3.10.patch -) - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp - java-pkg-opt-2_pkg_setup -} - -src_prepare() { - # https://bugs.gentoo.org/838274 - replace-flags -O3 -O2 - - cmake_src_prepare - - # remove bundled stuff - rm -r 3rdparty || die "Removing 3rd party components failed" - sed -e '/add_subdirectory(.*3rdparty.*)/ d' \ - -i CMakeLists.txt cmake/*cmake || die - - if use dnnsamples; then - mv "${WORKDIR}/res10_300x300_ssd_iter_140000.caffemodel" "${WORKDIR}/${P}/samples/dnn/" || die - fi - - if use contrib; then - cd "${WORKDIR}/${PN}_contrib-${PV}" || die - if use contribxfeatures2d; then - mv "${WORKDIR}"/*.i "${WORKDIR}/${PN}_contrib-${PV}"/modules/xfeatures2d/src/ || die - fi - fi - - if use download; then - mv "${WORKDIR}/${PN}-extdep-4.4.0" "${WORKDIR}/${P}/.cache/" || die - fi - - java-pkg-opt-2_src_prepare - - # this really belongs in src_prepare() too - JAVA_ANT_ENCODING="iso-8859-1" - # set encoding so even this cmake build will pick it up. - export ANT_OPTS+=" -Dfile.encoding=iso-8859-1" - java-ant-2_src_configure -} - -multilib_src_configure() { - # please dont sort here, order is the same as in CMakeLists.txt - GLOBALCMAKEARGS=( - # Optional 3rd party components - # =================================================== - -DENABLE_DOWNLOAD=$(usex download) - -DWITH_QUIRC=OFF # Do not have dependencies - -DWITH_1394=$(usex ieee1394) - # -DWITH_AVFOUNDATION=OFF # IOS - -DWITH_VTK=$(multilib_native_usex vtk) - -DWITH_EIGEN=$(usex eigen) - -DWITH_VFW=OFF # Video windows support - -DWITH_FFMPEG=$(usex ffmpeg) - -DWITH_GSTREAMER=$(usex gstreamer) - -DWITH_GSTREAMER_0_10=OFF # Don't want this - -DWITH_GTK=$(usex gtk3) - -DWITH_GTK_2_X=OFF # only want gtk3 nowadays - -DWITH_IPP=OFF - # Jasper was removed from tree because of security problems. - # Upstream were/are making progress. We use openjpeg instead. - # bug 734284 - -DWITH_JASPER=OFF - -DWITH_JPEG=$(usex jpeg) - -DWITH_OPENJPEG=$(usex jpeg2k) - -DWITH_WEBP=$(usex webp) - -DWITH_OPENEXR=$(usex openexr) - -DWITH_OPENGL=$(usex opengl) - -DWITH_OPENVX=OFF - -DWITH_OPENNI=OFF # Not packaged - -DWITH_OPENNI2=OFF # Not packaged - -DWITH_PNG=$(usex png) - -DWITH_GDCM=OFF - -DWITH_PVAPI=OFF - -DWITH_GIGEAPI=OFF - -DWITH_ARAVIS=OFF - -DWITH_QT=$(multilib_native_usex qt5 5 OFF) - -DWITH_WIN32UI=OFF # Windows only - # -DWITH_QUICKTIME=OFF - # -DWITH_QTKIT=OFF - -DWITH_TBB=$(usex threads) - -DWITH_OPENMP=$(usex openmp) - -DWITH_CSTRIPES=OFF - -DWITH_PTHREADS_PF=ON - -DWITH_TIFF=$(usex tiff) - -DWITH_UNICAP=OFF # Not packaged - -DWITH_V4L=$(usex v4l) - -DWITH_LIBV4L=$(usex v4l) - # -DWITH_DSHOW=ON # direct show supp - -DWITH_MSMF=OFF - -DWITH_XIMEA=OFF # Windows only - -DWITH_XINE=$(multilib_native_usex xine) - -DWITH_CLP=OFF - -DWITH_OPENCL=$(usex opencl) - -DWITH_OPENCL_SVM=OFF - -DWITH_OPENCLAMDFFT=$(usex opencl) - -DWITH_OPENCLAMDBLAS=$(usex opencl) - -DWITH_DIRECTX=OFF - -DWITH_INTELPERC=OFF - -DWITH_IPP_A=OFF - -DWITH_MATLAB=OFF - -DWITH_VA=$(usex vaapi) - -DWITH_VA_INTEL=$(usex vaapi) - -DWITH_GDAL=$(multilib_native_usex gdal) - -DWITH_GPHOTO2=$(usex gphoto2) - -DWITH_LAPACK=$(multilib_native_usex lapack) - -DWITH_ITT=OFF # 3dparty libs itt_notify - # =================================================== - # CUDA build components: nvidia-cuda-toolkit takes care of GCC version - # =================================================== - -DWITH_CUDA=$(multilib_native_usex cuda) - -DWITH_CUBLAS=$(multilib_native_usex cuda) - -DWITH_CUFFT=$(multilib_native_usex cuda) - -DWITH_NVCUVID=OFF - # -DWITH_NVCUVID=$(usex cuda) - -DCUDA_NPP_LIBRARY_ROOT_DIR=$(usex cuda "${EPREFIX}/opt/cuda" "") - # =================================================== - # OpenCV build components - # =================================================== - -DBUILD_SHARED_LIBS=ON - -DBUILD_JAVA=$(multilib_native_usex java) # Ant needed, no compile flag - -DBUILD_ANDROID_EXAMPLES=OFF - -DBUILD_opencv_apps=$(usex opencvapps ON OFF) - -DBUILD_DOCS=OFF # Doesn't install anyways. - -DBUILD_EXAMPLES=$(multilib_native_usex examples) - -DBUILD_PERF_TESTS=OFF - -DBUILD_TESTS=$(multilib_native_usex testprograms) - -DBUILD_WITH_DEBUG_INFO=$(usex debug) - # -DBUILD_WITH_STATIC_CRT=OFF - -DBUILD_WITH_DYNAMIC_IPP=OFF - -DBUILD_FAT_JAVA_LIB=OFF - # -DBUILD_ANDROID_SERVICE=OFF - -DBUILD_CUDA_STUBS=$(multilib_native_usex cuda) - -DOPENCV_EXTRA_MODULES_PATH=$(usex contrib "${WORKDIR}/opencv_contrib-${PV}/modules" "") - # =================================================== - # OpenCV installation options - # =================================================== - -DINSTALL_CREATE_DISTRIB=OFF - -DINSTALL_C_EXAMPLES=$(multilib_native_usex examples) - -DINSTALL_TESTS=$(multilib_native_usex testprograms) - -DINSTALL_PYTHON_EXAMPLES=$(multilib_native_usex examples) - # -DINSTALL_ANDROID_EXAMPLES=OFF - -DINSTALL_TO_MANGLED_PATHS=OFF - -DOPENCV_GENERATE_PKGCONFIG=ON - # opencv uses both ${CMAKE_INSTALL_LIBDIR} and ${LIB_SUFFIX} - # to set its destination libdir - -DLIB_SUFFIX= - # =================================================== - # OpenCV build options - # =================================================== - -DENABLE_CCACHE=OFF - # bug 733796, but PCH is a risky game in CMake anyway - -DENABLE_PRECOMPILED_HEADERS=OFF - -DENABLE_SOLUTION_FOLDERS=OFF - -DENABLE_PROFILING=OFF - -DENABLE_COVERAGE=OFF - - -DHAVE_opencv_java=$(multilib_native_usex java YES NO) - -DENABLE_NOISY_WARNINGS=OFF - -DOPENCV_WARNINGS_ARE_ERRORS=OFF - -DENABLE_IMPL_COLLECTION=OFF - -DENABLE_INSTRUMENTATION=OFF - -DGENERATE_ABI_DESCRIPTOR=OFF - -DDOWNLOAD_EXTERNAL_TEST_DATA=OFF - -DENABLE_LTO=$(usex lto) - # =================================================== - # things we want to be hard off or not yet figured out - # =================================================== - -DBUILD_PACKAGE=OFF - # =================================================== - # Not building protobuf but update files bug #631418 - # =================================================== - -DBUILD_PROTOBUF=OFF - -DPROTOBUF_UPDATE_FILES=ON - # =================================================== - # things we want to be hard enabled not worth useflag - # =================================================== - -DCMAKE_SKIP_RPATH=ON - -DOPENCV_DOC_INSTALL_PATH= - -DBUILD_opencv_features2d=$(usex features2d ON OFF) - ) - - # ================================================== - # cpu flags, should solve 633900 - #=================================================== - local CPU_BASELINE="" - for i in "${CPU_FEATURES_MAP[@]}" ; do - if [[ ${ABI} != x86 || ${i%:*} != "cpu_flags_x86_avx2" ]]; then # workaround for Bug 747163 - use ${i%:*} && CPU_BASELINE="${CPU_BASELINE}${i#*:};" - fi - done - - GLOBALCMAKEARGS+=( - -DOPENCV_CPU_OPT_IMPLIES_IGNORE=ON - -DCPU_BASELINE=${CPU_BASELINE} - -DCPU_DISPATCH= - ) - - # =================================================== - # OpenCV Contrib Modules - # =================================================== - if use contrib; then - GLOBALCMAKEARGS+=( - -DBUILD_opencv_dnn=$(usex contribdnn ON OFF) - -DTINYDNN_ROOT="${WORKDIR}/tiny-dnn-${TINY_DNN_PV}" - -DBUILD_opencv_dnns_easily_fooled=OFF - -DBUILD_opencv_xfeatures2d=$(usex contribxfeatures2d ON OFF) - -DBUILD_opencv_cvv=$(usex contribcvv ON OFF) - -DBUILD_opencv_hdf=$(multilib_native_usex contribhdf ON OFF) - -DBUILD_opencv_sfm=$(usex contribsfm ON OFF) - -DBUILD_opencv_freetype=$(usex contribfreetype ON OFF) - -DBUILD_opencv_ovis=$(usex contribovis ON OFF) - ) - - if multilib_is_native_abi; then - GLOBALCMAKEARGS+=( - -DCMAKE_DISABLE_FIND_PACKAGE_Tesseract=$(usex !tesseract) - ) - else - GLOBALCMAKEARGS+=( - -DCMAKE_DISABLE_FIND_PACKAGE_Tesseract=ON - ) - fi - fi - - # workaround for bug 413429 - tc-export CC CXX - - local mycmakeargs=( - ${GLOBALCMAKEARGS[@]} - -DPYTHON_EXECUTABLE=OFF - -DINSTALL_PYTHON_EXAMPLES=OFF - -DBUILD_opencv_python2=OFF - -DBUILD_opencv_python3=OFF - ) - - cmake_src_configure - - # Copy face_land_model to ${CMAKE_BINARY_DIR}/${OPENCV_TEST_DATA_INSTALL_PATH} - # TODO patch ocv_download to copy files into destination dirs - if use contribdnn; then - mkdir -p "${BUILD_DIR}"/share/OpenCV/testdata/cv/face/ || die - cp "${WORKDIR}"/face_landmark_model.dat "${BUILD_DIR}"/share/OpenCV/testdata/cv/face/ || die - fi - -} - -python_module_compile() { - local BUILD_DIR="${orig_BUILD_DIR}" - local mycmakeargs=( ${GLOBALCMAKEARGS[@]} ) - - # Set all python variables to load the correct Gentoo paths - mycmakeargs+=( - # python_setup alters PATH and sets this as wrapper - # to the correct interpreter we are building for - -DPYTHON_DEFAULT_EXECUTABLE=${EPYTHON} - -DINSTALL_PYTHON_EXAMPLES=$(usex examples) - ) - - # Regenerate cache file. Can't use rebuild_cache as it won't - # have the Gentoo specific options. - rm CMakeCache.txt || die "rm failed" - cmake_src_configure - cmake_src_compile - cmake_src_install - - # Remove compiled binary so new version compiles - # Avoid conflicts with new module builds as build system doesn't - # really support it. - rm -r modules/python3 || die "rm failed" - - python_optimize "${ED}"/$(python_get_sitedir) -} - -multilib_src_install() { - cmake_src_install - - # Build and install the python modules for all targets - if multilib_is_native_abi && use python; then - local orig_BUILD_DIR="${BUILD_DIR}" - python_foreach_impl python_module_compile - fi -} diff --git a/media-libs/opencv/opencv-4.5.5-r1.ebuild b/media-libs/opencv/opencv-4.5.5-r1.ebuild index e3d2e5a3efbe..65583955c5a9 100644 --- a/media-libs/opencv/opencv-4.5.5-r1.ebuild +++ b/media-libs/opencv/opencv-4.5.5-r1.ebuild @@ -76,7 +76,7 @@ REQUIRED_USE=" contribxfeatures2d? ( contrib download ) examples? ( contribdnn ) java? ( python ) - opengl? ( qt5 ) + opengl? ( || ( gtk3 qt5 ) ) python? ( ${PYTHON_REQUIRED_USE} ) tesseract? ( contrib ) ?? ( gtk3 qt5 )" diff --git a/media-libs/opencv/opencv-4.5.5.ebuild b/media-libs/opencv/opencv-4.5.5.ebuild deleted file mode 100644 index 7eddbcd042ce..000000000000 --- a/media-libs/opencv/opencv-4.5.5.ebuild +++ /dev/null @@ -1,583 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -CMAKE_ECLASS=cmake -inherit flag-o-matic java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs - -DESCRIPTION="A collection of algorithms and sample code for various computer vision problems" -HOMEPAGE="https://opencv.org" -TINY_DNN_PV="1.0.0a3" -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz - dnnsamples? ( https://dev.gentoo.org/~amynka/snap/${PN}-3.4.0-res10_300x300-caffeemodel.tar.gz ) - download? ( https://github.com/rossbridger/opencv-extdep/archive/4.4.0.tar.gz -> ${PN}-4.4.0_extdep.tar.gz ) - contrib? ( - https://github.com/${PN}/${PN}_contrib/archive/${PV}.tar.gz -> ${P}_contrib.tar.gz - contribdnn? ( https://dev.gentoo.org/~amynka/snap/${PN}-3.4.0-face_landmark_model.tar.gz ) - contribxfeatures2d? ( https://dev.gentoo.org/~amynka/snap/vgg_boostdesc-3.2.0.tar.gz ) - )" - -LICENSE="Apache-2.0" -SLOT="0/${PV}" # subslot = libopencv* soname version -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" -IUSE="contrib contribcvv contribdnn contribfreetype contribhdf contribovis contribsfm contribxfeatures2d cuda debug dnnsamples download +eigen examples +features2d ffmpeg gdal gflags glog gphoto2 gstreamer gtk3 ieee1394 jpeg jpeg2k lapack lto opencl openexr opengl openmp opencvapps png +python qt5 tesseract testprograms threads tiff vaapi v4l vtk webp xine" - -# The following lines are shamelessly stolen from ffmpeg-9999.ebuild with modifications -ARM_CPU_FEATURES=( - cpu_flags_arm_neon:NEON - cpu_flags_arm_vfpv3:VFPV3 -) -PPC_CPU_FEATURES=( - cpu_flags_ppc_vsx:VSX - cpu_flags_ppc_vsx3:VSX3 -) -X86_CPU_FEATURES_RAW=( - avx:AVX - avx2:AVX2 - avx512f:AVX_512F - f16c:FP16 - fma3:FMA3 - popcnt:POPCNT - sse:SSE - sse2:SSE2 - sse3:SSE3 - ssse3:SSSE3 - sse4_1:SSE4_1 - sse4_2:SSE4_2 -) -X86_CPU_FEATURES=( ${X86_CPU_FEATURES_RAW[@]/#/cpu_flags_x86_} ) -CPU_FEATURES_MAP=( - ${ARM_CPU_FEATURES[@]} - ${PPC_CPU_FEATURES[@]} - ${X86_CPU_FEATURES[@]} -) -IUSE="${IUSE} ${CPU_FEATURES_MAP[@]%:*}" - -# OpenGL needs gtk or Qt installed to activate, otherwise build system -# will silently disable it Wwithout the user knowing, which defeats the -# purpose of the opengl use flag. -# cuda needs contrib, bug #701712 -REQUIRED_USE=" - cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) - cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) - cuda? ( contrib - tesseract? ( opencl ) ) - dnnsamples? ( examples ) - gflags? ( contrib ) - glog? ( contrib ) - contribcvv? ( contrib qt5 ) - contribdnn? ( contrib ) - contribfreetype? ( contrib ) - contribhdf? ( contrib ) - contribovis? ( contrib ) - contribsfm? ( contrib eigen gflags glog ) - contribxfeatures2d? ( contrib download ) - examples? ( contribdnn ) - java? ( python ) - opengl? ( qt5 ) - python? ( ${PYTHON_REQUIRED_USE} ) - tesseract? ( contrib ) - ?? ( gtk3 qt5 )" - -# The following logic is intrinsic in the build system, but we do not enforce -# it on the useflags since this just blocks emerging pointlessly: -# openmp? ( !threads ) - -RDEPEND=" - app-arch/bzip2[${MULTILIB_USEDEP}] - dev-libs/protobuf:=[${MULTILIB_USEDEP}] - sys-libs/zlib[${MULTILIB_USEDEP}] - cuda? ( dev-util/nvidia-cuda-toolkit:0= ) - contribhdf? ( sci-libs/hdf5:= ) - contribfreetype? ( - media-libs/freetype:2[${MULTILIB_USEDEP}] - media-libs/harfbuzz:=[${MULTILIB_USEDEP}] - ) - contribovis? ( dev-games/ogre:0/1.12 ) - ffmpeg? ( media-video/ffmpeg:0=[${MULTILIB_USEDEP}] ) - gdal? ( sci-libs/gdal:= ) - gflags? ( dev-cpp/gflags[${MULTILIB_USEDEP}] ) - glog? ( dev-cpp/glog[${MULTILIB_USEDEP}] ) - gphoto2? ( media-libs/libgphoto2:=[${MULTILIB_USEDEP}] ) - gstreamer? ( - media-libs/gstreamer:1.0[${MULTILIB_USEDEP}] - media-libs/gst-plugins-base:1.0[${MULTILIB_USEDEP}] - ) - gtk3? ( - dev-libs/glib:2[${MULTILIB_USEDEP}] - x11-libs/gtk+:3[${MULTILIB_USEDEP}] - ) - ieee1394? ( - media-libs/libdc1394:=[${MULTILIB_USEDEP}] - sys-libs/libraw1394[${MULTILIB_USEDEP}] - ) - java? ( >=virtual/jre-1.8:* ) - jpeg? ( virtual/jpeg:0[${MULTILIB_USEDEP}] ) - jpeg2k? ( media-libs/openjpeg:2=[${MULTILIB_USEDEP}] ) - lapack? ( - virtual/cblas - >=virtual/lapack-3.10 - ) - opencl? ( virtual/opencl[${MULTILIB_USEDEP}] ) - openexr? ( - =media-libs/libv4l-0.8.3[${MULTILIB_USEDEP}] ) - vaapi? ( x11-libs/libva[${MULTILIB_USEDEP}] ) - vtk? ( sci-libs/vtk[rendering] ) - webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] ) - xine? ( media-libs/xine-lib )" -DEPEND="${RDEPEND} - eigen? ( >=dev-cpp/eigen-3.3.8-r1:3 ) - java? ( >=virtual/jdk-1.8:* )" -BDEPEND="virtual/pkgconfig" - -MULTILIB_WRAPPED_HEADERS=( - # [opencv4] - /usr/include/opencv4/opencv2/cvconfig.h - /usr/include/opencv4/opencv2/opencv_modules.hpp - # [cudev] - /usr/include/opencv4/opencv2/cudaarithm.hpp - /usr/include/opencv4/opencv2/cudabgsegm.hpp - /usr/include/opencv4/opencv2/cudacodec.hpp - /usr/include/opencv4/opencv2/cudafeatures2d.hpp - /usr/include/opencv4/opencv2/cudafilters.hpp - /usr/include/opencv4/opencv2/cudaimgproc.hpp - /usr/include/opencv4/opencv2/cudalegacy.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVBroxOpticalFlow.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVHaarObjectDetection.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCV.hpp - /usr/include/opencv4/opencv2/cudalegacy/NCVPyramid.hpp - /usr/include/opencv4/opencv2/cudalegacy/NPP_staging.hpp - /usr/include/opencv4/opencv2/cudaobjdetect.hpp - /usr/include/opencv4/opencv2/cudaoptflow.hpp - /usr/include/opencv4/opencv2/cudastereo.hpp - /usr/include/opencv4/opencv2/cudawarping.hpp - /usr/include/opencv4/opencv2/cudev/block/block.hpp - /usr/include/opencv4/opencv2/cudev/block/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/block/detail/reduce_key_val.hpp - /usr/include/opencv4/opencv2/cudev/block/dynamic_smem.hpp - /usr/include/opencv4/opencv2/cudev/block/reduce.hpp - /usr/include/opencv4/opencv2/cudev/block/scan.hpp - /usr/include/opencv4/opencv2/cudev/block/vec_distance.hpp - /usr/include/opencv4/opencv2/cudev/common.hpp - /usr/include/opencv4/opencv2/cudev/expr/binary_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/binary_op.hpp - /usr/include/opencv4/opencv2/cudev/expr/color.hpp - /usr/include/opencv4/opencv2/cudev/expr/deriv.hpp - /usr/include/opencv4/opencv2/cudev/expr/expr.hpp - /usr/include/opencv4/opencv2/cudev/expr/per_element_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/reduction.hpp - /usr/include/opencv4/opencv2/cudev/expr/unary_func.hpp - /usr/include/opencv4/opencv2/cudev/expr/unary_op.hpp - /usr/include/opencv4/opencv2/cudev/expr/warping.hpp - /usr/include/opencv4/opencv2/cudev/functional/color_cvt.hpp - /usr/include/opencv4/opencv2/cudev/functional/detail/color_cvt.hpp - /usr/include/opencv4/opencv2/cudev/functional/functional.hpp - /usr/include/opencv4/opencv2/cudev/functional/tuple_adapter.hpp - /usr/include/opencv4/opencv2/cudev/grid/copy.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/copy.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/histogram.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/integral.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/minmaxloc.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/pyr_down.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/pyr_up.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce_to_column.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/reduce_to_row.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/split_merge.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/transform.hpp - /usr/include/opencv4/opencv2/cudev/grid/detail/transpose.hpp - /usr/include/opencv4/opencv2/cudev/grid/histogram.hpp - /usr/include/opencv4/opencv2/cudev/grid/integral.hpp - /usr/include/opencv4/opencv2/cudev/grid/pyramids.hpp - /usr/include/opencv4/opencv2/cudev/grid/reduce.hpp - /usr/include/opencv4/opencv2/cudev/grid/reduce_to_vec.hpp - /usr/include/opencv4/opencv2/cudev/grid/split_merge.hpp - /usr/include/opencv4/opencv2/cudev/grid/transform.hpp - /usr/include/opencv4/opencv2/cudev/grid/transpose.hpp - /usr/include/opencv4/opencv2/cudev.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/constant.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/deriv.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/detail/gpumat.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/extrapolation.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/glob.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/gpumat.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/interpolation.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/lut.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/mask.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/remap.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/resize.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/texture.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/traits.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/transform.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/warping.hpp - /usr/include/opencv4/opencv2/cudev/ptr2d/zip.hpp - /usr/include/opencv4/opencv2/cudev/util/atomic.hpp - /usr/include/opencv4/opencv2/cudev/util/detail/tuple.hpp - /usr/include/opencv4/opencv2/cudev/util/detail/type_traits.hpp - /usr/include/opencv4/opencv2/cudev/util/limits.hpp - /usr/include/opencv4/opencv2/cudev/util/saturate_cast.hpp - /usr/include/opencv4/opencv2/cudev/util/simd_functions.hpp - /usr/include/opencv4/opencv2/cudev/util/tuple.hpp - /usr/include/opencv4/opencv2/cudev/util/type_traits.hpp - /usr/include/opencv4/opencv2/cudev/util/vec_math.hpp - /usr/include/opencv4/opencv2/cudev/util/vec_traits.hpp - /usr/include/opencv4/opencv2/cudev/warp/detail/reduce.hpp - /usr/include/opencv4/opencv2/cudev/warp/detail/reduce_key_val.hpp - /usr/include/opencv4/opencv2/cudev/warp/reduce.hpp - /usr/include/opencv4/opencv2/cudev/warp/scan.hpp - /usr/include/opencv4/opencv2/cudev/warp/shuffle.hpp - /usr/include/opencv4/opencv2/cudev/warp/warp.hpp - # [contrib_cvv] - /usr/include/opencv4/opencv2/cvv/call_meta_data.hpp - /usr/include/opencv4/opencv2/cvv/cvv.hpp - /usr/include/opencv4/opencv2/cvv/debug_mode.hpp - /usr/include/opencv4/opencv2/cvv/dmatch.hpp - /usr/include/opencv4/opencv2/cvv/filter.hpp - /usr/include/opencv4/opencv2/cvv/final_show.hpp - /usr/include/opencv4/opencv2/cvv.hpp - /usr/include/opencv4/opencv2/cvv/show_image.hpp - # [contrib_hdf] - /usr/include/opencv4/opencv2/hdf/hdf5.hpp - /usr/include/opencv4/opencv2/hdf.hpp - # [contrib_ovis] - /usr/include/opencv4/opencv2/ovis.hpp - # [contrib_sfm] - /usr/include/opencv4/opencv2/sfm.hpp - /usr/include/opencv4/opencv2/sfm/conditioning.hpp - /usr/include/opencv4/opencv2/sfm/fundamental.hpp - /usr/include/opencv4/opencv2/sfm/io.hpp - /usr/include/opencv4/opencv2/sfm/numeric.hpp - /usr/include/opencv4/opencv2/sfm/projection.hpp - /usr/include/opencv4/opencv2/sfm/reconstruct.hpp - /usr/include/opencv4/opencv2/sfm/robust.hpp - /usr/include/opencv4/opencv2/sfm/simple_pipeline.hpp - /usr/include/opencv4/opencv2/sfm/triangulation.hpp - # [vtk] - /usr/include/opencv4/opencv2/viz.hpp - /usr/include/opencv4/opencv2/viz/types.hpp - /usr/include/opencv4/opencv2/viz/viz3d.hpp - /usr/include/opencv4/opencv2/viz/vizcore.hpp - /usr/include/opencv4/opencv2/viz/widget_accessor.hpp - /usr/include/opencv4/opencv2/viz/widgets.hpp -) - -PATCHES=( - "${FILESDIR}"/${PN}-3.4.0-disable-download.patch - "${FILESDIR}"/${PN}-3.4.1-cuda-add-relaxed-constexpr.patch - "${FILESDIR}"/${PN}-4.1.2-opencl-license.patch - "${FILESDIR}"/${PN}-4.4.0-disable-native-cpuflag-detect.patch - "${FILESDIR}"/${PN}-4.5.0-link-with-cblas-for-lapack.patch -) - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp - java-pkg-opt-2_pkg_setup -} - -src_prepare() { - # https://bugs.gentoo.org/838274 - replace-flags -O3 -O2 - - cmake_src_prepare - - # remove bundled stuff - rm -r 3rdparty || die "Removing 3rd party components failed" - sed -e '/add_subdirectory(.*3rdparty.*)/ d' \ - -i CMakeLists.txt cmake/*cmake || die - - if use dnnsamples; then - mv "${WORKDIR}/res10_300x300_ssd_iter_140000.caffemodel" "${WORKDIR}/${P}/samples/dnn/" || die - fi - - if use contrib; then - cd "${WORKDIR}/${PN}_contrib-${PV}" || die - if use contribxfeatures2d; then - mv "${WORKDIR}"/*.i "${WORKDIR}/${PN}_contrib-${PV}"/modules/xfeatures2d/src/ || die - fi - fi - - if use download; then - mv "${WORKDIR}/${PN}-extdep-4.4.0" "${WORKDIR}/${P}/.cache/" || die - fi - - java-pkg-opt-2_src_prepare - - # this really belongs in src_prepare() too - JAVA_ANT_ENCODING="iso-8859-1" - # set encoding so even this cmake build will pick it up. - export ANT_OPTS+=" -Dfile.encoding=iso-8859-1" - java-ant-2_src_configure -} - -multilib_src_configure() { - # please dont sort here, order is the same as in CMakeLists.txt - GLOBALCMAKEARGS=( - # Optional 3rd party components - # =================================================== - -DENABLE_DOWNLOAD=$(usex download) - -DWITH_QUIRC=OFF # Do not have dependencies - -DWITH_1394=$(usex ieee1394) - # -DWITH_AVFOUNDATION=OFF # IOS - -DWITH_VTK=$(multilib_native_usex vtk) - -DWITH_EIGEN=$(usex eigen) - -DWITH_VFW=OFF # Video windows support - -DWITH_FFMPEG=$(usex ffmpeg) - -DWITH_GSTREAMER=$(usex gstreamer) - -DWITH_GSTREAMER_0_10=OFF # Don't want this - -DWITH_GTK=$(usex gtk3) - -DWITH_GTK_2_X=OFF # only want gtk3 nowadays - -DWITH_IPP=OFF - # Jasper was removed from tree because of security problems. - # Upstream were/are making progress. We use openjpeg instead. - # bug 734284 - -DWITH_JASPER=OFF - -DWITH_JPEG=$(usex jpeg) - -DWITH_OPENJPEG=$(usex jpeg2k) - -DWITH_WEBP=$(usex webp) - -DWITH_OPENEXR=$(usex openexr) - # Try to force OpenEXR 2 for now. bug #830124 - -DOPENEXR_ROOT="${ESYSROOT}"/usr - -DWITH_OPENGL=$(usex opengl) - -DWITH_OPENVX=OFF - -DWITH_OPENNI=OFF # Not packaged - -DWITH_OPENNI2=OFF # Not packaged - -DWITH_PNG=$(usex png) - -DWITH_GDCM=OFF - -DWITH_PVAPI=OFF - -DWITH_GIGEAPI=OFF - -DWITH_ARAVIS=OFF - -DWITH_QT=$(multilib_native_usex qt5 5 OFF) - -DWITH_WIN32UI=OFF # Windows only - # -DWITH_QUICKTIME=OFF - # -DWITH_QTKIT=OFF - -DWITH_TBB=$(usex threads) - -DWITH_OPENMP=$(usex openmp) - -DWITH_CSTRIPES=OFF - -DWITH_PTHREADS_PF=ON - -DWITH_TIFF=$(usex tiff) - -DWITH_UNICAP=OFF # Not packaged - -DWITH_V4L=$(usex v4l) - -DWITH_LIBV4L=$(usex v4l) - # -DWITH_DSHOW=ON # direct show supp - -DWITH_MSMF=OFF - -DWITH_XIMEA=OFF # Windows only - -DWITH_XINE=$(multilib_native_usex xine) - -DWITH_CLP=OFF - -DWITH_OPENCL=$(usex opencl) - -DWITH_OPENCL_SVM=OFF - -DWITH_OPENCLAMDFFT=$(usex opencl) - -DWITH_OPENCLAMDBLAS=$(usex opencl) - -DWITH_DIRECTX=OFF - -DWITH_INTELPERC=OFF - -DWITH_IPP_A=OFF - -DWITH_MATLAB=OFF - -DWITH_VA=$(usex vaapi) - -DWITH_VA_INTEL=$(usex vaapi) - -DWITH_GDAL=$(multilib_native_usex gdal) - -DWITH_GPHOTO2=$(usex gphoto2) - -DWITH_LAPACK=$(multilib_native_usex lapack) - -DWITH_ITT=OFF # 3dparty libs itt_notify - # =================================================== - # CUDA build components: nvidia-cuda-toolkit takes care of GCC version - # =================================================== - -DWITH_CUDA=$(multilib_native_usex cuda) - -DWITH_CUBLAS=$(multilib_native_usex cuda) - -DWITH_CUFFT=$(multilib_native_usex cuda) - -DWITH_NVCUVID=OFF - # -DWITH_NVCUVID=$(usex cuda) - -DCUDA_NPP_LIBRARY_ROOT_DIR=$(usex cuda "${EPREFIX}/opt/cuda" "") - # =================================================== - # OpenCV build components - # =================================================== - -DBUILD_SHARED_LIBS=ON - -DBUILD_JAVA=$(multilib_native_usex java) # Ant needed, no compile flag - -DBUILD_ANDROID_EXAMPLES=OFF - -DBUILD_opencv_apps=$(usex opencvapps ON OFF) - -DBUILD_DOCS=OFF # Doesn't install anyways. - -DBUILD_EXAMPLES=$(multilib_native_usex examples) - -DBUILD_PERF_TESTS=OFF - -DBUILD_TESTS=$(multilib_native_usex testprograms) - -DBUILD_WITH_DEBUG_INFO=$(usex debug) - # -DBUILD_WITH_STATIC_CRT=OFF - -DBUILD_WITH_DYNAMIC_IPP=OFF - -DBUILD_FAT_JAVA_LIB=OFF - # -DBUILD_ANDROID_SERVICE=OFF - -DBUILD_CUDA_STUBS=$(multilib_native_usex cuda) - -DOPENCV_EXTRA_MODULES_PATH=$(usex contrib "${WORKDIR}/opencv_contrib-${PV}/modules" "") - # =================================================== - # OpenCV installation options - # =================================================== - -DINSTALL_CREATE_DISTRIB=OFF - -DINSTALL_C_EXAMPLES=$(multilib_native_usex examples) - -DINSTALL_TESTS=$(multilib_native_usex testprograms) - -DINSTALL_PYTHON_EXAMPLES=$(multilib_native_usex examples) - # -DINSTALL_ANDROID_EXAMPLES=OFF - -DINSTALL_TO_MANGLED_PATHS=OFF - -DOPENCV_GENERATE_PKGCONFIG=ON - # opencv uses both ${CMAKE_INSTALL_LIBDIR} and ${LIB_SUFFIX} - # to set its destination libdir - -DLIB_SUFFIX= - # =================================================== - # OpenCV build options - # =================================================== - -DENABLE_CCACHE=OFF - # bug 733796, but PCH is a risky game in CMake anyway - -DENABLE_PRECOMPILED_HEADERS=OFF - -DENABLE_SOLUTION_FOLDERS=OFF - -DENABLE_PROFILING=OFF - -DENABLE_COVERAGE=OFF - - -DHAVE_opencv_java=$(multilib_native_usex java YES NO) - -DENABLE_NOISY_WARNINGS=OFF - -DOPENCV_WARNINGS_ARE_ERRORS=OFF - -DENABLE_IMPL_COLLECTION=OFF - -DENABLE_INSTRUMENTATION=OFF - -DGENERATE_ABI_DESCRIPTOR=OFF - -DDOWNLOAD_EXTERNAL_TEST_DATA=OFF - -DENABLE_LTO=$(usex lto) - # =================================================== - # things we want to be hard off or not yet figured out - # =================================================== - -DBUILD_PACKAGE=OFF - # =================================================== - # Not building protobuf but update files bug #631418 - # =================================================== - -DBUILD_PROTOBUF=OFF - -DPROTOBUF_UPDATE_FILES=ON - # =================================================== - # things we want to be hard enabled not worth useflag - # =================================================== - -DCMAKE_SKIP_RPATH=ON - -DOPENCV_DOC_INSTALL_PATH= - -DBUILD_opencv_features2d=$(usex features2d ON OFF) - ) - - # ================================================== - # cpu flags, should solve 633900 - #=================================================== - local CPU_BASELINE="" - for i in "${CPU_FEATURES_MAP[@]}" ; do - if [[ ${ABI} != x86 || ${i%:*} != "cpu_flags_x86_avx2" ]]; then # workaround for Bug 747163 - use ${i%:*} && CPU_BASELINE="${CPU_BASELINE}${i#*:};" - fi - done - - GLOBALCMAKEARGS+=( - -DOPENCV_CPU_OPT_IMPLIES_IGNORE=ON - -DCPU_BASELINE=${CPU_BASELINE} - -DCPU_DISPATCH= - ) - - # =================================================== - # OpenCV Contrib Modules - # =================================================== - if use contrib; then - GLOBALCMAKEARGS+=( - -DBUILD_opencv_dnn=$(usex contribdnn ON OFF) - -DTINYDNN_ROOT="${WORKDIR}/tiny-dnn-${TINY_DNN_PV}" - -DBUILD_opencv_dnns_easily_fooled=OFF - -DBUILD_opencv_xfeatures2d=$(usex contribxfeatures2d ON OFF) - -DBUILD_opencv_cvv=$(usex contribcvv ON OFF) - -DBUILD_opencv_hdf=$(multilib_native_usex contribhdf ON OFF) - -DBUILD_opencv_sfm=$(usex contribsfm ON OFF) - -DBUILD_opencv_freetype=$(usex contribfreetype ON OFF) - -DBUILD_opencv_ovis=$(usex contribovis ON OFF) - ) - - if multilib_is_native_abi; then - GLOBALCMAKEARGS+=( - -DCMAKE_DISABLE_FIND_PACKAGE_Tesseract=$(usex !tesseract) - ) - else - GLOBALCMAKEARGS+=( - -DCMAKE_DISABLE_FIND_PACKAGE_Tesseract=ON - ) - fi - fi - - # workaround for bug 413429 - tc-export CC CXX - - local mycmakeargs=( - ${GLOBALCMAKEARGS[@]} - -DPYTHON_EXECUTABLE=OFF - -DINSTALL_PYTHON_EXAMPLES=OFF - -DBUILD_opencv_python2=OFF - -DBUILD_opencv_python3=OFF - ) - - cmake_src_configure - - # Copy face_land_model to ${CMAKE_BINARY_DIR}/${OPENCV_TEST_DATA_INSTALL_PATH} - # TODO patch ocv_download to copy files into destination dirs - if use contribdnn; then - mkdir -p "${BUILD_DIR}"/share/OpenCV/testdata/cv/face/ || die - cp "${WORKDIR}"/face_landmark_model.dat "${BUILD_DIR}"/share/OpenCV/testdata/cv/face/ || die - fi - -} - -python_module_compile() { - local BUILD_DIR="${orig_BUILD_DIR}" - local mycmakeargs=( ${GLOBALCMAKEARGS[@]} ) - - # Set all python variables to load the correct Gentoo paths - mycmakeargs+=( - # python_setup alters PATH and sets this as wrapper - # to the correct interpreter we are building for - -DPYTHON_DEFAULT_EXECUTABLE=${EPYTHON} - -DINSTALL_PYTHON_EXAMPLES=$(usex examples) - ) - - # Regenerate cache file. Can't use rebuild_cache as it won't - # have the Gentoo specific options. - rm CMakeCache.txt || die "rm failed" - cmake_src_configure - cmake_src_compile - cmake_src_install - - # Remove compiled binary so new version compiles - # Avoid conflicts with new module builds as build system doesn't - # really support it. - rm -r modules/python3 || die "rm failed" - - python_optimize "${ED}"/$(python_get_sitedir) -} - -multilib_src_install() { - cmake_src_install - - # Build and install the python modules for all targets - if multilib_is_native_abi && use python; then - local orig_BUILD_DIR="${BUILD_DIR}" - python_foreach_impl python_module_compile - fi -} diff --git a/media-libs/openexr/Manifest b/media-libs/openexr/Manifest index 5721a781b067..1a6eba876c02 100644 --- a/media-libs/openexr/Manifest +++ b/media-libs/openexr/Manifest @@ -1,3 +1,4 @@ DIST openexr-2.5.7.tar.gz 27539574 BLAKE2B 58fd81be52e13d2815b6aa8cea6793359379f5ebf866fd45b31ce30cf5f72aa4699625e7cec51189d62fe76f53418c3e0938f9b827d54ad18342e7aa67c8a3d2 SHA512 e44edfa2dcfff2fe372ed2ba07b39a472e549025978de178eff26be641767d22d1a3b543fb7672d9b7b2e9f4c308667f785829ed6d9032a2b42f2ffa0163de40 DIST openexr-2.5.8.tar.gz 27539605 BLAKE2B b54b72aa82c947fd7f252bf4d15b2727be2da7cdd257a9d96c6c2a3c892438ff850177549144e492617bfe5d260ddd14d21eac70a55f124784bbdf5f7077d1e9 SHA512 5b1ad99cfa639892292109a26c084868b3fe0acf572dd69750e951cec2127d63c78309241de92b0052f0abe50d86f2518e3185194121010db5f826d217e37f4f DIST openexr-3.1.4.tar.gz 20323658 BLAKE2B d3726023f920fa719b1832d3be2df36a95cac8c67fdd4b23a7166398a282fa01d5c07065afd92f7b28f178c47843f82eb7a0f2b77742725b359c8f275d2ef1d0 SHA512 612ab3467f9ccf2779e1592361cb07459571122e10c0a0b3020430cfa34fa3b91ca1d63cc12a5f85d5b53b277b3f7a88862e6477f0f3566a4196b8245f6bfe12 +DIST openexr-3.1.5.tar.gz 20327926 BLAKE2B 77ece3c62b34292d4714873149a5a54a47fe811e96f992f1082e7dca99ad7717649f937c2dd7b18011c4201f15056526fc4b706c4d2f1b7fa593b9f1ed6314bd SHA512 01ef16eacd2dde83c67b81522bae87f47ba272a41ce7d4e35d865dbdcaa03093e7ac504b95d2c1b3a19535f2364a4f937b0e0570c74243bb1c6e021fce7b620c diff --git a/media-libs/openexr/openexr-3.1.5.ebuild b/media-libs/openexr/openexr-3.1.5.ebuild new file mode 100644 index 000000000000..53215e6b20de --- /dev/null +++ b/media-libs/openexr/openexr-3.1.5.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +MY_PN=OpenEXR + +DESCRIPTION="ILM's OpenEXR high dynamic-range image file format libraries" +HOMEPAGE="https://www.openexr.com/" +SRC_URI="https://github.com/AcademySoftwareFoundation/openexr/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/30" # based on SONAME +# -ppc -sparc because broken on big endian, bug #818424 +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 -ppc ~ppc64 ~riscv -sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" +IUSE="cpu_flags_x86_avx doc examples large-stack utils test threads" +RESTRICT="!test? ( test )" + +RDEPEND=" + ~dev-libs/imath-${PV}:= + sys-libs/zlib + !media-libs/openexr:3 + !media-libs/ilmbase +" +DEPEND="${RDEPEND}" +BDEPEND=" + doc? ( dev-python/breathe ) + virtual/pkgconfig +" + +PATCHES=( "${FILESDIR}"/${PN}-3.1.1-0003-disable-failing-test.patch ) + +DOCS=( CHANGES.md GOVERNANCE.md PATENTS README.md SECURITY.md docs/SymbolVisibility.md ) + +src_prepare() { + # Fix path for testsuite + sed -e "s:/var/tmp/:${T}:" \ + -i "${S}"/src/test/${MY_PN}{,Fuzz,Util}Test/tmpDir.h || die "failed to set temp path for tests" + + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=$(usex test) + -DDOCS=$(usex doc) + -DOPENEXR_BUILD_TOOLS=$(usex utils) + -DOPENEXR_ENABLE_LARGE_STACK=$(usex large-stack) + -DOPENEXR_ENABLE_THREADING=$(usex threads) + -DOPENEXR_INSTALL_EXAMPLES=$(usex examples) + -DOPENEXR_INSTALL_PKG_CONFIG=ON + -DOPENEXR_INSTALL_TOOLS=$(usex utils) + -DOPENEXR_USE_CLANG_TIDY=OFF # don't look for clang-tidy + ) + + use test && mycmakeargs+=( -DOPENEXR_RUN_FUZZ_TESTS=ON ) + + cmake_src_configure +} + +src_install() { + use examples && docompress -x /usr/share/doc/${PF}/examples + + cmake_src_install +} diff --git a/media-libs/openjpeg/metadata.xml b/media-libs/openjpeg/metadata.xml index 7fa8ba2aacfa..de80c41403bb 100644 --- a/media-libs/openjpeg/metadata.xml +++ b/media-libs/openjpeg/metadata.xml @@ -1,7 +1,14 @@ - + + t@laumann.xyz + Thomas Bracht Laumann Jespersen + + + proxy-maint@gentoo.org + Proxy Maintainers + openjpeg.mirror uclouvain/openjpeg diff --git a/media-libs/woff2/woff2-1.0.2-r4.ebuild b/media-libs/woff2/woff2-1.0.2-r4.ebuild deleted file mode 100644 index b492cdab3cfc..000000000000 --- a/media-libs/woff2/woff2-1.0.2-r4.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils - -DESCRIPTION="Encode/decode WOFF2 font format" -HOMEPAGE="https://github.com/google/woff2" -SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" -IUSE="" - -RDEPEND="app-arch/brotli:=" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -src_configure() { - local mycmakeargs=( - -DCMAKE_SKIP_RPATH=ON # needed, causes QA warnings otherwise - -DCANONICAL_PREFIXES=ON #661942 - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - dobin ${BUILD_DIR}/woff2_compress - dobin ${BUILD_DIR}/woff2_decompress - dobin ${BUILD_DIR}/woff2_info - - einstalldocs -} diff --git a/media-libs/woff2/woff2-1.0.2-r5.ebuild b/media-libs/woff2/woff2-1.0.2-r5.ebuild index 0f7be738f97b..60d6227ae5f6 100644 --- a/media-libs/woff2/woff2-1.0.2-r5.ebuild +++ b/media-libs/woff2/woff2-1.0.2-r5.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" IUSE="" RDEPEND="app-arch/brotli:=" diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index 4bc8cf86ff6e..4aa38fa17582 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/wavbreaker/Manifest b/media-sound/wavbreaker/Manifest index aebf14e334f8..73a7dd093596 100644 --- a/media-sound/wavbreaker/Manifest +++ b/media-sound/wavbreaker/Manifest @@ -1,3 +1,2 @@ -DIST wavbreaker-0.13.tar.gz 366998 BLAKE2B 4f863699d6e0c5573d4af615a0ae8cd1d4d1b2fc74cc060ab8d0fb298e57812a8675b641bc69a45ae1015b3e6c0731a228aee773caaeaed75cafedf065dbbff0 SHA512 3585bdc6eb937d02ff8287c370a2f480dbdedfc6304505ee45943ed34e4302af480bdea511f7d4fb6778b9f5b25a435b533392eedac9869c650202645a64c574 DIST wavbreaker-0.14.tar.gz 368275 BLAKE2B 0e09f1c82f0a790042a35eb44cebde3b06655d9c2a9f46fe1b426e2ca14a87178cf5cae3b4011448d98c82a4998110cf34f6c4f0eb5e028ee791b12d75789a00 SHA512 131833d40db34e3dd98b71cc68662f7852cc7f184e033fbefac03e34f2a3ed8c838d95bea9afab55c6453f837ac97c9be54088db2ba7e3b918e1801fdfe1d912 DIST wavbreaker-0.15.tar.gz 380764 BLAKE2B e58645725ee831da8d9c231ba8a9715f5dc217f8a49737453430119d1920c53efea3dc0db0faf66d047e10ce3cdd9dc5918bd890f690d0c15ba4763cdfde1a0a SHA512 adc056b2d4117fcc95267033e21a015f7f7c900080c60f34a459f127badf79c3100a971059c0cd87210a68a5d08e38b03922bbfc505ec056e042209fc6523d7b diff --git a/media-sound/wavbreaker/wavbreaker-0.13.ebuild b/media-sound/wavbreaker/wavbreaker-0.13.ebuild deleted file mode 100644 index 7ecabeb22733..000000000000 --- a/media-sound/wavbreaker/wavbreaker-0.13.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit meson xdg - -DESCRIPTION="wavbreaker/wavmerge GTK+ utility to break or merge WAV files" -HOMEPAGE="http://wavbreaker.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="mp3" - -RDEPEND=" - dev-libs/glib - media-libs/libao - x11-libs/gtk+:3 - mp3? ( media-sound/mpg123 ) -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-0.13-QA-desktop-file.patch -) - -src_configure() { - local emesonargs=( - $(meson_use mp3) - ) - - meson_src_configure -} diff --git a/media-sound/wavbreaker/wavbreaker-0.14.ebuild b/media-sound/wavbreaker/wavbreaker-0.14.ebuild index 3a540a0f0871..266cd9f3aef8 100644 --- a/media-sound/wavbreaker/wavbreaker-0.14.ebuild +++ b/media-sound/wavbreaker/wavbreaker-0.14.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/thp/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="mp3" RDEPEND=" diff --git a/media-sound/xmms2/metadata.xml b/media-sound/xmms2/metadata.xml index 7f08040bab7a..cbdd35464dea 100644 --- a/media-sound/xmms2/metadata.xml +++ b/media-sound/xmms2/metadata.xml @@ -7,7 +7,6 @@ Support for airplay format - Support for Advanced Systems Format (ASF) by using bundled libasf Enable fluidsynth support (MIDI) Support for various game audio formats using media-libs/game-music-emu Icecast source output plugin diff --git a/media-sound/xmms2/xmms2-0.8_p20201016-r1.ebuild b/media-sound/xmms2/xmms2-0.8_p20201016-r1.ebuild deleted file mode 100644 index 8672d4ed5099..000000000000 --- a/media-sound/xmms2/xmms2-0.8_p20201016-r1.ebuild +++ /dev/null @@ -1,236 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit multiprocessing optfeature perl-functions python-single-r1 toolchain-funcs - -XMMS2_COMMIT="46da10f0e20c53fd2b40843617ed182c0cba4ebb" -S4_COMMIT="652ac581df7a0bca04334da397f8bb4f86eb7b59" -WAF_VER="2.0.22" - -DESCRIPTION="X(cross)platform Music Multiplexing System, next generation of the XMMS player" -HOMEPAGE="https://github.com/XMMS2" -SRC_URI=" - https://github.com/xmms2/xmms2-devel/archive/${XMMS2_COMMIT}.tar.gz -> ${P}.tar.gz - https://github.com/xmms2/s4/archive/${S4_COMMIT}.tar.gz -> ${PN}-s4-${PV}.tar.gz - https://waf.io/waf-${WAF_VER}.tar.bz2" -S="${WORKDIR}/${PN}-devel-${XMMS2_COMMIT}" - -LICENSE="GPL-2+ LGPL-2.1+" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ppc ~riscv x86" - -# IUSE static map to be passed to --with-{optionals,plugins}=opt1,opt2,... -# flag:opt = `usev flag opt`, opt = `usev opt`, :opt = `echo opt` -XMMS2_OPTIONALS=( - cxx:xmmsclient++,xmmsclient++-glib :launcher mlib-update:medialib-updater - :nycli perl :pixmaps python server:s4 test:tests - # disabled: et,mdns,migrate-collections,ruby,sqlite2s4,vistest,xmmsclient-cf,xmmsclient-ecore -) -XMMS2_PLUGINS=( - aac:faad airplay alsa ao asf :asx cdda :cue curl :diskwrite :equalizer - ffmpeg:apefile,avcodec,flv,tta :file flac fluidsynth:fluidsynth,mid1,midsquash - gme :html ices :icymetaint :id3v2 jack :karaoke :m3u mac +mad mms modplug - mp3:mpg123 :mp4 musepack :normalize :null :nulstripper ofa opus oss :pls - pulseaudio:pulse :replaygain samba sid sndfile speex tremor vocoder +vorbis - :wave wavpack :xml xml:rss,xspf zeroconf:daap - # disabled: coreaudio,gvfs,nms,sc68,sun,waveout -) - -IUSE=" - ${XMMS2_OPTIONALS[@]%:*} - ${XMMS2_PLUGINS[@]%:*} - +server valgrind" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RESTRICT="!test? ( test ) !server? ( test )" - -COMMON_DEPEND=" - dev-libs/glib:2 - sys-libs/readline:= - server? ( - aac? ( media-libs/faad2 ) - airplay? ( dev-libs/openssl:= ) - alsa? ( media-libs/alsa-lib ) - ao? ( media-libs/libao ) - cdda? ( - dev-libs/libcdio-paranoia:= - dev-libs/libcdio:= - media-libs/libdiscid - ) - curl? ( net-misc/curl ) - ffmpeg? ( media-video/ffmpeg:= ) - flac? ( media-libs/flac ) - fluidsynth? ( media-sound/fluidsynth:= ) - gme? ( media-libs/game-music-emu ) - ices? ( - media-libs/libogg - media-libs/libshout - media-libs/libvorbis - ) - jack? ( virtual/jack ) - mac? ( media-sound/mac ) - mad? ( media-libs/libmad ) - mms? ( - media-libs/libmms - media-video/ffmpeg:= - ) - modplug? ( media-libs/libmodplug ) - mp3? ( media-sound/mpg123 ) - musepack? ( media-sound/musepack-tools ) - ofa? ( - dev-libs/expat - media-libs/libofa - sci-libs/fftw:3.0= - ) - opus? ( - media-libs/libogg - media-libs/opus - media-libs/opusfile - ) - pulseaudio? ( media-sound/pulseaudio ) - samba? ( net-fs/samba ) - sid? ( media-libs/libsidplay:2 ) - sndfile? ( media-libs/libsndfile ) - speex? ( - media-libs/libogg - media-libs/speex - ) - tremor? ( media-libs/tremor ) - vocoder? ( - media-libs/libsamplerate - sci-libs/fftw:3.0= - ) - vorbis? ( media-libs/libvorbis ) - wavpack? ( media-sound/wavpack ) - xml? ( dev-libs/libxml2 ) - zeroconf? ( - net-dns/avahi[mdnsresponder-compat] - net-misc/curl - ) - ) - python? ( virtual/libcrypt:= )" -RDEPEND=" - ${COMMON_DEPEND} - perl? ( - dev-lang/perl - dev-perl/glib-perl - virtual/perl-Carp - virtual/perl-IO - virtual/perl-Scalar-List-Utils - ) - python? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep 'dev-python/pygobject[${PYTHON_USEDEP}]') - )" -DEPEND=" - ${COMMON_DEPEND} - cxx? ( dev-libs/boost ) - test? ( dev-util/cunit )" -BDEPEND=" - ${PYTHON_DEPS} - virtual/pkgconfig - perl? ( dev-perl/Pod-Parser ) - python? ( $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]') ) - test? ( valgrind? ( dev-util/valgrind ) )" - -PATCHES=( - "${FILESDIR}"/${PN}-0.8-rtvg.patch - "${FILESDIR}"/${PN}-0.8_p20161122-mac-4.patch - "${FILESDIR}"/${PN}-0.8_p20161122-cpp-client.patch - "${FILESDIR}"/${PN}-0.8_p20161122-faad.patch -) - -src_prepare() { - rmdir src/lib/s4 && mv ../s4-${S4_COMMIT} src/lib/s4 || die - mv ../waf-${WAF_VER}/waf{,lib} . || die - - default - - sed -e "s|/path/to/.*sf2|${EPREFIX}/usr/share/sounds/sf2/FluidR3_GM.sf2|" \ - -i src/plugins/fluidsynth/fluidsynth.c || die -} - -src_configure() { - local waf=( - ./waf configure - --prefix="${EPREFIX}"/usr - --libdir="${EPREFIX}"/usr/$(get_libdir) - --boost-includes="${ESYSROOT}"/usr/include # needed for prefix - --with-custom-version="%(version)s (git commit: ${XMMS2_COMMIT:0:8})" - --with-target-platform="${CHOST}" - ) - - xmms2_flag() { - local IFS=: - set -- ${1#+} - - if [[ ${1} ]]; then - usev ${1} ,${2:-${1}} - else - echo ,${2} - fi - } - - local flag optionals plugins - - if use server; then - for flag in "${XMMS2_PLUGINS[@]}"; do - plugins+=$(xmms2_flag ${flag}) - done - else - waf+=( --without-xmms2d ) - fi - - for flag in "${XMMS2_OPTIONALS[@]}"; do - optionals+=$(xmms2_flag ${flag}) - done - - waf+=( - # pass even if empty to avoid automagic - --with-optionals=${optionals:1} - --with-plugins=${plugins:1} - ) - - if use perl; then - perl_set_version - waf+=( --with-perl-archdir="${ARCH_LIB}" ) - fi - - if use valgrind; then - if valgrind true &>/dev/null; then - waf+=( --with-valgrind ) - else - ewarn "valgrind was disabled due to failing a basic sanity check" #807271 - fi - fi - - tc-export AR CC CXX - - echo "${waf[*]}" - "${waf[@]}" || die -} - -src_compile() { - ./waf build -j$(makeopts_jobs) --verbose --notests || die -} - -src_test() { - ./waf --alltests || die -} - -src_install() { - ./waf install --destdir="${D}" --without-ldconfig --notests || die - - einstalldocs - - use python && python_optimize - - # to avoid editing waftools/man.py (use find given not always installed) - find "${ED}" -name '*.gz' -exec gzip -d {} + || die -} - -pkg_postinst() { - use fluidsynth && optfeature "the default MIDI soundfont" media-sound/fluid-soundfont -} diff --git a/media-video/Manifest.gz b/media-video/Manifest.gz index 0667dd11fe86..0a3d085372b6 100644 Binary files a/media-video/Manifest.gz and b/media-video/Manifest.gz differ diff --git a/media-video/amdgpu-pro-amf/metadata.xml b/media-video/amdgpu-pro-amf/metadata.xml index 03e31d9fc34c..6d07c8aa6259 100644 --- a/media-video/amdgpu-pro-amf/metadata.xml +++ b/media-video/amdgpu-pro-amf/metadata.xml @@ -1,5 +1,5 @@ - + Adel Kara Slimane diff --git a/media-video/qmplay2/Manifest b/media-video/qmplay2/Manifest index e8def86c322f..ed17f369d9ce 100644 --- a/media-video/qmplay2/Manifest +++ b/media-video/qmplay2/Manifest @@ -1,2 +1,2 @@ -DIST QMPlay2-src-21.06.07.tar.xz 1579640 BLAKE2B f687cf19ce8d4a606b5271c2e5789d5194233bd300f29d165354cc8784808a148e02536ea8a593c036cd75d1e40a335177f1b9db33016008bbb2f9516daf7e61 SHA512 41558e2df09a188cef05c2a24393e67ce4d1ef1268ff1bdd1ac97ec666d9f8f849817b0c64e384624403a8f6f60cb985dde188cb3c75afd731e42f776076d282 DIST QMPlay2-src-21.12.24.tar.xz 1609604 BLAKE2B 0b2e1ddc0a089ee0d8d37d3d14f2273b53b4df078c6f1571a5ed44c1234133c3eb21461287eb12027ccb686d844f28939b8dfe236c11fd6cb5831dc825708301 SHA512 fddd1d28a0c7f8ad7fa8ef02bb1181ee2fe4babfd8b9c026d2b1d518c1cf28528c64d296b0050d7c51b1ae558baf2d04fe808b276816d98e839a85dbc67ac136 +DIST QMPlay2-src-22.03.19.tar.xz 1612136 BLAKE2B 5b5ff6d4b37c3d1c46e28839e078e3f7bfa4d2d9d88f552a574cc6560ee18996dda8649f47973f2af97224e2ebebbffadf3c6f52b8064fc30ff63c72d7f578e2 SHA512 687fa0b8bc7d3b99432419aeeaedc83773dc3b12d8133872f663419db7123e7093895bc8ac5b64f03acefd1c4e5cf916210ebbef6b6494284e15487763f0d571 diff --git a/media-video/qmplay2/qmplay2-21.06.07-r2.ebuild b/media-video/qmplay2/qmplay2-22.03.19.ebuild similarity index 79% rename from media-video/qmplay2/qmplay2-21.06.07-r2.ebuild rename to media-video/qmplay2/qmplay2-22.03.19.ebuild index 7af2e7f0fd0a..b7b2b595e0e7 100644 --- a/media-video/qmplay2/qmplay2-21.06.07-r2.ebuild +++ b/media-video/qmplay2/qmplay2-22.03.19.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit cmake xdg @@ -13,16 +13,16 @@ if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI="https://github.com/zaps166/QMPlay2" else SRC_URI="https://github.com/zaps166/QMPlay2/releases/download/${PV}/QMPlay2-src-${PV}.tar.xz" - KEYWORDS="~amd64 ~x86" S="${WORKDIR}/QMPlay2-src-${PV}" + KEYWORDS="~amd64 ~x86" fi LICENSE="LGPL-3" SLOT="0" -IUSE="avdevice +audiofilters +alsa cdio cuvid dbus extensions - gme inputs libass modplug notifications opengl pipewire portaudio - pulseaudio sid shaders vaapi vdpau +videofilters visualizations vulkan xv" +IUSE="avdevice +audiofilters +alsa cdio cuvid extensions gme inputs libass + modplug notifications opengl pipewire portaudio pulseaudio sid shaders + +taglib vaapi vdpau videofilters visualizations vulkan xv" REQUIRED_USE=" audiofilters? ( || ( alsa pipewire portaudio pulseaudio ) ) @@ -41,10 +41,7 @@ RDEPEND=" ) alsa? ( media-libs/alsa-lib ) cdio? ( dev-libs/libcdio[cddb] ) - extensions? ( - dev-qt/qtdeclarative:5 - media-libs/taglib - ) + extensions? ( dev-qt/qtdeclarative:5 ) gme? ( media-libs/game-music-emu ) libass? ( media-libs/libass ) opengl? ( virtual/opengl ) @@ -53,9 +50,10 @@ RDEPEND=" pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplayfp ) shaders? ( >=media-libs/shaderc-2020.1 ) + taglib? ( media-libs/taglib ) vaapi? ( >=media-video/ffmpeg-4.1.3[vaapi] - x11-libs/libva[drm,opengl] + x11-libs/libva ) vdpau? ( media-video/ffmpeg[vdpau] ) videofilters? ( dev-qt/qtconcurrent:5 ) @@ -63,8 +61,8 @@ RDEPEND=" >=dev-qt/qtgui-5.14.1:5[vulkan] >=media-libs/vulkan-loader-1.2.133 ) - xv? ( x11-libs/libXv )" - + xv? ( x11-libs/libXv ) +" DEPEND="${RDEPEND}" BDEPEND="dev-qt/linguist-tools:5" @@ -82,10 +80,11 @@ src_configure() { local mycmakeargs=( # core -DUSE_LINK_TIME_OPTIMIZATION=false + -DUSE_UPDATES=OFF -DUSE_ALSA=$(usex alsa) -DUSE_AUDIOCD=$(usex cdio) - -DUSE_DBUS_SUSPEND=$(usex dbus) - -DUSE_FREEDESKTOP_NOTIFICATIONS=$(usex dbus) # https://github.com/zaps166/QMPlay2/issues/134 + -DUSE_DBUS_SUSPEND=ON + -DUSE_FREEDESKTOP_NOTIFICATIONS=ON -DUSE_LIBASS=$(usex libass) -DUSE_NOTIFY=$(usex notifications) -DUSE_OPENGL=$(usex opengl) @@ -110,18 +109,24 @@ src_configure() { -DUSE_PIPEWIRE=$(usex pipewire) -DUSE_PORTAUDIO=$(usex portaudio) -DUSE_PULSEAUDIO=$(usex pulseaudio) + -DUSE_TAGLIB=$(usex taglib) -DUSE_VIDEOFILTERS=$(usex videofilters) -DUSE_VISUALIZATIONS=$(usex visualizations) # extensions -DUSE_EXTENSIONS=$(usex extensions) - -DUSE_TAGLIB=$(usex extensions) - -DUSE_LASTFM=$(usex extensions) - -DUSE_LYRICS=$(usex extensions) - -DUSE_MEDIABROWSER=$(usex extensions) - -DUSE_MPRIS2=$(usex extensions) ) + if use extensions; then + # Move inside an if, to remove unused option warning + mycmakeargs+=( + -DUSE_LASTFM=ON + -DUSE_LYRICS=ON + -DUSE_MEDIABROWSER=ON + -DUSE_MPRIS2=ON + ) + fi + if [[ ${PV} == *9999 ]]; then mycmakeargs+=( -DUSE_GIT_VERSION=true ) else diff --git a/media-video/qmplay2/qmplay2-9999.ebuild b/media-video/qmplay2/qmplay2-9999.ebuild index 7f6b9471ab08..b7b2b595e0e7 100644 --- a/media-video/qmplay2/qmplay2-9999.ebuild +++ b/media-video/qmplay2/qmplay2-9999.ebuild @@ -53,7 +53,7 @@ RDEPEND=" taglib? ( media-libs/taglib ) vaapi? ( >=media-video/ffmpeg-4.1.3[vaapi] - x11-libs/libva[drm,opengl] + x11-libs/libva ) vdpau? ( media-video/ffmpeg[vdpau] ) videofilters? ( dev-qt/qtconcurrent:5 ) diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index 295e1a19fb4e..8ea4a83681cd 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 1033a0854ed0..adec49f44a30 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Sun, 17 Apr 2022 20:09:32 +0000 +Tue, 19 Apr 2022 12:09:07 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 35153d774b2c..adec49f44a30 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Sun, 17 Apr 2022 20:09:33 +0000 +Tue, 19 Apr 2022 12:09:07 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index 041e8ae58b16..573543cc067e 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 43bd9deef6b9..5de61fd65074 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/emacspeak-39.0-r2 b/metadata/md5-cache/app-accessibility/emacspeak-39.0-r2 index 03171b442249..f85767bd4a3b 100644 --- a/metadata/md5-cache/app-accessibility/emacspeak-39.0-r2 +++ b/metadata/md5-cache/app-accessibility/emacspeak-39.0-r2 @@ -9,5 +9,5 @@ LICENSE=BSD GPL-2 RDEPEND=espeak? ( app-accessibility/espeak ) >=dev-tcltk/tclx-8.4 >=app-editors/emacs-24:* SLOT=0 SRC_URI=https://emacspeak.googlecode.com/files/emacspeak-39.0.tar.bz2 -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=02876f569083daff9874034ee9576174 diff --git a/metadata/md5-cache/app-accessibility/emacspeak-9999 b/metadata/md5-cache/app-accessibility/emacspeak-9999 index 30050a9e876c..43cf8f625f52 100644 --- a/metadata/md5-cache/app-accessibility/emacspeak-9999 +++ b/metadata/md5-cache/app-accessibility/emacspeak-9999 @@ -8,5 +8,5 @@ LICENSE=BSD GPL-2 PROPERTIES=live RDEPEND=espeak? ( app-accessibility/espeak ) >=dev-tcltk/tclx-8.4 >=app-editors/emacs-24:* SLOT=0 -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=bb5e081141fefe72f22d1d7405b36da5 diff --git a/metadata/md5-cache/app-accessibility/speechd-el-2.8 b/metadata/md5-cache/app-accessibility/speechd-el-2.8 index 61aadc86a4cf..61beea9e0fd6 100644 --- a/metadata/md5-cache/app-accessibility/speechd-el-2.8 +++ b/metadata/md5-cache/app-accessibility/speechd-el-2.8 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=>=app-accessibility/speech-dispatcher-0.7 >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://www.freebsoft.org/pub/projects/speechd-el/speechd-el-2.8.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=fc2e4778154e1931e1c01597b9b65c78 diff --git a/metadata/md5-cache/app-admin/Manifest.gz b/metadata/md5-cache/app-admin/Manifest.gz index 541db68751ee..39306163a68e 100644 Binary files a/metadata/md5-cache/app-admin/Manifest.gz and b/metadata/md5-cache/app-admin/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/fluentd-1.14.4 b/metadata/md5-cache/app-admin/fluentd-1.14.4 index f1361eab80fd..e4d12b9313e3 100644 --- a/metadata/md5-cache/app-admin/fluentd-1.14.4 +++ b/metadata/md5-cache/app-admin/fluentd-1.14.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fluentd-1.14.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6b5a6dd25ff5b38cd203acecf6354e6b diff --git a/metadata/md5-cache/app-admin/mcollective-2.12.5 b/metadata/md5-cache/app-admin/mcollective-2.12.5 index 7bad72e19088..0b72e17c27b3 100644 --- a/metadata/md5-cache/app-admin/mcollective-2.12.5 +++ b/metadata/md5-cache/app-admin/mcollective-2.12.5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-ruby/stomp-1.4.4 ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_t REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) SLOT=0 SRC_URI=https://github.com/puppetlabs/marionette-collective/archive/2.12.5.tar.gz -> mcollective-2.12.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b53984e7d27a37d90bba036d49352629 diff --git a/metadata/md5-cache/app-admin/pass-1.7.3-r2 b/metadata/md5-cache/app-admin/pass-1.7.3-r2 index 37f1618b7f5e..8ae64676600b 100644 --- a/metadata/md5-cache/app-admin/pass-1.7.3-r2 +++ b/metadata/md5-cache/app-admin/pass-1.7.3-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=app-crypt/gnupg media-gfx/qrencode[png(+)] >=app-text/tree-1.7.0 git? ( dev-vcs/git ) X? ( x11-misc/xclip ) elibc_Darwin? ( app-misc/getopt ) dmenu? ( x11-misc/dmenu x11-misc/xdotool ) emacs? ( >=app-editors/emacs-23.1:* >=app-emacs/f-0.11.0 >=app-emacs/s-1.9.0 >=app-emacs/with-editor-2.5.11 ) SLOT=0 SRC_URI=https://git.zx2c4.com/password-store/snapshot/password-store-1.7.3.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3ad28e282427f6e932901d902a49b2fb diff --git a/metadata/md5-cache/app-admin/pass-1.7.4-r2 b/metadata/md5-cache/app-admin/pass-1.7.4-r2 index b3708eacc754..3754a79c90bc 100644 --- a/metadata/md5-cache/app-admin/pass-1.7.4-r2 +++ b/metadata/md5-cache/app-admin/pass-1.7.4-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=app-crypt/gnupg media-gfx/qrencode[png(+)] >=app-text/tree-1.7.0 git? ( dev-vcs/git ) wayland? ( gui-apps/wl-clipboard ) X? ( x11-misc/xclip ) elibc_Darwin? ( app-misc/getopt ) dmenu? ( x11-misc/dmenu x11-misc/xdotool ) emacs? ( >=app-editors/emacs-23.1:* >=app-emacs/f-0.11.0 >=app-emacs/s-1.9.0 >=app-emacs/with-editor-2.5.11 ) SLOT=0 SRC_URI=https://git.zx2c4.com/password-store/snapshot/password-store-1.7.4.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b1e987779430273da2bf7b08d22b6f13 diff --git a/metadata/md5-cache/app-admin/pass-9999 b/metadata/md5-cache/app-admin/pass-9999 index 17c25701b8f2..0f1f8a4cf5df 100644 --- a/metadata/md5-cache/app-admin/pass-9999 +++ b/metadata/md5-cache/app-admin/pass-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=app-crypt/gnupg media-gfx/qrencode[png(+)] >=app-text/tree-1.7.0 git? ( dev-vcs/git ) wayland? ( gui-apps/wl-clipboard ) X? ( x11-misc/xclip ) elibc_Darwin? ( app-misc/getopt ) dmenu? ( x11-misc/dmenu x11-misc/xdotool ) emacs? ( >=app-editors/emacs-23.1:* >=app-emacs/f-0.11.0 >=app-emacs/s-1.9.0 >=app-emacs/with-editor-2.5.11 ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=acef344c400a66c032cfc242a020bda5 diff --git a/metadata/md5-cache/app-admin/puppet-5.5.22-r1 b/metadata/md5-cache/app-admin/puppet-5.5.22-r1 index 485bc0d0e73a..064a1cbf1ebb 100644 --- a/metadata/md5-cache/app-admin/puppet-5.5.22-r1 +++ b/metadata/md5-cache/app-admin/puppet-5.5.22-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://downloads.puppetlabs.com/puppet/puppet-5.5.22.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed systemd 2736b403a83f194b59b767f3b344c2c1 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed systemd 2736b403a83f194b59b767f3b344c2c1 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d07c205871037987c092e998b820c4ec diff --git a/metadata/md5-cache/app-admin/puppet-5.5.22-r2 b/metadata/md5-cache/app-admin/puppet-5.5.22-r2 index 9684307d0490..02f3ff4eb820 100644 --- a/metadata/md5-cache/app-admin/puppet-5.5.22-r2 +++ b/metadata/md5-cache/app-admin/puppet-5.5.22-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://downloads.puppetlabs.com/puppet/puppet-5.5.22.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed systemd 2736b403a83f194b59b767f3b344c2c1 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed systemd 2736b403a83f194b59b767f3b344c2c1 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=002777aef21d1f6df8ee547411eeca84 diff --git a/metadata/md5-cache/app-admin/puppet-7.14.0 b/metadata/md5-cache/app-admin/puppet-7.14.0 index 980ea4f59a29..a990ea069452 100644 --- a/metadata/md5-cache/app-admin/puppet-7.14.0 +++ b/metadata/md5-cache/app-admin/puppet-7.14.0 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=http://downloads.puppetlabs.com/puppet/puppet-7.14.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed systemd 2736b403a83f194b59b767f3b344c2c1 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed systemd 2736b403a83f194b59b767f3b344c2c1 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=af112911e65ff3bc7cda4c98ff40d609 diff --git a/metadata/md5-cache/app-admin/puppet-7.15.0 b/metadata/md5-cache/app-admin/puppet-7.15.0 index a7d30e0c2f6c..4bd05eabff88 100644 --- a/metadata/md5-cache/app-admin/puppet-7.15.0 +++ b/metadata/md5-cache/app-admin/puppet-7.15.0 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=http://downloads.puppetlabs.com/puppet/puppet-7.15.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed systemd 2736b403a83f194b59b767f3b344c2c1 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed systemd 2736b403a83f194b59b767f3b344c2c1 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b5aeeb21d40f29a83352cad5f882345c diff --git a/metadata/md5-cache/app-admin/puppet-lint-2.4.2 b/metadata/md5-cache/app-admin/puppet-lint-2.4.2 index cd6e0f086dbd..e77bc8a8d7fa 100644 --- a/metadata/md5-cache/app-admin/puppet-lint-2.4.2 +++ b/metadata/md5-cache/app-admin/puppet-lint-2.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/puppet-lint-2.4.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6ad076030990dfbd9925c1c1433a6df8 diff --git a/metadata/md5-cache/app-admin/puppet-lint-2.5.0 b/metadata/md5-cache/app-admin/puppet-lint-2.5.0 index cb6ed5908f93..f576a9f08d1a 100644 --- a/metadata/md5-cache/app-admin/puppet-lint-2.5.0 +++ b/metadata/md5-cache/app-admin/puppet-lint-2.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/puppet-lint-2.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c787d60ebc337fe2ded2a3af156cb042 diff --git a/metadata/md5-cache/app-admin/puppet-lint-2.5.1 b/metadata/md5-cache/app-admin/puppet-lint-2.5.1 index a83235870ddf..e0173be84e5d 100644 --- a/metadata/md5-cache/app-admin/puppet-lint-2.5.1 +++ b/metadata/md5-cache/app-admin/puppet-lint-2.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/puppet-lint-2.5.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=353f451413d8358b28f745a8801aee9a diff --git a/metadata/md5-cache/app-admin/puppet-lint-2.5.2 b/metadata/md5-cache/app-admin/puppet-lint-2.5.2 index ca233eefd0a6..26fed2730874 100644 --- a/metadata/md5-cache/app-admin/puppet-lint-2.5.2 +++ b/metadata/md5-cache/app-admin/puppet-lint-2.5.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/puppet-lint-2.5.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=465db3c30b8f1d76fc31e4684110f297 diff --git a/metadata/md5-cache/app-admin/r10k-3.7.0-r2 b/metadata/md5-cache/app-admin/r10k-3.7.0-r2 index 9ab54389ebd3..499d0dfccf80 100644 --- a/metadata/md5-cache/app-admin/r10k-3.7.0-r2 +++ b/metadata/md5-cache/app-admin/r10k-3.7.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/r10k-3.7.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=28d282c583357a835e9da1bb55a6134f diff --git a/metadata/md5-cache/app-admin/salt-3004.1-r2 b/metadata/md5-cache/app-admin/salt-3004.1-r4 similarity index 85% rename from metadata/md5-cache/app-admin/salt-3004.1-r2 rename to metadata/md5-cache/app-admin/salt-3004.1-r4 index 2f91c86a207d..fab0998b6f22 100644 --- a/metadata/md5-cache/app-admin/salt-3004.1-r2 +++ b/metadata/md5-cache/app-admin/salt-3004.1-r4 @@ -1,4 +1,4 @@ -BDEPEND=test? ( sys-apps/pciutils >=dev-python/distro-1.5[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jinja-3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/libnacl[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/msgpack-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/psutil-5.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pycryptodome-3.9.8[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyyaml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/markupsafe[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/toml-0.10.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/watchdog[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] libcloud? ( >=dev-python/libcloud-2.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) mako? ( dev-python/mako[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) ldap? ( dev-python/python-ldap[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) libvirt? ( python_targets_python3_8? ( dev-python/libvirt-python[python_targets_python3_8(-)?] ) ) openssl? ( dev-libs/openssl:0=[-bindist(-)] dev-python/pyopenssl[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) raet? ( >=dev-python/libnacl-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/ioflo-1.1.7[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/raet-0.6.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) cherrypy? ( >=dev-python/cherrypy-3.2.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) cheetah? ( >=dev-python/cheetah3-3.2.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) genshi? ( dev-python/genshi[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) mongodb? ( dev-python/pymongo[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) portage? ( sys-apps/portage[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) keyring? ( dev-python/keyring[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) redis? ( dev-python/redis-py[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) selinux? ( sec-policy/selinux-salt ) nova? ( python_targets_python3_8? ( >=dev-python/python-novaclient-2.17.0[python_targets_python3_8(-)?] ) ) neutron? ( python_targets_python3_8? ( >=dev-python/python-neutronclient-2.3.6[python_targets_python3_8(-)?] ) ) gnupg? ( dev-python/python-gnupg[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) profile? ( dev-python/yappi[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) vim-syntax? ( app-vim/salt-vim ) zeromq? ( >=dev-python/pyzmq-19.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) >=dev-python/boto-2.32.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jsonschema-3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/mako[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mock-2.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/moto-0.3.6[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pip[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyopenssl[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-salt-factories-1.0.0_rc13[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-tempdir[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-helpers-namespace[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-subtests[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/flaky[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/libcloud[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] net-dns/bind-tools >=dev-python/virtualenv-20.3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !x86? ( >=dev-python/boto3-1.17.67[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) ) virtual/pkgconfig python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +BDEPEND=test? ( sys-apps/pciutils >=dev-python/distro-1.5[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jinja-3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/libnacl[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/msgpack-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/psutil-5.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pycryptodome-3.9.8[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyyaml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/markupsafe[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/toml-0.10.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/watchdog[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] libcloud? ( >=dev-python/libcloud-2.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) mako? ( dev-python/mako[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) ldap? ( dev-python/python-ldap[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) libvirt? ( python_targets_python3_8? ( dev-python/libvirt-python[python_targets_python3_8(-)?] ) ) openssl? ( dev-libs/openssl:0=[-bindist(-)] dev-python/pyopenssl[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) raet? ( >=dev-python/libnacl-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/ioflo-1.1.7[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/raet-0.6.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) cherrypy? ( >=dev-python/cherrypy-3.2.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) cheetah? ( >=dev-python/cheetah3-3.2.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) genshi? ( dev-python/genshi[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) mongodb? ( dev-python/pymongo[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) portage? ( sys-apps/portage[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) keyring? ( dev-python/keyring[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) redis? ( dev-python/redis-py[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) selinux? ( sec-policy/selinux-salt ) nova? ( python_targets_python3_8? ( >=dev-python/python-novaclient-2.17.0[python_targets_python3_8(-)?] ) ) neutron? ( python_targets_python3_8? ( >=dev-python/python-neutronclient-2.3.6[python_targets_python3_8(-)?] ) ) gnupg? ( dev-python/python-gnupg[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) profile? ( dev-python/yappi[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) vim-syntax? ( app-vim/salt-vim ) zeromq? ( >=dev-python/pyzmq-19.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) >=dev-python/boto-2.32.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jsonschema-3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/mako[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mock-2.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/moto-0.3.6[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/passlib dev-python/pip[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyopenssl[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-salt-factories-1.0.0_rc13[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-tempdir[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-helpers-namespace[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-subtests[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/flaky[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/libcloud[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] net-dns/bind-tools >=dev-python/virtualenv-20.3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !x86? ( >=dev-python/boto3-1.17.67[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) ) virtual/pkgconfig python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] DEFINED_PHASES=compile configure install postinst prepare test DESCRIPTION=Salt is a remote execution and configuration manager EAPI=8 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) x86? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/salt/salt-3004.1.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=6690d888d0954d7e3cd468945d1043d3 +_md5_=1dd5dcff8bd6b80356a7b2f35c8efb5f diff --git a/metadata/md5-cache/app-backup/Manifest.gz b/metadata/md5-cache/app-backup/Manifest.gz index 33b7d50d471b..6e48ff778d53 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/dar-2.7.3 b/metadata/md5-cache/app-backup/dar-2.7.3 deleted file mode 100644 index faa915611c2b..000000000000 --- a/metadata/md5-cache/app-backup/dar-2.7.3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=doc? ( app-doc/doxygen ) nls? ( sys-devel/gettext ) -DEFINED_PHASES=configure install -DEPEND=app-arch/bzip2:= app-arch/xz-utils app-arch/zstd:= sys-libs/libcap >=sys-libs/zlib-1.2.3:= argon2? ( app-crypt/argon2:= ) curl? ( net-misc/curl ) gcrypt? ( dev-libs/libgcrypt:0= dev-libs/libgpg-error ) gpg? ( app-crypt/gpgme:= ) lz4? ( app-arch/lz4:= ) lzo? ( dev-libs/lzo:2 ) nls? ( virtual/libintl ) rsync? ( net-libs/librsync:= ) threads? ( dev-libs/libthreadar ) xattr? ( sys-apps/attr ) -DESCRIPTION=A full featured backup tool, aimed for disks -EAPI=8 -HOMEPAGE=http://dar.linux.free.fr/ -IUSE=argon2 curl dar32 dar64 doc gcrypt gpg lz4 lzo nls rsync threads xattr -KEYWORDS=amd64 ppc sparc x86 ~amd64-linux -LICENSE=GPL-2+ -RDEPEND=app-arch/bzip2:= app-arch/xz-utils app-arch/zstd:= sys-libs/libcap >=sys-libs/zlib-1.2.3:= argon2? ( app-crypt/argon2:= ) curl? ( net-misc/curl ) gcrypt? ( dev-libs/libgcrypt:0= dev-libs/libgpg-error ) gpg? ( app-crypt/gpgme:= ) lz4? ( app-arch/lz4:= ) lzo? ( dev-libs/lzo:2 ) nls? ( virtual/libintl ) rsync? ( net-libs/librsync:= ) threads? ( dev-libs/libthreadar ) xattr? ( sys-apps/attr ) -REQUIRED_USE=?? ( dar32 dar64 ) gpg? ( gcrypt ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://sourceforge/dar/dar-2.7.3.tar.gz -_eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=9c5d37bbc7d8545f9f31d67cc228d436 diff --git a/metadata/md5-cache/app-crypt/Manifest.gz b/metadata/md5-cache/app-crypt/Manifest.gz index 99d7be56da0c..dca67c17dad7 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/acme-1.25.0 b/metadata/md5-cache/app-crypt/acme-1.25.0 index 5de80053912d..bffda2fbf228 100644 --- a/metadata/md5-cache/app-crypt/acme-1.25.0 +++ b/metadata/md5-cache/app-crypt/acme-1.25.0 @@ -4,7 +4,7 @@ DESCRIPTION=An implementation of the ACME protocol EAPI=8 HOMEPAGE=https://github.com/certbot/certbot https://letsencrypt.org/ IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=dev-python/chardet[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/cryptography-2.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/josepy-1.13.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyopenssl-17.3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyrfc3339[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytz-2019.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.20.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-toolbelt-0.3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/certbot/certbot/archive/v1.25.0.tar.gz -> certbot-1.25.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=1d59f08256eea45cbae3e19759aa5994 +_md5_=a34cb5a32135113104372a87bed263b7 diff --git a/metadata/md5-cache/app-crypt/certbot-1.25.0 b/metadata/md5-cache/app-crypt/certbot-1.25.0 index 04a12b306664..e1f63cab386f 100644 --- a/metadata/md5-cache/app-crypt/certbot-1.25.0 +++ b/metadata/md5-cache/app-crypt/certbot-1.25.0 @@ -4,7 +4,7 @@ DESCRIPTION=Let's encrypt client to automate deployment of X.509 certificates EAPI=7 HOMEPAGE=https://github.com/certbot/certbot https://letsencrypt.org/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=app-crypt/acme-1.25.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/configargparse-0.9.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/configobj-5.0.6[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/cryptography-2.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/distro-1.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/josepy-1.13.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/parsedatetime-2.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyrfc3339[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytz-2019.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/zope-component[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/zope-interface[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/certbot/certbot/archive/v1.25.0.tar.gz -> certbot-1.25.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=fe3c00316fb8dc66538a0168eff8cb0b +_md5_=0be6951c2273a0f9002d74867f378e5b diff --git a/metadata/md5-cache/app-crypt/certbot-apache-1.25.0 b/metadata/md5-cache/app-crypt/certbot-apache-1.25.0 index 98a554859ba3..65bd3c2a2c6d 100644 --- a/metadata/md5-cache/app-crypt/certbot-apache-1.25.0 +++ b/metadata/md5-cache/app-crypt/certbot-apache-1.25.0 @@ -4,7 +4,7 @@ DESCRIPTION=Apache plugin for certbot (Let's Encrypt Client) EAPI=7 HOMEPAGE=https://github.com/certbot/certbot https://letsencrypt.org/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=app-crypt/acme-1.25.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=app-crypt/certbot-1.25.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/python-augeas[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/zope-component[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/zope-interface[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/certbot/certbot/archive/v1.25.0.tar.gz -> certbot-1.25.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b0cb5e1ab0af7354c8e27507493c6a93 +_md5_=ae2305148ccbf60976894a33a542f7c9 diff --git a/metadata/md5-cache/app-crypt/certbot-nginx-1.25.0 b/metadata/md5-cache/app-crypt/certbot-nginx-1.25.0 index 30e1c58b0685..dc86c2569cdb 100644 --- a/metadata/md5-cache/app-crypt/certbot-nginx-1.25.0 +++ b/metadata/md5-cache/app-crypt/certbot-nginx-1.25.0 @@ -4,7 +4,7 @@ DESCRIPTION=Nginx plugin for certbot (Let's Encrypt Client) EAPI=7 HOMEPAGE=https://github.com/certbot/certbot https://letsencrypt.org/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=app-crypt/acme-1.25.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=app-crypt/certbot-1.25.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyopenssl-17.3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyparsing-2.2.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/zope-interface[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/certbot/certbot/archive/v1.25.0.tar.gz -> certbot-1.25.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=9130be80780814d7aff0e4927189e79c +_md5_=4839bff7e94e1f498d9855abe2e8953f diff --git a/metadata/md5-cache/app-crypt/trousers-0.3.14-r3 b/metadata/md5-cache/app-crypt/trousers-0.3.14-r3 deleted file mode 100644 index b389a3516795..000000000000 --- a/metadata/md5-cache/app-crypt/trousers-0.3.14-r3 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 virtual/pkgconfig virtual/pkgconfig -DEFINED_PHASES=configure install prepare setup -DEPEND=acct-group/tss acct-user/tss >=dev-libs/glib-2 >=dev-libs/openssl-0.9.7:0= -DESCRIPTION=An open-source TCG Software Stack (TSS) v1.1 implementation -EAPI=7 -HOMEPAGE=http://trousers.sf.net -IUSE=doc selinux -KEYWORDS=amd64 arm arm64 ~m68k ~ppc ppc64 ~s390 x86 -LICENSE=CPL-1.0 GPL-2 -RDEPEND=acct-group/tss acct-user/tss >=dev-libs/glib-2 >=dev-libs/openssl-0.9.7:0= selinux? ( sec-policy/selinux-tcsd ) -SLOT=0 -SRC_URI=mirror://sourceforge/trousers/trousers/trousers-0.3.14.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 -_md5_=364e6d51bc7a57c2406bfabc308c7527 diff --git a/metadata/md5-cache/app-crypt/trousers-0.3.15 b/metadata/md5-cache/app-crypt/trousers-0.3.15 index 737ad7f195b5..582f742d2d6b 100644 --- a/metadata/md5-cache/app-crypt/trousers-0.3.15 +++ b/metadata/md5-cache/app-crypt/trousers-0.3.15 @@ -11,4 +11,4 @@ RDEPEND=acct-group/tss acct-user/tss >=dev-libs/glib-2 >=dev-libs/openssl-0.9.7: SLOT=0 SRC_URI=mirror://sourceforge/trousers/trousers/trousers-0.3.15.tar.gz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 -_md5_=c378935374eaeb56d22486f9ceb1bb78 +_md5_=be92937232959f515f5147bf7538c1d9 diff --git a/metadata/md5-cache/app-dicts/Manifest.gz b/metadata/md5-cache/app-dicts/Manifest.gz index 02a65cd14aba..ef8e7d4b86c8 100644 Binary files a/metadata/md5-cache/app-dicts/Manifest.gz and b/metadata/md5-cache/app-dicts/Manifest.gz differ diff --git a/metadata/md5-cache/app-dicts/prime-dict-1.0.0-r3 b/metadata/md5-cache/app-dicts/prime-dict-1.0.0-r3 index 042cd2024af7..00daf7179797 100644 --- a/metadata/md5-cache/app-dicts/prime-dict-1.0.0-r3 +++ b/metadata/md5-cache/app-dicts/prime-dict-1.0.0-r3 @@ -11,5 +11,5 @@ RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-la REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) SLOT=0 SRC_URI=https://prime-dict.osdn.jp/src/prime-dict-1.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5bb0c79b712311c8117b619480e9f3f2 diff --git a/metadata/md5-cache/app-doc/Manifest.gz b/metadata/md5-cache/app-doc/Manifest.gz index b095e8305a62..735abb9c0b4a 100644 Binary files a/metadata/md5-cache/app-doc/Manifest.gz and b/metadata/md5-cache/app-doc/Manifest.gz differ diff --git a/metadata/md5-cache/app-doc/casting-spels-emacs-19-r2 b/metadata/md5-cache/app-doc/casting-spels-emacs-19-r2 index 097a881dfd48..5e9e4999611b 100644 --- a/metadata/md5-cache/app-doc/casting-spels-emacs-19-r2 +++ b/metadata/md5-cache/app-doc/casting-spels-emacs-19-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ FDL-1.2 RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://casting-spels-emacs.googlecode.com/files/casting-spels-emacs-v19.zip -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=886e819f6c1df75c825c53c26c5ce4ee diff --git a/metadata/md5-cache/app-doc/eclass-manpages-20210712 b/metadata/md5-cache/app-doc/eclass-manpages-20210712 deleted file mode 100644 index 3f7d1c9bd6a8..000000000000 --- a/metadata/md5-cache/app-doc/eclass-manpages-20210712 +++ /dev/null @@ -1,10 +0,0 @@ -BDEPEND=app-arch/xz-utils sys-apps/gawk -DEFINED_PHASES=install -DESCRIPTION=Collection of Gentoo eclass manpages -EAPI=8 -HOMEPAGE=https://github.com/mgorny/eclass-to-manpage -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://dev.gentoo.org/~ulm/distfiles/eclass-manpages-20210712.tar.xz -_md5_=ec1630b773610b02e0860c4673f40dac diff --git a/metadata/md5-cache/app-doc/eclass-manpages-20211002 b/metadata/md5-cache/app-doc/eclass-manpages-20220417 similarity index 88% rename from metadata/md5-cache/app-doc/eclass-manpages-20211002 rename to metadata/md5-cache/app-doc/eclass-manpages-20220417 index 4ca8f15db06b..935684e1cee7 100644 --- a/metadata/md5-cache/app-doc/eclass-manpages-20211002 +++ b/metadata/md5-cache/app-doc/eclass-manpages-20220417 @@ -6,5 +6,5 @@ HOMEPAGE=https://github.com/mgorny/eclass-to-manpage KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris LICENSE=GPL-2 SLOT=0 -SRC_URI=https://dev.gentoo.org/~ulm/distfiles/eclass-manpages-20211002.tar.xz -_md5_=d02d74d41b4d01ba7107871ac705d5e9 +SRC_URI=https://dev.gentoo.org/~ulm/distfiles/eclass-manpages-20220417.tar.xz +_md5_=24e29922ec3b3bca5c87999a55ec62e4 diff --git a/metadata/md5-cache/app-editors/Manifest.gz b/metadata/md5-cache/app-editors/Manifest.gz index 21a91c1f96bd..60b6185ccdb4 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/diakonos-0.9.7 b/metadata/md5-cache/app-editors/diakonos-0.9.7 index 7ad5734cdbf5..84bd6a68bdaa 100644 --- a/metadata/md5-cache/app-editors/diakonos-0.9.7 +++ b/metadata/md5-cache/app-editors/diakonos-0.9.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Pistos/diakonos/archive/refs/tags/v0.9.7.tar.gz -> diakonos-0.9.7.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cb55b05085e7b69c8e9a7312faac8756 diff --git a/metadata/md5-cache/app-editors/emacs-23.4-r21 b/metadata/md5-cache/app-editors/emacs-23.4-r21 index 09e101a216f8..9f566808a385 100644 --- a/metadata/md5-cache/app-editors/emacs-23.4-r21 +++ b/metadata/md5-cache/app-editors/emacs-23.4-r21 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2 RDEPEND=acct-group/mail app-emacs/emacs-common[games?,gui(-)?] net-libs/liblockfile sys-libs/ncurses:0= kerberos? ( virtual/krb5 ) alsa? ( media-libs/alsa-lib ) games? ( acct-group/gamestat ) gpm? ( sys-libs/gpm ) dbus? ( sys-apps/dbus ) gui? ( !aqua? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-misc/xbitmaps gconf? ( >=gnome-base/gconf-2.26.2 ) gif? ( media-libs/giflib:0= ) jpeg? ( virtual/jpeg:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:0 ) xpm? ( x11-libs/libXpm ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:2 ) !gtk? ( motif? ( >=x11-libs/motif-2.3:0 x11-libs/libXpm x11-libs/libXext x11-libs/libXmu x11-libs/libXt ) !motif? ( Xaw3d? ( x11-libs/libXaw3d x11-libs/libXext x11-libs/libXmu x11-libs/libXt ) !Xaw3d? ( athena? ( x11-libs/libXaw x11-libs/libXext x11-libs/libXmu x11-libs/libXt ) ) ) ) ) ) app-eselect/eselect-emacs SLOT=23 SRC_URI=mirror://gnu/emacs/emacs-23.4.tar.bz2 https://dev.gentoo.org/~ulm/emacs/emacs-23.4-patches-23.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ae02fe88c10db19053acc6b39fed4fa8 diff --git a/metadata/md5-cache/app-editors/emacs-24.5-r11 b/metadata/md5-cache/app-editors/emacs-24.5-r11 index 16b3970bca8f..ed2e4e2cb329 100644 --- a/metadata/md5-cache/app-editors/emacs-24.5-r11 +++ b/metadata/md5-cache/app-editors/emacs-24.5-r11 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2 RDEPEND=acct-group/mail app-emacs/emacs-common[games?,gui(-)?] net-libs/liblockfile sys-libs/ncurses:0= acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) games? ( acct-group/gamestat ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) kerberos? ( virtual/krb5 ) libxml2? ( >=dev-libs/libxml2-2.2.0 ) selinux? ( sys-libs/libselinux ) ssl? ( net-libs/gnutls:0= ) zlib? ( sys-libs/zlib ) gui? ( !aqua? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr x11-misc/xbitmaps gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( virtual/jpeg:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:0 ) xpm? ( x11-libs/libXpm ) imagemagick? ( >=media-gfx/imagemagick-6.6.2:0= ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:3 ) !gtk? ( motif? ( >=x11-libs/motif-2.3:0 x11-libs/libXpm x11-libs/libXmu x11-libs/libXt ) !motif? ( Xaw3d? ( x11-libs/libXaw3d x11-libs/libXmu x11-libs/libXt ) !Xaw3d? ( athena? ( x11-libs/libXaw x11-libs/libXmu x11-libs/libXt ) ) ) ) ) ) app-eselect/eselect-emacs SLOT=24 SRC_URI=mirror://gnu/emacs/emacs-24.5.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-24.5-patches-5.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6521480950cba7339ff68371909766b5 diff --git a/metadata/md5-cache/app-editors/emacs-25.3-r11 b/metadata/md5-cache/app-editors/emacs-25.3-r11 index 9d3cda891c8a..ba1b13cf9505 100644 --- a/metadata/md5-cache/app-editors/emacs-25.3-r11 +++ b/metadata/md5-cache/app-editors/emacs-25.3-r11 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2 RDEPEND=acct-group/mail app-emacs/emacs-common[games?,gui(-)?] net-libs/liblockfile sys-libs/ncurses:0= acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) games? ( acct-group/gamestat ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) kerberos? ( virtual/krb5 ) libxml2? ( >=dev-libs/libxml2-2.2.0 ) selinux? ( sys-libs/libselinux ) ssl? ( net-libs/gnutls:0= ) zlib? ( sys-libs/zlib ) gui? ( !aqua? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes x11-libs/libXinerama x11-libs/libXrandr x11-libs/libxcb x11-misc/xbitmaps gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( virtual/jpeg:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:0 ) xpm? ( x11-libs/libXpm ) imagemagick? ( >=media-gfx/imagemagick-6.6.2:0= ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18 ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:3 ) !gtk? ( motif? ( >=x11-libs/motif-2.3:0 x11-libs/libXpm x11-libs/libXmu x11-libs/libXt ) !motif? ( Xaw3d? ( x11-libs/libXaw3d x11-libs/libXmu x11-libs/libXt ) !Xaw3d? ( athena? ( x11-libs/libXaw x11-libs/libXmu x11-libs/libXt ) ) ) ) ) ) app-eselect/eselect-emacs SLOT=25 SRC_URI=mirror://gnu/emacs/emacs-25.3.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-25.3-patches-3.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6b307b0440bae9f8eaec0d0ea5f0c69f diff --git a/metadata/md5-cache/app-editors/emacs-26.3-r6 b/metadata/md5-cache/app-editors/emacs-26.3-r6 index c7407a0df4d0..4f7b1db7f554 100644 --- a/metadata/md5-cache/app-editors/emacs-26.3-r6 +++ b/metadata/md5-cache/app-editors/emacs-26.3-r6 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2 RDEPEND=app-emacs/emacs-common[games?,gui(-)?] sys-libs/ncurses:0= acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) games? ( acct-group/gamestat ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) kerberos? ( virtual/krb5 ) lcms? ( media-libs/lcms:2 ) libxml2? ( >=dev-libs/libxml2-2.2.0 ) mailutils? ( net-mail/mailutils[clients] ) !mailutils? ( acct-group/mail net-libs/liblockfile ) selinux? ( sys-libs/libselinux ) ssl? ( net-libs/gnutls:0= ) systemd? ( sys-apps/systemd ) zlib? ( sys-libs/zlib ) gui? ( !aqua? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes x11-libs/libXinerama x11-libs/libXrandr x11-libs/libxcb x11-misc/xbitmaps gconf? ( >=gnome-base/gconf-2.26.2 ) gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( virtual/jpeg:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:0 ) xpm? ( x11-libs/libXpm ) imagemagick? ( >=media-gfx/imagemagick-6.6.2:0= ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18 ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:3 xwidgets? ( net-libs/webkit-gtk:4= x11-libs/libXcomposite ) ) !gtk? ( motif? ( >=x11-libs/motif-2.3:0 x11-libs/libXpm x11-libs/libXmu x11-libs/libXt ) !motif? ( Xaw3d? ( x11-libs/libXaw3d x11-libs/libXmu x11-libs/libXt ) !Xaw3d? ( athena? ( x11-libs/libXaw x11-libs/libXmu x11-libs/libXt ) ) ) ) ) ) app-eselect/eselect-emacs SLOT=26 SRC_URI=mirror://gnu/emacs/emacs-26.3.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-26.3-patches-1.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7fc4e8263b512b03a50b1d4ac392b4de diff --git a/metadata/md5-cache/app-editors/emacs-26.3-r7 b/metadata/md5-cache/app-editors/emacs-26.3-r7 index 6ea3c1957494..ca7251b273ae 100644 --- a/metadata/md5-cache/app-editors/emacs-26.3-r7 +++ b/metadata/md5-cache/app-editors/emacs-26.3-r7 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2 RDEPEND=app-emacs/emacs-common[games?,gui(-)?] sys-libs/ncurses:0= acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) games? ( acct-group/gamestat ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) kerberos? ( virtual/krb5 ) lcms? ( media-libs/lcms:2 ) libxml2? ( >=dev-libs/libxml2-2.2.0 ) mailutils? ( net-mail/mailutils[clients] ) !mailutils? ( acct-group/mail net-libs/liblockfile ) selinux? ( sys-libs/libselinux ) ssl? ( net-libs/gnutls:0= ) systemd? ( sys-apps/systemd ) zlib? ( sys-libs/zlib ) gui? ( !aqua? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes x11-libs/libXinerama x11-libs/libXrandr x11-libs/libxcb x11-misc/xbitmaps gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( virtual/jpeg:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:0 ) xpm? ( x11-libs/libXpm ) imagemagick? ( >=media-gfx/imagemagick-6.6.2:0= ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18 ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:3 xwidgets? ( net-libs/webkit-gtk:4= x11-libs/libXcomposite ) ) !gtk? ( motif? ( >=x11-libs/motif-2.3:0 x11-libs/libXpm x11-libs/libXmu x11-libs/libXt ) !motif? ( Xaw3d? ( x11-libs/libXaw3d x11-libs/libXmu x11-libs/libXt ) !Xaw3d? ( athena? ( x11-libs/libXaw x11-libs/libXmu x11-libs/libXt ) ) ) ) ) ) app-eselect/eselect-emacs SLOT=26 SRC_URI=mirror://gnu/emacs/emacs-26.3.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-26.3-patches-2.tar.xz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=216594b731c7b074b895eba6f607de4e diff --git a/metadata/md5-cache/app-editors/emacs-27.2-r5 b/metadata/md5-cache/app-editors/emacs-27.2-r5 index 2c3f57eab1fd..df762f30c5ee 100644 --- a/metadata/md5-cache/app-editors/emacs-27.2-r5 +++ b/metadata/md5-cache/app-editors/emacs-27.2-r5 @@ -12,5 +12,5 @@ RDEPEND=app-emacs/emacs-common[games?,gui(-)?] sys-libs/ncurses:0= acl? ( virtua RESTRICT=test SLOT=27 SRC_URI=mirror://gnu/emacs/emacs-27.2.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-27.2-patches-3.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=caaed6edf51471ca171f020c63383631 diff --git a/metadata/md5-cache/app-editors/emacs-28.1 b/metadata/md5-cache/app-editors/emacs-28.1 index f83dccdfdbf5..3b0b50841e7e 100644 --- a/metadata/md5-cache/app-editors/emacs-28.1 +++ b/metadata/md5-cache/app-editors/emacs-28.1 @@ -12,5 +12,5 @@ RDEPEND=app-emacs/emacs-common[games?,gui(-)?] sys-libs/ncurses:0= acl? ( virtua RESTRICT=test SLOT=28 SRC_URI=mirror://gnu/emacs/emacs-28.1.tar.xz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=119539592efdcdd6941436c11e79a857 diff --git a/metadata/md5-cache/app-editors/emacs-28.1.9999 b/metadata/md5-cache/app-editors/emacs-28.1.9999 index 66358ddcb22c..62cfa4ced19d 100644 --- a/metadata/md5-cache/app-editors/emacs-28.1.9999 +++ b/metadata/md5-cache/app-editors/emacs-28.1.9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=app-emacs/emacs-common[games?,gui(-)?] sys-libs/ncurses:0= acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) games? ( acct-group/gamestat ) gmp? ( dev-libs/gmp:0= ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) jit? ( sys-devel/gcc:=[jit(-)] ) json? ( dev-libs/jansson:= ) kerberos? ( virtual/krb5 ) lcms? ( media-libs/lcms:2 ) libxml2? ( >=dev-libs/libxml2-2.2.0 ) mailutils? ( net-mail/mailutils[clients] ) !mailutils? ( acct-group/mail net-libs/liblockfile ) selinux? ( sys-libs/libselinux ) ssl? ( net-libs/gnutls:0= ) systemd? ( sys-apps/systemd ) zlib? ( sys-libs/zlib ) gui? ( !aqua? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes x11-libs/libXinerama x11-libs/libXrandr x11-libs/libxcb x11-misc/xbitmaps gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( virtual/jpeg:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:0 ) xpm? ( x11-libs/libXpm ) imagemagick? ( >=media-gfx/imagemagick-6.6.2:0= ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18 ) harfbuzz? ( media-libs/harfbuzz:0= ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:3 xwidgets? ( net-libs/webkit-gtk:4= x11-libs/libXcomposite ) ) !gtk? ( motif? ( >=x11-libs/motif-2.3:0 x11-libs/libXpm x11-libs/libXmu x11-libs/libXt ) !motif? ( Xaw3d? ( x11-libs/libXaw3d x11-libs/libXmu x11-libs/libXt ) !Xaw3d? ( athena? ( x11-libs/libXaw x11-libs/libXmu x11-libs/libXt ) ) ) ) ) ) app-eselect/eselect-emacs RESTRICT=test SLOT=28-vcs -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=76711dda623a786c52137e309d0ee218 diff --git a/metadata/md5-cache/app-editors/emacs-29.0.9999 b/metadata/md5-cache/app-editors/emacs-29.0.9999 index 76499b70ee40..0ad7231c2f4e 100644 --- a/metadata/md5-cache/app-editors/emacs-29.0.9999 +++ b/metadata/md5-cache/app-editors/emacs-29.0.9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=app-emacs/emacs-common[games?,gui(-)?] sys-libs/ncurses:0= acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) games? ( acct-group/gamestat ) gmp? ( dev-libs/gmp:0= ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) jit? ( sys-devel/gcc:=[jit(-)] ) json? ( dev-libs/jansson:= ) kerberos? ( virtual/krb5 ) lcms? ( media-libs/lcms:2 ) libxml2? ( >=dev-libs/libxml2-2.2.0 ) mailutils? ( net-mail/mailutils[clients] ) !mailutils? ( acct-group/mail net-libs/liblockfile ) selinux? ( sys-libs/libselinux ) sqlite? ( dev-db/sqlite:3 ) ssl? ( net-libs/gnutls:0= ) systemd? ( sys-apps/systemd ) zlib? ( sys-libs/zlib ) gui? ( gif? ( media-libs/giflib:0= ) jpeg? ( virtual/jpeg:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:0 ) webp? ( media-libs/libwebp:0= ) imagemagick? ( >=media-gfx/imagemagick-6.6.2:0= ) !aqua? ( gsettings? ( >=dev-libs/glib-2.28.6 ) gtk? ( !X? ( media-libs/fontconfig media-libs/freetype >=x11-libs/cairo-1.12.18 x11-libs/gtk+:3 harfbuzz? ( media-libs/harfbuzz:0= ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) xwidgets? ( net-libs/webkit-gtk:4= ) ) ) !gtk? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes x11-libs/libXinerama x11-libs/libXrandr x11-libs/libxcb x11-misc/xbitmaps xpm? ( x11-libs/libXpm ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18 ) harfbuzz? ( media-libs/harfbuzz:0= ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:3 xwidgets? ( net-libs/webkit-gtk:4= x11-libs/libXcomposite ) ) !gtk? ( motif? ( >=x11-libs/motif-2.3:0 x11-libs/libXpm x11-libs/libXmu x11-libs/libXt ) !motif? ( Xaw3d? ( x11-libs/libXaw3d x11-libs/libXmu x11-libs/libXt ) !Xaw3d? ( athena? ( x11-libs/libXaw x11-libs/libXmu x11-libs/libXt ) ) ) ) ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes x11-libs/libXinerama x11-libs/libXrandr x11-libs/libxcb x11-misc/xbitmaps xpm? ( x11-libs/libXpm ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18 ) harfbuzz? ( media-libs/harfbuzz:0= ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:3 xwidgets? ( net-libs/webkit-gtk:4= x11-libs/libXcomposite ) ) !gtk? ( motif? ( >=x11-libs/motif-2.3:0 x11-libs/libXpm x11-libs/libXmu x11-libs/libXt ) !motif? ( Xaw3d? ( x11-libs/libXaw3d x11-libs/libXmu x11-libs/libXt ) !Xaw3d? ( athena? ( x11-libs/libXaw x11-libs/libXmu x11-libs/libXt ) ) ) ) ) ) ) app-eselect/eselect-emacs RESTRICT=test SLOT=29-vcs -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=63b9f6124745091834424529b9dfd0c9 diff --git a/metadata/md5-cache/app-editors/ghex-42.1 b/metadata/md5-cache/app-editors/ghex-42.1 new file mode 100644 index 000000000000..543a8ff291b1 --- /dev/null +++ b/metadata/md5-cache/app-editors/ghex-42.1 @@ -0,0 +1,15 @@ +BDEPEND=gtk-doc? ( dev-util/gi-docgen ) test? ( dev-util/desktop-file-utils dev-libs/appstream-glib ) dev-util/gtk-update-icon-cache dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=>=dev-libs/glib-2.66.0:2 >=gui-libs/gtk-4.0.0:4 dev-libs/gobject-introspection !app-editors/ghex:2 +DESCRIPTION=GNOME hexadecimal editor +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Ghex +IUSE=gtk-doc test +KEYWORDS=~amd64 ~arm ~riscv ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2+ FDL-1.1+ +RDEPEND=>=dev-libs/glib-2.66.0:2 >=gui-libs/gtk-4.0.0:4 dev-libs/gobject-introspection !app-editors/ghex:2 +RESTRICT=!test? ( test ) +SLOT=4 +SRC_URI=mirror://gnome/sources/ghex/42/ghex-42.1.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=09931ad9153d55a0a0f26f541822e70c diff --git a/metadata/md5-cache/app-editors/neovim-0.4.4-r101 b/metadata/md5-cache/app-editors/neovim-0.4.4-r101 deleted file mode 100644 index 57215772876c..000000000000 --- a/metadata/md5-cache/app-editors/neovim-0.4.4-r101 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) dev-util/gperf virtual/libiconv virtual/libintl virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) dev-lua/luv[lua_single_target_luajit(-)?,lua_single_target_lua5-1(-)?] lua_single_target_luajit? ( dev-lua/lpeg[lua_targets_luajit(-)] dev-lua/mpack[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/lpeg[lua_targets_lua5-1(-)] dev-lua/mpack[lua_targets_lua5-1(-)] ) lua_single_target_lua5-1? ( dev-lua/LuaBitOp[lua_targets_lua5-1(-)] ) dev-libs/libuv:0= >=dev-libs/libvterm-0.1.2 dev-libs/msgpack:0= !kernel_Darwin? ( net-libs/libnsl:= ) 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 +nvimpager +tui lua_single_target_luajit lua_single_target_lua5-1 -KEYWORDS=amd64 ~arm ~arm64 x86 ~x64-macos -LICENSE=Apache-2.0 vim -RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) dev-lua/luv[lua_single_target_luajit(-)?,lua_single_target_lua5-1(-)?] lua_single_target_luajit? ( dev-lua/lpeg[lua_targets_luajit(-)] dev-lua/mpack[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/lpeg[lua_targets_lua5-1(-)] dev-lua/mpack[lua_targets_lua5-1(-)] ) lua_single_target_lua5-1? ( dev-lua/LuaBitOp[lua_targets_lua5-1(-)] ) dev-libs/libuv:0= >=dev-libs/libvterm-0.1.2 dev-libs/msgpack:0= !kernel_Darwin? ( net-libs/libnsl:= ) tui? ( dev-libs/libtermkey >=dev-libs/unibilium-2.0.0:0= ) app-eselect/eselect-vi -REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) -SLOT=0 -SRC_URI=https://github.com/neovim/neovim/archive/v0.4.4.tar.gz -> neovim-0.4.4.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 lua-single f2c2fb82c912dd65d53bdae3613a331f lua-utils e69ff116248d78546ae1a234c086fe80 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=31069b869a4a16ad3d6f462ce5e5cfe2 diff --git a/metadata/md5-cache/app-editors/neovim-0.7.0 b/metadata/md5-cache/app-editors/neovim-0.7.0 new file mode 100644 index 000000000000..a7df9891c243 --- /dev/null +++ b/metadata/md5-cache/app-editors/neovim-0.7.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( lua_single_target_luajit? ( dev-lua/busted[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/busted[lua_targets_lua5-1(-)] ) ) dev-util/ninja >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) >=dev-lua/luv-1.43.0[lua_single_target_luajit(-)?,lua_single_target_lua5-1(-)?] lua_single_target_luajit? ( dev-lua/lpeg[lua_targets_luajit(-)] dev-lua/mpack[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/lpeg[lua_targets_lua5-1(-)] dev-lua/mpack[lua_targets_lua5-1(-)] ) lua_single_target_lua5-1? ( dev-lua/LuaBitOp[lua_targets_lua5-1(-)] ) >=dev-libs/libuv-1.44.1:= >=dev-libs/libvterm-0.1.4 >=dev-libs/msgpack-3.0.0:= >=dev-libs/tree-sitter-0.20.6:= tui? ( >=dev-libs/libtermkey-0.22 >=dev-libs/unibilium-2.0.0:0= ) +DESCRIPTION=Vim-fork focused on extensibility and agility +EAPI=8 +HOMEPAGE=https://neovim.io +IUSE=+lto +nvimpager test +tui lua_single_target_luajit lua_single_target_lua5-1 +KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 ~x64-macos +LICENSE=Apache-2.0 vim +RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) >=dev-lua/luv-1.43.0[lua_single_target_luajit(-)?,lua_single_target_lua5-1(-)?] lua_single_target_luajit? ( dev-lua/lpeg[lua_targets_luajit(-)] dev-lua/mpack[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/lpeg[lua_targets_lua5-1(-)] dev-lua/mpack[lua_targets_lua5-1(-)] ) lua_single_target_lua5-1? ( dev-lua/LuaBitOp[lua_targets_lua5-1(-)] ) >=dev-libs/libuv-1.44.1:= >=dev-libs/libvterm-0.1.4 >=dev-libs/msgpack-3.0.0:= >=dev-libs/tree-sitter-0.20.6:= tui? ( >=dev-libs/libtermkey-0.22 >=dev-libs/unibilium-2.0.0:0= ) app-eselect/eselect-vi +REQUIRED_USE=test? ( lua_single_target_luajit ) +RESTRICT=!test? ( test ) test +SLOT=0 +SRC_URI=https://github.com/neovim/neovim/archive/v0.7.0.tar.gz -> neovim-0.7.0.tar.gz +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 lua-single f2c2fb82c912dd65d53bdae3613a331f lua-utils e69ff116248d78546ae1a234c086fe80 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=18aad58cb8fe3735143e58cf32d6118c diff --git a/metadata/md5-cache/app-editors/neovim-9999 b/metadata/md5-cache/app-editors/neovim-9999 index 859e38367973..14009825c78e 100644 --- a/metadata/md5-cache/app-editors/neovim-9999 +++ b/metadata/md5-cache/app-editors/neovim-9999 @@ -1,15 +1,15 @@ BDEPEND=test? ( lua_single_target_luajit? ( dev-lua/busted[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/busted[lua_targets_lua5-1(-)] ) ) dev-util/ninja >=dev-util/cmake-3.20.5 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) >=dev-lua/luv-1.43.0[lua_single_target_luajit(-)?,lua_single_target_lua5-1(-)?] lua_single_target_luajit? ( dev-lua/lpeg[lua_targets_luajit(-)] dev-lua/mpack[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/lpeg[lua_targets_lua5-1(-)] dev-lua/mpack[lua_targets_lua5-1(-)] ) lua_single_target_lua5-1? ( dev-lua/LuaBitOp[lua_targets_lua5-1(-)] ) >=dev-libs/libuv-1.43.0:= >=dev-libs/libvterm-0.1.4 >=dev-libs/msgpack-3.0.0:= >=dev-libs/tree-sitter-0.20.1:= tui? ( >=dev-libs/libtermkey-0.22 >=dev-libs/unibilium-2.0.0:0= ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) >=dev-lua/luv-1.43.0[lua_single_target_luajit(-)?,lua_single_target_lua5-1(-)?] lua_single_target_luajit? ( dev-lua/lpeg[lua_targets_luajit(-)] dev-lua/mpack[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/lpeg[lua_targets_lua5-1(-)] dev-lua/mpack[lua_targets_lua5-1(-)] ) lua_single_target_lua5-1? ( dev-lua/LuaBitOp[lua_targets_lua5-1(-)] ) >=dev-libs/libuv-1.44.1:= >=dev-libs/libvterm-0.1.4 >=dev-libs/msgpack-3.0.0:= >=dev-libs/tree-sitter-0.20.6:= tui? ( >=dev-libs/libtermkey-0.22 >=dev-libs/unibilium-2.0.0:0= ) DESCRIPTION=Vim-fork focused on extensibility and agility -EAPI=7 +EAPI=8 HOMEPAGE=https://neovim.io IUSE=+lto +nvimpager test +tui lua_single_target_luajit lua_single_target_lua5-1 LICENSE=Apache-2.0 vim PROPERTIES=live -RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) >=dev-lua/luv-1.43.0[lua_single_target_luajit(-)?,lua_single_target_lua5-1(-)?] lua_single_target_luajit? ( dev-lua/lpeg[lua_targets_luajit(-)] dev-lua/mpack[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/lpeg[lua_targets_lua5-1(-)] dev-lua/mpack[lua_targets_lua5-1(-)] ) lua_single_target_lua5-1? ( dev-lua/LuaBitOp[lua_targets_lua5-1(-)] ) >=dev-libs/libuv-1.43.0:= >=dev-libs/libvterm-0.1.4 >=dev-libs/msgpack-3.0.0:= >=dev-libs/tree-sitter-0.20.1:= tui? ( >=dev-libs/libtermkey-0.22 >=dev-libs/unibilium-2.0.0:0= ) app-eselect/eselect-vi +RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) >=dev-lua/luv-1.43.0[lua_single_target_luajit(-)?,lua_single_target_lua5-1(-)?] lua_single_target_luajit? ( dev-lua/lpeg[lua_targets_luajit(-)] dev-lua/mpack[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/lpeg[lua_targets_lua5-1(-)] dev-lua/mpack[lua_targets_lua5-1(-)] ) lua_single_target_lua5-1? ( dev-lua/LuaBitOp[lua_targets_lua5-1(-)] ) >=dev-libs/libuv-1.44.1:= >=dev-libs/libvterm-0.1.4 >=dev-libs/msgpack-3.0.0:= >=dev-libs/tree-sitter-0.20.6:= tui? ( >=dev-libs/libtermkey-0.22 >=dev-libs/unibilium-2.0.0:0= ) app-eselect/eselect-vi REQUIRED_USE=test? ( lua_single_target_luajit ) RESTRICT=!test? ( test ) test SLOT=0 -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 lua-single f2c2fb82c912dd65d53bdae3613a331f lua-utils e69ff116248d78546ae1a234c086fe80 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=85d8de9501d9f1861a7b87caa33c3a30 +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 lua-single f2c2fb82c912dd65d53bdae3613a331f lua-utils e69ff116248d78546ae1a234c086fe80 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=18aad58cb8fe3735143e58cf32d6118c diff --git a/metadata/md5-cache/app-emacs/Manifest.gz b/metadata/md5-cache/app-emacs/Manifest.gz index 91374108048c..d61e19f1d950 100644 Binary files a/metadata/md5-cache/app-emacs/Manifest.gz and b/metadata/md5-cache/app-emacs/Manifest.gz differ diff --git a/metadata/md5-cache/app-emacs/actionscript-mode-7.2.2_p20180527 b/metadata/md5-cache/app-emacs/actionscript-mode-7.2.2_p20180527 index 1a5716557fc7..fb8278b76f1a 100644 --- a/metadata/md5-cache/app-emacs/actionscript-mode-7.2.2_p20180527 +++ b/metadata/md5-cache/app-emacs/actionscript-mode-7.2.2_p20180527 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/austinhaas/actionscript-mode/archive/65abd58e198458a8e46748c5962c41d80d60c4ea.tar.gz -> actionscript-mode-7.2.2_p20180527.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e6ea45c8f98d76fd35975669c93e9def diff --git a/metadata/md5-cache/app-emacs/adaptive-wrap-0.7 b/metadata/md5-cache/app-emacs/adaptive-wrap-0.7 index 1eed0fdcdec7..7371b4ff9009 100644 --- a/metadata/md5-cache/app-emacs/adaptive-wrap-0.7 +++ b/metadata/md5-cache/app-emacs/adaptive-wrap-0.7 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/adaptive-wrap-0.7.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f597d4059056b3b15e37a2853edafef6 diff --git a/metadata/md5-cache/app-emacs/adaptive-wrap-0.8 b/metadata/md5-cache/app-emacs/adaptive-wrap-0.8 index 0d9d5527c7f4..8e1f3103128a 100644 --- a/metadata/md5-cache/app-emacs/adaptive-wrap-0.8 +++ b/metadata/md5-cache/app-emacs/adaptive-wrap-0.8 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/adaptive-wrap-0.8.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=45bf25014460f42a7d9fd2e25ebcd22c diff --git a/metadata/md5-cache/app-emacs/all-the-icons-5.0.0 b/metadata/md5-cache/app-emacs/all-the-icons-5.0.0 index b742c22cb8b8..721fc125dabc 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-5.0.0 +++ b/metadata/md5-cache/app-emacs/all-the-icons-5.0.0 @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-24.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/domtronn/all-the-icons.el/archive/5.0.0.tar.gz -> all-the-icons-5.0.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=3bb98ea85c41e29e75551917d34b9ad4 diff --git a/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20220325 b/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20220325 index 6606667f5966..e5db3063c39f 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20220325 +++ b/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20220325 @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-24.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/domtronn/all-the-icons.el/archive/65c496d3d1d1298345beb9845840067bffb2ffd8.tar.gz -> all-the-icons-5.0.0_p20220325.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=c5315979a977e7776479930de5dac261 diff --git a/metadata/md5-cache/app-emacs/all-the-icons-dired-2.0 b/metadata/md5-cache/app-emacs/all-the-icons-dired-2.0 index 74eba1cae3f2..f9c74c170933 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-dired-2.0 +++ b/metadata/md5-cache/app-emacs/all-the-icons-dired-2.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/all-the-icons >=app-editors/emacs-24.4:* SLOT=0 SRC_URI=https://github.com/wyuenho/all-the-icons-dired/archive/2.0.tar.gz -> all-the-icons-dired-2.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f37f520189f8d00909006435aafea753 diff --git a/metadata/md5-cache/app-emacs/all-the-icons-ibuffer-1.3.0 b/metadata/md5-cache/app-emacs/all-the-icons-ibuffer-1.3.0 index 05b6442e9e38..46cfc8837b35 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-ibuffer-1.3.0 +++ b/metadata/md5-cache/app-emacs/all-the-icons-ibuffer-1.3.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/all-the-icons >=app-editors/emacs-24.4:* SLOT=0 SRC_URI=https://github.com/seagle0128/all-the-icons-ibuffer/archive/v1.3.0.tar.gz -> all-the-icons-ibuffer-1.3.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=fc42fee327a24445e95af4d77bce6a39 diff --git a/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.7.1 b/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.7.1 index c916e96ca426..a0fed37b0711 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.7.1 +++ b/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.7.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/all-the-icons app-emacs/ivy-rich >=app-editors/emacs-25.1:* SLOT=0 SRC_URI=https://github.com/seagle0128/all-the-icons-ivy-rich/archive/v1.7.1.tar.gz -> all-the-icons-ivy-rich-1.7.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e4a10b87f1a4b36fffb0af2fa6999326 diff --git a/metadata/md5-cache/app-emacs/amx-3.4 b/metadata/md5-cache/app-emacs/amx-3.4 index 1b342d4d1558..248de6504079 100644 --- a/metadata/md5-cache/app-emacs/amx-3.4 +++ b/metadata/md5-cache/app-emacs/amx-3.4 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/s app-emacs/ivy >=app-editors/emacs-24.4:* SLOT=0 SRC_URI=https://github.com/DarwinAwardWinner/amx/archive/v3.4.tar.gz -> amx-3.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=6e9b70c7b37280d42ab41158ebc4f350 diff --git a/metadata/md5-cache/app-emacs/analog-1.9.99 b/metadata/md5-cache/app-emacs/analog-1.9.99 index a87c554ccd69..c8ab23cf4bf8 100644 --- a/metadata/md5-cache/app-emacs/analog-1.9.99 +++ b/metadata/md5-cache/app-emacs/analog-1.9.99 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/analog-1.9.99.el.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=922905ad92a1fb4d4a4bef6c2b782c52 diff --git a/metadata/md5-cache/app-emacs/ansi-0.4.1_p20211104 b/metadata/md5-cache/app-emacs/ansi-0.4.1_p20211104 new file mode 100644 index 000000000000..e16e637b609f --- /dev/null +++ b/metadata/md5-cache/app-emacs/ansi-0.4.1_p20211104 @@ -0,0 +1,14 @@ +BDEPEND=test? ( app-emacs/dash app-emacs/el-mock app-emacs/f app-emacs/s app-emacs/undercover ) >=app-editors/emacs-24:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DESCRIPTION=Emacs library to convert strings into ansi +EAPI=8 +HOMEPAGE=https://github.com/rejeep/ansi.el/ +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=>=app-editors/emacs-24:* +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/rejeep/ansi.el/archive/2367fba7b3b2340364a30cd6de7f3eb6bb9898a3.tar.gz -> ansi-0.4.1_p20211104.tar.gz +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 +_md5_=d50092adc1efc77edd6b7b1a946ebcdc diff --git a/metadata/md5-cache/app-emacs/apache-mode-2.2.0 b/metadata/md5-cache/app-emacs/apache-mode-2.2.0 index 6fbeb144171b..774485dbec16 100644 --- a/metadata/md5-cache/app-emacs/apache-mode-2.2.0 +++ b/metadata/md5-cache/app-emacs/apache-mode-2.2.0 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/emacs-php/apache-mode/archive/2.2.0.tar.gz -> apache-mode-2.2.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9014031c259b08e4280c27eddfc7ae53 diff --git a/metadata/md5-cache/app-emacs/apel-10.8_p20190407 b/metadata/md5-cache/app-emacs/apel-10.8_p20190407 index 7517f59f2a60..0a8722fe533b 100644 --- a/metadata/md5-cache/app-emacs/apel-10.8_p20190407 +++ b/metadata/md5-cache/app-emacs/apel-10.8_p20190407 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/wanderlust/apel/archive/d146ddbf8818e81d3577d5eee7825d377bec0c73.tar.gz -> apel-10.8_p20190407.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e292fa96a4d01a2eb7dd47d70b69b474 diff --git a/metadata/md5-cache/app-emacs/apel-10.8_p20201106 b/metadata/md5-cache/app-emacs/apel-10.8_p20201106 index d77b22b1c378..16bbcee623cc 100644 --- a/metadata/md5-cache/app-emacs/apel-10.8_p20201106 +++ b/metadata/md5-cache/app-emacs/apel-10.8_p20201106 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-24.5:* SLOT=0 SRC_URI=https://github.com/wanderlust/apel/archive/4e3269b6e702db2dba48cf560563ac883e81e3bf.tar.gz -> apel-10.8_p20201106.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3de0f0267c2fc036e1f272e29196cb5b diff --git a/metadata/md5-cache/app-emacs/async-1.9.3 b/metadata/md5-cache/app-emacs/async-1.9.3 index 8940ab09c28a..52e2f824039c 100644 --- a/metadata/md5-cache/app-emacs/async-1.9.3 +++ b/metadata/md5-cache/app-emacs/async-1.9.3 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/jwiegley/emacs-async/archive/v1.9.3.tar.gz -> emacs-async-1.9.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=81b51f3b0a83969bc87a3854638d43c7 diff --git a/metadata/md5-cache/app-emacs/async-1.9.4 b/metadata/md5-cache/app-emacs/async-1.9.4 index d10e87a265f6..a3ded8d4e5fa 100644 --- a/metadata/md5-cache/app-emacs/async-1.9.4 +++ b/metadata/md5-cache/app-emacs/async-1.9.4 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/jwiegley/emacs-async/archive/v1.9.4.tar.gz -> emacs-async-1.9.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=4dc8d2033e65790a9711fc583975db36 diff --git a/metadata/md5-cache/app-emacs/atomic-chrome-2.0.0 b/metadata/md5-cache/app-emacs/atomic-chrome-2.0.0 index cb6f038658c8..02b9ed87ea4a 100644 --- a/metadata/md5-cache/app-emacs/atomic-chrome-2.0.0 +++ b/metadata/md5-cache/app-emacs/atomic-chrome-2.0.0 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/websocket >=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/alpha22jp/atomic-chrome/archive/v2.0.0.tar.gz -> atomic-chrome-2.0.0.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=05fb60580edb6036dc0dd7411f3e627c diff --git a/metadata/md5-cache/app-emacs/auctex-11.92 b/metadata/md5-cache/app-emacs/auctex-11.92 index ae8b4b7d891d..1cc9f755b86c 100644 --- a/metadata/md5-cache/app-emacs/auctex-11.92 +++ b/metadata/md5-cache/app-emacs/auctex-11.92 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.3+ RDEPEND=virtual/latex-base preview-latex? ( app-text/dvipng app-text/ghostscript-gpl ) >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gnu/auctex/auctex-11.92.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=c92ca17c6883f54492f4f93aa05f924b diff --git a/metadata/md5-cache/app-emacs/auctex-12.2 b/metadata/md5-cache/app-emacs/auctex-12.2 index 8abfcb053214..98cb17ff1588 100644 --- a/metadata/md5-cache/app-emacs/auctex-12.2 +++ b/metadata/md5-cache/app-emacs/auctex-12.2 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.3+ RDEPEND=virtual/latex-base preview-latex? ( app-text/dvipng app-text/ghostscript-gpl ) >=app-editors/emacs-24:* SLOT=0 SRC_URI=mirror://gnu/auctex/auctex-12.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3817cba598317249bc4d3e472ee31a78 diff --git a/metadata/md5-cache/app-emacs/auctex-12.3 b/metadata/md5-cache/app-emacs/auctex-12.3 index 6e21c5a54197..a7a7e0334f4a 100644 --- a/metadata/md5-cache/app-emacs/auctex-12.3 +++ b/metadata/md5-cache/app-emacs/auctex-12.3 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.3+ RDEPEND=virtual/latex-base preview-latex? ( app-text/dvipng app-text/ghostscript-gpl ) >=app-editors/emacs-24:* SLOT=0 SRC_URI=mirror://gnu/auctex/auctex-12.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3817cba598317249bc4d3e472ee31a78 diff --git a/metadata/md5-cache/app-emacs/auto-complete-1.5.1-r1 b/metadata/md5-cache/app-emacs/auto-complete-1.5.1-r1 index 6f0ed180b59e..11604076d9b4 100644 --- a/metadata/md5-cache/app-emacs/auto-complete-1.5.1-r1 +++ b/metadata/md5-cache/app-emacs/auto-complete-1.5.1-r1 @@ -10,5 +10,5 @@ RDEPEND=app-emacs/popup >=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/auto-complete/auto-complete/archive/v1.5.1.tar.gz -> auto-complete-1.5.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=93ff8c7110b0498fb6980bf946a39b5e diff --git a/metadata/md5-cache/app-emacs/autoconf-mode-2.69-r1 b/metadata/md5-cache/app-emacs/autoconf-mode-2.69-r1 index f7e72459544c..82d64c7bc024 100644 --- a/metadata/md5-cache/app-emacs/autoconf-mode-2.69-r1 +++ b/metadata/md5-cache/app-emacs/autoconf-mode-2.69-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gnu/autoconf/autoconf-2.69.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=1567a24a5c0c2d9ace1131dfc0885345 diff --git a/metadata/md5-cache/app-emacs/avy-0.5.0 b/metadata/md5-cache/app-emacs/avy-0.5.0 index b08a8ed3fe03..429bc28845f0 100644 --- a/metadata/md5-cache/app-emacs/avy-0.5.0 +++ b/metadata/md5-cache/app-emacs/avy-0.5.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/abo-abo/avy/archive/refs/tags/0.5.0.tar.gz -> avy-0.5.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7816da6554a0b7ba7ae18d5c4ff90b5e diff --git a/metadata/md5-cache/app-emacs/basic-toolkit-0.7 b/metadata/md5-cache/app-emacs/basic-toolkit-0.7 index d8edab6f3554..33d5890c1ba2 100644 --- a/metadata/md5-cache/app-emacs/basic-toolkit-0.7 +++ b/metadata/md5-cache/app-emacs/basic-toolkit-0.7 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/windows app-emacs/cycle-buffer app-emacs/css-sort-buffer >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/basic-toolkit-0.7.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=4d5de200e57a6627868ee77effd9530a diff --git a/metadata/md5-cache/app-emacs/bbdb-3.1.2-r2 b/metadata/md5-cache/app-emacs/bbdb-3.1.2-r2 index f16315159e71..3eb57cf8ccec 100644 --- a/metadata/md5-cache/app-emacs/bbdb-3.1.2-r2 +++ b/metadata/md5-cache/app-emacs/bbdb-3.1.2-r2 @@ -10,5 +10,5 @@ RDEPEND=vm? ( app-emacs/vm ) tex? ( virtual/tex-base ) >=app-editors/emacs-23.1: RESTRICT=test SLOT=0 SRC_URI=http://download.savannah.gnu.org/releases/bbdb/bbdb-3.1.2.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=34f40f4aa226d6c2cbef933a1eba7cdf diff --git a/metadata/md5-cache/app-emacs/bbdb-3.2.2a-r1 b/metadata/md5-cache/app-emacs/bbdb-3.2.2a-r1 index 3d6e4e23ad66..c417f9d19688 100644 --- a/metadata/md5-cache/app-emacs/bbdb-3.2.2a-r1 +++ b/metadata/md5-cache/app-emacs/bbdb-3.2.2a-r1 @@ -12,5 +12,5 @@ RDEPEND=vm? ( app-emacs/vm ) wanderlust? ( app-emacs/wanderlust ) >=app-editors/ RESTRICT=test SLOT=0 SRC_URI=https://git.savannah.nongnu.org/cgit/bbdb.git/snapshot/bbdb-3.2.2a.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f2ab63a52d12f0b25fc04ab7c826a87e diff --git a/metadata/md5-cache/app-emacs/bbdb-3.2_pre20180106 b/metadata/md5-cache/app-emacs/bbdb-3.2_pre20180106 index 95de95e09bb8..5c62ffbc7a1e 100644 --- a/metadata/md5-cache/app-emacs/bbdb-3.2_pre20180106 +++ b/metadata/md5-cache/app-emacs/bbdb-3.2_pre20180106 @@ -10,5 +10,5 @@ RDEPEND=vm? ( app-emacs/vm ) tex? ( virtual/latex-base ) >=app-editors/emacs-23. RESTRICT=test SLOT=0 SRC_URI=https://git.savannah.nongnu.org/cgit/bbdb.git/snapshot/bbdb-3.2.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=af9f92628406c7ccd0da3c19af6d0f3c diff --git a/metadata/md5-cache/app-emacs/binclock-1.11 b/metadata/md5-cache/app-emacs/binclock-1.11 index c819f2721006..8a9fd1eb2999 100644 --- a/metadata/md5-cache/app-emacs/binclock-1.11 +++ b/metadata/md5-cache/app-emacs/binclock-1.11 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/davep/binclock.el/archive/v1.11.tar.gz -> binclock-1.11.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a3c3e964327bebdfd0a8740363237d8b diff --git a/metadata/md5-cache/app-emacs/bison-mode-0.3-r1 b/metadata/md5-cache/app-emacs/bison-mode-0.3-r1 index a5e155fdebae..05fa7a83b88c 100644 --- a/metadata/md5-cache/app-emacs/bison-mode-0.3-r1 +++ b/metadata/md5-cache/app-emacs/bison-mode-0.3-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~nicolasbock/bison-mode-0.3.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f756d4d69e51974ab5246635b532bbd2 diff --git a/metadata/md5-cache/app-emacs/blogmax-20170321 b/metadata/md5-cache/app-emacs/blogmax-20170321 index 5af1ac70a4c2..1339fe556f25 100644 --- a/metadata/md5-cache/app-emacs/blogmax-20170321 +++ b/metadata/md5-cache/app-emacs/blogmax-20170321 @@ -8,5 +8,5 @@ LICENSE=GPL-1+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/blogmax-20170321.tar.xz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=075344a425db39cf3b846fd1641cc561 diff --git a/metadata/md5-cache/app-emacs/bm-201905 b/metadata/md5-cache/app-emacs/bm-201905 index cd2ee4c60a25..936728877d28 100644 --- a/metadata/md5-cache/app-emacs/bm-201905 +++ b/metadata/md5-cache/app-emacs/bm-201905 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/joodland/bm/archive/201905.tar.gz -> bm-201905.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=541265409ff659bffce3fc87a3de926f diff --git a/metadata/md5-cache/app-emacs/bongo-1.1 b/metadata/md5-cache/app-emacs/bongo-1.1 index b3c97e1f6ab8..8982fcfad090 100644 --- a/metadata/md5-cache/app-emacs/bongo-1.1 +++ b/metadata/md5-cache/app-emacs/bongo-1.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ FDL-1.2+ RDEPEND=app-emacs/volume >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/dbrock/bongo/archive/1.1.tar.gz -> bongo-1.1.tar.gz mplayer? ( mirror://gentoo/bongo-mplayer-20070204.tar.bz2 ) -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=71c654d9d1d75d8b68daa86b08e67684 diff --git a/metadata/md5-cache/app-emacs/boogie-friends-20210703 b/metadata/md5-cache/app-emacs/boogie-friends-20210703 index c82c85a33c96..79a9d5af9f89 100644 --- a/metadata/md5-cache/app-emacs/boogie-friends-20210703 +++ b/metadata/md5-cache/app-emacs/boogie-friends-20210703 @@ -9,5 +9,5 @@ RDEPEND=app-emacs/company-mode app-emacs/dash app-emacs/flycheck app-emacs/yasni RESTRICT=test SLOT=0 SRC_URI=https://github.com/boogie-org/boogie-friends/archive/1e3b6a8aee9fa7c113468838c5b647080caf3703.tar.gz -> boogie-friends-20210703.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9c4b0c26f56da60b73995fcbf53b6806 diff --git a/metadata/md5-cache/app-emacs/boxquote-2.1 b/metadata/md5-cache/app-emacs/boxquote-2.1 index a2bef0261e2b..27b75597ffe8 100644 --- a/metadata/md5-cache/app-emacs/boxquote-2.1 +++ b/metadata/md5-cache/app-emacs/boxquote-2.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/davep/boxquote.el/archive/v2.1.tar.gz -> boxquote-2.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=0979523451600bffd9967675c43ff5d5 diff --git a/metadata/md5-cache/app-emacs/boxquote-2.2 b/metadata/md5-cache/app-emacs/boxquote-2.2 index 04df22ed46dd..da9c51f11c74 100644 --- a/metadata/md5-cache/app-emacs/boxquote-2.2 +++ b/metadata/md5-cache/app-emacs/boxquote-2.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/davep/boxquote.el/archive/v2.2.tar.gz -> boxquote-2.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=74dfd2f5183b5eb4a58a07e1bc28928a diff --git a/metadata/md5-cache/app-emacs/browse-kill-ring-2.0.0 b/metadata/md5-cache/app-emacs/browse-kill-ring-2.0.0 index 451a164e535e..ea526b0d16a5 100644 --- a/metadata/md5-cache/app-emacs/browse-kill-ring-2.0.0 +++ b/metadata/md5-cache/app-emacs/browse-kill-ring-2.0.0 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/browse-kill-ring/browse-kill-ring/archive/2.0.0.tar.gz -> browse-kill-ring-2.0.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e8cce377e266a6ecc29a5ea15aa18920 diff --git a/metadata/md5-cache/app-emacs/bubblet-0.74-r1 b/metadata/md5-cache/app-emacs/bubblet-0.74-r1 index bff814f573b5..18993eb93d0d 100644 --- a/metadata/md5-cache/app-emacs/bubblet-0.74-r1 +++ b/metadata/md5-cache/app-emacs/bubblet-0.74-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/bubblet-0.74.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=078dc742e0b2b96682d4b5fc1a532f15 diff --git a/metadata/md5-cache/app-emacs/buffer-extension-0.1 b/metadata/md5-cache/app-emacs/buffer-extension-0.1 index 9013e7563868..e1e6958bfd9e 100644 --- a/metadata/md5-cache/app-emacs/buffer-extension-0.1 +++ b/metadata/md5-cache/app-emacs/buffer-extension-0.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/basic-toolkit >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/gavv/distfiles/raw/master/buffer-extension-0.1.el.xz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=07457a41901ad0dc5246beca8697283a diff --git a/metadata/md5-cache/app-emacs/buttercup-1.24 b/metadata/md5-cache/app-emacs/buttercup-1.24 index 371642d54383..9f6e936c10a2 100644 --- a/metadata/md5-cache/app-emacs/buttercup-1.24 +++ b/metadata/md5-cache/app-emacs/buttercup-1.24 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24.3:* SLOT=0 SRC_URI=https://github.com/jorgenschaefer/emacs-buttercup/archive/v1.24.tar.gz -> buttercup-1.24.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=1db0eb9fb1c4d0ae9a6547e5da2e478a diff --git a/metadata/md5-cache/app-emacs/calfw-1.6 b/metadata/md5-cache/app-emacs/calfw-1.6 index 4283a979bdea..2c0400c0ddc8 100644 --- a/metadata/md5-cache/app-emacs/calfw-1.6 +++ b/metadata/md5-cache/app-emacs/calfw-1.6 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=howm? ( app-emacs/howm ) >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/kiwanami/emacs-calfw/archive/v1.6.tar.gz -> calfw-1.6.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=39c928de96cdb0ec10e4c0aa9b786aa2 diff --git a/metadata/md5-cache/app-emacs/chess-2.0.4 b/metadata/md5-cache/app-emacs/chess-2.0.4 index 1b95cf9ee26b..5bb2248b76c9 100644 --- a/metadata/md5-cache/app-emacs/chess-2.0.4 +++ b/metadata/md5-cache/app-emacs/chess-2.0.4 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ FDL-1.3+ RDEPEND=|| ( games-board/stockfish games-board/fruit games-board/gnuchess games-board/phalanx games-board/sjeng games-board/crafty ) >=app-editors/emacs-24:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/chess-2.0.4.tar.xz mirror://gentoo/emacs-chess-sounds-2.0.tar.bz2 mirror://gentoo/emacs-chess-pieces-2.0.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=29fc64e8772698a8e94b4c2183adccca diff --git a/metadata/md5-cache/app-emacs/chess-2.0.5 b/metadata/md5-cache/app-emacs/chess-2.0.5 index b3cf6263f7cb..77232af54bee 100644 --- a/metadata/md5-cache/app-emacs/chess-2.0.5 +++ b/metadata/md5-cache/app-emacs/chess-2.0.5 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ FDL-1.3+ RDEPEND=|| ( games-board/stockfish games-board/fruit games-board/gnuchess games-board/phalanx games-board/sjeng games-board/crafty ) >=app-editors/emacs-24:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/chess-2.0.5.tar.xz https://dev.gentoo.org/~ulm/distfiles/emacs-chess-sounds-2.0.tar.bz2 https://dev.gentoo.org/~ulm/distfiles/emacs-chess-pieces-2.0.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=c0ec273b39d24dd5872ec22bc0f3b1a5 diff --git a/metadata/md5-cache/app-emacs/circe-2.11 b/metadata/md5-cache/app-emacs/circe-2.11 index 3fe80130c21c..8d590e9f8819 100644 --- a/metadata/md5-cache/app-emacs/circe-2.11 +++ b/metadata/md5-cache/app-emacs/circe-2.11 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/jorgenschaefer/circe/archive/v2.11.tar.gz -> circe-2.11.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=1a20f4d913fa501c763de9d584c396e5 diff --git a/metadata/md5-cache/app-emacs/cldoc-1.16 b/metadata/md5-cache/app-emacs/cldoc-1.16 index 44ded92d9f29..f2b06d95754f 100644 --- a/metadata/md5-cache/app-emacs/cldoc-1.16 +++ b/metadata/md5-cache/app-emacs/cldoc-1.16 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/slime >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/cldoc-1.16.el.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=fb64bcd1b5d2c3eb48e6d2edf5b35153 diff --git a/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.12 b/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.12 index 0b015229e7d2..8b238fbb9cca 100644 --- a/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.12 +++ b/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.12 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=dev-util/cmake[emacs] >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/Lindydancer/cmake-font-lock/archive/0d6111b36a66013aa9b452e664c93308df3b07e1.tar.gz -> cmake-font-lock-0.1.12.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e4607d6aeb9d9679923af6fe92eaf8d6 diff --git a/metadata/md5-cache/app-emacs/color-browser-0.3-r1 b/metadata/md5-cache/app-emacs/color-browser-0.3-r1 index 4bad84b05862..77d6821dff55 100644 --- a/metadata/md5-cache/app-emacs/color-browser-0.3-r1 +++ b/metadata/md5-cache/app-emacs/color-browser-0.3-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/color-theme >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/color-browser-0.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9198d4b279ec0d292d206c17f78a72ff diff --git a/metadata/md5-cache/app-emacs/color-moccur-2.73 b/metadata/md5-cache/app-emacs/color-moccur-2.73 index 84f0b1d4b159..cec497766f63 100644 --- a/metadata/md5-cache/app-emacs/color-moccur-2.73 +++ b/metadata/md5-cache/app-emacs/color-moccur-2.73 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/color-moccur-2.73.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=980d0fa568d60aecff6c43b4954e5d10 diff --git a/metadata/md5-cache/app-emacs/color-theme-6.6.0-r2 b/metadata/md5-cache/app-emacs/color-theme-6.6.0-r2 index c447382e66af..37c4de7e8a38 100644 --- a/metadata/md5-cache/app-emacs/color-theme-6.6.0-r2 +++ b/metadata/md5-cache/app-emacs/color-theme-6.6.0-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://download.savannah.gnu.org/releases-noredirect/color-theme/color-theme-6.6.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=bf5452351632191d7c2d8894eefe72bc diff --git a/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 b/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 index 4bc8add59c1a..44a182e2b6a8 100644 --- a/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 +++ b/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/company-math app-emacs/company-mode app-emacs/dash app-emacs/yasnippet app-emacs/proofgeneral >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/cpitclaudel/company-coq/archive/382db93374380e5db56f02934ee32bbe39159019.tar.gz -> company-coq-1.0.1_p20210708.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=17f226d63ee66017ca3fae20fd6aca59 diff --git a/metadata/md5-cache/app-emacs/company-math-1.4_p20210731 b/metadata/md5-cache/app-emacs/company-math-1.4_p20210731 index 90fc8bd59f41..0a83995e0212 100644 --- a/metadata/md5-cache/app-emacs/company-math-1.4_p20210731 +++ b/metadata/md5-cache/app-emacs/company-math-1.4_p20210731 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/company-mode app-emacs/math-symbol-lists >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/vspinu/company-math/archive/45778f5731c97a21a83e3b965cbde42018709afd.tar.gz -> company-math-1.4_p20210731.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=dfa0c4f6e53371595507b7008373d3b8 diff --git a/metadata/md5-cache/app-emacs/company-mode-0.9.10 b/metadata/md5-cache/app-emacs/company-mode-0.9.10 index a2bb101f3964..28c06a1bb4f7 100644 --- a/metadata/md5-cache/app-emacs/company-mode-0.9.10 +++ b/metadata/md5-cache/app-emacs/company-mode-0.9.10 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/company-mode/company-mode/archive/0.9.10.tar.gz -> company-mode-0.9.10.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7af47fd642b6f3c90e1b7430d7b4703e diff --git a/metadata/md5-cache/app-emacs/company-mode-0.9.13 b/metadata/md5-cache/app-emacs/company-mode-0.9.13 index 136cc857449a..a6f5f60dc455 100644 --- a/metadata/md5-cache/app-emacs/company-mode-0.9.13 +++ b/metadata/md5-cache/app-emacs/company-mode-0.9.13 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/company-mode/company-mode/archive/0.9.13.tar.gz -> company-mode-0.9.13.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7af47fd642b6f3c90e1b7430d7b4703e diff --git a/metadata/md5-cache/app-emacs/company-quickhelp-2.3.0 b/metadata/md5-cache/app-emacs/company-quickhelp-2.3.0 index fff60ac67512..7b2e111c5a45 100644 --- a/metadata/md5-cache/app-emacs/company-quickhelp-2.3.0 +++ b/metadata/md5-cache/app-emacs/company-quickhelp-2.3.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/company-mode app-emacs/pos-tip >=app-editors/emacs-24.4:* SLOT=0 SRC_URI=https://github.com/company-mode/company-quickhelp/archive/2.3.0.tar.gz -> company-quickhelp-2.3.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=58a2e47af9d6806520be40258ac35ef5 diff --git a/metadata/md5-cache/app-emacs/consult-0.15 b/metadata/md5-cache/app-emacs/consult-0.15 index ec0265678084..5e122da2b760 100644 --- a/metadata/md5-cache/app-emacs/consult-0.15 +++ b/metadata/md5-cache/app-emacs/consult-0.15 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/minad/consult/archive/refs/tags/0.15.tar.gz -> consult-0.15.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=190e3facfad622f7db37de1450833dc4 diff --git a/metadata/md5-cache/app-emacs/consult-flycheck-0.8 b/metadata/md5-cache/app-emacs/consult-flycheck-0.8 index 5b9d85004706..a83c55730863 100644 --- a/metadata/md5-cache/app-emacs/consult-flycheck-0.8 +++ b/metadata/md5-cache/app-emacs/consult-flycheck-0.8 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/consult app-emacs/flycheck >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/minad/consult-flycheck/archive/refs/tags/0.8.tar.gz -> consult-flycheck-0.8.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=967d678526013fef237a8ac8663b007a diff --git a/metadata/md5-cache/app-emacs/counsel-0.13.4 b/metadata/md5-cache/app-emacs/counsel-0.13.4 index 318f10848987..fa74f937d7be 100644 --- a/metadata/md5-cache/app-emacs/counsel-0.13.4 +++ b/metadata/md5-cache/app-emacs/counsel-0.13.4 @@ -9,5 +9,5 @@ RDEPEND=>=app-emacs/ivy-0.13.4 >=app-emacs/swiper-0.13.4 >=app-editors/emacs-24. RESTRICT=test SLOT=0 SRC_URI=https://github.com/abo-abo/swiper/archive/0.13.4.tar.gz -> swiper-0.13.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=8619c14980cbf310e32ef0747e07b8a8 diff --git a/metadata/md5-cache/app-emacs/crontab-mode-1.20 b/metadata/md5-cache/app-emacs/crontab-mode-1.20 index 6688dc50f6a6..08252ac3e1fc 100644 --- a/metadata/md5-cache/app-emacs/crontab-mode-1.20 +++ b/metadata/md5-cache/app-emacs/crontab-mode-1.20 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/crontab-mode-1.20.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=de782acfe893333788d350de966286ad diff --git a/metadata/md5-cache/app-emacs/crypt++-2.92 b/metadata/md5-cache/app-emacs/crypt++-2.92 index 848d229a8cb3..c9116cbe11ef 100644 --- a/metadata/md5-cache/app-emacs/crypt++-2.92 +++ b/metadata/md5-cache/app-emacs/crypt++-2.92 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://debian/pool/main/c/crypt++el/crypt++el_2.92.orig.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=81d8a12dff8369cfdf4807cb29d500b9 diff --git a/metadata/md5-cache/app-emacs/crypt++-2.94_pre20080430 b/metadata/md5-cache/app-emacs/crypt++-2.94_pre20080430 index 54ac0b3dabe5..b04c81954bcc 100644 --- a/metadata/md5-cache/app-emacs/crypt++-2.94_pre20080430 +++ b/metadata/md5-cache/app-emacs/crypt++-2.94_pre20080430 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/crypt++-2.94_pre20080430.el.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7f68bc5bce64fbd16468f002c060cd69 diff --git a/metadata/md5-cache/app-emacs/csharp-mode-0.9.2 b/metadata/md5-cache/app-emacs/csharp-mode-0.9.2 index f8d6a6be5f57..db70d08a21e8 100644 --- a/metadata/md5-cache/app-emacs/csharp-mode-0.9.2 +++ b/metadata/md5-cache/app-emacs/csharp-mode-0.9.2 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/josteink/csharp-mode/archive/v0.9.2.tar.gz -> csharp-mode-0.9.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=41c54c7b6d88080fef94c04dbbbd1c89 diff --git a/metadata/md5-cache/app-emacs/csharp-mode-1.1.1-r1 b/metadata/md5-cache/app-emacs/csharp-mode-1.1.1-r1 index 8cee7ebdca70..c676c2ab7e37 100644 --- a/metadata/md5-cache/app-emacs/csharp-mode-1.1.1-r1 +++ b/metadata/md5-cache/app-emacs/csharp-mode-1.1.1-r1 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-csharp/csharp-mode/archive/refs/tags/1.1.1.tar.gz -> csharp-mode-1.1.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=cbdf6076560450b57ea8b08626176c47 diff --git a/metadata/md5-cache/app-emacs/css-mode-0.11-r2 b/metadata/md5-cache/app-emacs/css-mode-0.11-r2 index 1e7f5bda43fa..6b343ee3c058 100644 --- a/metadata/md5-cache/app-emacs/css-mode-0.11-r2 +++ b/metadata/md5-cache/app-emacs/css-mode-0.11-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/css-mode-0.11.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=96f2db1982cb5f28afd4312739e17287 diff --git a/metadata/md5-cache/app-emacs/css-sort-buffer-0.2 b/metadata/md5-cache/app-emacs/css-sort-buffer-0.2 index 30aee3a1dc76..d19b7bec00a1 100644 --- a/metadata/md5-cache/app-emacs/css-sort-buffer-0.2 +++ b/metadata/md5-cache/app-emacs/css-sort-buffer-0.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/css-sort-buffer-0.2.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=93df5e2ff021985f8304f2f0efb5d616 diff --git a/metadata/md5-cache/app-emacs/csv-mode-1.10 b/metadata/md5-cache/app-emacs/csv-mode-1.10 index c19f29482816..92e73474b945 100644 --- a/metadata/md5-cache/app-emacs/csv-mode-1.10 +++ b/metadata/md5-cache/app-emacs/csv-mode-1.10 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/csv-mode-1.10.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=390c7770be8167c2e1b4c5ccebd8179f diff --git a/metadata/md5-cache/app-emacs/csv-mode-1.18 b/metadata/md5-cache/app-emacs/csv-mode-1.18 index 984769b2b978..2fd1f5e78658 100644 --- a/metadata/md5-cache/app-emacs/csv-mode-1.18 +++ b/metadata/md5-cache/app-emacs/csv-mode-1.18 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/csv-mode-1.18.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=cafb19e875b7e97f2914867338ee362d diff --git a/metadata/md5-cache/app-emacs/cycle-buffer-2.16 b/metadata/md5-cache/app-emacs/cycle-buffer-2.16 index 2c99e968cdc3..4064e5a57242 100644 --- a/metadata/md5-cache/app-emacs/cycle-buffer-2.16 +++ b/metadata/md5-cache/app-emacs/cycle-buffer-2.16 @@ -8,5 +8,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/gavv/distfiles/raw/master/cycle-buffer-2.16.el.xz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=fba97e86a9b234e1f601a7ab8c34c249 diff --git a/metadata/md5-cache/app-emacs/d-mode-2.0.10 b/metadata/md5-cache/app-emacs/d-mode-2.0.10 index 5d84b1cb9674..abaad538dab2 100644 --- a/metadata/md5-cache/app-emacs/d-mode-2.0.10 +++ b/metadata/md5-cache/app-emacs/d-mode-2.0.10 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/archive/2.0.10.tar.gz -> d-mode-2.0.10.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=1ce20f9973ed6636c74609c0b60f2fbb diff --git a/metadata/md5-cache/app-emacs/d-mode-2.0.11 b/metadata/md5-cache/app-emacs/d-mode-2.0.11 index 72609e77a927..b44a516f6ca1 100644 --- a/metadata/md5-cache/app-emacs/d-mode-2.0.11 +++ b/metadata/md5-cache/app-emacs/d-mode-2.0.11 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/archive/2.0.11.tar.gz -> d-mode-2.0.11.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=ceca08e13c711654e8e42f684595f9fe diff --git a/metadata/md5-cache/app-emacs/dash-2.16.0 b/metadata/md5-cache/app-emacs/dash-2.16.0 index 3720b86acde6..9604ad6c73b3 100644 --- a/metadata/md5-cache/app-emacs/dash-2.16.0 +++ b/metadata/md5-cache/app-emacs/dash-2.16.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/magnars/dash.el/archive/2.16.0.tar.gz -> dash-2.16.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=458cece7a89bda772136ecc61d30aedb diff --git a/metadata/md5-cache/app-emacs/dash-2.17.0 b/metadata/md5-cache/app-emacs/dash-2.17.0 index 8470901a8337..6818e839117e 100644 --- a/metadata/md5-cache/app-emacs/dash-2.17.0 +++ b/metadata/md5-cache/app-emacs/dash-2.17.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/magnars/dash.el/archive/2.17.0.tar.gz -> dash-2.17.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=51060b3b02c2aa75f2835128c6baceec diff --git a/metadata/md5-cache/app-emacs/dash-2.18.1 b/metadata/md5-cache/app-emacs/dash-2.18.1 index a00a5d62314c..000a4324ace1 100644 --- a/metadata/md5-cache/app-emacs/dash-2.18.1 +++ b/metadata/md5-cache/app-emacs/dash-2.18.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/magnars/dash.el/archive/2.18.1.tar.gz -> dash-2.18.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=4134404663bef3ce47778ca4e699de9a diff --git a/metadata/md5-cache/app-emacs/dash-2.19.0 b/metadata/md5-cache/app-emacs/dash-2.19.0 index 8465e4393b22..e1fd3d15277f 100644 --- a/metadata/md5-cache/app-emacs/dash-2.19.0 +++ b/metadata/md5-cache/app-emacs/dash-2.19.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/magnars/dash.el/archive/2.19.0.tar.gz -> dash-2.19.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=1739ee2204801795d2803b8cfe844936 diff --git a/metadata/md5-cache/app-emacs/dash-2.19.1 b/metadata/md5-cache/app-emacs/dash-2.19.1 index 895ea7f845f1..2e2610d9da91 100644 --- a/metadata/md5-cache/app-emacs/dash-2.19.1 +++ b/metadata/md5-cache/app-emacs/dash-2.19.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/magnars/dash.el/archive/2.19.1.tar.gz -> dash-2.19.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=da714985cbc00c1140c3ea02dfc24fa2 diff --git a/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220406 b/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220406 index 9ee682706f63..ce989051d280 100644 --- a/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220406 +++ b/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220406 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-26.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-dashboard/emacs-dashboard/archive/69f98f5a89451c0881d0abb34ad57dd71616006a.tar.gz -> dashboard-1.8.0_pre20220406.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=bf27d012b0dfc8cf93d0b2a6a1479aeb diff --git a/metadata/md5-cache/app-emacs/ddskk-17.1 b/metadata/md5-cache/app-emacs/ddskk-17.1 index fd4dbceb7931..ddeb1a01955d 100644 --- a/metadata/md5-cache/app-emacs/ddskk-17.1 +++ b/metadata/md5-cache/app-emacs/ddskk-17.1 @@ -10,5 +10,5 @@ RDEPEND=|| ( app-i18n/skk-jisyo virtual/skkserv ) ruby? ( || ( dev-lang/ruby:2.6 RESTRICT=test SLOT=0 SRC_URI=https://github.com/skk-dev/ddskk/archive/ddskk-17.1_Neppu.tar.gz -> ddskk-17.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e ruby-single d832a35ebec5113ec8d275b948432e59 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed vcs-snapshot 19dc666868420457132a7514d4621476 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 ruby-single d832a35ebec5113ec8d275b948432e59 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed vcs-snapshot 19dc666868420457132a7514d4621476 _md5_=b429b173adf10c557a4ed5317675500d diff --git a/metadata/md5-cache/app-emacs/deft-08_p20210707 b/metadata/md5-cache/app-emacs/deft-08_p20210707 index 64ce47b43c93..83075f6aab98 100644 --- a/metadata/md5-cache/app-emacs/deft-08_p20210707 +++ b/metadata/md5-cache/app-emacs/deft-08_p20210707 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/jrblevin/deft/archive/28be94d89bff2e1c7edef7244d7c5ba0636b1296.tar.gz -> deft-08_p20210707.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=988d06f052f6fe442cebfe24b30f616b diff --git a/metadata/md5-cache/app-emacs/desktop+-0.2-r2 b/metadata/md5-cache/app-emacs/desktop+-0.2-r2 index 57c9b6af36b1..13fb008de40e 100644 --- a/metadata/md5-cache/app-emacs/desktop+-0.2-r2 +++ b/metadata/md5-cache/app-emacs/desktop+-0.2-r2 @@ -9,5 +9,5 @@ RDEPEND=app-emacs/dash app-emacs/f >=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/ffevotte/desktop-plus/archive/v0.2.tar.gz -> desktop+-0.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=098794d4cd6c17343c24ddd702f19e63 diff --git a/metadata/md5-cache/app-emacs/develock-0.47 b/metadata/md5-cache/app-emacs/develock-0.47 index 71b4c3682948..5fa36325ca94 100644 --- a/metadata/md5-cache/app-emacs/develock-0.47 +++ b/metadata/md5-cache/app-emacs/develock-0.47 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/develock-0.47.el.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=25f6146ad67bb6e1a6b95e860bae5925 diff --git a/metadata/md5-cache/app-emacs/df-mode-20050509-r1 b/metadata/md5-cache/app-emacs/df-mode-20050509-r1 index bb05224b48b9..9a027af4d401 100644 --- a/metadata/md5-cache/app-emacs/df-mode-20050509-r1 +++ b/metadata/md5-cache/app-emacs/df-mode-20050509-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/df-mode-20050509.el.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9d0cfa22df387422eb3c3b3c23065f41 diff --git a/metadata/md5-cache/app-emacs/dictionary-1.10 b/metadata/md5-cache/app-emacs/dictionary-1.10 index d99c3092a371..fbdd55dd52bd 100644 --- a/metadata/md5-cache/app-emacs/dictionary-1.10 +++ b/metadata/md5-cache/app-emacs/dictionary-1.10 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://www.myrkr.in-berlin.de/dictionary/dictionary-1.10.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=14506c1dbe66f42bd3aa4b67e4f8dd79 diff --git a/metadata/md5-cache/app-emacs/dictionary-1.11 b/metadata/md5-cache/app-emacs/dictionary-1.11 index 19440bdfd221..b3f8bdc84063 100644 --- a/metadata/md5-cache/app-emacs/dictionary-1.11 +++ b/metadata/md5-cache/app-emacs/dictionary-1.11 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/myrkr/dictionary-el/archive/refs/tags/v1.11.tar.gz -> dictionary-1.11.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=2def75f9f58b87ea2be0997879bd21fd diff --git a/metadata/md5-cache/app-emacs/diff-hl-1.8.8_p20220405 b/metadata/md5-cache/app-emacs/diff-hl-1.8.8_p20220405 index b3f07d22dd74..aa93919a081a 100644 --- a/metadata/md5-cache/app-emacs/diff-hl-1.8.8_p20220405 +++ b/metadata/md5-cache/app-emacs/diff-hl-1.8.8_p20220405 @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.1:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dgutov/diff-hl/archive/9d5dc2ffa1e4c7b43734b03dccb5ae6a80800569.tar.gz -> diff-hl-1.8.8_p20220405.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a32585c25738ff0b06ac2f80c677e777 diff --git a/metadata/md5-cache/app-emacs/dircolors-1.0-r2 b/metadata/md5-cache/app-emacs/dircolors-1.0-r2 index b3dbba6ca664..3a77967b881c 100644 --- a/metadata/md5-cache/app-emacs/dircolors-1.0-r2 +++ b/metadata/md5-cache/app-emacs/dircolors-1.0-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/dircolors-1.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5083b45b333e3746b6f47e734b1c24d9 diff --git a/metadata/md5-cache/app-emacs/dired-sort-menu-1.26 b/metadata/md5-cache/app-emacs/dired-sort-menu-1.26 index 30ec6479ab34..83437a5dde2e 100644 --- a/metadata/md5-cache/app-emacs/dired-sort-menu-1.26 +++ b/metadata/md5-cache/app-emacs/dired-sort-menu-1.26 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/dired-sort-menu-1.26.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=ba155b4528c27a3edb8c3198a928e938 diff --git a/metadata/md5-cache/app-emacs/distel-4.1.1 b/metadata/md5-cache/app-emacs/distel-4.1.1 index d8bf33d8692c..f01fcf2a9132 100644 --- a/metadata/md5-cache/app-emacs/distel-4.1.1 +++ b/metadata/md5-cache/app-emacs/distel-4.1.1 @@ -9,5 +9,5 @@ LICENSE=BSD MIT RDEPEND=>=dev-lang/erlang-11.2.5[emacs] >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/massemanet/distel/archive/4.1.1.tar.gz -> distel-4.1.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=8bbad2669cec464d5be5b9ed3114bc73 diff --git a/metadata/md5-cache/app-emacs/dockerfile-mode-1.6 b/metadata/md5-cache/app-emacs/dockerfile-mode-1.6 index 91b949a439a2..781313261374 100644 --- a/metadata/md5-cache/app-emacs/dockerfile-mode-1.6 +++ b/metadata/md5-cache/app-emacs/dockerfile-mode-1.6 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/spotify/dockerfile-mode/archive/v1.6.tar.gz -> dockerfile-mode-1.6.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9a6cf52dde7214f40f038e608c321732 diff --git a/metadata/md5-cache/app-emacs/doctest-mode-0.4 b/metadata/md5-cache/app-emacs/doctest-mode-0.4 index bc54138d6eb3..4f5ad310544b 100644 --- a/metadata/md5-cache/app-emacs/doctest-mode-0.4 +++ b/metadata/md5-cache/app-emacs/doctest-mode-0.4 @@ -8,5 +8,5 @@ LICENSE=HPND RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://python-mode.svn.sourceforge.net/viewvc/*checkout*/python-mode/trunk/python-mode/doctest-mode.el?revision=460 -> doctest-mode.el -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3669c740db36b5f2a0fbb74168c95cf8 diff --git a/metadata/md5-cache/app-emacs/doxymacs-1.8.0-r4 b/metadata/md5-cache/app-emacs/doxymacs-1.8.0-r4 index ab4374767d98..5b015d62df7f 100644 --- a/metadata/md5-cache/app-emacs/doxymacs-1.8.0-r4 +++ b/metadata/md5-cache/app-emacs/doxymacs-1.8.0-r4 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-libs/libxml2-2.6.13 >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://sourceforge/doxymacs/doxymacs-1.8.0.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=e0255f9454f782e31e26e29bb993044b diff --git a/metadata/md5-cache/app-emacs/dropdown-list-20120329 b/metadata/md5-cache/app-emacs/dropdown-list-20120329 index 489a4061f945..9c2fabf470aa 100644 --- a/metadata/md5-cache/app-emacs/dropdown-list-20120329 +++ b/metadata/md5-cache/app-emacs/dropdown-list-20120329 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/dropdown-list-20120329.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=96ec52ab3306c474bae9d1e0a225c5f4 diff --git a/metadata/md5-cache/app-emacs/dts-mode-0.1.0_pre20161103 b/metadata/md5-cache/app-emacs/dts-mode-0.1.0_pre20161103 index bccd2cecdaab..bd1bb95295ae 100644 --- a/metadata/md5-cache/app-emacs/dts-mode-0.1.0_pre20161103 +++ b/metadata/md5-cache/app-emacs/dts-mode-0.1.0_pre20161103 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/bgamari/dts-mode/archive/9ee0854446dcc6c53d2b8d2941051768dba50344.tar.gz -> dts-mode-0.1.0_pre20161103.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e8b695cc744fac577ee31bc10b1aff7b diff --git a/metadata/md5-cache/app-emacs/dts-mode-0.1.1 b/metadata/md5-cache/app-emacs/dts-mode-0.1.1 index e3edb66fc259..47ce0fbd1f0e 100644 --- a/metadata/md5-cache/app-emacs/dts-mode-0.1.1 +++ b/metadata/md5-cache/app-emacs/dts-mode-0.1.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/dts-mode-0.1.1.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e62d304eb7f72482075b538ccb5d6d1a diff --git a/metadata/md5-cache/app-emacs/dune-format-0.1 b/metadata/md5-cache/app-emacs/dune-format-0.1 new file mode 100644 index 000000000000..0f11b8300013 --- /dev/null +++ b/metadata/md5-cache/app-emacs/dune-format-0.1 @@ -0,0 +1,12 @@ +BDEPEND=app-emacs/reformatter >=app-editors/emacs-24.1:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DESCRIPTION=Reformat OCaml's dune files automatically +EAPI=8 +HOMEPAGE=https://github.com/purcell/emacs-dune-format/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=app-emacs/reformatter dev-ml/dune >=app-editors/emacs-24.1:* +SLOT=0 +SRC_URI=https://github.com/purcell/emacs-dune-format/archive/0.1.tar.gz -> dune-format-0.1.tar.gz +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 +_md5_=0147df07a460c9f620d96a0e09f045a5 diff --git a/metadata/md5-cache/app-emacs/ebuild-mode-1.55 b/metadata/md5-cache/app-emacs/ebuild-mode-1.55 index c473364a291d..b2e1d31ce4a8 100644 --- a/metadata/md5-cache/app-emacs/ebuild-mode-1.55 +++ b/metadata/md5-cache/app-emacs/ebuild-mode-1.55 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/ebuild-mode-1.55.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=ae2d1d5c1436892e11dc4ae535eb71b1 diff --git a/metadata/md5-cache/app-emacs/ebuild-mode-1.56 b/metadata/md5-cache/app-emacs/ebuild-mode-1.56 index b87537fb8031..e14246a24e7b 100644 --- a/metadata/md5-cache/app-emacs/ebuild-mode-1.56 +++ b/metadata/md5-cache/app-emacs/ebuild-mode-1.56 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/ebuild-mode-1.56.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=ae2d1d5c1436892e11dc4ae535eb71b1 diff --git a/metadata/md5-cache/app-emacs/ebuild-run-mode-20210713 b/metadata/md5-cache/app-emacs/ebuild-run-mode-20210713 index 777b9d7d76cb..53d4e8bb9837 100644 --- a/metadata/md5-cache/app-emacs/ebuild-run-mode-20210713 +++ b/metadata/md5-cache/app-emacs/ebuild-run-mode-20210713 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/ebuild-mode-1.53 >=app-editors/emacs-24.5:* SLOT=0 SRC_URI=https://gitlab.com/akater/emacs-ebuild-run-mode/-/archive/v20210713/emacs-ebuild-run-mode-v20210713.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=16ccef65393baab3927330d3b9ba1c26 diff --git a/metadata/md5-cache/app-emacs/ecb-2.50_pre20170728 b/metadata/md5-cache/app-emacs/ecb-2.50_pre20170728 index b5a6b084a139..83d08c7030d0 100644 --- a/metadata/md5-cache/app-emacs/ecb-2.50_pre20170728 +++ b/metadata/md5-cache/app-emacs/ecb-2.50_pre20170728 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=java? ( app-emacs/jde ) >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/ecb-2.50_pre20170728.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=b1043286115f9c52bc14b28009a706a8 diff --git a/metadata/md5-cache/app-emacs/edb-1.32 b/metadata/md5-cache/app-emacs/edb-1.32 index d9fe60f33a61..4f5aae583404 100644 --- a/metadata/md5-cache/app-emacs/edb-1.32 +++ b/metadata/md5-cache/app-emacs/edb-1.32 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ Texinfo-manual RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://www.gnuvola.org/software/edb/edb-1.32.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5685dde303cd36eb202869f846564224 diff --git a/metadata/md5-cache/app-emacs/edit-list-0.3 b/metadata/md5-cache/app-emacs/edit-list-0.3 index c824c2f12786..80540da00feb 100644 --- a/metadata/md5-cache/app-emacs/edit-list-0.3 +++ b/metadata/md5-cache/app-emacs/edit-list-0.3 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/edit-list-0.3.el.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=027e0de24fa4258414e07822717aa374 diff --git a/metadata/md5-cache/app-emacs/edit-server-1.15 b/metadata/md5-cache/app-emacs/edit-server-1.15 index f4bbbba94018..e92c42ea119d 100644 --- a/metadata/md5-cache/app-emacs/edit-server-1.15 +++ b/metadata/md5-cache/app-emacs/edit-server-1.15 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/stsquad/emacs_chrome/archive/v1.15.tar.gz -> emacs_chrome-1.15.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=c4ba721291f40f8820688ec4f7d711c4 diff --git a/metadata/md5-cache/app-emacs/edit-server-1.16 b/metadata/md5-cache/app-emacs/edit-server-1.16 index 5089139033c3..0723fa638d88 100644 --- a/metadata/md5-cache/app-emacs/edit-server-1.16 +++ b/metadata/md5-cache/app-emacs/edit-server-1.16 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/stsquad/emacs_chrome/archive/v1.16.tar.gz -> emacs_chrome-1.16.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3b6c814941b66e20c044e183526e9560 diff --git a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.7.8-r3 b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.7.8-r3 index b90faaae9eb1..6a616dd6c2a9 100644 --- a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.7.8-r3 +++ b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.7.8-r3 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/editorconfig/editorconfig-emacs/archive/v0.7.8.tar.gz -> editorconfig-emacs-0.7.8.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=b78a78b6812195c340c981b9cd77464a diff --git a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.8.2-r2 b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.8.2-r2 index 8603ffb716c7..c6fea493f9fc 100644 --- a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.8.2-r2 +++ b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.8.2-r2 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/editorconfig/editorconfig-emacs/archive/v0.8.2.tar.gz -> editorconfig-emacs-0.8.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=8ec9300315020f43189cd24a74dd571e diff --git a/metadata/md5-cache/app-emacs/eglot-1.6 b/metadata/md5-cache/app-emacs/eglot-1.6 index c4a6cdba766c..c48420e02b09 100644 --- a/metadata/md5-cache/app-emacs/eglot-1.6 +++ b/metadata/md5-cache/app-emacs/eglot-1.6 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-26.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/joaotavora/eglot/archive/refs/tags/1.6.tar.gz -> eglot-1.6.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=dcfe421e359dced7c979bc24b4948455 diff --git a/metadata/md5-cache/app-emacs/eglot-1.8 b/metadata/md5-cache/app-emacs/eglot-1.8 index 5ae19db20198..43bdb8cb190b 100644 --- a/metadata/md5-cache/app-emacs/eglot-1.8 +++ b/metadata/md5-cache/app-emacs/eglot-1.8 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-26.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/joaotavora/eglot/archive/refs/tags/1.8.tar.gz -> eglot-1.8.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=dcfe421e359dced7c979bc24b4948455 diff --git a/metadata/md5-cache/app-emacs/el-mock-1.25.1 b/metadata/md5-cache/app-emacs/el-mock-1.25.1 new file mode 100644 index 000000000000..6e99e29878a9 --- /dev/null +++ b/metadata/md5-cache/app-emacs/el-mock-1.25.1 @@ -0,0 +1,12 @@ +BDEPEND=>=app-editors/emacs-23.1:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DESCRIPTION=Mocking library for Emacs +EAPI=8 +HOMEPAGE=https://github.com/rejeep/el-mock.el/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+ +RDEPEND=>=app-editors/emacs-23.1:* +SLOT=0 +SRC_URI=https://github.com/rejeep/el-mock.el/archive/v1.25.1.tar.gz -> el-mock-1.25.1.tar.gz +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 +_md5_=e8614819dc63d602540173b575a12e44 diff --git a/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220321 b/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220321 index 680da74760ec..e395812e6486 100644 --- a/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220321 +++ b/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220321 @@ -11,5 +11,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jorgenschaefer/elpy/archive/1746e7009000b7635c0ea6f1559018143aa61642.tar.gz -> elpy-1.35.0_p20220321.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fb99fe65e002dca72cf397ab73309fa1 diff --git a/metadata/md5-cache/app-emacs/elscreen-20180321 b/metadata/md5-cache/app-emacs/elscreen-20180321 index 12231abf2482..8a29818d252d 100644 --- a/metadata/md5-cache/app-emacs/elscreen-20180321 +++ b/metadata/md5-cache/app-emacs/elscreen-20180321 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ GPL-3+ RDEPEND=wanderlust? ( app-emacs/wanderlust ) >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/knu/elscreen/archive/20180321.tar.gz -> elscreen-20180321.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=762284baff9387cb5cc2ccad2a046618 diff --git a/metadata/md5-cache/app-emacs/emacs-common-1.8 b/metadata/md5-cache/app-emacs/emacs-common-1.8 index 4613ad9308eb..83e203ae9077 100644 --- a/metadata/md5-cache/app-emacs/emacs-common-1.8 +++ b/metadata/md5-cache/app-emacs/emacs-common-1.8 @@ -10,5 +10,5 @@ PDEPEND=>=app-editors/emacs-23.1:* RDEPEND=games? ( acct-group/gamestat ) SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/emacs-common-1.8.tar.xz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=511fc41ccb930f2a7714557a7a71f435 diff --git a/metadata/md5-cache/app-emacs/emacs-daemon-0.22 b/metadata/md5-cache/app-emacs/emacs-daemon-0.22 index 083403a54fe5..56e7cf566584 100644 --- a/metadata/md5-cache/app-emacs/emacs-daemon-0.22 +++ b/metadata/md5-cache/app-emacs/emacs-daemon-0.22 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/emacs-daemon-0.22.tar.xz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a202f1787793953c6d9579a3e5930cb6 diff --git a/metadata/md5-cache/app-emacs/emacs-jabber-0.8.92 b/metadata/md5-cache/app-emacs/emacs-jabber-0.8.92 index c0a3c197b1b0..23220de9357f 100644 --- a/metadata/md5-cache/app-emacs/emacs-jabber-0.8.92 +++ b/metadata/md5-cache/app-emacs/emacs-jabber-0.8.92 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/hexrgb >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://sourceforge/emacs-jabber/emacs-jabber-0.8.92.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3ef0cf4391335a763bd4598f730de298 diff --git a/metadata/md5-cache/app-emacs/emacs-w3m-1.4.632_pre20181112 b/metadata/md5-cache/app-emacs/emacs-w3m-1.4.632_pre20181112 index 7f58b48b952f..296798f4a075 100644 --- a/metadata/md5-cache/app-emacs/emacs-w3m-1.4.632_pre20181112 +++ b/metadata/md5-cache/app-emacs/emacs-w3m-1.4.632_pre20181112 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=virtual/w3m >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/emacs-w3m-1.4.632_pre20181112.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bb29eb789e50daec73b475684b35cdbb diff --git a/metadata/md5-cache/app-emacs/emacs-wget-0.5.0-r1 b/metadata/md5-cache/app-emacs/emacs-wget-0.5.0-r1 index dee76fa2fe43..df1e149825c7 100644 --- a/metadata/md5-cache/app-emacs/emacs-wget-0.5.0-r1 +++ b/metadata/md5-cache/app-emacs/emacs-wget-0.5.0-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=net-misc/wget-1.8.2 >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://pop-club.hp.infoseek.co.jp/emacs/emacs-wget/emacs-wget-0.5.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f99c7d791d70edd27f142a4429e75895 diff --git a/metadata/md5-cache/app-emacs/emhacks-20070920-r1 b/metadata/md5-cache/app-emacs/emhacks-20070920-r1 index 8d1675ea56e7..5a1250fe28ad 100644 --- a/metadata/md5-cache/app-emacs/emhacks-20070920-r1 +++ b/metadata/md5-cache/app-emacs/emhacks-20070920-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/emhacks-20070920.tar.bz2 -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=2865aeb84bbd72d2a7ca214d2e7fd99c diff --git a/metadata/md5-cache/app-emacs/emms-10 b/metadata/md5-cache/app-emacs/emms-10 index 55240970d85d..7e9ddefe5f48 100644 --- a/metadata/md5-cache/app-emacs/emms-10 +++ b/metadata/md5-cache/app-emacs/emms-10 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.1+ RDEPEND=media-libs/taglib >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/emms-10.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=40b6c355593561c86f004455ae7a407c diff --git a/metadata/md5-cache/app-emacs/emms-5.4 b/metadata/md5-cache/app-emacs/emms-5.4 index f49b9a31ad3f..5c8530fb15f7 100644 --- a/metadata/md5-cache/app-emacs/emms-5.4 +++ b/metadata/md5-cache/app-emacs/emms-5.4 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.1+ RDEPEND=media-libs/taglib >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gnu/emms/emms-5.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=321e45cc837fb4ed684c5b5a82a45298 diff --git a/metadata/md5-cache/app-emacs/emojify-1.2 b/metadata/md5-cache/app-emacs/emojify-1.2 index 8397822890b9..dc1c54652197 100644 --- a/metadata/md5-cache/app-emacs/emojify-1.2 +++ b/metadata/md5-cache/app-emacs/emojify-1.2 @@ -9,5 +9,5 @@ RDEPEND=app-emacs/ht >=app-editors/emacs-24.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/iqbalansari/emacs-emojify/archive/v1.2.tar.gz -> emojify-1.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=4471ce85fe84f31049f691cd8628d522 diff --git a/metadata/md5-cache/app-emacs/epl-0.9 b/metadata/md5-cache/app-emacs/epl-0.9 index f8b1ddaab196..6d33b21fe1ec 100644 --- a/metadata/md5-cache/app-emacs/epl-0.9 +++ b/metadata/md5-cache/app-emacs/epl-0.9 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-24:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/cask/epl/archive/refs/tags/0.9.tar.gz -> epl-0.9.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=98d524550bbd315c6b9af7aaff301974 diff --git a/metadata/md5-cache/app-emacs/erobot-2.1.0-r1 b/metadata/md5-cache/app-emacs/erobot-2.1.0-r1 index c55e7410ecd2..6d5611a05427 100644 --- a/metadata/md5-cache/app-emacs/erobot-2.1.0-r1 +++ b/metadata/md5-cache/app-emacs/erobot-2.1.0-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/erobot-2.1.0.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=d32cf1551c3d22302002a54690e6b724 diff --git a/metadata/md5-cache/app-emacs/eselect-mode-1.4.16 b/metadata/md5-cache/app-emacs/eselect-mode-1.4.16 index d89e59f4672c..e38c395ee086 100644 --- a/metadata/md5-cache/app-emacs/eselect-mode-1.4.16 +++ b/metadata/md5-cache/app-emacs/eselect-mode-1.4.16 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/eselect/eselect-1.4.16.tar.xz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=97abe50ac0d24e0d59895d4139d0e4ab diff --git a/metadata/md5-cache/app-emacs/eselect-mode-1.4.17 b/metadata/md5-cache/app-emacs/eselect-mode-1.4.17 index 6f50c0eefaa6..ba395570be76 100644 --- a/metadata/md5-cache/app-emacs/eselect-mode-1.4.17 +++ b/metadata/md5-cache/app-emacs/eselect-mode-1.4.17 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/eselect/eselect-1.4.17.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=d5ca69ce05d176f007ebaa9d6a573573 diff --git a/metadata/md5-cache/app-emacs/eselect-mode-9999 b/metadata/md5-cache/app-emacs/eselect-mode-9999 index f79b70e3d1dd..53a26a1a6995 100644 --- a/metadata/md5-cache/app-emacs/eselect-mode-9999 +++ b/metadata/md5-cache/app-emacs/eselect-mode-9999 @@ -7,5 +7,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 _md5_=e3d3c03f5ad385a9a46cf8471acaee5c diff --git a/metadata/md5-cache/app-emacs/ess-18.10.2-r1 b/metadata/md5-cache/app-emacs/ess-18.10.2-r1 index 535929bd68c2..68c61f6c3a37 100644 --- a/metadata/md5-cache/app-emacs/ess-18.10.2-r1 +++ b/metadata/md5-cache/app-emacs/ess-18.10.2-r1 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://ess.r-project.org/downloads/ess/ess-18.10.2.tgz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=8ee4f9d8b0cc490384a1a0726d64a433 diff --git a/metadata/md5-cache/app-emacs/evil-1.14.0 b/metadata/md5-cache/app-emacs/evil-1.14.0 index 6a08e1c0964f..20c7d60e38d4 100644 --- a/metadata/md5-cache/app-emacs/evil-1.14.0 +++ b/metadata/md5-cache/app-emacs/evil-1.14.0 @@ -9,5 +9,5 @@ RDEPEND=>=app-emacs/undo-tree-0.6.3 >=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-evil/evil/archive/1.14.0.tar.gz -> evil-1.14.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=50b8e1d32b3f2d831bc8aed12898d21a diff --git a/metadata/md5-cache/app-emacs/expand-region-0.11.0-r1 b/metadata/md5-cache/app-emacs/expand-region-0.11.0-r1 index 00d0c3fae5fb..4a47720cd6f4 100644 --- a/metadata/md5-cache/app-emacs/expand-region-0.11.0-r1 +++ b/metadata/md5-cache/app-emacs/expand-region-0.11.0-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/magnars/expand-region.el/archive/0.11.0.tar.gz -> expand-region-0.11.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=4177c3f6403c66872818d877654d51b6 diff --git a/metadata/md5-cache/app-emacs/f-0.19.0 b/metadata/md5-cache/app-emacs/f-0.19.0 index 862c2b194efe..1072067aa5fa 100644 --- a/metadata/md5-cache/app-emacs/f-0.19.0 +++ b/metadata/md5-cache/app-emacs/f-0.19.0 @@ -9,5 +9,5 @@ RDEPEND=app-emacs/dash app-emacs/s >=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/rejeep/f.el/archive/v0.19.0.tar.gz -> f-0.19.0.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a82585d652930b74b5bbb53c08fdb962 diff --git a/metadata/md5-cache/app-emacs/f-0.20.0 b/metadata/md5-cache/app-emacs/f-0.20.0 index d89c4799bfc5..1eabcf8cdbcd 100644 --- a/metadata/md5-cache/app-emacs/f-0.20.0 +++ b/metadata/md5-cache/app-emacs/f-0.20.0 @@ -9,5 +9,5 @@ RDEPEND=app-emacs/dash app-emacs/s >=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/rejeep/f.el/archive/v0.20.0.tar.gz -> f-0.20.0.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=56e56b62f441b483e0b36a32721dc52e diff --git a/metadata/md5-cache/app-emacs/fennel-mode-0.4.1 b/metadata/md5-cache/app-emacs/fennel-mode-0.4.1 index 68f1852f2295..61733e0d4cf1 100644 --- a/metadata/md5-cache/app-emacs/fennel-mode-0.4.1 +++ b/metadata/md5-cache/app-emacs/fennel-mode-0.4.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=dev-lang/fennel >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://gitlab.com/technomancy/fennel-mode/-/archive/0.4.1/fennel-mode-0.4.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a09b7c05731e1d2ff80042711f6e41ed diff --git a/metadata/md5-cache/app-emacs/fff-20050517 b/metadata/md5-cache/app-emacs/fff-20050517 index fac9251f36d4..ffaf55aaac67 100644 --- a/metadata/md5-cache/app-emacs/fff-20050517 +++ b/metadata/md5-cache/app-emacs/fff-20050517 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=sys-apps/mlocate >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/fff-20050517.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=1f2c072727cbe6a2ef352f5435a97880 diff --git a/metadata/md5-cache/app-emacs/filladapt-2.12-r2 b/metadata/md5-cache/app-emacs/filladapt-2.12-r2 index 72c0504482fa..a25894ab98df 100644 --- a/metadata/md5-cache/app-emacs/filladapt-2.12-r2 +++ b/metadata/md5-cache/app-emacs/filladapt-2.12-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/filladapt-2.12.el.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=4d7ab429da39013ba96d143e6dd2739f diff --git a/metadata/md5-cache/app-emacs/flashcard-2.3.3 b/metadata/md5-cache/app-emacs/flashcard-2.3.3 index 43414d200a9e..d30b2bf350c1 100644 --- a/metadata/md5-cache/app-emacs/flashcard-2.3.3 +++ b/metadata/md5-cache/app-emacs/flashcard-2.3.3 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/flashcard-2.3.3.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=81f03c744ab65161f1f33fa89ac493ea diff --git a/metadata/md5-cache/app-emacs/flim-1.14.9_p20190526 b/metadata/md5-cache/app-emacs/flim-1.14.9_p20190526 index 52da2202f3e6..513e20161350 100644 --- a/metadata/md5-cache/app-emacs/flim-1.14.9_p20190526 +++ b/metadata/md5-cache/app-emacs/flim-1.14.9_p20190526 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 !app-emacs/limit >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/wanderlust/flim/archive/e4bd54fd7d335215b54f7ef27ed974c8cd68d472.tar.gz -> flim-1.14.9_p20190526.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=ab46a9f2a6f2c3df86e85a352697a42b diff --git a/metadata/md5-cache/app-emacs/flim-1.14.9_p20210529 b/metadata/md5-cache/app-emacs/flim-1.14.9_p20210529 index 36a46667d02b..5717b6bfc06a 100644 --- a/metadata/md5-cache/app-emacs/flim-1.14.9_p20210529 +++ b/metadata/md5-cache/app-emacs/flim-1.14.9_p20210529 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 >=app-editors/emacs-24.5:* SLOT=0 SRC_URI=https://github.com/wanderlust/flim/archive/02735dede6603987e8309a76d0bc7a9ff9a5a227.tar.gz -> flim-1.14.9_p20210529.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=fac35bb10b671c92e596783847e7f3e7 diff --git a/metadata/md5-cache/app-emacs/flycheck-32_p20210825 b/metadata/md5-cache/app-emacs/flycheck-32_p20210825 index cb94d963e8e7..e7795b0204f8 100644 --- a/metadata/md5-cache/app-emacs/flycheck-32_p20210825 +++ b/metadata/md5-cache/app-emacs/flycheck-32_p20210825 @@ -9,5 +9,5 @@ RDEPEND=>=app-emacs/dash-2.12.1 >=app-emacs/pkg-info-0.4 >=app-editors/emacs-24. RESTRICT=test SLOT=0 SRC_URI=https://github.com/flycheck/flycheck/archive/784f184cdd9f9cb4e3dbb997c09d93e954142842.tar.gz -> flycheck-32_p20210825.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=eedca46d004329bd03b51cf5d0b19642 diff --git a/metadata/md5-cache/app-emacs/flycheck-32_p20220328 b/metadata/md5-cache/app-emacs/flycheck-32_p20220328 index 64468c3a2c33..bf638de93c5b 100644 --- a/metadata/md5-cache/app-emacs/flycheck-32_p20220328 +++ b/metadata/md5-cache/app-emacs/flycheck-32_p20220328 @@ -9,5 +9,5 @@ RDEPEND=>=app-emacs/dash-2.12.1 >=app-emacs/pkg-info-0.4 >=app-editors/emacs-24. RESTRICT=test SLOT=0 SRC_URI=https://github.com/flycheck/flycheck/archive/3b5b4248074f016922c2674789d4a242528cf4c7.tar.gz -> flycheck-32_p20220328.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f21fc758e2ebb9e784e975af54eb295e diff --git a/metadata/md5-cache/app-emacs/flycheck-guile-0.2 b/metadata/md5-cache/app-emacs/flycheck-guile-0.2 index 1ea3ecc7120d..75a1266c4518 100644 --- a/metadata/md5-cache/app-emacs/flycheck-guile-0.2 +++ b/metadata/md5-cache/app-emacs/flycheck-guile-0.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=dev-scheme/guile-2.0.0 app-emacs/flycheck app-emacs/geiser-guile >=app-editors/emacs-24.1:* SLOT=0 SRC_URI=https://github.com/flatwhatson/flycheck-guile/archive/0.2.tar.gz -> flycheck-guile-0.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f46985da4607e15de098c25c9ff2671d diff --git a/metadata/md5-cache/app-emacs/flycheck-inline-0_pre20200808 b/metadata/md5-cache/app-emacs/flycheck-inline-0_pre20200808 index bbdb031f7a3f..22b42c853dba 100644 --- a/metadata/md5-cache/app-emacs/flycheck-inline-0_pre20200808 +++ b/metadata/md5-cache/app-emacs/flycheck-inline-0_pre20200808 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/flycheck >=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/flycheck/flycheck-inline/archive/8e00b4c5951a9515a450a14aefe92e9f6ddcfbde.tar.gz -> flycheck-inline-0_pre20200808.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a1d46188911e79051916c970210beb30 diff --git a/metadata/md5-cache/app-emacs/folding-2019.0524.1621 b/metadata/md5-cache/app-emacs/folding-2019.0524.1621 index 5f3cb3bcc965..9d27032b011f 100644 --- a/metadata/md5-cache/app-emacs/folding-2019.0524.1621 +++ b/metadata/md5-cache/app-emacs/folding-2019.0524.1621 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/jaalto/project-emacs--folding-mode/archive/a1361aa154b27bd4db2e1cfe6c3b81b4fc1fdc9a.tar.gz -> folding-2019.0524.1621.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5bfed2527b21ef3c903362f80c4906ec diff --git a/metadata/md5-cache/app-emacs/fsharp-mode-1.10_p20211229 b/metadata/md5-cache/app-emacs/fsharp-mode-1.10_p20211229 index 32b7436475cc..aa6debc3396d 100644 --- a/metadata/md5-cache/app-emacs/fsharp-mode-1.10_p20211229 +++ b/metadata/md5-cache/app-emacs/fsharp-mode-1.10_p20211229 @@ -9,5 +9,5 @@ RDEPEND=app-emacs/s >=app-editors/emacs-25:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/fsharp/emacs-fsharp-mode/archive/b3aa4c53fc9e98648b25ad036e657632ae2fe192.tar.gz -> fsharp-mode-1.10_p20211229.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f33aef65715ab319e7f96bd020558663 diff --git a/metadata/md5-cache/app-emacs/geiser-0.23.2 b/metadata/md5-cache/app-emacs/geiser-0.23.2 index 8680851122e5..bb56d3077087 100644 --- a/metadata/md5-cache/app-emacs/geiser-0.23.2 +++ b/metadata/md5-cache/app-emacs/geiser-0.23.2 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=app-emacs/transient >=app-editors/emacs-25.1:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/geiser/-/archive/0.23.2/geiser-0.23.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=72c8f463350c650d0e54365ba7494848 diff --git a/metadata/md5-cache/app-emacs/geiser-chez-0.17 b/metadata/md5-cache/app-emacs/geiser-chez-0.17 index 79b8d8155ad9..7ce2ab9829d5 100644 --- a/metadata/md5-cache/app-emacs/geiser-chez-0.17 +++ b/metadata/md5-cache/app-emacs/geiser-chez-0.17 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=app-emacs/geiser dev-scheme/chez >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/chez/-/archive/0.17/chez-0.17.tar.gz -> geiser-chez-0.17.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=cbb97125e2ea1d4f595780fcb3cad60f diff --git a/metadata/md5-cache/app-emacs/geiser-guile-0.23.2 b/metadata/md5-cache/app-emacs/geiser-guile-0.23.2 index 7978d92bc23d..e97e60b57e0f 100644 --- a/metadata/md5-cache/app-emacs/geiser-guile-0.23.2 +++ b/metadata/md5-cache/app-emacs/geiser-guile-0.23.2 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=app-emacs/geiser dev-scheme/guile >=app-editors/emacs-25.1:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/guile/-/archive/0.23.2/guile-0.23.2.tar.gz -> geiser-guile-0.23.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=99d5bb94b5dfeadb3b581ecd30cfa87e diff --git a/metadata/md5-cache/app-emacs/ghub-3.5.4 b/metadata/md5-cache/app-emacs/ghub-3.5.4 index fe0a5414a615..63b247295c3e 100644 --- a/metadata/md5-cache/app-emacs/ghub-3.5.4 +++ b/metadata/md5-cache/app-emacs/ghub-3.5.4 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/treepy-0.1.1 >=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/magit/ghub/archive/v3.5.4.tar.gz -> ghub-3.5.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9dfc0298848a02aa14f3fcbbf48e2e63 diff --git a/metadata/md5-cache/app-emacs/ghub-3.5.6 b/metadata/md5-cache/app-emacs/ghub-3.5.6 index 8f1faec9635b..e038c1b27906 100644 --- a/metadata/md5-cache/app-emacs/ghub-3.5.6 +++ b/metadata/md5-cache/app-emacs/ghub-3.5.6 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/treepy-0.1.1 >=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/magit/ghub/archive/v3.5.6.tar.gz -> ghub-3.5.6.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=524ac34fb04ad04360859556917e9218 diff --git a/metadata/md5-cache/app-emacs/gnuplot-mode-0.8.0 b/metadata/md5-cache/app-emacs/gnuplot-mode-0.8.0 index 9192e9c0875a..32281176aef5 100644 --- a/metadata/md5-cache/app-emacs/gnuplot-mode-0.8.0 +++ b/metadata/md5-cache/app-emacs/gnuplot-mode-0.8.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ gnuplot RDEPEND=sci-visualization/gnuplot[-emacs(-)] >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/emacsorphanage/gnuplot/archive/refs/tags/0.8.0.tar.gz -> gnuplot-mode-0.8.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=374b4055418face77f249f1eaffc2627 diff --git a/metadata/md5-cache/app-emacs/gnuserv-3.12.8-r5 b/metadata/md5-cache/app-emacs/gnuserv-3.12.8-r5 index ffcb83cd1cd9..f03dca849002 100644 --- a/metadata/md5-cache/app-emacs/gnuserv-3.12.8-r5 +++ b/metadata/md5-cache/app-emacs/gnuserv-3.12.8-r5 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-eselect/eselect-emacs-1.15 X? ( x11-libs/libXau ) >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://web.archive.org/web/20150908031821/http://martin.meltin.net/sites/martin.meltin.net/files/hacks/gnuserv-3.12.8.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=557793878b3ae88060488483737e695b diff --git a/metadata/md5-cache/app-emacs/go-mode-1.5.0 b/metadata/md5-cache/app-emacs/go-mode-1.5.0 index a2d317d7ae10..597ee14c5003 100644 --- a/metadata/md5-cache/app-emacs/go-mode-1.5.0 +++ b/metadata/md5-cache/app-emacs/go-mode-1.5.0 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/dominikh/go-mode.el/archive/v1.5.0.tar.gz -> go-mode-1.5.0.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=1db9b6722e79d0fb313dd9baeddba9a9 diff --git a/metadata/md5-cache/app-emacs/go-mode-1.6.0 b/metadata/md5-cache/app-emacs/go-mode-1.6.0 index 8475ab3780ee..ca14e4e27220 100644 --- a/metadata/md5-cache/app-emacs/go-mode-1.6.0 +++ b/metadata/md5-cache/app-emacs/go-mode-1.6.0 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://dev.gentoo.org/~matthew/distfiles/go-mode-1.6.0.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=00a67e2f20d40584f735c095bf8b9957 diff --git a/metadata/md5-cache/app-emacs/google-c-style-20140929 b/metadata/md5-cache/app-emacs/google-c-style-20140929 index 346ac3ecb994..50972cb3794c 100644 --- a/metadata/md5-cache/app-emacs/google-c-style-20140929 +++ b/metadata/md5-cache/app-emacs/google-c-style-20140929 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-1+ Artistic ) RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/google-c-style-20140929.el.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=10e1327d7989e968aa4cbf0e692fb9b2 diff --git a/metadata/md5-cache/app-emacs/graphql-0.1.1 b/metadata/md5-cache/app-emacs/graphql-0.1.1 index 510cd79630ff..11e2fcae81b9 100644 --- a/metadata/md5-cache/app-emacs/graphql-0.1.1 +++ b/metadata/md5-cache/app-emacs/graphql-0.1.1 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-25:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/vermiculus/graphql.el/archive/0.1.1.tar.gz -> graphql-0.1.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=213055d4f50aa71cc25333214677bbc0 diff --git a/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4 b/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4 index e7d8f6f36fc7..4be91f116047 100644 --- a/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4 +++ b/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/ppareit/graphviz-dot-mode/archive/v0.4.tar.gz -> graphviz-dot-mode-0.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7b0fcfa9a7f0aa959a9ee262ecc7a306 diff --git a/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4.20181118 b/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4.20181118 index b975cb5d6494..2c96218ab5ca 100644 --- a/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4.20181118 +++ b/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4.20181118 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/ppareit/graphviz-dot-mode/archive/243de72e09ddd5cdc4863613af8b749827a5e1cd.tar.gz -> graphviz-dot-mode-0.4.20181118.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9c0190d653c5ef147a1e76149558a263 diff --git a/metadata/md5-cache/app-emacs/h4x0r-0.13-r1 b/metadata/md5-cache/app-emacs/h4x0r-0.13-r1 index bf29980444e5..f2e93efb9672 100644 --- a/metadata/md5-cache/app-emacs/h4x0r-0.13-r1 +++ b/metadata/md5-cache/app-emacs/h4x0r-0.13-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/h4x0r-0.13.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=830a4e8cc567efec467d7205993cecbc diff --git a/metadata/md5-cache/app-emacs/haskell-mode-16.1 b/metadata/md5-cache/app-emacs/haskell-mode-16.1 index 2cd3986f825a..64389b99708f 100644 --- a/metadata/md5-cache/app-emacs/haskell-mode-16.1 +++ b/metadata/md5-cache/app-emacs/haskell-mode-16.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ FDL-1.2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/haskell/haskell-mode/archive/v16.1.tar.gz -> haskell-mode-16.1.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=52cdf0da16f2cfc559feedabf27e11db diff --git a/metadata/md5-cache/app-emacs/haskell-mode-17.2 b/metadata/md5-cache/app-emacs/haskell-mode-17.2 index 6f9bfd34eb21..06ed71e21369 100644 --- a/metadata/md5-cache/app-emacs/haskell-mode-17.2 +++ b/metadata/md5-cache/app-emacs/haskell-mode-17.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ FDL-1.2+ RDEPEND=>=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/haskell/haskell-mode/archive/17.2.tar.gz -> haskell-mode-17.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=305a16486a263963d95526aa52364f0e diff --git a/metadata/md5-cache/app-emacs/helm-3.8.0 b/metadata/md5-cache/app-emacs/helm-3.8.0 index 13698e2888a0..7e95a5b99608 100644 --- a/metadata/md5-cache/app-emacs/helm-3.8.0 +++ b/metadata/md5-cache/app-emacs/helm-3.8.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm/archive/v3.8.0.tar.gz -> helm-3.8.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=72d5b08bd62e60c2d24e35002fa7d5fb diff --git a/metadata/md5-cache/app-emacs/helm-3.8.4 b/metadata/md5-cache/app-emacs/helm-3.8.4 index c3541ab300cb..947f342393c9 100644 --- a/metadata/md5-cache/app-emacs/helm-3.8.4 +++ b/metadata/md5-cache/app-emacs/helm-3.8.4 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm/archive/v3.8.4.tar.gz -> helm-3.8.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=95075992688a41a1d16a800f1b1ebe68 diff --git a/metadata/md5-cache/app-emacs/helm-3.8.5 b/metadata/md5-cache/app-emacs/helm-3.8.5 index e962d7e29039..87e8b84a9c50 100644 --- a/metadata/md5-cache/app-emacs/helm-3.8.5 +++ b/metadata/md5-cache/app-emacs/helm-3.8.5 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm/archive/v3.8.5.tar.gz -> helm-3.8.5.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=d1feeb3869134df7a6a493c04deda264 diff --git a/metadata/md5-cache/app-emacs/helm-system-packages-1.10.1 b/metadata/md5-cache/app-emacs/helm-system-packages-1.10.1 index ec8c96350409..3c8269a2c7ae 100644 --- a/metadata/md5-cache/app-emacs/helm-system-packages-1.10.1 +++ b/metadata/md5-cache/app-emacs/helm-system-packages-1.10.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/helm >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm-system-packages/archive/v1.10.1.tar.gz -> helm-system-packages-1.10.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=6f546d7e5e02da8bd885b0f6d354c7fe diff --git a/metadata/md5-cache/app-emacs/helm-system-packages-1.10.2 b/metadata/md5-cache/app-emacs/helm-system-packages-1.10.2 index bf22c2774351..3f901987eacc 100644 --- a/metadata/md5-cache/app-emacs/helm-system-packages-1.10.2 +++ b/metadata/md5-cache/app-emacs/helm-system-packages-1.10.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/helm >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm-system-packages/archive/v1.10.2.tar.gz -> helm-system-packages-1.10.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=51471f578d40f6fb2e410fad6f9c8cb7 diff --git a/metadata/md5-cache/app-emacs/hexrgb-0_p1019 b/metadata/md5-cache/app-emacs/hexrgb-0_p1019 index cc6a3d398219..85ed8de331de 100644 --- a/metadata/md5-cache/app-emacs/hexrgb-0_p1019 +++ b/metadata/md5-cache/app-emacs/hexrgb-0_p1019 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/hexrgb-0_p1019.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=18e63a7ffc3d28dc8bfa50a432aeb73c diff --git a/metadata/md5-cache/app-emacs/highlight-indentation-0.7.0_p20210221 b/metadata/md5-cache/app-emacs/highlight-indentation-0.7.0_p20210221 index 749745912153..3a9e3267fcc3 100644 --- a/metadata/md5-cache/app-emacs/highlight-indentation-0.7.0_p20210221 +++ b/metadata/md5-cache/app-emacs/highlight-indentation-0.7.0_p20210221 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/antonj/Highlight-Indentation-for-Emacs/archive/d88db4248882da2d4316e76ed673b4ac1fa99ce3.tar.gz -> highlight-indentation-0.7.0_p20210221.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=751b8e30bc7648949957e97d6d581eaa diff --git a/metadata/md5-cache/app-emacs/highline-7.2.2 b/metadata/md5-cache/app-emacs/highline-7.2.2 index 01f97752ffc6..ad5b126ce97d 100644 --- a/metadata/md5-cache/app-emacs/highline-7.2.2 +++ b/metadata/md5-cache/app-emacs/highline-7.2.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/highline-7.2.2.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e91a5fd977291a7c06cbed1235c7733a diff --git a/metadata/md5-cache/app-emacs/hl-todo-3.3.0 b/metadata/md5-cache/app-emacs/hl-todo-3.3.0 index d1d70a37be8c..b2ed1bf6d6a9 100644 --- a/metadata/md5-cache/app-emacs/hl-todo-3.3.0 +++ b/metadata/md5-cache/app-emacs/hl-todo-3.3.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/tarsius/hl-todo/archive/refs/tags/v3.3.0.tar.gz -> hl-todo-3.3.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=39d139fdadd59f79ff437056e5f4b41c diff --git a/metadata/md5-cache/app-emacs/hl-todo-3.4.1 b/metadata/md5-cache/app-emacs/hl-todo-3.4.1 index 402803cb48ac..45ea9196d49f 100644 --- a/metadata/md5-cache/app-emacs/hl-todo-3.4.1 +++ b/metadata/md5-cache/app-emacs/hl-todo-3.4.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/tarsius/hl-todo/archive/refs/tags/v3.4.1.tar.gz -> hl-todo-3.4.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=39d139fdadd59f79ff437056e5f4b41c diff --git a/metadata/md5-cache/app-emacs/howm-1.4.5 b/metadata/md5-cache/app-emacs/howm-1.4.5 index ed9e418cba6c..1d1ecfb5f58a 100644 --- a/metadata/md5-cache/app-emacs/howm-1.4.5 +++ b/metadata/md5-cache/app-emacs/howm-1.4.5 @@ -8,5 +8,5 @@ LICENSE=GPL-1+ GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://howm.sourceforge.jp/a/howm-1.4.5.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=62be48057c4c7105d16dadd69c26a138 diff --git a/metadata/md5-cache/app-emacs/howm-1.4.8 b/metadata/md5-cache/app-emacs/howm-1.4.8 index a736a28c787b..5b8d608a77e5 100644 --- a/metadata/md5-cache/app-emacs/howm-1.4.8 +++ b/metadata/md5-cache/app-emacs/howm-1.4.8 @@ -8,5 +8,5 @@ LICENSE=GPL-1+ GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://howm.sourceforge.jp/a/howm-1.4.8.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=982826936504c37589d6b380fff5d381 diff --git a/metadata/md5-cache/app-emacs/ht-2.3 b/metadata/md5-cache/app-emacs/ht-2.3 index fd2f00608195..36e095123990 100644 --- a/metadata/md5-cache/app-emacs/ht-2.3 +++ b/metadata/md5-cache/app-emacs/ht-2.3 @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/dash-2.12.0 >=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/Wilfred/ht.el/archive/2.3.tar.gz -> ht-2.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7e0f41a9f597d9d4a79ecf93eed247d2 diff --git a/metadata/md5-cache/app-emacs/htmlize-1.55 b/metadata/md5-cache/app-emacs/htmlize-1.55 index d4780307a7e5..e52091867c12 100644 --- a/metadata/md5-cache/app-emacs/htmlize-1.55 +++ b/metadata/md5-cache/app-emacs/htmlize-1.55 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/hniksic/emacs-htmlize/archive/release/1.55.tar.gz -> htmlize-1.55.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=579775b743a32685d3eb2ddcb2b96c23 diff --git a/metadata/md5-cache/app-emacs/htmlize-1.56 b/metadata/md5-cache/app-emacs/htmlize-1.56 index 487589d50be9..8d428c137f5c 100644 --- a/metadata/md5-cache/app-emacs/htmlize-1.56 +++ b/metadata/md5-cache/app-emacs/htmlize-1.56 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/hniksic/emacs-htmlize/archive/release/1.56.tar.gz -> htmlize-1.56.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=242160f7eda1eaa3bc0b0397fdf72ee0 diff --git a/metadata/md5-cache/app-emacs/httpd-1.1 b/metadata/md5-cache/app-emacs/httpd-1.1 index 8673d412224a..baf5b62b020e 100644 --- a/metadata/md5-cache/app-emacs/httpd-1.1 +++ b/metadata/md5-cache/app-emacs/httpd-1.1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/httpd-1.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=d911d2d0190f6f5eddaf43f438cb6d0f diff --git a/metadata/md5-cache/app-emacs/icicles-2018.02.13.23733 b/metadata/md5-cache/app-emacs/icicles-2018.02.13.23733 index cd404813299c..8513033bf148 100644 --- a/metadata/md5-cache/app-emacs/icicles-2018.02.13.23733 +++ b/metadata/md5-cache/app-emacs/icicles-2018.02.13.23733 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/icicles-2018.02.13.23733.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=2d73a2a1b120177c8ca359abc399f902 diff --git a/metadata/md5-cache/app-emacs/icicles-2018.10.15.23738 b/metadata/md5-cache/app-emacs/icicles-2018.10.15.23738 index 06bb924133a1..50ff74b1be71 100644 --- a/metadata/md5-cache/app-emacs/icicles-2018.10.15.23738 +++ b/metadata/md5-cache/app-emacs/icicles-2018.10.15.23738 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/emacsmirror/icicles/archive/9e9c37d2a54771c635d00d1fe171cef5eab4d95d.tar.gz -> icicles-2018.10.15.23738.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=0f785180c8c44a1bcc7095156c07c1b8 diff --git a/metadata/md5-cache/app-emacs/igrep-2.113 b/metadata/md5-cache/app-emacs/igrep-2.113 index 6b4d55d6787b..74e2746bf44e 100644 --- a/metadata/md5-cache/app-emacs/igrep-2.113 +++ b/metadata/md5-cache/app-emacs/igrep-2.113 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/igrep-2.113.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=af5bb823f1db18171030d95d7bd2570d diff --git a/metadata/md5-cache/app-emacs/inform-mode-1.6.2 b/metadata/md5-cache/app-emacs/inform-mode-1.6.2 index 8987c0997c41..093145476407 100644 --- a/metadata/md5-cache/app-emacs/inform-mode-1.6.2 +++ b/metadata/md5-cache/app-emacs/inform-mode-1.6.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://rupert-lane.org/inform-mode/releases/inform-mode-1.6.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=028ef9627de61306d9d99b64f27fefe6 diff --git a/metadata/md5-cache/app-emacs/initsplit-1.8_pre20160919 b/metadata/md5-cache/app-emacs/initsplit-1.8_pre20160919 index 5a081ef9f897..191164d98ab2 100644 --- a/metadata/md5-cache/app-emacs/initsplit-1.8_pre20160919 +++ b/metadata/md5-cache/app-emacs/initsplit-1.8_pre20160919 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/dabrahams/initsplit/archive/c941d436eb2b10b01c76a582c5a2b23fb30751aa.tar.gz -> initsplit-1.8_pre20160919.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=9bd99c5892d24e3013e6b9ebc7d8f86a diff --git a/metadata/md5-cache/app-emacs/ivy-0.13.4 b/metadata/md5-cache/app-emacs/ivy-0.13.4 index 99eeffa91bb1..f26eef976dc2 100644 --- a/metadata/md5-cache/app-emacs/ivy-0.13.4 +++ b/metadata/md5-cache/app-emacs/ivy-0.13.4 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24.5:* SLOT=0 SRC_URI=https://github.com/abo-abo/swiper/archive/0.13.4.tar.gz -> swiper-0.13.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=de0bbc67f27ad93988a8b73a6bc26ca3 diff --git a/metadata/md5-cache/app-emacs/ivy-rich-0.1.6_p20210409 b/metadata/md5-cache/app-emacs/ivy-rich-0.1.6_p20210409 index ec33820ec964..602df3721e9c 100644 --- a/metadata/md5-cache/app-emacs/ivy-rich-0.1.6_p20210409 +++ b/metadata/md5-cache/app-emacs/ivy-rich-0.1.6_p20210409 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/ivy >=app-editors/emacs-25.1:* SLOT=0 SRC_URI=https://github.com/Yevgnen/ivy-rich/archive/600b8183ed0be8668dcc548cc2c8cb94b001363b.tar.gz -> ivy-rich-0.1.6_p20210409.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=01e88cdd305b4dd02aa29a7e771fe8ec diff --git a/metadata/md5-cache/app-emacs/jam-mode-0.3 b/metadata/md5-cache/app-emacs/jam-mode-0.3 index 91c07fe78eef..6d4369a85e47 100644 --- a/metadata/md5-cache/app-emacs/jam-mode-0.3 +++ b/metadata/md5-cache/app-emacs/jam-mode-0.3 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/jam-mode-0.3.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a0facb6928de9a7bc9a0e704bd21f26c diff --git a/metadata/md5-cache/app-emacs/jasmin-1.2-r2 b/metadata/md5-cache/app-emacs/jasmin-1.2-r2 index acdfab26a6f7..ed0e2310dc49 100644 --- a/metadata/md5-cache/app-emacs/jasmin-1.2-r2 +++ b/metadata/md5-cache/app-emacs/jasmin-1.2-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/jasmin-1.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=69f3f31e55fe19d1ec00e20e32e1fece diff --git a/metadata/md5-cache/app-emacs/jde-2.4.1-r2 b/metadata/md5-cache/app-emacs/jde-2.4.1-r2 index 861fb4302c47..42978bae0205 100644 --- a/metadata/md5-cache/app-emacs/jde-2.4.1-r2 +++ b/metadata/md5-cache/app-emacs/jde-2.4.1-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=virtual/jdk-1.8:* dev-java/bsh:0 dev-java/junit:0 dev-util/checkstyle:0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/jdee-2.4.1.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=37bbccf39475cf2aff62729c5892e08a diff --git a/metadata/md5-cache/app-emacs/julia-mode-0.4_p20211023 b/metadata/md5-cache/app-emacs/julia-mode-0.4_p20211023 index 92358f6a84ba..2a8bacaad86f 100644 --- a/metadata/md5-cache/app-emacs/julia-mode-0.4_p20211023 +++ b/metadata/md5-cache/app-emacs/julia-mode-0.4_p20211023 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=>=app-editors/emacs-24.3:* SLOT=0 SRC_URI=https://github.com/JuliaEditorSupport/julia-emacs/archive/47f43f7d839019cac3ba6559d93b29487ca118cb.tar.gz -> julia-mode-0.4_p20211023.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=cedacc75d70019f36bcc5196051b1e7c diff --git a/metadata/md5-cache/app-emacs/julia-repl-1.3.0_p20220225 b/metadata/md5-cache/app-emacs/julia-repl-1.3.0_p20220225 index ee98089101ac..4a8afe7105e9 100644 --- a/metadata/md5-cache/app-emacs/julia-repl-1.3.0_p20220225 +++ b/metadata/md5-cache/app-emacs/julia-repl-1.3.0_p20220225 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=app-emacs/s app-emacs/julia-mode >=app-editors/emacs-25.1:* SLOT=0 SRC_URI=https://github.com/tpapp/julia-repl/archive/6c1d63511fb2b3b3f2e342eff6a375d78be6c12c.tar.gz -> julia-repl-1.3.0_p20220225.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e optfeature d524f291c80f9d21ad80fe978e3ca760 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 optfeature d524f291c80f9d21ad80fe978e3ca760 _md5_=ae275a6ed0b00a1002e2fe30b4c61972 diff --git a/metadata/md5-cache/app-emacs/keywiz-1.4 b/metadata/md5-cache/app-emacs/keywiz-1.4 index 866efb7282e6..fefb2e7afd23 100644 --- a/metadata/md5-cache/app-emacs/keywiz-1.4 +++ b/metadata/md5-cache/app-emacs/keywiz-1.4 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/keywiz-1.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=8c7e9326fd6af3c423f7bf2ebc18288a diff --git a/metadata/md5-cache/app-emacs/lean-mode-20211220 b/metadata/md5-cache/app-emacs/lean-mode-20211220 index a00344d4f410..5c08e2dfe8b3 100644 --- a/metadata/md5-cache/app-emacs/lean-mode-20211220 +++ b/metadata/md5-cache/app-emacs/lean-mode-20211220 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/dash-2.18.1 >=app-emacs/f-0.19.0 >=app-emacs/flycheck-32 >=app-emacs/s-1.10.0 sci-mathematics/lean:0/3 >=app-editors/emacs-24.3:* SLOT=0 SRC_URI=https://github.com/leanprover/lean-mode/archive/a4205749d20a09871f0951c34f919d4ee5fbdb55.tar.gz -> lean-mode-20211220.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=018212803351d14796118a089f26a77a diff --git a/metadata/md5-cache/app-emacs/lean-mode-20220124 b/metadata/md5-cache/app-emacs/lean-mode-20220124 index 64895f37f6a8..5a703af7c8e4 100644 --- a/metadata/md5-cache/app-emacs/lean-mode-20220124 +++ b/metadata/md5-cache/app-emacs/lean-mode-20220124 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/dash-2.18.1 >=app-emacs/f-0.19.0 >=app-emacs/flycheck-32 >=app-emacs/s-1.10.0 sci-mathematics/lean:0/3 >=app-editors/emacs-24.3:* SLOT=0 SRC_URI=https://github.com/leanprover/lean-mode/archive/c1c68cc946eb31b6ba8faefdceffce1f77ca52df.tar.gz -> lean-mode-20220124.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a76981423a0c02f921f8308858ae446f diff --git a/metadata/md5-cache/app-emacs/ledger-mode-4.0.0 b/metadata/md5-cache/app-emacs/ledger-mode-4.0.0 index 1309db21cafb..b4f8d707e521 100644 --- a/metadata/md5-cache/app-emacs/ledger-mode-4.0.0 +++ b/metadata/md5-cache/app-emacs/ledger-mode-4.0.0 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ BSD RDEPEND=!=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/ledger/ledger-mode/archive/v4.0.0.tar.gz -> ledger-mode-4.0.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=37629b5802c494fb0f8195bf6c1dbe07 diff --git a/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 b/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 index a4670ea37ba4..3b6a14dcf63f 100644 --- a/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 +++ b/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/libgit2-1.0.0:= >=app-editors/emacs-26:*[dynamic-loading] >=a RESTRICT=test SLOT=0 SRC_URI=https://github.com/magit/libegit2/archive/0ef8b13aef011a98b7da756e4f1ce3bb18e4d55a.tar.gz -> libegit2-0.0.20200515.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=d25c4656c1c766092e648447df71eea3 diff --git a/metadata/md5-cache/app-emacs/lookup-1.99.96_pre20180209 b/metadata/md5-cache/app-emacs/lookup-1.99.96_pre20180209 index 5acf68254c9c..daecb5a3fb4e 100644 --- a/metadata/md5-cache/app-emacs/lookup-1.99.96_pre20180209 +++ b/metadata/md5-cache/app-emacs/lookup-1.99.96_pre20180209 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/lookup2/lookup2/archive/c4f4986aac6c339e03b9e56a5dfc7c8f5c0bb5e0.tar.gz -> lookup-1.99.96_pre20180209.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c43429b01f078f24a86c9009de00d3f9 diff --git a/metadata/md5-cache/app-emacs/lsp-mode-8.0.0 b/metadata/md5-cache/app-emacs/lsp-mode-8.0.0 index 3b1407e41e79..e8a8559d42bc 100644 --- a/metadata/md5-cache/app-emacs/lsp-mode-8.0.0 +++ b/metadata/md5-cache/app-emacs/lsp-mode-8.0.0 @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/dash-2.18.0 >=app-emacs/f-0.20.0 >=app-emacs/ht-2.3 app-emac RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-lsp/lsp-mode/archive/8.0.0.tar.gz -> lsp-mode-8.0.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=d832ec2b4d8575dab41515652515c5cd diff --git a/metadata/md5-cache/app-emacs/lsp-ui-8.0.0 b/metadata/md5-cache/app-emacs/lsp-ui-8.0.0 index 874ae0ab23f8..2ae2a9270ebb 100644 --- a/metadata/md5-cache/app-emacs/lsp-ui-8.0.0 +++ b/metadata/md5-cache/app-emacs/lsp-ui-8.0.0 @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/dash-2.18.0 app-emacs/flycheck >=app-emacs/lsp-mode-6.0 >=ap RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-lsp/lsp-ui/archive/8.0.0.tar.gz -> lsp-ui-8.0.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=dbd33199d6571199c5062e9086cbe88b diff --git a/metadata/md5-cache/app-emacs/lua-mode-20201010 b/metadata/md5-cache/app-emacs/lua-mode-20201010 index ed09f0f77bb7..86c83f54d2fc 100644 --- a/metadata/md5-cache/app-emacs/lua-mode-20201010 +++ b/metadata/md5-cache/app-emacs/lua-mode-20201010 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-24.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/immerrr/lua-mode/archive/v20201010.tar.gz -> lua-mode-20201010.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9cdecc6edb42d13868b26fb8fc35523c diff --git a/metadata/md5-cache/app-emacs/lua-mode-20210802 b/metadata/md5-cache/app-emacs/lua-mode-20210802 index 3a5cbcc939d9..69c955acba0a 100644 --- a/metadata/md5-cache/app-emacs/lua-mode-20210802 +++ b/metadata/md5-cache/app-emacs/lua-mode-20210802 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-24.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/immerrr/lua-mode/archive/v20210802.tar.gz -> lua-mode-20210802.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=20602676e9edefaa94ce77e8e2f54af4 diff --git a/metadata/md5-cache/app-emacs/lv-0.15.0 b/metadata/md5-cache/app-emacs/lv-0.15.0 index b4411607f785..269cb84430dc 100644 --- a/metadata/md5-cache/app-emacs/lv-0.15.0 +++ b/metadata/md5-cache/app-emacs/lv-0.15.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/abo-abo/hydra/archive/0.15.0.tar.gz -> lv-0.15.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3e4953349fc0c8c7ecc533d269a6461f diff --git a/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20180410 b/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20180410 index 38923908f1fe..ff3f0b217a42 100644 --- a/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20180410 +++ b/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20180410 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/lyskom-elisp-client-0.48_p20180410.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=97854fe50c3d057a2498b86c1ada7c20 diff --git a/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20200226 b/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20200226 index 77337b55431a..f00a06fe6dbd 100644 --- a/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20200226 +++ b/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20200226 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/lyskom-elisp-client-0.48_p20200226.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=b15870b18fbaed430a25e9ea31a7a9c1 diff --git a/metadata/md5-cache/app-emacs/magit-2.90.1 b/metadata/md5-cache/app-emacs/magit-2.90.1 index 11c70991f87a..cddc6ef120fd 100644 --- a/metadata/md5-cache/app-emacs/magit-2.90.1 +++ b/metadata/md5-cache/app-emacs/magit-2.90.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/dash-2.14.1 >=app-emacs/ghub-3.0.0 >=app-emacs/magit-popup-2.12.4 >=app-emacs/with-editor-2.8.0 >=dev-vcs/git-2.0.0 >=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/magit/magit/archive/v2.90.1.tar.gz -> magit-2.90.1.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=c6db5d55a19e32db8e2d576e4135361f diff --git a/metadata/md5-cache/app-emacs/magit-3.2.0 b/metadata/md5-cache/app-emacs/magit-3.2.0 index 696f92a813e0..e5b7d1423eca 100644 --- a/metadata/md5-cache/app-emacs/magit-3.2.0 +++ b/metadata/md5-cache/app-emacs/magit-3.2.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/dash-2.18.1 app-emacs/libegit2 >=app-emacs/transient-0.3.6 >=app-emacs/with-editor-3.0.4 >=dev-vcs/git-2.0.0 >=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/magit/magit/archive/v3.2.0.tar.gz -> magit-3.2.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=67e67c3027a356bae9d7737460948b5d diff --git a/metadata/md5-cache/app-emacs/magit-3.3.0 b/metadata/md5-cache/app-emacs/magit-3.3.0 index e881c4b384bc..a1e40db172bd 100644 --- a/metadata/md5-cache/app-emacs/magit-3.3.0 +++ b/metadata/md5-cache/app-emacs/magit-3.3.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/dash-2.19.1 app-emacs/libegit2 >=app-emacs/transient-0.3.6 >=app-emacs/with-editor-3.0.5 >=dev-vcs/git-2.0.0 >=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/magit/magit/archive/v3.3.0.tar.gz -> magit-3.3.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=89422f3defb8e9632d12589ff72dc366 diff --git a/metadata/md5-cache/app-emacs/magit-popup-2.13.0 b/metadata/md5-cache/app-emacs/magit-popup-2.13.0 index 22c8199304c6..046723886ec1 100644 --- a/metadata/md5-cache/app-emacs/magit-popup-2.13.0 +++ b/metadata/md5-cache/app-emacs/magit-popup-2.13.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=!!=app-emacs/dash-2.13.0 >=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/magit/magit-popup/archive/v2.13.0.tar.gz -> magit-popup-2.13.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e3460323affd0fa1e6ab63f2505e6667 diff --git a/metadata/md5-cache/app-emacs/magit-popup-2.13.2 b/metadata/md5-cache/app-emacs/magit-popup-2.13.2 index 31c607fc8045..de291763cd90 100644 --- a/metadata/md5-cache/app-emacs/magit-popup-2.13.2 +++ b/metadata/md5-cache/app-emacs/magit-popup-2.13.2 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=!!=app-emacs/dash-2.13.0 >=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/magit/magit-popup/archive/v2.13.2.tar.gz -> magit-popup-2.13.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=61109e2d12c420d2ade271242509419c diff --git a/metadata/md5-cache/app-emacs/magit-popup-2.13.3 b/metadata/md5-cache/app-emacs/magit-popup-2.13.3 index 1bd0b5ec4a9e..62da440e6ce3 100644 --- a/metadata/md5-cache/app-emacs/magit-popup-2.13.3 +++ b/metadata/md5-cache/app-emacs/magit-popup-2.13.3 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=!!=app-emacs/dash-2.13.0 >=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/magit/magit-popup/archive/v2.13.3.tar.gz -> magit-popup-2.13.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=25e6ee26456b5194d244e6b95d388ebf diff --git a/metadata/md5-cache/app-emacs/mailcrypt-3.5.9-r3 b/metadata/md5-cache/app-emacs/mailcrypt-3.5.9-r3 index 26d1e51eef7a..6cb0db6c112a 100644 --- a/metadata/md5-cache/app-emacs/mailcrypt-3.5.9-r3 +++ b/metadata/md5-cache/app-emacs/mailcrypt-3.5.9-r3 @@ -9,5 +9,5 @@ RDEPEND=app-crypt/gnupg >=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/mailcrypt/mailcrypt-3.5.9.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=686f9fa4bdf240b5fb7b89368ae2a3a2 diff --git a/metadata/md5-cache/app-emacs/marginalia-0.12 b/metadata/md5-cache/app-emacs/marginalia-0.12 index 1c8017a0ab4f..deceb7f99162 100644 --- a/metadata/md5-cache/app-emacs/marginalia-0.12 +++ b/metadata/md5-cache/app-emacs/marginalia-0.12 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/minad/marginalia/archive/refs/tags/0.12.tar.gz -> marginalia-0.12.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5d2549f894b0eeda316b2e0831fa17e4 diff --git a/metadata/md5-cache/app-emacs/marginalia-0.13 b/metadata/md5-cache/app-emacs/marginalia-0.13 index a0ba7438ae33..0a1cd090052f 100644 --- a/metadata/md5-cache/app-emacs/marginalia-0.13 +++ b/metadata/md5-cache/app-emacs/marginalia-0.13 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/minad/marginalia/archive/refs/tags/0.13.tar.gz -> marginalia-0.13.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5d2549f894b0eeda316b2e0831fa17e4 diff --git a/metadata/md5-cache/app-emacs/markdown-mode-2.4 b/metadata/md5-cache/app-emacs/markdown-mode-2.4 index 6900d69ffa85..5c63fce4ef7e 100644 --- a/metadata/md5-cache/app-emacs/markdown-mode-2.4 +++ b/metadata/md5-cache/app-emacs/markdown-mode-2.4 @@ -10,5 +10,5 @@ RDEPEND=|| ( app-text/pandoc dev-python/markdown2 dev-python/markdown ) >=app-ed RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jrblevin/markdown-mode/archive/v2.4.tar.gz -> markdown-mode-2.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f98b28880e33311e54928c6812057dd1 diff --git a/metadata/md5-cache/app-emacs/markdown-mode-2.5 b/metadata/md5-cache/app-emacs/markdown-mode-2.5 index 67547e6fec82..a85f675405a0 100644 --- a/metadata/md5-cache/app-emacs/markdown-mode-2.5 +++ b/metadata/md5-cache/app-emacs/markdown-mode-2.5 @@ -10,5 +10,5 @@ RDEPEND=|| ( app-text/pandoc dev-python/markdown2 dev-python/markdown ) >=app-ed RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jrblevin/markdown-mode/archive/v2.5.tar.gz -> markdown-mode-2.5.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=ddeb0382d22e0cbd79866661342d022f diff --git a/metadata/md5-cache/app-emacs/math-symbol-lists-1.3 b/metadata/md5-cache/app-emacs/math-symbol-lists-1.3 index c55a024f617e..d68e26dc1c5b 100644 --- a/metadata/md5-cache/app-emacs/math-symbol-lists-1.3 +++ b/metadata/md5-cache/app-emacs/math-symbol-lists-1.3 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/vspinu/math-symbol-lists/archive/v1.3.tar.gz -> math-symbol-lists-1.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=0e30c7155c8874cf0ea067bd84ce71b4 diff --git a/metadata/md5-cache/app-emacs/matlab-3.3.6_pre20191010-r1 b/metadata/md5-cache/app-emacs/matlab-3.3.6_pre20191010-r1 index c85721ac4c7a..6516bd19a3b1 100644 --- a/metadata/md5-cache/app-emacs/matlab-3.3.6_pre20191010-r1 +++ b/metadata/md5-cache/app-emacs/matlab-3.3.6_pre20191010-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/matlab-3.3.6_pre20191010.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=225702323d3fcdd936ee74eb9bf45622 diff --git a/metadata/md5-cache/app-emacs/mediawiki-2.2.9-r1 b/metadata/md5-cache/app-emacs/mediawiki-2.2.9-r1 index a3a446ed8184..11e1ae1ab1f4 100644 --- a/metadata/md5-cache/app-emacs/mediawiki-2.2.9-r1 +++ b/metadata/md5-cache/app-emacs/mediawiki-2.2.9-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/hexmode/mediawiki-el/archive/2.2.9.tar.gz -> mediawiki-2.2.9.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=46a2f5056f47c4217b4f197fe05133f8 diff --git a/metadata/md5-cache/app-emacs/mediawiki-2.3.1 b/metadata/md5-cache/app-emacs/mediawiki-2.3.1 index ce6608b64348..221031cd7a84 100644 --- a/metadata/md5-cache/app-emacs/mediawiki-2.3.1 +++ b/metadata/md5-cache/app-emacs/mediawiki-2.3.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/hexmode/mediawiki-el/archive/2.3.1.tar.gz -> mediawiki-2.3.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=ee8159500fdf672b023f08aeb8edc783 diff --git a/metadata/md5-cache/app-emacs/meson-mode-0.3 b/metadata/md5-cache/app-emacs/meson-mode-0.3 index 3fb443772bfc..3823c04d047f 100644 --- a/metadata/md5-cache/app-emacs/meson-mode-0.3 +++ b/metadata/md5-cache/app-emacs/meson-mode-0.3 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/wentasah/meson-mode/archive/v0.3.tar.gz -> meson-mode-0.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3e867d52c1972a00b0a4a1458d294ca2 diff --git a/metadata/md5-cache/app-emacs/mew-6.8 b/metadata/md5-cache/app-emacs/mew-6.8 index 5f29acc63be7..1dc98ce664ed 100644 --- a/metadata/md5-cache/app-emacs/mew-6.8 +++ b/metadata/md5-cache/app-emacs/mew-6.8 @@ -11,5 +11,5 @@ RDEPEND=sys-libs/zlib ssl? ( net-misc/stunnel ) >=app-editors/emacs-24:* RESTRICT=test SLOT=0 SRC_URI=https://www.mew.org/Release/mew-6.8.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=b9d852272c81696f968287068ff7f5b4 diff --git a/metadata/md5-cache/app-emacs/mic-paren-3.13 b/metadata/md5-cache/app-emacs/mic-paren-3.13 index 96855f7446ca..a7dc080b6b78 100644 --- a/metadata/md5-cache/app-emacs/mic-paren-3.13 +++ b/metadata/md5-cache/app-emacs/mic-paren-3.13 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/mic-paren-3.13.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e1519b2765a9160347b1a02d9b3183b3 diff --git a/metadata/md5-cache/app-emacs/mic-paren-3.15 b/metadata/md5-cache/app-emacs/mic-paren-3.15 index d7fa10a3ebe4..e24605dd63d2 100644 --- a/metadata/md5-cache/app-emacs/mic-paren-3.15 +++ b/metadata/md5-cache/app-emacs/mic-paren-3.15 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/mic-paren-3.15.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9ee791152bc6c21a60d11de0c10d1863 diff --git a/metadata/md5-cache/app-emacs/mldonkey-0.0.4b-r2 b/metadata/md5-cache/app-emacs/mldonkey-0.0.4b-r2 index 4dccc4e21877..2f7ad5e99537 100644 --- a/metadata/md5-cache/app-emacs/mldonkey-0.0.4b-r2 +++ b/metadata/md5-cache/app-emacs/mldonkey-0.0.4b-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://www.physik.fu-berlin.de/%7Edhansen/mldonkey/files/mldonkey-el-0.0.4b.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=f58cfa15ef884640381e9a4c3b586859 diff --git a/metadata/md5-cache/app-emacs/mmm-mode-0.5.7 b/metadata/md5-cache/app-emacs/mmm-mode-0.5.7 index 48c2a94df477..8abe3a834b12 100644 --- a/metadata/md5-cache/app-emacs/mmm-mode-0.5.7 +++ b/metadata/md5-cache/app-emacs/mmm-mode-0.5.7 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ Texinfo-manual RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/purcell/mmm-mode/archive/0.5.7.tar.gz -> mmm-mode-0.5.7.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=c1273665a04e2ca2496d4b4ed3d17237 diff --git a/metadata/md5-cache/app-emacs/mmm-mode-0.5.8 b/metadata/md5-cache/app-emacs/mmm-mode-0.5.8 index 63c961665e55..23c10b1b0988 100644 --- a/metadata/md5-cache/app-emacs/mmm-mode-0.5.8 +++ b/metadata/md5-cache/app-emacs/mmm-mode-0.5.8 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ Texinfo-manual RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/purcell/mmm-mode/archive/0.5.8.tar.gz -> mmm-mode-0.5.8.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=ad1983a490d1d825bda33cc14fe51d4a diff --git a/metadata/md5-cache/app-emacs/moccur-edit-2.16 b/metadata/md5-cache/app-emacs/moccur-edit-2.16 index 6c039e6e88d5..a9bd5addf3ba 100644 --- a/metadata/md5-cache/app-emacs/moccur-edit-2.16 +++ b/metadata/md5-cache/app-emacs/moccur-edit-2.16 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/color-moccur >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/moccur-edit-2.16.el.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=220e17a2ac4484621fe20637aa03d633 diff --git a/metadata/md5-cache/app-emacs/mocker-0.5.0 b/metadata/md5-cache/app-emacs/mocker-0.5.0 index 29c9f8aa6568..3eeae831d2d1 100644 --- a/metadata/md5-cache/app-emacs/mocker-0.5.0 +++ b/metadata/md5-cache/app-emacs/mocker-0.5.0 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.1:* SLOT=0 SRC_URI=https://github.com/sigma/mocker.el/archive/v0.5.0.tar.gz -> mocker-0.5.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=21915df11942cd397a39e6661f0cea0f diff --git a/metadata/md5-cache/app-emacs/mpg123-el-1.60 b/metadata/md5-cache/app-emacs/mpg123-el-1.60 index 9fffb236f565..5d33aec33f0d 100644 --- a/metadata/md5-cache/app-emacs/mpg123-el-1.60 +++ b/metadata/md5-cache/app-emacs/mpg123-el-1.60 @@ -8,5 +8,5 @@ LICENSE=mpg123-el RDEPEND=media-sound/mpg123 media-sound/alsa-utils >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/mpg123-el-1.60.tar.xz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0b28df859f73c204843901b9bcf057d2 diff --git a/metadata/md5-cache/app-emacs/mpg123-el-1.61 b/metadata/md5-cache/app-emacs/mpg123-el-1.61 index 4236f51f0a38..962710cafaf5 100644 --- a/metadata/md5-cache/app-emacs/mpg123-el-1.61 +++ b/metadata/md5-cache/app-emacs/mpg123-el-1.61 @@ -8,5 +8,5 @@ LICENSE=mpg123-el RDEPEND=media-sound/mpg123 media-sound/alsa-utils >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/mpg123-el-1.61.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c2df5a5d31240af5a83095b6ff566981 diff --git a/metadata/md5-cache/app-emacs/mu-cite-8.1_p201808232348 b/metadata/md5-cache/app-emacs/mu-cite-8.1_p201808232348 index 2e4423de0e31..4cd4e5304721 100644 --- a/metadata/md5-cache/app-emacs/mu-cite-8.1_p201808232348 +++ b/metadata/md5-cache/app-emacs/mu-cite-8.1_p201808232348 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/apel app-emacs/flim bbdb? ( app-emacs/bbdb ) >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://www.jpl.org/elips/mu/snapshots/mu-cite-201808232348.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=50589a3d4fa464af68770f11e71966df diff --git a/metadata/md5-cache/app-emacs/multi-term-1.4 b/metadata/md5-cache/app-emacs/multi-term-1.4 index 237a65d8ce23..838027ba1173 100644 --- a/metadata/md5-cache/app-emacs/multi-term-1.4 +++ b/metadata/md5-cache/app-emacs/multi-term-1.4 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~mjo/distfiles/multi-term-1.4.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e0636cae5b688bed903cf4e016f717c1 diff --git a/metadata/md5-cache/app-emacs/multiple-cursors-1.4.0 b/metadata/md5-cache/app-emacs/multiple-cursors-1.4.0 index e907b949caca..f0feb37f74f4 100644 --- a/metadata/md5-cache/app-emacs/multiple-cursors-1.4.0 +++ b/metadata/md5-cache/app-emacs/multiple-cursors-1.4.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/magnars/multiple-cursors.el/archive/1.4.0.tar.gz -> multiple-cursors-1.4.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=19934ddda2983416e762476782a23ddd diff --git a/metadata/md5-cache/app-emacs/muse-3.20-r1 b/metadata/md5-cache/app-emacs/muse-3.20-r1 index da2d0f9a2ca5..1146291c5b51 100644 --- a/metadata/md5-cache/app-emacs/muse-3.20-r1 +++ b/metadata/md5-cache/app-emacs/muse-3.20-r1 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/alexott/muse/archive/v3.20.tar.gz -> muse-3.20.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a5bc15f35110be375d19b1f58ba9679f diff --git a/metadata/md5-cache/app-emacs/nagios-mode-0.3-r1 b/metadata/md5-cache/app-emacs/nagios-mode-0.3-r1 index 71e4bbab715d..130ea4ce8082 100644 --- a/metadata/md5-cache/app-emacs/nagios-mode-0.3-r1 +++ b/metadata/md5-cache/app-emacs/nagios-mode-0.3-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://michael.orlitzky.com/code/releases/nagios-mode-0.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=8f82a0892d0d20fd4f85f28c83b33440 diff --git a/metadata/md5-cache/app-emacs/navi2ch-1.8.4-r1 b/metadata/md5-cache/app-emacs/navi2ch-1.8.4-r1 index f7e386094740..f250b3121990 100644 --- a/metadata/md5-cache/app-emacs/navi2ch-1.8.4-r1 +++ b/metadata/md5-cache/app-emacs/navi2ch-1.8.4-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://sourceforge/navi2ch/navi2ch-1.8.4.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=359774a25ee966f5690be38cc758152a diff --git a/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.0 b/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.0 index 3f8b6b015851..51174260fc98 100644 --- a/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.0 +++ b/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.0 @@ -8,5 +8,5 @@ LICENSE=HPND RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://docbook.org/xml/5.0/rng/docbookxi.rnc -> docbookxi-5.0.rnc -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=719e1af9bd0b431db9e5af672913bd04 diff --git a/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.1 b/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.1 index f05f41da4fe1..7dafd258a9c6 100644 --- a/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.1 +++ b/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.1 @@ -8,5 +8,5 @@ LICENSE=HPND RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://docbook.org/xml/5.1/rng/docbookxi.rnc -> docbookxi-5.1.rnc -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=719e1af9bd0b431db9e5af672913bd04 diff --git a/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20210907 b/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20210907 index 3886d8cfcbc9..35f4cac7f210 100644 --- a/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20210907 +++ b/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20210907 @@ -8,5 +8,5 @@ LICENSE=HPND MIT GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/nxml-gentoo-schemas-20210907.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=8001a88067d2ec3b5bec34a32de3f26c diff --git a/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20220125 b/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20220125 index ffb1230f73f6..1e9c6c8ed5c7 100644 --- a/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20220125 +++ b/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20220125 @@ -8,5 +8,5 @@ LICENSE=HPND MIT GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/nxml-gentoo-schemas-20220125.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=26f1518b64f3876c478c7cf2672fd7eb diff --git a/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-5.8.0 b/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-5.8.0 index d0aed1119ce4..04584b39d3a6 100644 --- a/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-5.8.0 +++ b/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-5.8.0 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=http://libvirt.org/sources/libvirt-5.8.0.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=1dff5e30f6f7b2c943961d23d82999af diff --git a/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-7.10.0 b/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-7.10.0 index c4b1e370cf29..a1ae0f944ac2 100644 --- a/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-7.10.0 +++ b/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-7.10.0 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://libvirt.org/sources/libvirt-7.10.0.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=ab582bede927dc339f71e417ea78f8d2 diff --git a/metadata/md5-cache/app-emacs/nxml-svg-schemas-1.1.20081123-r1 b/metadata/md5-cache/app-emacs/nxml-svg-schemas-1.1.20081123-r1 index 8fd08c4a24b0..be8d72b47c50 100644 --- a/metadata/md5-cache/app-emacs/nxml-svg-schemas-1.1.20081123-r1 +++ b/metadata/md5-cache/app-emacs/nxml-svg-schemas-1.1.20081123-r1 @@ -8,5 +8,5 @@ LICENSE=HPND RDEPEND=>=app-editors/emacs-23.1:* SLOT=1.1 SRC_URI=http://www.flameeyes.eu/gentoo-distfiles/w3c-svg-rng-1.1.20081123.zip -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=2e3df112cfd4dc76d9f68f3497d6898d diff --git a/metadata/md5-cache/app-emacs/ocaml-mode-4.05.0 b/metadata/md5-cache/app-emacs/ocaml-mode-4.05.0 index 371f45648584..f4ad97353303 100644 --- a/metadata/md5-cache/app-emacs/ocaml-mode-4.05.0 +++ b/metadata/md5-cache/app-emacs/ocaml-mode-4.05.0 @@ -3,10 +3,10 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack DESCRIPTION=Emacs mode for OCaml EAPI=7 HOMEPAGE=https://ocaml.org/ -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/ocaml/ocaml/archive/4.05.0.tar.gz -> ocaml-4.05.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e -_md5_=b941f17691c86bff697d68d6f6517b6d +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 +_md5_=5dc5484ec85c2e7a2daed9966d2a6822 diff --git a/metadata/md5-cache/app-emacs/orderless-0.7 b/metadata/md5-cache/app-emacs/orderless-0.7 index 8b082c1cff6c..1c3ccad8dcb7 100644 --- a/metadata/md5-cache/app-emacs/orderless-0.7 +++ b/metadata/md5-cache/app-emacs/orderless-0.7 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/oantolin/orderless/archive/refs/tags/0.7.tar.gz -> orderless-0.7.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=ab6bf7e60647c90c379d055a27b318fd diff --git a/metadata/md5-cache/app-emacs/org-appear-0.3.0 b/metadata/md5-cache/app-emacs/org-appear-0.3.0 index 057aaf0c1865..71db9cca7bf2 100644 --- a/metadata/md5-cache/app-emacs/org-appear-0.3.0 +++ b/metadata/md5-cache/app-emacs/org-appear-0.3.0 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=>=app-editors/emacs-25.1:* SLOT=0 SRC_URI=https://github.com/awth13/org-appear/archive/0.3.0.tar.gz -> org-appear-0.3.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=1c08e391ca7cbacd399c01b6eed2455a diff --git a/metadata/md5-cache/app-emacs/org-contrib-0.2 b/metadata/md5-cache/app-emacs/org-contrib-0.2 index fc02674d6a1c..be7fa2ad7b09 100644 --- a/metadata/md5-cache/app-emacs/org-contrib-0.2 +++ b/metadata/md5-cache/app-emacs/org-contrib-0.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/org-mode-9.5 >=app-editors/emacs-24:* SLOT=0 SRC_URI=https://git.sr.ht/~bzg/org-contrib/archive/release_0.2.tar.gz -> org-contrib-0.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e99c98e119da4dda63dfc563808bc637 diff --git a/metadata/md5-cache/app-emacs/org-contrib-0.3 b/metadata/md5-cache/app-emacs/org-contrib-0.3 index 18ea752a45aa..755d1d3a1615 100644 --- a/metadata/md5-cache/app-emacs/org-contrib-0.3 +++ b/metadata/md5-cache/app-emacs/org-contrib-0.3 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/org-mode-9.5 >=app-editors/emacs-24:* SLOT=0 SRC_URI=https://git.sr.ht/~bzg/org-contrib/archive/release_0.3.tar.gz -> org-contrib-0.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5c2ff3a1210d6c0de43cc33c5b1d1f8d diff --git a/metadata/md5-cache/app-emacs/org-mode-9.4.6 b/metadata/md5-cache/app-emacs/org-mode-9.4.6 index 88e800fc378c..3e40833a6c6d 100644 --- a/metadata/md5-cache/app-emacs/org-mode-9.4.6 +++ b/metadata/md5-cache/app-emacs/org-mode-9.4.6 @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-24:* RESTRICT=test SLOT=0 SRC_URI=https://orgmode.org/org-9.4.6.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=35fc378411d8ecce9135d7a40a61a5c4 diff --git a/metadata/md5-cache/app-emacs/org-mode-9.5.2 b/metadata/md5-cache/app-emacs/org-mode-9.5.2 index 168ed0478ee9..143b988b393b 100644 --- a/metadata/md5-cache/app-emacs/org-mode-9.5.2 +++ b/metadata/md5-cache/app-emacs/org-mode-9.5.2 @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-24:* RESTRICT=test SLOT=0 SRC_URI=https://git.savannah.gnu.org/cgit/emacs/org-mode.git/snapshot/org-mode-release_9.5.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=f334a89e89ae5ce5010015f6ae53ec38 diff --git a/metadata/md5-cache/app-emacs/org-mode-9999 b/metadata/md5-cache/app-emacs/org-mode-9999 index 48a15ef62843..a0435928dc1c 100644 --- a/metadata/md5-cache/app-emacs/org-mode-9999 +++ b/metadata/md5-cache/app-emacs/org-mode-9999 @@ -9,5 +9,5 @@ PROPERTIES=live RDEPEND=>=app-editors/emacs-24:* RESTRICT=test SLOT=0 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=d1d216549b15e75475d9f7f0dff58bb3 diff --git a/metadata/md5-cache/app-emacs/org-superstar-mode-1.5.0 b/metadata/md5-cache/app-emacs/org-superstar-mode-1.5.0 index 515a679e2e49..a5025c5c2501 100644 --- a/metadata/md5-cache/app-emacs/org-superstar-mode-1.5.0 +++ b/metadata/md5-cache/app-emacs/org-superstar-mode-1.5.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/integral-dw/org-superstar-mode/archive/v1.5.0.tar.gz -> org-superstar-mode-1.5.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=d2c10b39c551521910e253489e6af51e diff --git a/metadata/md5-cache/app-emacs/outline-magic-0.9 b/metadata/md5-cache/app-emacs/outline-magic-0.9 index f9343fe1f1ba..c090f4e7a397 100644 --- a/metadata/md5-cache/app-emacs/outline-magic-0.9 +++ b/metadata/md5-cache/app-emacs/outline-magic-0.9 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/outline-magic-0.9.el.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=76b66b3fec7336bc49333f0d36e9398e diff --git a/metadata/md5-cache/app-emacs/paredit-24 b/metadata/md5-cache/app-emacs/paredit-24 index 82f9fd84443c..879b3aec34ba 100644 --- a/metadata/md5-cache/app-emacs/paredit-24 +++ b/metadata/md5-cache/app-emacs/paredit-24 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/paredit-24.el.xz https://dev.gentoo.org/~ulm/distfiles/paredit-23.html.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=179c461c8c22baaa952b5bfcb8ca2adf diff --git a/metadata/md5-cache/app-emacs/pariemacs-3.14-r1 b/metadata/md5-cache/app-emacs/pariemacs-3.14-r1 index f6cca27da8c2..4d9875a6ec30 100644 --- a/metadata/md5-cache/app-emacs/pariemacs-3.14-r1 +++ b/metadata/md5-cache/app-emacs/pariemacs-3.14-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=sci-mathematics/pari >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://iml.univ-mrs.fr/~ramare/ServeurPerso/GP-PARI/latest-pari-distrib/pariemacs-3.14.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7b1f0ccff9b213713b2b772c54cd1a98 diff --git a/metadata/md5-cache/app-emacs/php-mode-1.23.0 b/metadata/md5-cache/app-emacs/php-mode-1.23.0 index d9739c900ba5..8273cfc66749 100644 --- a/metadata/md5-cache/app-emacs/php-mode-1.23.0 +++ b/metadata/md5-cache/app-emacs/php-mode-1.23.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/ejmr/php-mode/archive/v1.23.0.tar.gz -> php-mode-1.23.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9e663bb65fffba949e3d92d7b090cba4 diff --git a/metadata/md5-cache/app-emacs/php-mode-1.24.0 b/metadata/md5-cache/app-emacs/php-mode-1.24.0 index 79b28d11bb32..71457c3b6b42 100644 --- a/metadata/md5-cache/app-emacs/php-mode-1.24.0 +++ b/metadata/md5-cache/app-emacs/php-mode-1.24.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/ejmr/php-mode/archive/v1.24.0.tar.gz -> php-mode-1.24.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=c3c06466320990357d0ec7ac5bb75f75 diff --git a/metadata/md5-cache/app-emacs/pkg-info-0.6 b/metadata/md5-cache/app-emacs/pkg-info-0.6 index 2e0b75bbb2b4..104f74523237 100644 --- a/metadata/md5-cache/app-emacs/pkg-info-0.6 +++ b/metadata/md5-cache/app-emacs/pkg-info-0.6 @@ -9,5 +9,5 @@ RDEPEND=>=app-emacs/epl-0.8 >=app-editors/emacs-24.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacsorphanage/pkg-info/archive/refs/tags/0.6.tar.gz -> pkg-info-0.6.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e2c20664cd88ec784ce91107969b363a diff --git a/metadata/md5-cache/app-emacs/planner-3.42-r1 b/metadata/md5-cache/app-emacs/planner-3.42-r1 index 90cc3f5710ae..15216086d9c2 100644 --- a/metadata/md5-cache/app-emacs/planner-3.42-r1 +++ b/metadata/md5-cache/app-emacs/planner-3.42-r1 @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/muse-3.02.6a app-emacs/bbdb app-emacs/emacs-w3m >=app-editor RESTRICT=test SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/planner-3.42.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=cddd455a6413785e32fd1056ec109509 diff --git a/metadata/md5-cache/app-emacs/po-mode-0.20.1 b/metadata/md5-cache/app-emacs/po-mode-0.20.1 index 552dd1832fac..cd46d83b565c 100644 --- a/metadata/md5-cache/app-emacs/po-mode-0.20.1 +++ b/metadata/md5-cache/app-emacs/po-mode-0.20.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gnu/gettext/gettext-0.20.1.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=4faac7f982d46fb27ff701ddc58596c3 diff --git a/metadata/md5-cache/app-emacs/popup-0.5.3 b/metadata/md5-cache/app-emacs/popup-0.5.3 index d95b1e0668f5..1506f7d8c021 100644 --- a/metadata/md5-cache/app-emacs/popup-0.5.3 +++ b/metadata/md5-cache/app-emacs/popup-0.5.3 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/auto-complete/popup-el/archive/v0.5.3.tar.gz -> popup-el-0.5.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=11a11ed473142833a48348ad547402dc diff --git a/metadata/md5-cache/app-emacs/popup-0.5.8 b/metadata/md5-cache/app-emacs/popup-0.5.8 index 44cc06036a5d..4205c276b77e 100644 --- a/metadata/md5-cache/app-emacs/popup-0.5.8 +++ b/metadata/md5-cache/app-emacs/popup-0.5.8 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/auto-complete/popup-el/archive/v0.5.8.tar.gz -> popup-el-0.5.8.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=bcd9aa94ab1510ae06f8fc66d90e51b9 diff --git a/metadata/md5-cache/app-emacs/popwin-1.0.0 b/metadata/md5-cache/app-emacs/popwin-1.0.0 index a3b8a66def09..a97a136b2761 100644 --- a/metadata/md5-cache/app-emacs/popwin-1.0.0 +++ b/metadata/md5-cache/app-emacs/popwin-1.0.0 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/m2ym/popwin-el/archive/v1.0.0.tar.gz -> popwin-1.0.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5c43cabeca2c46d5ddc270e090a292aa diff --git a/metadata/md5-cache/app-emacs/popwin-1.0.2 b/metadata/md5-cache/app-emacs/popwin-1.0.2 index cbaed3a970f5..a715c3ebb01d 100644 --- a/metadata/md5-cache/app-emacs/popwin-1.0.2 +++ b/metadata/md5-cache/app-emacs/popwin-1.0.2 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacsorphanage/popwin/archive/refs/tags/1.0.2.tar.gz -> popwin-1.0.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=dcf831307b12310245dfa45caafa3f36 diff --git a/metadata/md5-cache/app-emacs/pos-tip-0.4.6 b/metadata/md5-cache/app-emacs/pos-tip-0.4.6 index 7b19d48b73a6..3e7fcc6392da 100644 --- a/metadata/md5-cache/app-emacs/pos-tip-0.4.6 +++ b/metadata/md5-cache/app-emacs/pos-tip-0.4.6 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/pitkali/pos-tip/archive/0.4.6.tar.gz -> pos-tip-0.4.6.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3afe14b6758c177a01b7a1a99b3e06fd diff --git a/metadata/md5-cache/app-emacs/pos-tip-0.4.6_p20191227 b/metadata/md5-cache/app-emacs/pos-tip-0.4.6_p20191227 index e734de44b388..89d2e597d4ca 100644 --- a/metadata/md5-cache/app-emacs/pos-tip-0.4.6_p20191227 +++ b/metadata/md5-cache/app-emacs/pos-tip-0.4.6_p20191227 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/pitkali/pos-tip/archive/179cc126b363f72ca12fab1e0dc462ce0ee79742.tar.gz -> pos-tip-0.4.6_p20191227.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3f9ba5a1b429871c921342c71e0729c8 diff --git a/metadata/md5-cache/app-emacs/pov-mode-3.3-r1 b/metadata/md5-cache/app-emacs/pov-mode-3.3-r1 index 878400439b29..1cafddc20d14 100644 --- a/metadata/md5-cache/app-emacs/pov-mode-3.3-r1 +++ b/metadata/md5-cache/app-emacs/pov-mode-3.3-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ FDL-1.2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/emacsmirror/pov-mode/archive/v3.3.tar.gz -> pov-mode-3.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=6706411cec44ff9cd9285b46de710bb9 diff --git a/metadata/md5-cache/app-emacs/powershell-0.3_pre20220402 b/metadata/md5-cache/app-emacs/powershell-0.3_pre20220402 index deb42bba4465..a41afa4d29bf 100644 --- a/metadata/md5-cache/app-emacs/powershell-0.3_pre20220402 +++ b/metadata/md5-cache/app-emacs/powershell-0.3_pre20220402 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/jschaf/powershell.el/archive/77b27faf8a292f1dc9f54c872241dc53b6791bf1.tar.gz -> powershell-0.3_pre20220402.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=8c1b2fac915dec970007360a4d13a729 diff --git a/metadata/md5-cache/app-emacs/projectile-2.5.0 b/metadata/md5-cache/app-emacs/projectile-2.5.0 index d45e433f572e..49e0e99d732c 100644 --- a/metadata/md5-cache/app-emacs/projectile-2.5.0 +++ b/metadata/md5-cache/app-emacs/projectile-2.5.0 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-25.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/bbatsov/projectile/archive/refs/tags/v2.5.0.tar.gz -> projectile-2.5.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=b79f302b44230e4e84587f1f90f4984a diff --git a/metadata/md5-cache/app-emacs/proofgeneral-4.4 b/metadata/md5-cache/app-emacs/proofgeneral-4.4 index d73753b42e11..54043817cac1 100644 --- a/metadata/md5-cache/app-emacs/proofgeneral-4.4 +++ b/metadata/md5-cache/app-emacs/proofgeneral-4.4 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ GPL-2 GPL-3+ HPND CC-BY-SA-3.0 RDEPEND=>=app-emacs/mmm-mode-0.4.8-r2 >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/ProofGeneral/PG/archive/v4.4.tar.gz -> proofgeneral-4.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=57c64b4e5b7267dd222c582bca407b58 diff --git a/metadata/md5-cache/app-emacs/proofgeneral-4.5_pre20220228 b/metadata/md5-cache/app-emacs/proofgeneral-4.5_pre20220228 index 45c2fc5ebf56..2692628715d2 100644 --- a/metadata/md5-cache/app-emacs/proofgeneral-4.5_pre20220228 +++ b/metadata/md5-cache/app-emacs/proofgeneral-4.5_pre20220228 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ GPL-2 GPL-3+ HPND CC-BY-SA-3.0 RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/ProofGeneral/PG/archive/fe8b9fccb3690178be7fc455202c941c4c674ac3.tar.gz -> proofgeneral-4.5_pre20220228.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=8e7a04b4deb26617ef666c4e8a83bd0d diff --git a/metadata/md5-cache/app-emacs/protbuf-1.7-r1 b/metadata/md5-cache/app-emacs/protbuf-1.7-r1 index 8af5e8c64dbe..8f2cfa979969 100644 --- a/metadata/md5-cache/app-emacs/protbuf-1.7-r1 +++ b/metadata/md5-cache/app-emacs/protbuf-1.7-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/protbuf-1.7.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=bfe0b38989c433c89989919a7cb5d016 diff --git a/metadata/md5-cache/app-emacs/psgml-1.4.1 b/metadata/md5-cache/app-emacs/psgml-1.4.1 index 83792f6771a9..00081867fc49 100644 --- a/metadata/md5-cache/app-emacs/psgml-1.4.1 +++ b/metadata/md5-cache/app-emacs/psgml-1.4.1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ Texinfo-manual RDEPEND=app-text/openjade >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/psgml-1.4.1.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=67138fb6db302c799196d2563d4fc2f5 diff --git a/metadata/md5-cache/app-emacs/puppet-mode-0.3.20180813 b/metadata/md5-cache/app-emacs/puppet-mode-0.3.20180813 index 9c7d593b3e2b..58cf58e2358f 100644 --- a/metadata/md5-cache/app-emacs/puppet-mode-0.3.20180813 +++ b/metadata/md5-cache/app-emacs/puppet-mode-0.3.20180813 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/voxpupuli/puppet-mode/archive/7dee1b5a5debac6e56f9107492a413b6c0edb94d.tar.gz -> puppet-mode-0.3.20180813.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5cefddeebf772aee1bf6202bdf3dd42b diff --git a/metadata/md5-cache/app-emacs/puppet-mode-0.4 b/metadata/md5-cache/app-emacs/puppet-mode-0.4 index 03dc24d35006..82fe2322ea75 100644 --- a/metadata/md5-cache/app-emacs/puppet-mode-0.4 +++ b/metadata/md5-cache/app-emacs/puppet-mode-0.4 @@ -9,5 +9,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/voxpupuli/puppet-mode/archive/0.4.tar.gz -> puppet-mode-0.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=817ce93dafaec871b21b6eb29de8139b diff --git a/metadata/md5-cache/app-emacs/pymacs-0.26-r2 b/metadata/md5-cache/app-emacs/pymacs-0.26-r2 index 8532805ac82f..03b584384270 100644 --- a/metadata/md5-cache/app-emacs/pymacs-0.26-r2 +++ b/metadata/md5-cache/app-emacs/pymacs-0.26-r2 @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-23.1:* python_targets_python3_8? ( >=dev-lang/python REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=https://github.com/dgentry/Pymacs/archive/v0.26.tar.gz -> pymacs-0.26.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bcf4e61d4c54df95f4840aa1aa330543 diff --git a/metadata/md5-cache/app-emacs/python-mode-6.2.3 b/metadata/md5-cache/app-emacs/python-mode-6.2.3 index 6d7076cf71be..2bbffbaf0ed0 100644 --- a/metadata/md5-cache/app-emacs/python-mode-6.2.3 +++ b/metadata/md5-cache/app-emacs/python-mode-6.2.3 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://launchpad.net/python-mode/trunk/6.2.3/+download/python-mode.el-6.2.3.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=77a866103fd6bdda2f0d983369f37a3a diff --git a/metadata/md5-cache/app-emacs/python-mode-6.3.0 b/metadata/md5-cache/app-emacs/python-mode-6.3.0 index 6bfcc415d601..9dd2d7276acd 100644 --- a/metadata/md5-cache/app-emacs/python-mode-6.3.0 +++ b/metadata/md5-cache/app-emacs/python-mode-6.3.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://gitlab.com/python-mode-devs/python-mode/-/archive/6.3.0/python-mode-6.3.0.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=a0970b9c8651b3e2004769d195424df5 diff --git a/metadata/md5-cache/app-emacs/pyvenv-1.21 b/metadata/md5-cache/app-emacs/pyvenv-1.21 index 543c34a72e9d..e79441e503e1 100644 --- a/metadata/md5-cache/app-emacs/pyvenv-1.21 +++ b/metadata/md5-cache/app-emacs/pyvenv-1.21 @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jorgenschaefer/pyvenv/archive/v1.21.tar.gz -> pyvenv-1.21.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=668c7edae54687cf6869324e5b2c770e diff --git a/metadata/md5-cache/app-emacs/quack-0.48 b/metadata/md5-cache/app-emacs/quack-0.48 index a87b46204149..7c5c764044f6 100644 --- a/metadata/md5-cache/app-emacs/quack-0.48 +++ b/metadata/md5-cache/app-emacs/quack-0.48 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/quack-0.48.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=6f686db065171041cf8bab133ce4c2d0 diff --git a/metadata/md5-cache/app-emacs/queue-0.2 b/metadata/md5-cache/app-emacs/queue-0.2 index b574c29553cc..fdba7a95da2d 100644 --- a/metadata/md5-cache/app-emacs/queue-0.2 +++ b/metadata/md5-cache/app-emacs/queue-0.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://dev.gentoo.org/~matthew/distfiles/queue-0.2.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=45743e463f936fde05b952dabaea5dc1 diff --git a/metadata/md5-cache/app-emacs/quilt-el-0.66 b/metadata/md5-cache/app-emacs/quilt-el-0.66 index e9bef81d5f38..acf053c8bddd 100644 --- a/metadata/md5-cache/app-emacs/quilt-el-0.66 +++ b/metadata/md5-cache/app-emacs/quilt-el-0.66 @@ -8,5 +8,5 @@ LICENSE=GPL-1+ RDEPEND=dev-util/quilt >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://nongnu/quilt/quilt-0.66.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a8551252d8db374d478c9c753b390cd8 diff --git a/metadata/md5-cache/app-emacs/qwerty-1.1 b/metadata/md5-cache/app-emacs/qwerty-1.1 index 28b146dddfce..2a3fa8cac39e 100644 --- a/metadata/md5-cache/app-emacs/qwerty-1.1 +++ b/metadata/md5-cache/app-emacs/qwerty-1.1 @@ -8,5 +8,5 @@ LICENSE=GPL-1+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/qwerty-1.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=97bc49dbcab0065ca9521eca2590a456 diff --git a/metadata/md5-cache/app-emacs/racket-mode-20220219 b/metadata/md5-cache/app-emacs/racket-mode-20220219 index b370ccf4efb2..5eaa116ea9c8 100644 --- a/metadata/md5-cache/app-emacs/racket-mode-20220219 +++ b/metadata/md5-cache/app-emacs/racket-mode-20220219 @@ -3,10 +3,10 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpa DESCRIPTION=Emacs modes for Racket: edit, REPL, check-syntax, debug, profile, and more EAPI=8 HOMEPAGE=https://github.com/greghendershott/racket-mode/ -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2+ RDEPEND=dev-scheme/racket:=[-minimal] >=app-editors/emacs-25.1:* SLOT=0 SRC_URI=https://github.com/greghendershott/racket-mode/archive/52e993f3b39416eeb4df6262491d4a42d0b35232.tar.gz -> racket-mode-20220219.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e -_md5_=1f4e4a02f9af330c6d2c6ec04da05660 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 +_md5_=3a153872d5dc3b7359e8c93a67544598 diff --git a/metadata/md5-cache/app-emacs/racket-mode-20220310 b/metadata/md5-cache/app-emacs/racket-mode-20220310 index 535e734aae91..7b56d98939f8 100644 --- a/metadata/md5-cache/app-emacs/racket-mode-20220310 +++ b/metadata/md5-cache/app-emacs/racket-mode-20220310 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=dev-scheme/racket:=[-minimal] >=app-editors/emacs-25.1:* SLOT=0 SRC_URI=https://github.com/greghendershott/racket-mode/archive/e321d8ecfb1bc94c3772ef4d20df0ddf9c9c9d76.tar.gz -> racket-mode-20220310.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7a8d0cd036469572cb5e7d0f44e7e942 diff --git a/metadata/md5-cache/app-emacs/racket-mode-20220411 b/metadata/md5-cache/app-emacs/racket-mode-20220411 index 00cc4d1e2aa5..97217f9173e9 100644 --- a/metadata/md5-cache/app-emacs/racket-mode-20220411 +++ b/metadata/md5-cache/app-emacs/racket-mode-20220411 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=dev-scheme/racket:=[-minimal] >=app-editors/emacs-25.1:* SLOT=0 SRC_URI=https://github.com/greghendershott/racket-mode/archive/e7efbb52fdf2219532230a199153d8a33889c26f.tar.gz -> racket-mode-20220411.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=10bae43282fbb3b2473f01e6cb88cfef diff --git a/metadata/md5-cache/app-emacs/rainbow-delimiters-2.1.5 b/metadata/md5-cache/app-emacs/rainbow-delimiters-2.1.5 index aa40153f47bc..5d97574e1d0c 100644 --- a/metadata/md5-cache/app-emacs/rainbow-delimiters-2.1.5 +++ b/metadata/md5-cache/app-emacs/rainbow-delimiters-2.1.5 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24.1:* SLOT=0 SRC_URI=https://github.com/Fanael/rainbow-delimiters/archive/2.1.5.tar.gz -> rainbow-delimiters-2.1.5.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=2481843fa169c8987e3c6dda08998f1f diff --git a/metadata/md5-cache/app-emacs/redo+-1.19 b/metadata/md5-cache/app-emacs/redo+-1.19 index 077a22897150..e54ddcf20654 100644 --- a/metadata/md5-cache/app-emacs/redo+-1.19 +++ b/metadata/md5-cache/app-emacs/redo+-1.19 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/redo+-1.19.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=7377c748b7b3ee970e32b6198d7eb8e2 diff --git a/metadata/md5-cache/app-emacs/reformatter-0.6 b/metadata/md5-cache/app-emacs/reformatter-0.6 new file mode 100644 index 000000000000..9184fac43482 --- /dev/null +++ b/metadata/md5-cache/app-emacs/reformatter-0.6 @@ -0,0 +1,13 @@ +BDEPEND=>=app-editors/emacs-24.3:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DESCRIPTION=Define commands which run reformatters on the Emacs buffers +EAPI=8 +HOMEPAGE=https://github.com/purcell/emacs-reformatter/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=>=app-editors/emacs-24.3:* +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/purcell/emacs-reformatter/archive/0.6.tar.gz -> reformatter-0.6.tar.gz +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 +_md5_=c6e5532468656a89f1870703b9f7bed8 diff --git a/metadata/md5-cache/app-emacs/regress-1.5.1 b/metadata/md5-cache/app-emacs/regress-1.5.1 index 6d5cb9cd1601..e91669112b46 100644 --- a/metadata/md5-cache/app-emacs/regress-1.5.1 +++ b/metadata/md5-cache/app-emacs/regress-1.5.1 @@ -8,5 +8,5 @@ LICENSE=GPL-1+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/regress-1.5.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=454d8fdde3e3ea865f8e165779e9cf41 diff --git a/metadata/md5-cache/app-emacs/remember-2.0-r1 b/metadata/md5-cache/app-emacs/remember-2.0-r1 index a84992d49723..b29e7dd6c199 100644 --- a/metadata/md5-cache/app-emacs/remember-2.0-r1 +++ b/metadata/md5-cache/app-emacs/remember-2.0-r1 @@ -10,5 +10,5 @@ RDEPEND=bbdb? ( app-emacs/bbdb ) planner? ( app-emacs/planner ) >=app-editors/em RESTRICT=test SLOT=0 SRC_URI=https://github.com/jwiegley/remember/archive/v2.0.tar.gz -> remember-2.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=10210f879c00a3cbf893a8599cc7f0d0 diff --git a/metadata/md5-cache/app-emacs/revive-2.24 b/metadata/md5-cache/app-emacs/revive-2.24 index 4c960155b03d..099c44be4d68 100644 --- a/metadata/md5-cache/app-emacs/revive-2.24 +++ b/metadata/md5-cache/app-emacs/revive-2.24 @@ -8,5 +8,5 @@ LICENSE=BSD-2 RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/revive-2.24.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3dccdc46beff89c1ebb4d15ff43f7acc diff --git a/metadata/md5-cache/app-emacs/rfcview-0.13 b/metadata/md5-cache/app-emacs/rfcview-0.13 index be7c63c4c7a2..30a2ef3a75f9 100644 --- a/metadata/md5-cache/app-emacs/rfcview-0.13 +++ b/metadata/md5-cache/app-emacs/rfcview-0.13 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/rfcview-0.13.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7c30a40b350b44dcf6a33b05e6f95a21 diff --git a/metadata/md5-cache/app-emacs/riece-9.0.0-r1 b/metadata/md5-cache/app-emacs/riece-9.0.0-r1 index 6a42eac00cd2..1649cd0348ab 100644 --- a/metadata/md5-cache/app-emacs/riece-9.0.0-r1 +++ b/metadata/md5-cache/app-emacs/riece-9.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://download.savannah.gnu.org/releases/riece/riece-9.0.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=90e679b73e3471815a6c329c5003fdea diff --git a/metadata/md5-cache/app-emacs/rnc-mode-1.0.6 b/metadata/md5-cache/app-emacs/rnc-mode-1.0.6 index 2bed4dd53ac2..402a39315939 100644 --- a/metadata/md5-cache/app-emacs/rnc-mode-1.0.6 +++ b/metadata/md5-cache/app-emacs/rnc-mode-1.0.6 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/TreeRex/rnc-mode/archive/1.0.6.tar.gz -> rnc-mode-1.0.6.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a88ec621d79879fd7772914c6f6f2545 diff --git a/metadata/md5-cache/app-emacs/rpm-spec-mode-0.15 b/metadata/md5-cache/app-emacs/rpm-spec-mode-0.15 index 53a3db3785f4..3d4fddd0e7ae 100644 --- a/metadata/md5-cache/app-emacs/rpm-spec-mode-0.15 +++ b/metadata/md5-cache/app-emacs/rpm-spec-mode-0.15 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/rpm-spec-mode-0.15.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=ca9805e05a6f18a6dd5e9730536696ab diff --git a/metadata/md5-cache/app-emacs/ruby-mode-2.6.3 b/metadata/md5-cache/app-emacs/ruby-mode-2.6.3 index 2d55dbe01bbd..871c7da6b11b 100644 --- a/metadata/md5-cache/app-emacs/ruby-mode-2.6.3 +++ b/metadata/md5-cache/app-emacs/ruby-mode-2.6.3 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/ruby/elisp/archive/75bccbb384e6907df47ab69acdccb4536806c890.tar.gz -> ruby-mode-2.6.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=2d3b9de0ccc9b153948747c0f7e6e325 diff --git a/metadata/md5-cache/app-emacs/ruby-mode-2.7.0 b/metadata/md5-cache/app-emacs/ruby-mode-2.7.0 index 279aaad0566b..52207a4a148c 100644 --- a/metadata/md5-cache/app-emacs/ruby-mode-2.7.0 +++ b/metadata/md5-cache/app-emacs/ruby-mode-2.7.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/ruby/elisp/archive/defe0b586b2a888706507a7bbcdf1201d924cc2d.tar.gz -> ruby-mode-2.7.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=2e3546f01128c63904e53f0a99b692ba diff --git a/metadata/md5-cache/app-emacs/ruby-mode-3.0.0 b/metadata/md5-cache/app-emacs/ruby-mode-3.0.0 index f1dd65267cd7..01959b5a279c 100644 --- a/metadata/md5-cache/app-emacs/ruby-mode-3.0.0 +++ b/metadata/md5-cache/app-emacs/ruby-mode-3.0.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/ruby/elisp/archive/586b679b4ae9685a24003502249920e7721c6e24.tar.gz -> ruby-mode-3.0.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=85787f941ec4a56790b4e31771c3df0c diff --git a/metadata/md5-cache/app-emacs/rudel-0.3.1 b/metadata/md5-cache/app-emacs/rudel-0.3.1 index 2077cd2a6d10..f292994851ff 100644 --- a/metadata/md5-cache/app-emacs/rudel-0.3.1 +++ b/metadata/md5-cache/app-emacs/rudel-0.3.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/rudel-0.3.1.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=c1a209918a690f26dede24b956ebd6d8 diff --git a/metadata/md5-cache/app-emacs/rudel-0.3.2 b/metadata/md5-cache/app-emacs/rudel-0.3.2 index d703ae584299..f46ccd07c585 100644 --- a/metadata/md5-cache/app-emacs/rudel-0.3.2 +++ b/metadata/md5-cache/app-emacs/rudel-0.3.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/rudel-0.3.2.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=174b6213b5605a40dc745fc0ec1021c6 diff --git a/metadata/md5-cache/app-emacs/rust-mode-0.3.0_p20190125 b/metadata/md5-cache/app-emacs/rust-mode-0.3.0_p20190125 index 45115f6a07ea..ce1e5744e05c 100644 --- a/metadata/md5-cache/app-emacs/rust-mode-0.3.0_p20190125 +++ b/metadata/md5-cache/app-emacs/rust-mode-0.3.0_p20190125 @@ -8,5 +8,5 @@ LICENSE=|| ( MIT Apache-2.0 ) RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/rust-mode-0.3.0_p20190125.tar.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=6e27e9c8ca0593c7a0c5117a654480ed diff --git a/metadata/md5-cache/app-emacs/rust-mode-0.4.0 b/metadata/md5-cache/app-emacs/rust-mode-0.4.0 index 826d9c807358..cd1f2d11fb4b 100644 --- a/metadata/md5-cache/app-emacs/rust-mode-0.4.0 +++ b/metadata/md5-cache/app-emacs/rust-mode-0.4.0 @@ -8,5 +8,5 @@ LICENSE=|| ( MIT Apache-2.0 ) RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/rust-lang/rust-mode/archive/0.4.0.tar.gz -> rust-mode-0.4.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=46fbeccadc048af1adb746d0660cb358 diff --git a/metadata/md5-cache/app-emacs/rust-mode-1.0.4 b/metadata/md5-cache/app-emacs/rust-mode-1.0.4 index 9e517e228d79..c50b55170547 100644 --- a/metadata/md5-cache/app-emacs/rust-mode-1.0.4 +++ b/metadata/md5-cache/app-emacs/rust-mode-1.0.4 @@ -8,5 +8,5 @@ LICENSE=|| ( MIT Apache-2.0 ) RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/rust-lang/rust-mode/archive/1.0.4.tar.gz -> rust-mode-1.0.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=22f5fa47b45733cd314e2e1092f2c8f9 diff --git a/metadata/md5-cache/app-emacs/s-1.12.0 b/metadata/md5-cache/app-emacs/s-1.12.0 index a555b0c16fd8..249f4b7b82af 100644 --- a/metadata/md5-cache/app-emacs/s-1.12.0 +++ b/metadata/md5-cache/app-emacs/s-1.12.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/magnars/s.el/archive/1.12.0.tar.gz -> s-1.12.0.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=37339a47bb953cf840c682c582b7e001 diff --git a/metadata/md5-cache/app-emacs/scala-mode-2.10.3 b/metadata/md5-cache/app-emacs/scala-mode-2.10.3 index 14cf996cbde6..ebde60f8ff80 100644 --- a/metadata/md5-cache/app-emacs/scala-mode-2.10.3 +++ b/metadata/md5-cache/app-emacs/scala-mode-2.10.3 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/scala >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://www.scala-lang.org/files/archive/scala-tool-support-2.10.3.tgz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=0c11d2600ed79ea49d9a69070baf2636 diff --git a/metadata/md5-cache/app-emacs/scheme-complete-0.9.8 b/metadata/md5-cache/app-emacs/scheme-complete-0.9.8 index ba6f9d3ddb3a..57be93b21ef0 100644 --- a/metadata/md5-cache/app-emacs/scheme-complete-0.9.8 +++ b/metadata/md5-cache/app-emacs/scheme-complete-0.9.8 @@ -8,5 +8,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://synthcode.com/emacs/scheme-complete-0.9.8.el.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=691b40f044a1d8813808672c7efb1cda diff --git a/metadata/md5-cache/app-emacs/scheme-complete-0.9.9 b/metadata/md5-cache/app-emacs/scheme-complete-0.9.9 index 4ee1cc78d4ae..f6ca34a164aa 100644 --- a/metadata/md5-cache/app-emacs/scheme-complete-0.9.9 +++ b/metadata/md5-cache/app-emacs/scheme-complete-0.9.9 @@ -8,5 +8,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://synthcode.com/emacs/scheme-complete-0.9.9.el.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=c491189402a0559461df5fc4b7345862 diff --git a/metadata/md5-cache/app-emacs/scim-bridge-el-0.8.2-r1 b/metadata/md5-cache/app-emacs/scim-bridge-el-0.8.2-r1 index 93be1135e0b8..d51dadc05870 100644 --- a/metadata/md5-cache/app-emacs/scim-bridge-el-0.8.2-r1 +++ b/metadata/md5-cache/app-emacs/scim-bridge-el-0.8.2-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=app-i18n/scim >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://launchpad.net/scim-bridge.el/0.8/0.8.2/+download/scim-bridge-el-0.8.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=ec7289150fac0fb342c2ac2a2265461d diff --git a/metadata/md5-cache/app-emacs/scss-mode-0.5.0_p20180123-r1 b/metadata/md5-cache/app-emacs/scss-mode-0.5.0_p20180123-r1 index 3db178a42610..1e74eea3206a 100644 --- a/metadata/md5-cache/app-emacs/scss-mode-0.5.0_p20180123-r1 +++ b/metadata/md5-cache/app-emacs/scss-mode-0.5.0_p20180123-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=dev-ruby/sass >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/antonj/scss-mode/archive/cf58dbec5394280503eb5502938f3b5445d1b53d.tar.gz -> scss-mode-0.5.0_p20180123.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f21b6da45eb524b1fa5e5a33f95afd56 diff --git a/metadata/md5-cache/app-emacs/semi-1.14.7_p20190517 b/metadata/md5-cache/app-emacs/semi-1.14.7_p20190517 index b643e3aa4af1..d93320a3af4d 100644 --- a/metadata/md5-cache/app-emacs/semi-1.14.7_p20190517 +++ b/metadata/md5-cache/app-emacs/semi-1.14.7_p20190517 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/wanderlust/semi/archive/4cf114c95fb49ad75eb6916f678b45b04bad8122.tar.gz -> semi-1.14.7_p20190517.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=36cd2a8cd177d9cf2564e413b9f252f4 diff --git a/metadata/md5-cache/app-emacs/semi-1.14.7_p20210613 b/metadata/md5-cache/app-emacs/semi-1.14.7_p20210613 index a260152e0678..56ec728a57e9 100644 --- a/metadata/md5-cache/app-emacs/semi-1.14.7_p20210613 +++ b/metadata/md5-cache/app-emacs/semi-1.14.7_p20210613 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 >=app-editors/emacs-24.5:* SLOT=0 SRC_URI=https://github.com/wanderlust/semi/archive/509f6f0bc2f5d020c63e47d9ad89410dc20bcb6f.tar.gz -> semi-1.14.7_p20210613.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=df45b860c618af5b17b3c04641775cd1 diff --git a/metadata/md5-cache/app-emacs/session-2.4b b/metadata/md5-cache/app-emacs/session-2.4b index a50bb44287df..ce9cb7e61b18 100644 --- a/metadata/md5-cache/app-emacs/session-2.4b +++ b/metadata/md5-cache/app-emacs/session-2.4b @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://sourceforge/emacs-session/session-2.4b.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=ecc272b50db98a62134bc1c44d6d8b5e diff --git a/metadata/md5-cache/app-emacs/setnu-1.06 b/metadata/md5-cache/app-emacs/setnu-1.06 index bf3c9fe98e44..cbef2725748e 100644 --- a/metadata/md5-cache/app-emacs/setnu-1.06 +++ b/metadata/md5-cache/app-emacs/setnu-1.06 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/setnu-1.06.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f855398be985c9e27b678668fc242604 diff --git a/metadata/md5-cache/app-emacs/setup-1.2.0 b/metadata/md5-cache/app-emacs/setup-1.2.0 index 6fbb548ff621..39afe4f8d3f5 100644 --- a/metadata/md5-cache/app-emacs/setup-1.2.0 +++ b/metadata/md5-cache/app-emacs/setup-1.2.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://git.sr.ht/~pkal/setup/archive/4fc13e309ec1585a7e5033c394fa25a3078e39c5.tar.gz -> setup-1.2.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=020190de5f0b327197182290e9be9299 diff --git a/metadata/md5-cache/app-emacs/shut-up-0.3.3 b/metadata/md5-cache/app-emacs/shut-up-0.3.3 new file mode 100644 index 000000000000..03bdcf3a69a4 --- /dev/null +++ b/metadata/md5-cache/app-emacs/shut-up-0.3.3 @@ -0,0 +1,14 @@ +BDEPEND=test? ( app-emacs/f app-emacs/s ) >=app-editors/emacs-24:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DESCRIPTION=Reduce Emacs output of messages +EAPI=8 +HOMEPAGE=https://github.com/cask/shut-up/ +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=>=app-editors/emacs-24:* +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/cask/shut-up/archive/v0.3.3.tar.gz -> shut-up-0.3.3.tar.gz +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 +_md5_=7de3ccd116cc0ae3b41eecfd93a9a2cb diff --git a/metadata/md5-cache/app-emacs/slime-2.21 b/metadata/md5-cache/app-emacs/slime-2.21 index 613b0267a3bc..ec5f7ad6239d 100644 --- a/metadata/md5-cache/app-emacs/slime-2.21 +++ b/metadata/md5-cache/app-emacs/slime-2.21 @@ -10,5 +10,5 @@ RDEPEND=virtual/commonlisp dev-lisp/asdf >=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/slime/slime/archive/v2.21.tar.gz -> slime-2.21.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=99cef5113c4d0404f7c7e2f28f96ce1c diff --git a/metadata/md5-cache/app-emacs/slime-2.27 b/metadata/md5-cache/app-emacs/slime-2.27 index 373219e15214..c753f639f79d 100644 --- a/metadata/md5-cache/app-emacs/slime-2.27 +++ b/metadata/md5-cache/app-emacs/slime-2.27 @@ -11,5 +11,5 @@ RDEPEND=virtual/commonlisp dev-lisp/asdf >=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/slime/slime/archive/v2.27.tar.gz -> slime-2.27.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7b96489c4c744e0c994561f32a443289 diff --git a/metadata/md5-cache/app-emacs/sml-mode-6.10 b/metadata/md5-cache/app-emacs/sml-mode-6.10 index e17e3a4a1e30..f014e4a7a266 100644 --- a/metadata/md5-cache/app-emacs/sml-mode-6.10 +++ b/metadata/md5-cache/app-emacs/sml-mode-6.10 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/sml-mode-6.10.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=6defd2b5d8249785c6855792345e6b8e diff --git a/metadata/md5-cache/app-emacs/sml-mode-6.9 b/metadata/md5-cache/app-emacs/sml-mode-6.9 index 8cac17389c58..aea006ef136d 100644 --- a/metadata/md5-cache/app-emacs/sml-mode-6.9 +++ b/metadata/md5-cache/app-emacs/sml-mode-6.9 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/sml-mode-6.9.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=8a9aacf862113149ae1d968869d6510f diff --git a/metadata/md5-cache/app-emacs/sokoban-1.4.8 b/metadata/md5-cache/app-emacs/sokoban-1.4.8 index db3aff60d2df..f073d042df3b 100644 --- a/metadata/md5-cache/app-emacs/sokoban-1.4.8 +++ b/metadata/md5-cache/app-emacs/sokoban-1.4.8 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://elpa.gnu.org/packages/sokoban-1.4.8.tar -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=22eea890fdfa7f597bc1762942844d34 diff --git a/metadata/md5-cache/app-emacs/spacemacs-theme-0.2 b/metadata/md5-cache/app-emacs/spacemacs-theme-0.2 index 2abeccc5e79a..2833a573c7fa 100644 --- a/metadata/md5-cache/app-emacs/spacemacs-theme-0.2 +++ b/metadata/md5-cache/app-emacs/spacemacs-theme-0.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/nashamri/spacemacs-theme/archive/0.2.tar.gz -> spacemacs-theme-0.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=c465358a5663d77f47ba88efa42197a8 diff --git a/metadata/md5-cache/app-emacs/spinner-1.7.4 b/metadata/md5-cache/app-emacs/spinner-1.7.4 index 0e5fc9ef741d..35af2092e63c 100644 --- a/metadata/md5-cache/app-emacs/spinner-1.7.4 +++ b/metadata/md5-cache/app-emacs/spinner-1.7.4 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/Malabarba/spinner.el/archive/1.7.4.tar.gz -> spinner-1.7.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=437505ef676f1cfcf1d6a302a9694f19 diff --git a/metadata/md5-cache/app-emacs/ssh-20120709 b/metadata/md5-cache/app-emacs/ssh-20120709 index a2c3225e53f6..f9213843c172 100644 --- a/metadata/md5-cache/app-emacs/ssh-20120709 +++ b/metadata/md5-cache/app-emacs/ssh-20120709 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/ssh-20120709.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=b2f045a285858cebfeff26c45f702d5e diff --git a/metadata/md5-cache/app-emacs/stripes-0.2-r2 b/metadata/md5-cache/app-emacs/stripes-0.2-r2 index a35b95e3e6d6..a2260bdc95c5 100644 --- a/metadata/md5-cache/app-emacs/stripes-0.2-r2 +++ b/metadata/md5-cache/app-emacs/stripes-0.2-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/stripes-0.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=55fa2593b7c9292e9044890eb9ff3a4a diff --git a/metadata/md5-cache/app-emacs/sumibi-0.7.4 b/metadata/md5-cache/app-emacs/sumibi-0.7.4 index cb4ad92e1fac..7f931bc04e31 100644 --- a/metadata/md5-cache/app-emacs/sumibi-0.7.4 +++ b/metadata/md5-cache/app-emacs/sumibi-0.7.4 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://sourceforge.jp/sumibi/26504/sumibi-0.7.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=c03ed682ab3cf377d43ebdaf661d4b0d diff --git a/metadata/md5-cache/app-emacs/swiper-0.13.4 b/metadata/md5-cache/app-emacs/swiper-0.13.4 index 1ccdf4c9955b..cd2c0c0c3a12 100644 --- a/metadata/md5-cache/app-emacs/swiper-0.13.4 +++ b/metadata/md5-cache/app-emacs/swiper-0.13.4 @@ -9,5 +9,5 @@ RDEPEND=>=app-emacs/ivy-0.13.4 >=app-editors/emacs-24.5:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/abo-abo/swiper/archive/0.13.4.tar.gz -> swiper-0.13.4.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=d198119a8b9c9f457e03c3569a9f6abb diff --git a/metadata/md5-cache/app-emacs/switch-window-1.6.2_p20210808 b/metadata/md5-cache/app-emacs/switch-window-1.6.2_p20210808 index 6fa879a473da..3bd0ed0f1ba6 100644 --- a/metadata/md5-cache/app-emacs/switch-window-1.6.2_p20210808 +++ b/metadata/md5-cache/app-emacs/switch-window-1.6.2_p20210808 @@ -8,5 +8,5 @@ LICENSE=WTFPL-2 RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/dimitri/switch-window/archive/8d9fe251d8d38b223d643df975876356ddfc1b98.tar.gz -> switch-window-1.6.2_p20210808.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=56c17c587d7429222ce5dc7474361e22 diff --git a/metadata/md5-cache/app-emacs/teco-7-r2 b/metadata/md5-cache/app-emacs/teco-7-r2 index aa001f6b9142..5247f68e88ae 100644 --- a/metadata/md5-cache/app-emacs/teco-7-r2 +++ b/metadata/md5-cache/app-emacs/teco-7-r2 @@ -8,5 +8,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/teco-7.el.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=86a0a97d8ca852f51babb3586641b6d0 diff --git a/metadata/md5-cache/app-emacs/template-3.3b b/metadata/md5-cache/app-emacs/template-3.3b index a93ea64969b7..7082bf322754 100644 --- a/metadata/md5-cache/app-emacs/template-3.3b +++ b/metadata/md5-cache/app-emacs/template-3.3b @@ -8,5 +8,5 @@ LICENSE=GPL-2+ Texinfo-manual RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://sourceforge/emacs-template/template-3.3b.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=23d681966816d0b3bdde17eb4956326a diff --git a/metadata/md5-cache/app-emacs/tempo-snippets-0.1.5 b/metadata/md5-cache/app-emacs/tempo-snippets-0.1.5 index 54c30abe8ca2..f7265d4bae04 100644 --- a/metadata/md5-cache/app-emacs/tempo-snippets-0.1.5 +++ b/metadata/md5-cache/app-emacs/tempo-snippets-0.1.5 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/tempo-snippets-0.1.5.el.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=52e360f6f6f36839a686d1149cc3a307 diff --git a/metadata/md5-cache/app-emacs/thinks-1.12 b/metadata/md5-cache/app-emacs/thinks-1.12 index 3b1f6f8cdfdb..39265a80726a 100644 --- a/metadata/md5-cache/app-emacs/thinks-1.12 +++ b/metadata/md5-cache/app-emacs/thinks-1.12 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/davep/thinks.el/archive/v1.12.tar.gz -> thinks-1.12.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=d2d4b38eafb7f7423dbbcbc4f98bde9a diff --git a/metadata/md5-cache/app-emacs/transient-0.3.6 b/metadata/md5-cache/app-emacs/transient-0.3.6 index 111a1e4fbdf3..6cc72d5d7e09 100644 --- a/metadata/md5-cache/app-emacs/transient-0.3.6 +++ b/metadata/md5-cache/app-emacs/transient-0.3.6 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/magit/transient/archive/v0.3.6.tar.gz -> transient-0.3.6.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=97650541824208b62d408a072326926a diff --git a/metadata/md5-cache/app-emacs/transient-0.3.7 b/metadata/md5-cache/app-emacs/transient-0.3.7 index b974176d5486..2aab4ccca5e8 100644 --- a/metadata/md5-cache/app-emacs/transient-0.3.7 +++ b/metadata/md5-cache/app-emacs/transient-0.3.7 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25:* SLOT=0 SRC_URI=https://github.com/magit/transient/archive/v0.3.7.tar.gz -> transient-0.3.7.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f1a665a6710f74c8b55b60f8e9b9b149 diff --git a/metadata/md5-cache/app-emacs/treepy-0.1.1 b/metadata/md5-cache/app-emacs/treepy-0.1.1 index d0fa12f9a025..cfd50bdefa99 100644 --- a/metadata/md5-cache/app-emacs/treepy-0.1.1 +++ b/metadata/md5-cache/app-emacs/treepy-0.1.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/volrath/treepy.el/archive/0.1.1.tar.gz -> treepy-0.1.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=aeea164ef25d795b6558eaeed4cdadad diff --git a/metadata/md5-cache/app-emacs/treepy-0.1.1-r1 b/metadata/md5-cache/app-emacs/treepy-0.1.1-r1 index cddb1421c508..3716fec870e7 100644 --- a/metadata/md5-cache/app-emacs/treepy-0.1.1-r1 +++ b/metadata/md5-cache/app-emacs/treepy-0.1.1-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/volrath/treepy.el/archive/0.1.1.tar.gz -> treepy-0.1.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=01a136a13f8b5e8acdf8d51019a31784 diff --git a/metadata/md5-cache/app-emacs/treepy-0.1.2 b/metadata/md5-cache/app-emacs/treepy-0.1.2 index 13b8bc60c711..7ecbd56f0fd0 100644 --- a/metadata/md5-cache/app-emacs/treepy-0.1.2 +++ b/metadata/md5-cache/app-emacs/treepy-0.1.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.1:* SLOT=0 SRC_URI=https://github.com/volrath/treepy.el/archive/0.1.2.tar.gz -> treepy-0.1.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=aa68204f68813df9b54124f0ea516bab diff --git a/metadata/md5-cache/app-emacs/tuareg-mode-2.2.0 b/metadata/md5-cache/app-emacs/tuareg-mode-2.2.0 index 210682d2bcaa..cfa4a6d265d4 100644 --- a/metadata/md5-cache/app-emacs/tuareg-mode-2.2.0 +++ b/metadata/md5-cache/app-emacs/tuareg-mode-2.2.0 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ GPL-3+ ISC RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/ocaml/tuareg/archive/2.2.0.tar.gz -> tuareg-mode-2.2.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=e76c62edb1664ab0ac7eb25f2ca4ad82 diff --git a/metadata/md5-cache/app-emacs/twittering-mode-2.0.0 b/metadata/md5-cache/app-emacs/twittering-mode-2.0.0 index f8e3f9807e10..d41a1b68f47e 100644 --- a/metadata/md5-cache/app-emacs/twittering-mode-2.0.0 +++ b/metadata/md5-cache/app-emacs/twittering-mode-2.0.0 @@ -9,5 +9,5 @@ RDEPEND=app-crypt/gnupg >=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/twmode/twittering-mode-2.0.0.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5f701a9ba03861a0616d8e480b2646c8 diff --git a/metadata/md5-cache/app-emacs/twittering-mode-3.0.0 b/metadata/md5-cache/app-emacs/twittering-mode-3.0.0 index ed93a00a2740..84a3166e78e2 100644 --- a/metadata/md5-cache/app-emacs/twittering-mode-3.0.0 +++ b/metadata/md5-cache/app-emacs/twittering-mode-3.0.0 @@ -9,5 +9,5 @@ RDEPEND=app-crypt/gnupg >=app-editors/emacs-23.1:* RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/twmode/twittering-mode-3.0.0.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5f701a9ba03861a0616d8e480b2646c8 diff --git a/metadata/md5-cache/app-emacs/twittering-mode-9999 b/metadata/md5-cache/app-emacs/twittering-mode-9999 index f071ae1f6a7f..c9ef2487b95b 100644 --- a/metadata/md5-cache/app-emacs/twittering-mode-9999 +++ b/metadata/md5-cache/app-emacs/twittering-mode-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=app-crypt/gnupg >=app-editors/emacs-23.1:* SLOT=0 -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 _md5_=5f701a9ba03861a0616d8e480b2646c8 diff --git a/metadata/md5-cache/app-emacs/typing-1.1.4 b/metadata/md5-cache/app-emacs/typing-1.1.4 index 88ff593cdbf5..2aebd5961732 100644 --- a/metadata/md5-cache/app-emacs/typing-1.1.4 +++ b/metadata/md5-cache/app-emacs/typing-1.1.4 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/typing-1.1.4.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=42a54d5ccf1e0c41e970f270e7cad928 diff --git a/metadata/md5-cache/app-emacs/uboat-1.2 b/metadata/md5-cache/app-emacs/uboat-1.2 index e50b487fe784..50a5f51bf976 100644 --- a/metadata/md5-cache/app-emacs/uboat-1.2 +++ b/metadata/md5-cache/app-emacs/uboat-1.2 @@ -8,5 +8,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/uboat-1.2.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=33cd4e097598d2913d4db0db81e33e02 diff --git a/metadata/md5-cache/app-emacs/undercover-0.8.1 b/metadata/md5-cache/app-emacs/undercover-0.8.1 new file mode 100644 index 000000000000..157e1bd924b2 --- /dev/null +++ b/metadata/md5-cache/app-emacs/undercover-0.8.1 @@ -0,0 +1,13 @@ +BDEPEND=app-emacs/dash app-emacs/shut-up >=app-editors/emacs-24:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DESCRIPTION=Test coverage library for Emacs +EAPI=8 +HOMEPAGE=https://github.com/undercover-el/undercover.el/ +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=app-emacs/dash app-emacs/shut-up >=app-editors/emacs-24:* +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/undercover-el/undercover.el/archive/v0.8.1.tar.gz -> undercover-0.8.1.tar.gz +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 +_md5_=9166bff4aa513a9b4e958d9e046aa1d0 diff --git a/metadata/md5-cache/app-emacs/undo-tree-0.6.6 b/metadata/md5-cache/app-emacs/undo-tree-0.6.6 index 2891e821758d..0d8f5aa41fa1 100644 --- a/metadata/md5-cache/app-emacs/undo-tree-0.6.6 +++ b/metadata/md5-cache/app-emacs/undo-tree-0.6.6 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/undo-tree-0.6.6.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=1ab3ccd61c2c1ac84c0473a469b00aca diff --git a/metadata/md5-cache/app-emacs/undo-tree-0.8.1 b/metadata/md5-cache/app-emacs/undo-tree-0.8.1 index 6237ef2b6750..0974eb85b0ec 100644 --- a/metadata/md5-cache/app-emacs/undo-tree-0.8.1 +++ b/metadata/md5-cache/app-emacs/undo-tree-0.8.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/queue >=app-editors/emacs-24:* SLOT=0 SRC_URI=https://gitlab.com/tsc25/undo-tree/-/archive/release/0.8.1/undo-tree-release-0.8.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=7f2127584c9057a5c04f9c6d9c01d5f9 diff --git a/metadata/md5-cache/app-emacs/uptimes-3.7 b/metadata/md5-cache/app-emacs/uptimes-3.7 index cc71b2682824..061073ac0231 100644 --- a/metadata/md5-cache/app-emacs/uptimes-3.7 +++ b/metadata/md5-cache/app-emacs/uptimes-3.7 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/davep/uptimes.el/archive/v3.7.tar.gz -> uptimes-3.7.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=204e9669ff84a30760a2cf1e179f7ca5 diff --git a/metadata/md5-cache/app-emacs/uptimes-3.8 b/metadata/md5-cache/app-emacs/uptimes-3.8 index f5b6753e253e..bfb657cd5c68 100644 --- a/metadata/md5-cache/app-emacs/uptimes-3.8 +++ b/metadata/md5-cache/app-emacs/uptimes-3.8 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/davep/uptimes.el/archive/v3.8.tar.gz -> uptimes-3.8.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=362ef9746f280ee4ccfd8ff0e8a58f73 diff --git a/metadata/md5-cache/app-emacs/vertico-0.20 b/metadata/md5-cache/app-emacs/vertico-0.20 index cebe86aa4101..83a78a919d62 100644 --- a/metadata/md5-cache/app-emacs/vertico-0.20 +++ b/metadata/md5-cache/app-emacs/vertico-0.20 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-27:* SLOT=0 SRC_URI=https://github.com/minad/vertico/archive/refs/tags/0.20.tar.gz -> vertico-0.20.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a21f11f2d111ef98b890cc7961a8bb1a diff --git a/metadata/md5-cache/app-emacs/vhdl-mode-3.38.1 b/metadata/md5-cache/app-emacs/vhdl-mode-3.38.1 index 6f18a0bf347d..f9ed9cff9244 100644 --- a/metadata/md5-cache/app-emacs/vhdl-mode-3.38.1 +++ b/metadata/md5-cache/app-emacs/vhdl-mode-3.38.1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode-3.38.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=69977c84df39b326ed9b198ea40e682a diff --git a/metadata/md5-cache/app-emacs/vhdl-mode-3.38.3 b/metadata/md5-cache/app-emacs/vhdl-mode-3.38.3 index 8e2d79d28eba..8757c6ad51ce 100644 --- a/metadata/md5-cache/app-emacs/vhdl-mode-3.38.3 +++ b/metadata/md5-cache/app-emacs/vhdl-mode-3.38.3 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://iis-people.ee.ethz.ch/~zimmi/emacs/vhdl-mode-3.38.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=a474dffb9b388080894deb780cb21d0e diff --git a/metadata/md5-cache/app-emacs/visual-basic-mode-1.5 b/metadata/md5-cache/app-emacs/visual-basic-mode-1.5 index 95ff5ca1fb31..46df2bf77a3b 100644 --- a/metadata/md5-cache/app-emacs/visual-basic-mode-1.5 +++ b/metadata/md5-cache/app-emacs/visual-basic-mode-1.5 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/visual-basic-mode-1.5.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=4df42e42f6fdf4752515b3f30a519651 diff --git a/metadata/md5-cache/app-emacs/vm-8.2.0_beta-r1 b/metadata/md5-cache/app-emacs/vm-8.2.0_beta-r1 index 3d1b8b2fa0b5..783e4603cc3a 100644 --- a/metadata/md5-cache/app-emacs/vm-8.2.0_beta-r1 +++ b/metadata/md5-cache/app-emacs/vm-8.2.0_beta-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=bbdb? ( app-emacs/bbdb ) ssl? ( net-misc/stunnel ) >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://launchpad.net/vm/8.2.x/8.2.0b/+download/vm-8.2.0b.tgz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9bbe4b329ef0101820c50af46c7e1d1d diff --git a/metadata/md5-cache/app-emacs/vm-9999 b/metadata/md5-cache/app-emacs/vm-9999 index b6335891a88f..bb36be215dbe 100644 --- a/metadata/md5-cache/app-emacs/vm-9999 +++ b/metadata/md5-cache/app-emacs/vm-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=bbdb? ( app-emacs/bbdb ) ssl? ( net-misc/stunnel ) >=app-editors/emacs-23.1:* SLOT=0 -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 bzr 7cb3dc115386774940b4ad76a8d0bfe4 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 bzr 7cb3dc115386774940b4ad76a8d0bfe4 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=02dd201365556a860a02209e449a6c09 diff --git a/metadata/md5-cache/app-emacs/volume-1.0-r1 b/metadata/md5-cache/app-emacs/volume-1.0-r1 index 8c94060085c6..0dd9ca67b968 100644 --- a/metadata/md5-cache/app-emacs/volume-1.0-r1 +++ b/metadata/md5-cache/app-emacs/volume-1.0-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/volume-1.0.el.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5aa812e0f2f52b201796751703ed8411 diff --git a/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20200713 b/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20200713 index 5977f6ff339e..7ae7fa8616d5 100644 --- a/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20200713 +++ b/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20200713 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=dev-libs/libvterm >=app-editors/emacs-26:*[dynamic-loading] >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/akermu/emacs-libvterm/archive/f41849c2c9c1899f22d1c3d4f871ec47c82627ce.tar.gz -> vterm-0.0.1_pre20200713.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=51f2968bbc9fe9ef9255ec396acb05e8 diff --git a/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 b/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 index c8e7a22afbd6..23ea01a85a00 100644 --- a/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 +++ b/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=dev-libs/libvterm >=app-editors/emacs-26:*[dynamic-loading] >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/akermu/emacs-libvterm/archive/d9dfa624679afdd5db6ad25429ef86d3dd91401e.tar.gz -> vterm-0.0.1_pre20210618.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=c166173f7c46a240b71d08ff2319d7fd diff --git a/metadata/md5-cache/app-emacs/w3mnav-0.5-r3 b/metadata/md5-cache/app-emacs/w3mnav-0.5-r3 index 855beb008576..56fdb7196868 100644 --- a/metadata/md5-cache/app-emacs/w3mnav-0.5-r3 +++ b/metadata/md5-cache/app-emacs/w3mnav-0.5-r3 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/emacs-w3m >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/w3mnav-0.5.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=919189ded4dbe08e72b3e911f4c7c603 diff --git a/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20190623 b/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20190623 index 7e61451210a7..e52e5a017280 100644 --- a/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20190623 +++ b/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20190623 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 >=app-emacs/semi-1.14.7 bbdb? ( app-emacs/bbdb ) >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/wanderlust/wanderlust/archive/b9a529a54b9e7eafa4ed230ad28efffe0d25a20e.tar.gz -> wanderlust-2.15.9_p20190623.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5b15c148c95529b83eb33d507b8ec4db diff --git a/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20210629 b/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20210629 index eb54370e908c..04cdd7d26f48 100644 --- a/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20210629 +++ b/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20210629 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 >=app-emacs/semi-1.14.7 bbdb? ( app-emacs/bbdb ) >=app-editors/emacs-24.5:* SLOT=0 SRC_URI=https://github.com/wanderlust/wanderlust/archive/769699d60aa033049804083b459ee562b82db77e.tar.gz -> wanderlust-2.15.9_p20210629.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=b35d8cf3e60d974336590853c01c7c1e diff --git a/metadata/md5-cache/app-emacs/websocket-1.12 b/metadata/md5-cache/app-emacs/websocket-1.12 index 87c9dd429402..effa312c9cb8 100644 --- a/metadata/md5-cache/app-emacs/websocket-1.12 +++ b/metadata/md5-cache/app-emacs/websocket-1.12 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/ahyatt/emacs-websocket/archive/1.12.tar.gz -> websocket-1.12.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=4a502fd7fc4a99799ac2ea62ed0dc485 diff --git a/metadata/md5-cache/app-emacs/websocket-1.13 b/metadata/md5-cache/app-emacs/websocket-1.13 index 50e958c76e43..06e008f6ab02 100644 --- a/metadata/md5-cache/app-emacs/websocket-1.13 +++ b/metadata/md5-cache/app-emacs/websocket-1.13 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/ahyatt/emacs-websocket/archive/1.13.tar.gz -> websocket-1.13.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=dc995bfbcab3887b22fb48d49bf612d6 diff --git a/metadata/md5-cache/app-emacs/wgrep-2.3.0 b/metadata/md5-cache/app-emacs/wgrep-2.3.0 index 91f9eecd7d16..26f971b257c0 100644 --- a/metadata/md5-cache/app-emacs/wgrep-2.3.0 +++ b/metadata/md5-cache/app-emacs/wgrep-2.3.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/mhayashi1120/Emacs-wgrep/archive/2.3.0.tar.gz -> wgrep-2.3.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=86de93ca42271781271c75d7bdc492f3 diff --git a/metadata/md5-cache/app-emacs/wgrep-2.3.2 b/metadata/md5-cache/app-emacs/wgrep-2.3.2 index 7d3169ee25ce..1a8554bb8fe8 100644 --- a/metadata/md5-cache/app-emacs/wgrep-2.3.2 +++ b/metadata/md5-cache/app-emacs/wgrep-2.3.2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/mhayashi1120/Emacs-wgrep/archive/2.3.2.tar.gz -> wgrep-2.3.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=bb27c1fcdc7f6274c98b903d1d218ac3 diff --git a/metadata/md5-cache/app-emacs/which-key-3.6.0 b/metadata/md5-cache/app-emacs/which-key-3.6.0 index c3e4a0cc5078..6db16802405a 100644 --- a/metadata/md5-cache/app-emacs/which-key-3.6.0 +++ b/metadata/md5-cache/app-emacs/which-key-3.6.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24.4:* SLOT=0 SRC_URI=https://github.com/justbur/emacs-which-key/archive/v3.6.0.tar.gz -> which-key-3.6.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=23d414314479381c72c255ee6773cc9f diff --git a/metadata/md5-cache/app-emacs/whine-20091222 b/metadata/md5-cache/app-emacs/whine-20091222 index 21315bae14e9..c5bd2b4461d2 100644 --- a/metadata/md5-cache/app-emacs/whine-20091222 +++ b/metadata/md5-cache/app-emacs/whine-20091222 @@ -8,5 +8,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/whine-20091222.tar.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7367bfc14b56e1d064d2117d0dd29e4d diff --git a/metadata/md5-cache/app-emacs/wikipedia-mode-0.5-r2 b/metadata/md5-cache/app-emacs/wikipedia-mode-0.5-r2 index 59925c507a7f..752ed850f833 100644 --- a/metadata/md5-cache/app-emacs/wikipedia-mode-0.5-r2 +++ b/metadata/md5-cache/app-emacs/wikipedia-mode-0.5-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=outline-magic? ( app-emacs/outline-magic ) >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://gentoo/wikipedia-mode-0.5.el.bz2 -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=8654a24ce284787db1207a4bed6c0d4c diff --git a/metadata/md5-cache/app-emacs/windows-2.53 b/metadata/md5-cache/app-emacs/windows-2.53 index d3bdfa150bab..882ece9be4a8 100644 --- a/metadata/md5-cache/app-emacs/windows-2.53 +++ b/metadata/md5-cache/app-emacs/windows-2.53 @@ -8,5 +8,5 @@ LICENSE=BSD-2 RDEPEND=app-emacs/revive >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/windows-2.53.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=1a414a30b7d0e3a3b47f793ec5adb13b diff --git a/metadata/md5-cache/app-emacs/with-editor-2.8.3 b/metadata/md5-cache/app-emacs/with-editor-2.8.3 index c2496d497d2f..099c3b33d36c 100644 --- a/metadata/md5-cache/app-emacs/with-editor-2.8.3 +++ b/metadata/md5-cache/app-emacs/with-editor-2.8.3 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/magit/with-editor/archive/v2.8.3.tar.gz -> with-editor-2.8.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=1dc78804774f7b958baf8bfb95a1df7a diff --git a/metadata/md5-cache/app-emacs/with-editor-3.0.5 b/metadata/md5-cache/app-emacs/with-editor-3.0.5 index 3ad4a2942a5e..738e913452ed 100644 --- a/metadata/md5-cache/app-emacs/with-editor-3.0.5 +++ b/metadata/md5-cache/app-emacs/with-editor-3.0.5 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/magit/with-editor/archive/v3.0.5.tar.gz -> with-editor-3.0.5.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7e08f06fb4e50fdc4952b536e91144c6 diff --git a/metadata/md5-cache/app-emacs/with-editor-3.1.1 b/metadata/md5-cache/app-emacs/with-editor-3.1.1 index ea5e56790a8b..03321fbe332e 100644 --- a/metadata/md5-cache/app-emacs/with-editor-3.1.1 +++ b/metadata/md5-cache/app-emacs/with-editor-3.1.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/magit/with-editor/archive/v3.1.1.tar.gz -> with-editor-3.1.1.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=6b734049010eaec5026638352205f2f0 diff --git a/metadata/md5-cache/app-emacs/with-editor-3.2.0 b/metadata/md5-cache/app-emacs/with-editor-3.2.0 index 93b6a0c86152..ae7597fad351 100644 --- a/metadata/md5-cache/app-emacs/with-editor-3.2.0 +++ b/metadata/md5-cache/app-emacs/with-editor-3.2.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 SRC_URI=https://github.com/magit/with-editor/archive/v3.2.0.tar.gz -> with-editor-3.2.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5c1d4fcab272108ee4fb4ca92148e6e5 diff --git a/metadata/md5-cache/app-emacs/xclip-1.11 b/metadata/md5-cache/app-emacs/xclip-1.11 index 0c72d1a02790..9100b6cfb238 100644 --- a/metadata/md5-cache/app-emacs/xclip-1.11 +++ b/metadata/md5-cache/app-emacs/xclip-1.11 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=x11-misc/xclip >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/xclip-1.11.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=c51068e90e4201144b6006f51fd28e6c diff --git a/metadata/md5-cache/app-emacs/xclip-1.9 b/metadata/md5-cache/app-emacs/xclip-1.9 index b9be95b0c6e7..20311b6370b7 100644 --- a/metadata/md5-cache/app-emacs/xclip-1.9 +++ b/metadata/md5-cache/app-emacs/xclip-1.9 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=x11-misc/xclip >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/xclip-1.9.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=57b70a562ce082462abc1dc0139f38f1 diff --git a/metadata/md5-cache/app-emacs/xrdb-mode-3.0-r1 b/metadata/md5-cache/app-emacs/xrdb-mode-3.0-r1 index 66bf86437751..1e6c4011297f 100644 --- a/metadata/md5-cache/app-emacs/xrdb-mode-3.0-r1 +++ b/metadata/md5-cache/app-emacs/xrdb-mode-3.0-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/xrdb-mode-3.0.el.xz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=17f5122b6437dc01a28e212b9b84265f diff --git a/metadata/md5-cache/app-emacs/xslide-0.2.2-r1 b/metadata/md5-cache/app-emacs/xslide-0.2.2-r1 index b1630ba3b966..a29e497e0b02 100644 --- a/metadata/md5-cache/app-emacs/xslide-0.2.2-r1 +++ b/metadata/md5-cache/app-emacs/xslide-0.2.2-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=mirror://sourceforge/xslide/xslide-0.2.2.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5fdb7ec5aa56571e886290e0813b71cb diff --git a/metadata/md5-cache/app-emacs/yaml-mode-0.0.13 b/metadata/md5-cache/app-emacs/yaml-mode-0.0.13 index d8f38b7704b3..7867e3000e9e 100644 --- a/metadata/md5-cache/app-emacs/yaml-mode-0.0.13 +++ b/metadata/md5-cache/app-emacs/yaml-mode-0.0.13 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/yoshiki/yaml-mode/archive/v0.0.13.tar.gz -> yaml-mode-0.0.13.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=029b1ca777a1da09d6ec863765f4f768 diff --git a/metadata/md5-cache/app-emacs/yaml-mode-0.0.14 b/metadata/md5-cache/app-emacs/yaml-mode-0.0.14 index f2cabd979fdd..613aa88b1729 100644 --- a/metadata/md5-cache/app-emacs/yaml-mode-0.0.14 +++ b/metadata/md5-cache/app-emacs/yaml-mode-0.0.14 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/yoshiki/yaml-mode/archive/0.0.14.tar.gz -> yaml-mode-0.0.14.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=b537b8a5f7a6b955104ba49d1def4dc4 diff --git a/metadata/md5-cache/app-emacs/yaml-mode-0.0.15 b/metadata/md5-cache/app-emacs/yaml-mode-0.0.15 index e08681c6577e..87360d5039d6 100644 --- a/metadata/md5-cache/app-emacs/yaml-mode-0.0.15 +++ b/metadata/md5-cache/app-emacs/yaml-mode-0.0.15 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/yoshiki/yaml-mode/archive/0.0.15.tar.gz -> yaml-mode-0.0.15.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=5f52e78d199c5b19c8e988b2ca48b0d2 diff --git a/metadata/md5-cache/app-emacs/yasnippet-0.13.0 b/metadata/md5-cache/app-emacs/yasnippet-0.13.0 index 9e7c4dbecfd1..2e8f15978481 100644 --- a/metadata/md5-cache/app-emacs/yasnippet-0.13.0 +++ b/metadata/md5-cache/app-emacs/yasnippet-0.13.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/joaotavora/yasnippet/archive/0.13.0.tar.gz -> yasnippet-0.13.0.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=bd888dc018b439f9ef025d6d6d9c8afa diff --git a/metadata/md5-cache/app-emacs/yasnippet-0.14.0 b/metadata/md5-cache/app-emacs/yasnippet-0.14.0 index 8f0f92b7881e..5282967dfcdc 100644 --- a/metadata/md5-cache/app-emacs/yasnippet-0.14.0 +++ b/metadata/md5-cache/app-emacs/yasnippet-0.14.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/joaotavora/yasnippet/archive/0.14.0.tar.gz -> yasnippet-0.14.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=fa5655d2ed006ca257a923a6c9d3cd13 diff --git a/metadata/md5-cache/app-emacs/yasnippet-snippets-0.3-r1 b/metadata/md5-cache/app-emacs/yasnippet-snippets-0.3-r1 index b48c09751040..abebb964b8fc 100644 --- a/metadata/md5-cache/app-emacs/yasnippet-snippets-0.3-r1 +++ b/metadata/md5-cache/app-emacs/yasnippet-snippets-0.3-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/yasnippet >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/AndreaCrotti/yasnippet-snippets/archive/0.3.tar.gz -> yasnippet-snippets-0.3.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=c2e92ea2e7c9518303a1e65fe62830e6 diff --git a/metadata/md5-cache/app-emacs/yasnippet-snippets-1.0-r2 b/metadata/md5-cache/app-emacs/yasnippet-snippets-1.0-r2 index e53a0d4ab490..27cdd54c3b82 100644 --- a/metadata/md5-cache/app-emacs/yasnippet-snippets-1.0-r2 +++ b/metadata/md5-cache/app-emacs/yasnippet-snippets-1.0-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/yasnippet >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/AndreaCrotti/yasnippet-snippets/archive/1.0.tar.gz -> yasnippet-snippets-1.0.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=c2e92ea2e7c9518303a1e65fe62830e6 diff --git a/metadata/md5-cache/app-emacs/yatex-1.80 b/metadata/md5-cache/app-emacs/yatex-1.80 index 4a45b47a2e7b..e79fe591ced8 100644 --- a/metadata/md5-cache/app-emacs/yatex-1.80 +++ b/metadata/md5-cache/app-emacs/yatex-1.80 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://www.yatex.org/yatex1.80.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=89ba6ab186f306abd8e72e767d7f8c21 diff --git a/metadata/md5-cache/app-emacs/yatex-1.82 b/metadata/md5-cache/app-emacs/yatex-1.82 index 5bdfb2d56dbd..c7867d49fe3c 100644 --- a/metadata/md5-cache/app-emacs/yatex-1.82 +++ b/metadata/md5-cache/app-emacs/yatex-1.82 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=http://www.yatex.org/yatex1.82.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=90aa5c660a090405c90f393b11c6f664 diff --git a/metadata/md5-cache/app-emacs/zenburn-20110907-r1 b/metadata/md5-cache/app-emacs/zenburn-20110907-r1 index 6501db312117..6758c40a7e2c 100644 --- a/metadata/md5-cache/app-emacs/zenburn-20110907-r1 +++ b/metadata/md5-cache/app-emacs/zenburn-20110907-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/color-theme >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/dbrock/zenburn-el/archive/2b0672b04ef3e95c25f849dceb10d669296a188b.tar.gz -> zenburn-20110907.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=fe565a3144e8e5005c6464547441fa30 diff --git a/metadata/md5-cache/app-emacs/zenirc-2.112-r1 b/metadata/md5-cache/app-emacs/zenirc-2.112-r1 index a0fc02e4c53a..deff07fcc95f 100644 --- a/metadata/md5-cache/app-emacs/zenirc-2.112-r1 +++ b/metadata/md5-cache/app-emacs/zenirc-2.112-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=ftp://ftp.zenirc.org/pub/zenirc/zenirc-2.112.tar.gz -_eclasses_=elisp ba40293f44b2e5c3c19d4671c19ce01a elisp-common f9c72486dbcb18b633c9d0949211d86e readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=1c4731458aa3e285a538bcf2ae02301e diff --git a/metadata/md5-cache/app-emulation/Manifest.gz b/metadata/md5-cache/app-emulation/Manifest.gz index 01430c1c0cd8..c28eac6bcc1d 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/vagrant-2.2.18-r1 b/metadata/md5-cache/app-emulation/vagrant-2.2.18-r1 index 59f8852775cf..3f15d0bea98d 100644 --- a/metadata/md5-cache/app-emulation/vagrant-2.2.18-r1 +++ b/metadata/md5-cache/app-emulation/vagrant-2.2.18-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hashicorp/vagrant/archive/v2.2.18.tar.gz -> vagrant-2.2.18.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b optfeature d524f291c80f9d21ad80fe978e3ca760 ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b optfeature d524f291c80f9d21ad80fe978e3ca760 ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=35b717780739c536654603f54a6fa1c6 diff --git a/metadata/md5-cache/app-emulation/vagrant-2.2.7-r1 b/metadata/md5-cache/app-emulation/vagrant-2.2.7-r1 index 3c7e977d365c..2993a099b05b 100644 --- a/metadata/md5-cache/app-emulation/vagrant-2.2.7-r1 +++ b/metadata/md5-cache/app-emulation/vagrant-2.2.7-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://github.com/hashicorp/vagrant/archive/v2.2.7.tar.gz -> vagrant-2.2.7.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7659da174e6ab3eb32e2c03fb3a5dade diff --git a/metadata/md5-cache/app-emulation/vagrant-2.2.9-r1 b/metadata/md5-cache/app-emulation/vagrant-2.2.9-r1 index a2a1251b2771..35685d70b05b 100644 --- a/metadata/md5-cache/app-emulation/vagrant-2.2.9-r1 +++ b/metadata/md5-cache/app-emulation/vagrant-2.2.9-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://github.com/hashicorp/vagrant/archive/v2.2.9.tar.gz -> vagrant-2.2.9.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a83c665ce1731beda4ac8a4b1901aa30 diff --git a/metadata/md5-cache/app-emulation/wine-staging-7.3 b/metadata/md5-cache/app-emulation/wine-staging-7.3-r1 similarity index 95% rename from metadata/md5-cache/app-emulation/wine-staging-7.3 rename to metadata/md5-cache/app-emulation/wine-staging-7.3-r1 index 5741dbdb9820..10439f93b748 100644 --- a/metadata/md5-cache/app-emulation/wine-staging-7.3 +++ b/metadata/md5-cache/app-emulation/wine-staging-7.3-r1 @@ -1,6 +1,6 @@ -BDEPEND=mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install postinst postrm prepare prerm pretend setup test unpack -DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5: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(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) staging? ( sys-apps/attr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) staging? ( dev-lang/perl dev-perl/XML-Simple ) xinerama? ( x11-base/xorg-proto ) +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5: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(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) staging? ( sys-apps/attr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) staging? ( dev-lang/perl dev-perl/XML-Simple ) xinerama? ( x11-base/xorg-proto ) DESCRIPTION=Free implementation of Windows(tm) on Unix, with Wine-Staging patchset EAPI=8 HOMEPAGE=https://www.winehq.org/ @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=7.3 SRC_URI=https://dl.winehq.org/wine/source/7.x/wine-7.3.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20211122.tar.xz staging? ( https://github.com/wine-staging/wine-staging/archive/v7.3.tar.gz -> wine-staging-7.3.tar.gz ) _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b pax-utils 91d47e5d20627c717aa878b9167c62a8 plocale 7ce00136a77130df46fbbd5966f98a61 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=b3e6d57fe44e1ba94574d63175118c85 +_md5_=35c3832cc615b564d371d0b0163285c2 diff --git a/metadata/md5-cache/app-emulation/wine-staging-7.4 b/metadata/md5-cache/app-emulation/wine-staging-7.4-r1 similarity index 95% rename from metadata/md5-cache/app-emulation/wine-staging-7.4 rename to metadata/md5-cache/app-emulation/wine-staging-7.4-r1 index 22301d705fc7..0515bd58e530 100644 --- a/metadata/md5-cache/app-emulation/wine-staging-7.4 +++ b/metadata/md5-cache/app-emulation/wine-staging-7.4-r1 @@ -1,6 +1,6 @@ -BDEPEND=mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install postinst postrm prepare prerm pretend setup test unpack -DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5: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(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) staging? ( sys-apps/attr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) staging? ( dev-lang/perl dev-perl/XML-Simple ) xinerama? ( x11-base/xorg-proto ) +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5: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(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) staging? ( sys-apps/attr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) staging? ( dev-lang/perl dev-perl/XML-Simple ) xinerama? ( x11-base/xorg-proto ) DESCRIPTION=Free implementation of Windows(tm) on Unix, with Wine-Staging patchset EAPI=8 HOMEPAGE=https://www.winehq.org/ @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=7.4 SRC_URI=https://dl.winehq.org/wine/source/7.x/wine-7.4.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20211122.tar.xz staging? ( https://github.com/wine-staging/wine-staging/archive/v7.4.tar.gz -> wine-staging-7.4.tar.gz ) _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b pax-utils 91d47e5d20627c717aa878b9167c62a8 plocale 7ce00136a77130df46fbbd5966f98a61 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=b3e6d57fe44e1ba94574d63175118c85 +_md5_=35c3832cc615b564d371d0b0163285c2 diff --git a/metadata/md5-cache/app-emulation/wine-staging-7.5 b/metadata/md5-cache/app-emulation/wine-staging-7.5-r1 similarity index 95% rename from metadata/md5-cache/app-emulation/wine-staging-7.5 rename to metadata/md5-cache/app-emulation/wine-staging-7.5-r1 index 7e14423c0cce..4af1e8251e9f 100644 --- a/metadata/md5-cache/app-emulation/wine-staging-7.5 +++ b/metadata/md5-cache/app-emulation/wine-staging-7.5-r1 @@ -1,6 +1,6 @@ -BDEPEND=mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install postinst postrm prepare prerm pretend setup test unpack -DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5: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(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) staging? ( sys-apps/attr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) staging? ( dev-lang/perl dev-perl/XML-Simple ) xinerama? ( x11-base/xorg-proto ) +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5: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(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) staging? ( sys-apps/attr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) staging? ( dev-lang/perl dev-perl/XML-Simple ) xinerama? ( x11-base/xorg-proto ) DESCRIPTION=Free implementation of Windows(tm) on Unix, with Wine-Staging patchset EAPI=8 HOMEPAGE=https://www.winehq.org/ @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=7.5 SRC_URI=https://dl.winehq.org/wine/source/7.x/wine-7.5.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20211122.tar.xz staging? ( https://github.com/wine-staging/wine-staging/archive/v7.5.tar.gz -> wine-staging-7.5.tar.gz ) _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b pax-utils 91d47e5d20627c717aa878b9167c62a8 plocale 7ce00136a77130df46fbbd5966f98a61 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=b3e6d57fe44e1ba94574d63175118c85 +_md5_=35c3832cc615b564d371d0b0163285c2 diff --git a/metadata/md5-cache/app-emulation/wine-staging-7.6 b/metadata/md5-cache/app-emulation/wine-staging-7.6-r1 similarity index 95% rename from metadata/md5-cache/app-emulation/wine-staging-7.6 rename to metadata/md5-cache/app-emulation/wine-staging-7.6-r1 index 5dde64633cf8..d0b7bdd153b9 100644 --- a/metadata/md5-cache/app-emulation/wine-staging-7.6 +++ b/metadata/md5-cache/app-emulation/wine-staging-7.6-r1 @@ -1,6 +1,6 @@ -BDEPEND=mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install postinst postrm prepare prerm pretend setup test unpack -DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5: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(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) staging? ( sys-apps/attr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) staging? ( dev-lang/perl dev-perl/XML-Simple ) xinerama? ( x11-base/xorg-proto ) +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5: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(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) staging? ( sys-apps/attr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) staging? ( dev-lang/perl dev-perl/XML-Simple ) xinerama? ( x11-base/xorg-proto ) DESCRIPTION=Free implementation of Windows(tm) on Unix, with Wine-Staging patchset EAPI=8 HOMEPAGE=https://www.winehq.org/ @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=7.6 SRC_URI=https://dl.winehq.org/wine/source/7.x/wine-7.6.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20211122.tar.xz staging? ( https://github.com/wine-staging/wine-staging/archive/v7.6.tar.gz -> wine-staging-7.6.tar.gz ) _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b pax-utils 91d47e5d20627c717aa878b9167c62a8 plocale 7ce00136a77130df46fbbd5966f98a61 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=8e69ded5c0ca026353a3671d036afba4 +_md5_=036b76a0cbf49517e2ed39e1495df3df diff --git a/metadata/md5-cache/app-emulation/wine-staging-9999 b/metadata/md5-cache/app-emulation/wine-staging-9999 index 5e42a6838dbd..02d26df5360d 100644 --- a/metadata/md5-cache/app-emulation/wine-staging-9999 +++ b/metadata/md5-cache/app-emulation/wine-staging-9999 @@ -1,6 +1,6 @@ -BDEPEND=mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm prepare prerm pretend setup test unpack -DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5: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(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) staging? ( sys-apps/attr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) staging? ( dev-lang/perl dev-perl/XML-Simple ) xinerama? ( x11-base/xorg-proto ) dev-util/patchbin +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5: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(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) staging? ( sys-apps/attr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) staging? ( dev-lang/perl dev-perl/XML-Simple ) xinerama? ( x11-base/xorg-proto ) dev-util/patchbin DESCRIPTION=Free implementation of Windows(tm) on Unix, with Wine-Staging patchset EAPI=8 HOMEPAGE=https://www.winehq.org/ @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=9999 SRC_URI=https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20211122.tar.xz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b pax-utils 91d47e5d20627c717aa878b9167c62a8 plocale 7ce00136a77130df46fbbd5966f98a61 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=8e69ded5c0ca026353a3671d036afba4 +_md5_=036b76a0cbf49517e2ed39e1495df3df diff --git a/metadata/md5-cache/app-emulation/wine-vanilla-7.0-r1 b/metadata/md5-cache/app-emulation/wine-vanilla-7.0-r2 similarity index 95% rename from metadata/md5-cache/app-emulation/wine-vanilla-7.0-r1 rename to metadata/md5-cache/app-emulation/wine-vanilla-7.0-r2 index 56452d138d55..c6d842e740dd 100644 --- a/metadata/md5-cache/app-emulation/wine-vanilla-7.0-r1 +++ b/metadata/md5-cache/app-emulation/wine-vanilla-7.0-r2 @@ -1,6 +1,6 @@ -BDEPEND=mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install postinst postrm prepare prerm pretend setup test unpack -DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) DESCRIPTION=Free implementation of Windows(tm) on Unix, without external patchsets EAPI=8 HOMEPAGE=https://www.winehq.org/ @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=7.0 SRC_URI=https://dl.winehq.org/wine/source/7.0/wine-7.0.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20211122.tar.xz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b pax-utils 91d47e5d20627c717aa878b9167c62a8 plocale 7ce00136a77130df46fbbd5966f98a61 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=adf961df86919022a97e9b79257ac8cf +_md5_=bd75ecd32a8a52fe96c626738c9f7164 diff --git a/metadata/md5-cache/app-emulation/wine-vanilla-7.3 b/metadata/md5-cache/app-emulation/wine-vanilla-7.3-r1 similarity index 95% rename from metadata/md5-cache/app-emulation/wine-vanilla-7.3 rename to metadata/md5-cache/app-emulation/wine-vanilla-7.3-r1 index bc45e969869a..1a8f6d04e4b0 100644 --- a/metadata/md5-cache/app-emulation/wine-vanilla-7.3 +++ b/metadata/md5-cache/app-emulation/wine-vanilla-7.3-r1 @@ -1,6 +1,6 @@ -BDEPEND=mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install postinst postrm prepare prerm pretend setup test unpack -DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) DESCRIPTION=Free implementation of Windows(tm) on Unix, without external patchsets EAPI=8 HOMEPAGE=https://www.winehq.org/ @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=7.3 SRC_URI=https://dl.winehq.org/wine/source/7.x/wine-7.3.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20211122.tar.xz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b pax-utils 91d47e5d20627c717aa878b9167c62a8 plocale 7ce00136a77130df46fbbd5966f98a61 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=f49d9ee86fc0dfee137a5dbcde169dbd +_md5_=d072bdf2e6b5f0c9ee5727281e6e147b diff --git a/metadata/md5-cache/app-emulation/wine-vanilla-7.4 b/metadata/md5-cache/app-emulation/wine-vanilla-7.4-r1 similarity index 95% rename from metadata/md5-cache/app-emulation/wine-vanilla-7.4 rename to metadata/md5-cache/app-emulation/wine-vanilla-7.4-r1 index 4c91eb69acf0..614dcfdf0969 100644 --- a/metadata/md5-cache/app-emulation/wine-vanilla-7.4 +++ b/metadata/md5-cache/app-emulation/wine-vanilla-7.4-r1 @@ -1,6 +1,6 @@ -BDEPEND=mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install postinst postrm prepare prerm pretend setup test unpack -DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) DESCRIPTION=Free implementation of Windows(tm) on Unix, without external patchsets EAPI=8 HOMEPAGE=https://www.winehq.org/ @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=7.4 SRC_URI=https://dl.winehq.org/wine/source/7.x/wine-7.4.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20211122.tar.xz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b pax-utils 91d47e5d20627c717aa878b9167c62a8 plocale 7ce00136a77130df46fbbd5966f98a61 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=f49d9ee86fc0dfee137a5dbcde169dbd +_md5_=d072bdf2e6b5f0c9ee5727281e6e147b diff --git a/metadata/md5-cache/app-emulation/wine-vanilla-7.5 b/metadata/md5-cache/app-emulation/wine-vanilla-7.5-r1 similarity index 95% rename from metadata/md5-cache/app-emulation/wine-vanilla-7.5 rename to metadata/md5-cache/app-emulation/wine-vanilla-7.5-r1 index 56c0fcb3032f..f23b82f36e15 100644 --- a/metadata/md5-cache/app-emulation/wine-vanilla-7.5 +++ b/metadata/md5-cache/app-emulation/wine-vanilla-7.5-r1 @@ -1,6 +1,6 @@ -BDEPEND=mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install postinst postrm prepare prerm pretend setup test unpack -DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) DESCRIPTION=Free implementation of Windows(tm) on Unix, without external patchsets EAPI=8 HOMEPAGE=https://www.winehq.org/ @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=7.5 SRC_URI=https://dl.winehq.org/wine/source/7.x/wine-7.5.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20211122.tar.xz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b pax-utils 91d47e5d20627c717aa878b9167c62a8 plocale 7ce00136a77130df46fbbd5966f98a61 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=f49d9ee86fc0dfee137a5dbcde169dbd +_md5_=d072bdf2e6b5f0c9ee5727281e6e147b diff --git a/metadata/md5-cache/app-emulation/wine-vanilla-7.6 b/metadata/md5-cache/app-emulation/wine-vanilla-7.6-r1 similarity index 95% rename from metadata/md5-cache/app-emulation/wine-vanilla-7.6 rename to metadata/md5-cache/app-emulation/wine-vanilla-7.6-r1 index d9c9f0278c49..36d1b8b27c00 100644 --- a/metadata/md5-cache/app-emulation/wine-vanilla-7.6 +++ b/metadata/md5-cache/app-emulation/wine-vanilla-7.6-r1 @@ -1,6 +1,6 @@ -BDEPEND=mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install postinst postrm prepare prerm pretend setup test unpack -DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) DESCRIPTION=Free implementation of Windows(tm) on Unix, without external patchsets EAPI=8 HOMEPAGE=https://www.winehq.org/ @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=7.6 SRC_URI=https://dl.winehq.org/wine/source/7.x/wine-7.6.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20211122.tar.xz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b pax-utils 91d47e5d20627c717aa878b9167c62a8 plocale 7ce00136a77130df46fbbd5966f98a61 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=299342bec124ab7fb41abe21e612958e +_md5_=61520450700bde21b4edb33b9b8e015f diff --git a/metadata/md5-cache/app-emulation/wine-vanilla-9999 b/metadata/md5-cache/app-emulation/wine-vanilla-9999 index 760d12b01309..54e51cf9a507 100644 --- a/metadata/md5-cache/app-emulation/wine-vanilla-9999 +++ b/metadata/md5-cache/app-emulation/wine-vanilla-9999 @@ -1,6 +1,6 @@ -BDEPEND=mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=sys-devel/flex virtual/yacc virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm prepare prerm pretend setup test unpack -DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 !!>=cross-x86_64-w64-mingw32/binutils-2.38 ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) dev-util/patchbin +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) capi? ( net-libs/libcapi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cups? ( net-print/cups:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) odbc? ( dev-db/unixODBC:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( media-libs/openal:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scanner? ( media-gfx/sane-backends:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2:=[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-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(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc virtual/pkgconfig >=sys-kernel/linux-headers-2.6 X? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) dev-util/patchbin DESCRIPTION=Free implementation of Windows(tm) on Unix, without external patchsets EAPI=8 HOMEPAGE=https://www.winehq.org/ @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=9999 SRC_URI=https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20211122.tar.xz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b pax-utils 91d47e5d20627c717aa878b9167c62a8 plocale 7ce00136a77130df46fbbd5966f98a61 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=299342bec124ab7fb41abe21e612958e +_md5_=61520450700bde21b4edb33b9b8e015f diff --git a/metadata/md5-cache/app-emulation/xen-4.15.1-r3 b/metadata/md5-cache/app-emulation/xen-4.15.1-r3 index 3ca92468218e..ef5b51df440a 100644 --- a/metadata/md5-cache/app-emulation/xen-4.15.1-r3 +++ b/metadata/md5-cache/app-emulation/xen-4.15.1-r3 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm p DEPEND=|| ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) efi? ( >=sys-devel/binutils-2.22[multitarget] ) !efi? ( >=sys-devel/binutils-2.22 ) flask? ( sys-apps/checkpolicy ) DESCRIPTION=The Xen virtual machine monitor EAPI=7 -HOMEPAGE=https://www.xenproject.org +HOMEPAGE=https://xenproject.org IUSE=debug efi flask KEYWORDS=amd64 ~arm -x86 LICENSE=GPL-2 @@ -12,4 +12,4 @@ RESTRICT=test splitdebug strip SLOT=0 SRC_URI=https://downloads.xenproject.org/release/xen/4.15.1/xen-4.15.1.tar.gz https://dev.gentoo.org/~dlan/distfiles/xen-4.15.1-upstream-patches-3.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-4.15.1-upstream-patches-3.tar.xz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 mount-boot 02a45c5e022c08dbc05178522b2772f2 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=60c62fd527585bc2a2f6cd753c2f3ce2 +_md5_=154537eddfd0c43d35fd9d90762ee230 diff --git a/metadata/md5-cache/app-emulation/xen-4.15.2-r1 b/metadata/md5-cache/app-emulation/xen-4.15.2-r1 index 012146e9a647..9f3873744869 100644 --- a/metadata/md5-cache/app-emulation/xen-4.15.2-r1 +++ b/metadata/md5-cache/app-emulation/xen-4.15.2-r1 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm p DEPEND=|| ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) efi? ( >=sys-devel/binutils-2.22[multitarget] ) !efi? ( >=sys-devel/binutils-2.22 ) flask? ( sys-apps/checkpolicy ) DESCRIPTION=The Xen virtual machine monitor EAPI=7 -HOMEPAGE=https://www.xenproject.org +HOMEPAGE=https://xenproject.org IUSE=debug efi flask KEYWORDS=~amd64 ~arm -x86 LICENSE=GPL-2 @@ -12,4 +12,4 @@ RESTRICT=test splitdebug strip SLOT=0 SRC_URI=https://downloads.xenproject.org/release/xen/4.15.2/xen-4.15.2.tar.gz https://dev.gentoo.org/~dlan/distfiles/xen-4.15.2-upstream-patches-1.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-4.15.2-upstream-patches-1.tar.xz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 mount-boot 02a45c5e022c08dbc05178522b2772f2 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=0d177f585073a49ddf3a95941b3843c2 +_md5_=8feba6fc7fd2d106a3e0e21ef7debb01 diff --git a/metadata/md5-cache/app-emulation/xen-4.15.2-r2 b/metadata/md5-cache/app-emulation/xen-4.15.2-r2 index e2f3f147c616..dc296b04b9d4 100644 --- a/metadata/md5-cache/app-emulation/xen-4.15.2-r2 +++ b/metadata/md5-cache/app-emulation/xen-4.15.2-r2 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm p DEPEND=|| ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) efi? ( >=sys-devel/binutils-2.22[multitarget] ) !efi? ( >=sys-devel/binutils-2.22 ) flask? ( sys-apps/checkpolicy ) DESCRIPTION=The Xen virtual machine monitor EAPI=7 -HOMEPAGE=https://www.xenproject.org +HOMEPAGE=https://xenproject.org IUSE=debug efi flask KEYWORDS=~amd64 ~arm -x86 LICENSE=GPL-2 @@ -12,4 +12,4 @@ RESTRICT=test splitdebug strip SLOT=0 SRC_URI=https://downloads.xenproject.org/release/xen/4.15.2/xen-4.15.2.tar.gz https://dev.gentoo.org/~dlan/distfiles/xen-4.15.2-upstream-patches-2.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-4.15.2-upstream-patches-2.tar.xz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 mount-boot 02a45c5e022c08dbc05178522b2772f2 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=d7ed803ed131e3b9e867232cae32d457 +_md5_=8768c81aedbbc29055da928659d46e9a diff --git a/metadata/md5-cache/app-emulation/xen-4.16.0-r5 b/metadata/md5-cache/app-emulation/xen-4.16.0-r5 index 02c5632dff84..78c665ac2bff 100644 --- a/metadata/md5-cache/app-emulation/xen-4.16.0-r5 +++ b/metadata/md5-cache/app-emulation/xen-4.16.0-r5 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm p DEPEND=|| ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) efi? ( >=sys-devel/binutils-2.22[multitarget] ) !efi? ( >=sys-devel/binutils-2.22 ) flask? ( sys-apps/checkpolicy ) DESCRIPTION=The Xen virtual machine monitor EAPI=8 -HOMEPAGE=https://www.xenproject.org +HOMEPAGE=https://xenproject.org IUSE=+boot-symlinks debug efi flask KEYWORDS=~amd64 ~arm -x86 LICENSE=GPL-2 @@ -12,4 +12,4 @@ RESTRICT=test splitdebug strip SLOT=0 SRC_URI=https://downloads.xenproject.org/release/xen/4.16.0/xen-4.16.0.tar.gz https://dev.gentoo.org/~dlan/distfiles/xen-4.16.0-upstream-patches-2.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-4.16.0-upstream-patches-2.tar.xz _eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 mount-boot 02a45c5e022c08dbc05178522b2772f2 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=9c1fbd6699355467b1ed55dda3f34125 +_md5_=792fe082fa46cd0c1258de7f7df3f8a7 diff --git a/metadata/md5-cache/app-emulation/xen-tools-4.15.1-r2 b/metadata/md5-cache/app-emulation/xen-tools-4.15.1-r2 index 593a74c2fd8e..6309d4e8bef7 100644 --- a/metadata/md5-cache/app-emulation/xen-tools-4.15.1-r2 +++ b/metadata/md5-cache/app-emulation/xen-tools-4.15.1-r2 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install postinst prepare setup DEPEND=sys-apps/pciutils dev-libs/lzo:2 dev-libs/glib:2 dev-libs/yajl dev-libs/libaio dev-libs/libgcrypt:0 sys-libs/zlib python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[ncurses,xml,threads(+)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[ncurses,xml,threads(+)] ) app-misc/pax-utils >=sys-kernel/linux-headers-4.11 x11-libs/pixman python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] pam? ( dev-python/pypam[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] pam? ( dev-python/pypam[python_targets_python3_9(-)] ) ) x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( !arm64? ( dev-lang/nasm ) ) python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[sqlite] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-power/iasl system-seabios? ( sys-firmware/seabios ) system-ipxe? ( sys-firmware/ipxe[qemu] ) rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) doc? ( app-text/ghostscript-gpl app-text/pandoc python_single_target_python3_8? ( dev-python/markdown[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/markdown[python_targets_python3_9(-)] ) dev-texlive/texlive-latexextra media-gfx/transfig ) hvm? ( x11-base/xorg-proto ) qemu? ( app-arch/snappy:= sdl? ( media-libs/libsdl[X] media-libs/libsdl2[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib dev-lang/ocaml[ocamlopt] ) python? ( >=dev-lang/swig-4.0.0 ) DESCRIPTION=Xen tools including QEMU and xl EAPI=7 -HOMEPAGE=https://www.xenproject.org +HOMEPAGE=https://xenproject.org IUSE=api debug doc +hvm +ipxe ocaml ovmf +pam pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios python_single_target_python3_8 python_single_target_python3_9 KEYWORDS=amd64 ~arm ~arm64 x86 LICENSE=GPL-2 @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/4.15 SRC_URI=https://downloads.xenproject.org/release/xen/4.15.1/xen-4.15.1.tar.gz https://www.seabios.org/downloads/seabios-1.14.0.tar.gz ipxe? ( http://xenbits.xen.org/xen-extfiles/ipxe-git-988d2c13cdf0f0b4140685af35ced70ac5b3283c.tar.gz ) ovmf? ( https://github.com/tianocore/edk2/archive/a3741780fe3535e19e02efa869a7cac481891129.tar.gz -> edk2-a3741780fe3535e19e02efa869a7cac481891129.tar.gz https://github.com/openssl/openssl/archive/OpenSSL_1_1_1j.tar.gz https://github.com/ucb-bar/berkeley-softfloat-3/archive/b64af41c3276f97f0e181920400ee056b9c88037.tar.gz -> berkeley-softfloat-b64af41c3276f97f0e181920400ee056b9c88037.tar.gz https://github.com/google/brotli/archive/666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz -> brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz ) https://dev.gentoo.org/~dlan/distfiles/xen-4.15.1-upstream-patches-1.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-4.15.1-upstream-patches-1.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-gentoo-patches-23.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-gentoo-patches-23.tar.xz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=62108ec432fb93f02cd0f56807e645ef +_md5_=a84d86414aa0f930455374144b87b3f4 diff --git a/metadata/md5-cache/app-emulation/xen-tools-4.15.2 b/metadata/md5-cache/app-emulation/xen-tools-4.15.2 index 3cd203004b54..af8da4db477b 100644 --- a/metadata/md5-cache/app-emulation/xen-tools-4.15.2 +++ b/metadata/md5-cache/app-emulation/xen-tools-4.15.2 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install postinst prepare setup DEPEND=sys-apps/pciutils dev-libs/lzo:2 dev-libs/glib:2 dev-libs/yajl dev-libs/libaio dev-libs/libgcrypt:0 sys-libs/zlib python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[ncurses,xml,threads(+)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[ncurses,xml,threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[ncurses,xml,threads(+)] ) app-misc/pax-utils >=sys-kernel/linux-headers-4.11 x11-libs/pixman python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] pam? ( dev-python/pypam[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] pam? ( dev-python/pypam[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/lxml[python_targets_python3_10(-)] pam? ( dev-python/pypam[python_targets_python3_10(-)] ) ) x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( !arm64? ( dev-lang/nasm ) ) python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[sqlite] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-power/iasl system-seabios? ( sys-firmware/seabios ) system-ipxe? ( sys-firmware/ipxe[qemu] ) rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) doc? ( app-text/ghostscript-gpl app-text/pandoc python_single_target_python3_8? ( dev-python/markdown[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/markdown[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/markdown[python_targets_python3_10(-)] ) dev-texlive/texlive-latexextra media-gfx/transfig ) hvm? ( x11-base/xorg-proto ) qemu? ( app-arch/snappy:= sdl? ( media-libs/libsdl[X] media-libs/libsdl2[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib dev-lang/ocaml[ocamlopt] ) python? ( >=dev-lang/swig-4.0.0 ) DESCRIPTION=Xen tools including QEMU and xl EAPI=7 -HOMEPAGE=https://www.xenproject.org +HOMEPAGE=https://xenproject.org IUSE=api debug doc +hvm +ipxe ocaml ovmf +pam pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=GPL-2 @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/4.15 SRC_URI=https://downloads.xenproject.org/release/xen/4.15.2/xen-4.15.2.tar.gz https://www.seabios.org/downloads/seabios-1.14.0.tar.gz ipxe? ( http://xenbits.xen.org/xen-extfiles/ipxe-git-988d2c13cdf0f0b4140685af35ced70ac5b3283c.tar.gz ) ovmf? ( https://github.com/tianocore/edk2/archive/a3741780fe3535e19e02efa869a7cac481891129.tar.gz -> edk2-a3741780fe3535e19e02efa869a7cac481891129.tar.gz https://github.com/openssl/openssl/archive/OpenSSL_1_1_1j.tar.gz https://github.com/ucb-bar/berkeley-softfloat-3/archive/b64af41c3276f97f0e181920400ee056b9c88037.tar.gz -> berkeley-softfloat-b64af41c3276f97f0e181920400ee056b9c88037.tar.gz https://github.com/google/brotli/archive/666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz -> brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz ) https://dev.gentoo.org/~dlan/distfiles/xen-4.15.2-upstream-patches-0.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-4.15.2-upstream-patches-0.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-gentoo-patches-23.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-gentoo-patches-23.tar.xz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=cd979ff3d9940ca78bc75c6725d26cdf +_md5_=a32162584f441c4c69424636fcf18b70 diff --git a/metadata/md5-cache/app-emulation/xen-tools-4.15.2-r1 b/metadata/md5-cache/app-emulation/xen-tools-4.15.2-r1 index 9ee2e594fffd..adbdb42f7ca1 100644 --- a/metadata/md5-cache/app-emulation/xen-tools-4.15.2-r1 +++ b/metadata/md5-cache/app-emulation/xen-tools-4.15.2-r1 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install postinst prepare setup DEPEND=sys-apps/pciutils dev-libs/lzo:2 dev-libs/glib:2 dev-libs/yajl dev-libs/libaio dev-libs/libgcrypt:0 sys-libs/zlib python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[ncurses,xml,threads(+)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[ncurses,xml,threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[ncurses,xml,threads(+)] ) app-misc/pax-utils >=sys-kernel/linux-headers-4.11 x11-libs/pixman python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] pam? ( dev-python/pypam[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] pam? ( dev-python/pypam[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/lxml[python_targets_python3_10(-)] pam? ( dev-python/pypam[python_targets_python3_10(-)] ) ) x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( !arm64? ( dev-lang/nasm ) ) python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[sqlite] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-power/iasl system-seabios? ( sys-firmware/seabios ) system-ipxe? ( sys-firmware/ipxe[qemu] ) rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) doc? ( app-text/ghostscript-gpl app-text/pandoc python_single_target_python3_8? ( dev-python/markdown[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/markdown[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/markdown[python_targets_python3_10(-)] ) dev-texlive/texlive-latexextra media-gfx/transfig ) hvm? ( x11-base/xorg-proto ) qemu? ( app-arch/snappy:= sdl? ( media-libs/libsdl[X] media-libs/libsdl2[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib dev-lang/ocaml[ocamlopt] ) python? ( >=dev-lang/swig-4.0.0 ) DESCRIPTION=Xen tools including QEMU and xl EAPI=7 -HOMEPAGE=https://www.xenproject.org +HOMEPAGE=https://xenproject.org IUSE=api debug doc +hvm +ipxe ocaml ovmf +pam pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=GPL-2 @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/4.15 SRC_URI=https://downloads.xenproject.org/release/xen/4.15.2/xen-4.15.2.tar.gz https://www.seabios.org/downloads/seabios-1.14.0.tar.gz ipxe? ( http://xenbits.xen.org/xen-extfiles/ipxe-git-988d2c13cdf0f0b4140685af35ced70ac5b3283c.tar.gz ) ovmf? ( https://github.com/tianocore/edk2/archive/a3741780fe3535e19e02efa869a7cac481891129.tar.gz -> edk2-a3741780fe3535e19e02efa869a7cac481891129.tar.gz https://github.com/openssl/openssl/archive/OpenSSL_1_1_1j.tar.gz https://github.com/ucb-bar/berkeley-softfloat-3/archive/b64af41c3276f97f0e181920400ee056b9c88037.tar.gz -> berkeley-softfloat-b64af41c3276f97f0e181920400ee056b9c88037.tar.gz https://github.com/google/brotli/archive/666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz -> brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz ) https://dev.gentoo.org/~dlan/distfiles/xen-4.15.2-upstream-patches-2.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-4.15.2-upstream-patches-2.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-gentoo-patches-23.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-gentoo-patches-23.tar.xz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=60215ec1fd8b4e93dc8db08a845b7ce6 +_md5_=70d160817a6342f94792c7ddd72c49ef diff --git a/metadata/md5-cache/app-emulation/xen-tools-4.16.0-r1 b/metadata/md5-cache/app-emulation/xen-tools-4.16.0-r1 deleted file mode 100644 index bf2ecf6e5659..000000000000 --- a/metadata/md5-cache/app-emulation/xen-tools-4.16.0-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-lang/perl sys-devel/bison sys-devel/gettext -DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=sys-apps/pciutils dev-libs/lzo:2 dev-libs/glib:2 dev-libs/yajl dev-libs/libaio dev-libs/libgcrypt:0 sys-libs/zlib python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[ncurses,xml,threads(+)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[ncurses,xml,threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[ncurses,xml,threads(+)] ) app-misc/pax-utils >=sys-kernel/linux-headers-4.11 x11-libs/pixman python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] pam? ( dev-python/pypam[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] pam? ( dev-python/pypam[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/lxml[python_targets_python3_10(-)] pam? ( dev-python/pypam[python_targets_python3_10(-)] ) ) x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( !arm64? ( dev-lang/nasm ) ) python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[sqlite] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-power/iasl system-seabios? ( sys-firmware/seabios ) system-ipxe? ( sys-firmware/ipxe[qemu] ) rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) arm64? ( sys-power/iasl rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) doc? ( app-text/ghostscript-gpl app-text/pandoc python_single_target_python3_8? ( dev-python/markdown[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/markdown[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/markdown[python_targets_python3_10(-)] ) dev-texlive/texlive-latexextra media-gfx/transfig ) hvm? ( x11-base/xorg-proto ) qemu? ( app-arch/snappy:= dev-util/meson sdl? ( media-libs/libsdl[X] media-libs/libsdl2[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib dev-lang/ocaml[ocamlopt] ) python? ( >=dev-lang/swig-4.0.0 ) -DESCRIPTION=Xen tools including QEMU and xl -EAPI=7 -HOMEPAGE=https://www.xenproject.org -IUSE=api debug doc +hvm +ipxe ocaml ovmf +pam pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 -LICENSE=GPL-2 -RDEPEND=sys-apps/pciutils dev-libs/lzo:2 dev-libs/glib:2 dev-libs/yajl dev-libs/libaio dev-libs/libgcrypt:0 sys-libs/zlib python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[ncurses,xml,threads(+)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[ncurses,xml,threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[ncurses,xml,threads(+)] ) sys-apps/iproute2[-minimal] net-misc/bridge-utils screen? ( app-misc/screen app-admin/logrotate ) selinux? ( sec-policy/selinux-xen ) -REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ipxe? ( rombios ) ovmf? ( hvm ) pygrub? ( python ) rombios? ( hvm ) system-ipxe? ( rombios ) ?? ( ipxe system-ipxe ) ?? ( qemu system-qemu ) -RESTRICT=test -SLOT=0/4.16 -SRC_URI=https://downloads.xenproject.org/release/xen/4.16.0/xen-4.16.0.tar.gz https://www.seabios.org/downloads/seabios-1.14.0.tar.gz ipxe? ( http://xenbits.xen.org/xen-extfiles/ipxe-git-3c040ad387099483102708bb1839110bc788cefb.tar.gz ) ovmf? ( https://github.com/tianocore/edk2/archive/7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5.tar.gz -> edk2-7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5.tar.gz https://github.com/openssl/openssl/archive/OpenSSL_1_1_1j.tar.gz https://github.com/ucb-bar/berkeley-softfloat-3/archive/b64af41c3276f97f0e181920400ee056b9c88037.tar.gz -> berkeley-softfloat-b64af41c3276f97f0e181920400ee056b9c88037.tar.gz https://github.com/google/brotli/archive/666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz -> brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz ) https://dev.gentoo.org/~dlan/distfiles/xen-4.16.0-upstream-patches-2.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-4.16.0-upstream-patches-2.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-gentoo-patches-24.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-gentoo-patches-24.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=aeb209f7a9203ebb483c0b40a40ef65a diff --git a/metadata/md5-cache/app-emulation/xen-tools-4.16.0-r3 b/metadata/md5-cache/app-emulation/xen-tools-4.16.0-r3 new file mode 100644 index 000000000000..c529b4657d7d --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-tools-4.16.0-r3 @@ -0,0 +1,16 @@ +BDEPEND=dev-lang/perl sys-devel/bison sys-devel/gettext +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=lzma? ( app-arch/xz-utils ) qemu? ( dev-libs/glib:2 ) zstd? ( app-arch/zstd ) app-arch/bzip2 app-arch/zstd dev-libs/libnl:3 dev-libs/lzo:2 dev-libs/yajl sys-apps/util-linux sys-fs/e2fsprogs sys-libs/ncurses sys-libs/zlib python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[ncurses,xml,threads(+)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[ncurses,xml,threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[ncurses,xml,threads(+)] ) app-misc/pax-utils >=sys-kernel/linux-headers-4.11 x11-libs/pixman python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] pam? ( dev-python/pypam[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] pam? ( dev-python/pypam[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/lxml[python_targets_python3_10(-)] pam? ( dev-python/pypam[python_targets_python3_10(-)] ) ) x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( !arm64? ( dev-lang/nasm ) ) python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[sqlite] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-power/iasl system-seabios? ( sys-firmware/seabios ) system-ipxe? ( sys-firmware/ipxe[qemu] ) rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) arm64? ( sys-power/iasl rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) doc? ( app-text/ghostscript-gpl app-text/pandoc python_single_target_python3_8? ( dev-python/markdown[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/markdown[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/markdown[python_targets_python3_10(-)] ) dev-texlive/texlive-latexextra media-gfx/transfig ) hvm? ( x11-base/xorg-proto ) qemu? ( app-arch/snappy:= dev-util/meson sdl? ( media-libs/libsdl[X] media-libs/libsdl2[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib dev-lang/ocaml[ocamlopt] ) python? ( >=dev-lang/swig-4.0.0 ) +DESCRIPTION=Xen tools including QEMU and xl +EAPI=7 +HOMEPAGE=https://xenproject.org +IUSE=api debug doc +hvm +ipxe lzma ocaml ovmf +pam pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios systemd zstd python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=GPL-2 +RDEPEND=lzma? ( app-arch/xz-utils ) qemu? ( dev-libs/glib:2 ) zstd? ( app-arch/zstd ) app-arch/bzip2 app-arch/zstd dev-libs/libnl:3 dev-libs/lzo:2 dev-libs/yajl sys-apps/util-linux sys-fs/e2fsprogs sys-libs/ncurses sys-libs/zlib python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[ncurses,xml,threads(+)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[ncurses,xml,threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[ncurses,xml,threads(+)] ) sys-apps/iproute2[-minimal] net-misc/bridge-utils screen? ( app-misc/screen app-admin/logrotate ) selinux? ( sec-policy/selinux-xen ) +REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ipxe? ( rombios ) ovmf? ( hvm ) pygrub? ( python ) rombios? ( hvm ) system-ipxe? ( rombios ) ?? ( ipxe system-ipxe ) ?? ( qemu system-qemu ) +RESTRICT=test +SLOT=0/4.16 +SRC_URI=https://downloads.xenproject.org/release/xen/4.16.0/xen-4.16.0.tar.gz https://www.seabios.org/downloads/seabios-1.14.0.tar.gz ipxe? ( https://xenbits.xen.org/xen-extfiles/ipxe-git-3c040ad387099483102708bb1839110bc788cefb.tar.gz ) ovmf? ( https://github.com/tianocore/edk2/archive/7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5.tar.gz -> edk2-7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5.tar.gz https://github.com/openssl/openssl/archive/OpenSSL_1_1_1j.tar.gz https://github.com/ucb-bar/berkeley-softfloat-3/archive/b64af41c3276f97f0e181920400ee056b9c88037.tar.gz -> berkeley-softfloat-b64af41c3276f97f0e181920400ee056b9c88037.tar.gz https://github.com/google/brotli/archive/666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz -> brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz ) https://dev.gentoo.org/~dlan/distfiles/xen-4.16.0-upstream-patches-2.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-4.16.0-upstream-patches-2.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-gentoo-patches-24.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-gentoo-patches-24.tar.xz +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=0e30b76abaa2fc8cec28aef5a45c2e70 diff --git a/metadata/md5-cache/app-i18n/Manifest.gz b/metadata/md5-cache/app-i18n/Manifest.gz index cc9db343c3d1..7d382951e4ef 100644 Binary files a/metadata/md5-cache/app-i18n/Manifest.gz and b/metadata/md5-cache/app-i18n/Manifest.gz differ diff --git a/metadata/md5-cache/app-i18n/anthy-9100h-r3 b/metadata/md5-cache/app-i18n/anthy-9100h-r3 index a19296255f6c..47d7794995f2 100644 --- a/metadata/md5-cache/app-i18n/anthy-9100h-r3 +++ b/metadata/md5-cache/app-i18n/anthy-9100h-r3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=mirror://sourceforge.jp/anthy/37536/anthy-9100h.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=cf19a355d47b7b2f26c95494a383ea96 diff --git a/metadata/md5-cache/app-i18n/ibus-1.5.26 b/metadata/md5-cache/app-i18n/ibus-1.5.26 index 88a3528deaf1..1f95e4fe24f2 100644 --- a/metadata/md5-cache/app-i18n/ibus-1.5.26 +++ b/metadata/md5-cache/app-i18n/ibus-1.5.26 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ibus/ibus/releases/download/1.5.26/ibus-1.5.26.tar.gz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vala 9badd41d5aab740ae5ac301c4416c5f8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=9a3542b8f777238a8e4a985f7c25c3d2 +_md5_=539214cf470fd67758ab76f57e6a3fb8 diff --git a/metadata/md5-cache/app-i18n/mozc-2.26.4220_p20201212102434_p20201219202429 b/metadata/md5-cache/app-i18n/mozc-2.26.4220_p20201212102434_p20201219202429 index e6d6f657da24..e49398b25fe2 100644 --- a/metadata/md5-cache/app-i18n/mozc-2.26.4220_p20201212102434_p20201219202429 +++ b/metadata/md5-cache/app-i18n/mozc-2.26.4220_p20201212102434_p20201219202429 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( emacs fcitx4 ibus ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/mozc/archive/9ba59b64d53365c1fe93c1c245b4ec3e35bdadf0.tar.gz -> mozc-2.26.4220-20201212102434.tar.gz https://github.com/hiroyuki-komatsu/japanese-usage-dictionary/archive/a4a66772e33746b91e99caceecced9a28507e925.tar.gz -> japanese-usage-dictionary-20180701040110.tar.gz fcitx4? ( https://github.com/fcitx/mozc/archive/1ea089debc31ff216473369ad71c08318384ee06.tar.gz -> fcitx-mozc-2.26.4220-20201219202429.tar.gz ) -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=19cdd0da16b4dffc317bcf497dea755f diff --git a/metadata/md5-cache/app-i18n/mozc-9999 b/metadata/md5-cache/app-i18n/mozc-9999 index e99022b2ed9b..695299e6b98e 100644 --- a/metadata/md5-cache/app-i18n/mozc-9999 +++ b/metadata/md5-cache/app-i18n/mozc-9999 @@ -11,5 +11,5 @@ RDEPEND=>=dev-cpp/abseil-cpp-20200923[cxx17(+)] >=dev-libs/protobuf-3.0.0:= emac REQUIRED_USE=|| ( emacs fcitx4 ibus ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc31f52a98293b2a03f8e9c068f91cdf diff --git a/metadata/md5-cache/app-i18n/skktools-1.3.3_p20170305 b/metadata/md5-cache/app-i18n/skktools-1.3.3_p20170305 index 7dc643999e9d..e73fc2751000 100644 --- a/metadata/md5-cache/app-i18n/skktools-1.3.3_p20170305 +++ b/metadata/md5-cache/app-i18n/skktools-1.3.3_p20170305 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 sys-libs/gdbm emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=https://github.com/skk-dev/skktools/archive/e14d98e734d2fdff611385c7df65826e94d929db.tar.gz -> skktools-1.3.3_p20170305.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp-common f9c72486dbcb18b633c9d0949211d86e vcs-snapshot 19dc666868420457132a7514d4621476 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp-common e7aaa047873789f549ea3df2f04b2145 vcs-snapshot 19dc666868420457132a7514d4621476 _md5_=e3c76444f48c10e4c9ef34a6107ea976 diff --git a/metadata/md5-cache/app-i18n/skktools-1.3.4 b/metadata/md5-cache/app-i18n/skktools-1.3.4 index 035d9950da13..f852385b433f 100644 --- a/metadata/md5-cache/app-i18n/skktools-1.3.4 +++ b/metadata/md5-cache/app-i18n/skktools-1.3.4 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 sys-libs/gdbm emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=https://github.com/skk-dev/skktools/archive/skktools-1_3_4.tar.gz -> skktools-1.3.4.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp-common f9c72486dbcb18b633c9d0949211d86e vcs-snapshot 19dc666868420457132a7514d4621476 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp-common e7aaa047873789f549ea3df2f04b2145 vcs-snapshot 19dc666868420457132a7514d4621476 _md5_=385f9abe91dab6c3cda813dfa928d340 diff --git a/metadata/md5-cache/app-i18n/sunpinyin-data-20140820 b/metadata/md5-cache/app-i18n/sunpinyin-data-20140820 index 03e85870643e..b639e904b36c 100644 --- a/metadata/md5-cache/app-i18n/sunpinyin-data-20140820 +++ b/metadata/md5-cache/app-i18n/sunpinyin-data-20140820 @@ -7,4 +7,5 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 SLOT=0 SRC_URI=mirror://sourceforge/open-gram/dict.utf8-20131214.tar.bz2 mirror://sourceforge/open-gram/lm_sc.3gm.arpa-20140820.tar.bz2 -_md5_=9dd7c34673578dd0ceafbc610f060bc0 +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 +_md5_=4e12f9ae24899c3bcad9ede54e6078cb diff --git a/metadata/md5-cache/app-i18n/uim-1.8.8-r2 b/metadata/md5-cache/app-i18n/uim-1.8.8-r2 index 876f9af9c544..d1f09eca3ded 100644 --- a/metadata/md5-cache/app-i18n/uim-1.8.8-r2 +++ b/metadata/md5-cache/app-i18n/uim-1.8.8-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=gtk? ( X ) gtk2? ( X ) qt5? ( X ) xft? ( X ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/uim/uim/releases/download/1.8.8/uim-1.8.8.tar.bz2 -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b qmake-utils f5eb2f69fffe94292aaaf802fb21c8d1 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b qmake-utils f5eb2f69fffe94292aaaf802fb21c8d1 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=185f71c13a5c325c18c7926b0d5d6148 diff --git a/metadata/md5-cache/app-i18n/uim-1.8.9_pre20210103 b/metadata/md5-cache/app-i18n/uim-1.8.9_pre20210103 index be56fec64971..f85c1fafff39 100644 --- a/metadata/md5-cache/app-i18n/uim-1.8.9_pre20210103 +++ b/metadata/md5-cache/app-i18n/uim-1.8.9_pre20210103 @@ -12,5 +12,5 @@ REQUIRED_USE=gtk? ( X ) gtk2? ( X ) qt5? ( X ) xft? ( X ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/uim/uim/archive/d1ac9d9315ff8c57c713b502544fef9b3a83b3e5.tar.gz -> uim-1.8.9_pre20210103.tar.gz https://github.com/uim/sigscheme/releases/download/0.9.1/sigscheme-0.9.1.tar.bz2 -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b qmake-utils f5eb2f69fffe94292aaaf802fb21c8d1 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-snapshot 19dc666868420457132a7514d4621476 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b qmake-utils f5eb2f69fffe94292aaaf802fb21c8d1 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-snapshot 19dc666868420457132a7514d4621476 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=92366c06a8e16b002a7a266fa5865897 diff --git a/metadata/md5-cache/app-misc/Manifest.gz b/metadata/md5-cache/app-misc/Manifest.gz index 4b5548908e11..8666c743edb5 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/cadubi-1.3.4 b/metadata/md5-cache/app-misc/cadubi-1.3.4 new file mode 100644 index 000000000000..c627822a6d51 --- /dev/null +++ b/metadata/md5-cache/app-misc/cadubi-1.3.4 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install prepare +DESCRIPTION=An application that allows you to draw ASCII-Art images +EAPI=8 +HOMEPAGE=https://github.com/statico/cadubi +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +LICENSE=Artistic +RDEPEND=dev-lang/perl >=dev-perl/TermReadKey-2.21 +SLOT=0 +SRC_URI=https://github.com/statico/cadubi/archive/v1.3.4.tar.gz -> cadubi-1.3.4.tar.gz +_md5_=249315d871b0484104f720b933741bb1 diff --git a/metadata/md5-cache/app-misc/cdargs-1.35-r2 b/metadata/md5-cache/app-misc/cdargs-1.35-r2 index e2615b87173f..9e09082f0c90 100644 --- a/metadata/md5-cache/app-misc/cdargs-1.35-r2 +++ b/metadata/md5-cache/app-misc/cdargs-1.35-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=sys-libs/ncurses:0= emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=http://www.skamphausen.de/software/cdargs/cdargs-1.35.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1debb0a1c643ef0384d1816ba71bdd03 diff --git a/metadata/md5-cache/app-misc/geoclue-2.5.7 b/metadata/md5-cache/app-misc/geoclue-2.5.7 index cfabd275cabe..82778d187225 100644 --- a/metadata/md5-cache/app-misc/geoclue-2.5.7 +++ b/metadata/md5-cache/app-misc/geoclue-2.5.7 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-lang/python-3.9.9-r1:3.9[xml(+)] >=dev-lang/python-3.8.12_p1-r1:3.8[xml(+)] ) dev-util/gdbus-codegen dev-util/glib-utils gtk-doc? ( app-text/docbook-xml-dtd:4.1.2 >=dev-util/gtk-doc-1 ) >=sys-devel/gettext-0.19.8 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.56[vapigen(+)] dev-lang/vala:0.54[vapigen(+)] dev-lang/vala:0.52[vapigen(+)] dev-lang/vala:0.50[vapigen(+)] ) ) >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig +BDEPEND=|| ( >=dev-lang/python-3.10.0_p1-r1:3.10[xml(+)] >=dev-lang/python-3.9.9-r1:3.9[xml(+)] >=dev-lang/python-3.8.12_p1-r1:3.8[xml(+)] ) dev-util/gdbus-codegen dev-util/glib-utils gtk-doc? ( app-text/docbook-xml-dtd:4.1.2 >=dev-util/gtk-doc-1 ) >=sys-devel/gettext-0.19.8 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.56[vapigen(+)] dev-lang/vala:0.54[vapigen(+)] dev-lang/vala:0.52[vapigen(+)] dev-lang/vala:0.50[vapigen(+)] ) ) >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test DEPEND=>=dev-libs/glib-2.44:2 >=dev-libs/json-glib-0.14.0 >=net-libs/libsoup-2.42.0:2.4 introspection? ( >=dev-libs/gobject-introspection-1.54:= ) modemmanager? ( >=net-misc/modemmanager-1.6 ) zeroconf? ( >=net-dns/avahi-0.6.10[dbus] ) x11-libs/libnotify dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=A location information D-Bus service @@ -12,4 +12,4 @@ REQUIRED_USE=vala? ( introspection ) SLOT=2.0 SRC_URI=https://gitlab.freedesktop.org/geoclue/geoclue/-/archive/2.5.7/geoclue-2.5.7.tar.bz2 _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vala 9badd41d5aab740ae5ac301c4416c5f8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=6c2143d5db5bac3a086936bdeb4b7883 +_md5_=170377b818ec0046f805e8bd980be5ed diff --git a/metadata/md5-cache/app-misc/gtypist-2.9.5-r1 b/metadata/md5-cache/app-misc/gtypist-2.9.5-r1 index a88e7634d384..eb4e68341b88 100644 --- a/metadata/md5-cache/app-misc/gtypist-2.9.5-r1 +++ b/metadata/md5-cache/app-misc/gtypist-2.9.5-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 public-domain RDEPEND=>=sys-libs/ncurses-5.2:0= emacs? ( >=app-editors/emacs-23.1:* ) xemacs? ( !emacs? ( app-editors/xemacs app-xemacs/fsf-compat ) ) SLOT=0 SRC_URI=mirror://gnu/gtypist/gtypist-2.9.5.tar.xz http://colemak.com/pub/learn/colemak.typ -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c74d7d459bda9d83b04346a57f97ea04 diff --git a/metadata/md5-cache/app-misc/hivex-1.3.20 b/metadata/md5-cache/app-misc/hivex-1.3.20 index c9637031db73..d0fbe4ba35c9 100644 --- a/metadata/md5-cache/app-misc/hivex-1.3.20 +++ b/metadata/md5-cache/app-misc/hivex-1.3.20 @@ -12,5 +12,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_8 python_single_target_ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://libguestfs.org/download/hivex/hivex-1.3.20.tar.gz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6995d17032440d7dbc8bddf9bd09950e diff --git a/metadata/md5-cache/app-misc/notary-0.7.0 b/metadata/md5-cache/app-misc/notary-0.7.0 index 498396564ba7..7c56624a82e8 100644 --- a/metadata/md5-cache/app-misc/notary-0.7.0 +++ b/metadata/md5-cache/app-misc/notary-0.7.0 @@ -2,12 +2,12 @@ BDEPEND=acct-group/notary acct-user/notary >=dev-lang/go-1.16 app-arch/unzip DEFINED_PHASES=compile install unpack DESCRIPTION=A project that allows anyone to have trust over arbitrary collections of data EAPI=8 -HOMEPAGE=https://github.com/theupdateframework/notary +HOMEPAGE=https://github.com/notaryproject/notary KEYWORDS=~amd64 LICENSE=Apache-2.0 RDEPEND=acct-group/notary acct-user/notary RESTRICT=strip SLOT=0 -SRC_URI=https://github.com/theupdateframework/notary/archive/v0.7.0.tar.gz -> notary-0.7.0.tar.gz +SRC_URI=https://github.com/notaryproject/notary/archive/v0.7.0.tar.gz -> notary-0.7.0.tar.gz _eclasses_=go-module a13d34fe4e2996720e1ca6c53b9ea95a -_md5_=1af471faf492b8d0485676c34929e658 +_md5_=f9603bf7186edcf960e93bba0f64a664 diff --git a/metadata/md5-cache/app-office/Manifest.gz b/metadata/md5-cache/app-office/Manifest.gz index dad6e57be180..0d61286e5846 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/libreoffice-7.2.6.2-r1 b/metadata/md5-cache/app-office/libreoffice-7.2.6.2-r1 index 188d404c165c..5f202251f9bf 100644 --- a/metadata/md5-cache/app-office/libreoffice-7.2.6.2-r1 +++ b/metadata/md5-cache/app-office/libreoffice-7.2.6.2-r1 @@ -5,7 +5,7 @@ DESCRIPTION=A full office productivity suite EAPI=8 HOMEPAGE=https://www.libreoffice.org IUSE=accessibility base bluetooth +branding clang coinmp +cups custom-cflags +dbus debug eds firebird googledrive gstreamer +gtk kde ldap +mariadb odk pdfimport postgres test vulkan libreoffice_extensions_nlpsolver libreoffice_extensions_scripting-beanshell libreoffice_extensions_scripting-javascript libreoffice_extensions_wiki-publisher java python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux LICENSE=|| ( LGPL-3 MPL-1.1 ) PDEPEND==app-office/libreoffice-l10n-7.2* RDEPEND=python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[threads(+),xml] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[threads(+),xml] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[threads(+),xml] ) app-arch/unzip app-arch/zip app-crypt/gpgme:=[cxx] app-text/hunspell:= >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 app-text/libepubgen >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libnumbertext-1.0.6 >=app-text/libodfgen-0.1.0 app-text/libqxp app-text/libstaroffice app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 >=dev-cpp/libcmis-0.5.2 dev-db/unixODBC dev-lang/perl >=dev-libs/boost-1.72.0:=[nls] dev-libs/expat dev-libs/hyphen dev-libs/icu:= dev-libs/libassuan dev-libs/libgpg-error dev-libs/liborcus:0/0.16 dev-libs/librevenge dev-libs/libxml2 dev-libs/libxslt dev-libs/nspr dev-libs/nss >=dev-libs/redland-1.0.16 >=dev-libs/xmlsec-1.2.28[nss] >=games-engines/box2d-2.4.1:0 media-gfx/fontforge media-gfx/graphite2 media-libs/fontconfig >=media-libs/freetype-2.11.0-r1:2 >=media-libs/harfbuzz-0.9.42:=[graphite,icu] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libepoxy-1.3.1[X] >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 media-libs/libzmf media-libs/zxing-cpp >=net-libs/neon-0.31.1:= net-misc/curl sci-mathematics/lpsolve sys-libs/zlib virtual/jpeg:0 virtual/opengl x11-libs/cairo[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender accessibility? ( python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/lxml[python_targets_python3_10(-)] ) ) bluetooth? ( dev-libs/glib:2 net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) cups? ( net-print/cups ) dbus? ( sys-apps/dbus[X] ) eds? ( dev-libs/glib:2 gnome-base/dconf gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-3.0.2.32703.0-r1[server] ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( dev-libs/glib:2 dev-libs/gobject-introspection gnome-base/dconf media-libs/mesa[egl(+)] x11-libs/gtk+:3[X] x11-libs/pango ) kde? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 kde-frameworks/kconfig:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kio:5 kde-frameworks/kwindowsystem:5 ) ldap? ( net-nds/openldap:= ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( >=dev-java/rhino-1.7.14:1.6 ) mariadb? ( dev-db/mariadb-connector-c:= ) !mariadb? ( dev-db/mysql-connector-c:= ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug media-fonts/liberation-fonts || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools ) java? ( || ( dev-java/openjdk:11 dev-java/openjdk-jre-bin:11 >=virtual/jre-1.8 ) ) kde? ( kde-frameworks/breeze-icons:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=branding? ( https://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-7.2.6.2.tar.xz https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-7.2.6.2.tar.xz https://download.documentfoundation.org/libreoffice/src/7.2.6//libreoffice-7.2.6.2.tar.xz https://download.documentfoundation.org/libreoffice/src/7.2.6//libreoffice-help-7.2.6.2.tar.xz https://downloadarchive.documentfoundation.org/libreoffice/old/7.2.6.2/src/libreoffice-7.2.6.2.tar.xz https://downloadarchive.documentfoundation.org/libreoffice/old/7.2.6.2/src/libreoffice-help-7.2.6.2.tar.xz https://dev-www.libreoffice.org/src//libcmis-0.5.2.tar.xz https://dev-www.libreoffice.org/src//dtoa-20180411.tgz https://dev-www.libreoffice.org/src//skia-m90-45c57e116ee0ce214bdf78405a4762722e4507d9.tar.xz base? ( https://dev-www.libreoffice.org/src//commons-logging-1.2-src.tar.gz https://dev-www.libreoffice.org/src//ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip https://dev-www.libreoffice.org/src//d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip https://dev-www.libreoffice.org/src//eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip https://dev-www.libreoffice.org/src//3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip https://dev-www.libreoffice.org/src//3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip https://dev-www.libreoffice.org/src//db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip https://dev-www.libreoffice.org/src//97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip https://dev-www.libreoffice.org/src//8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip https://dev-www.libreoffice.org/src//f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip https://dev-www.libreoffice.org/src//ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip https://dev-www.libreoffice.org/src//39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip ) java? ( https://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( https://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs 82234bf011d5453330773cd5fc3f0199 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b qmake-utils f5eb2f69fffe94292aaaf802fb21c8d1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=bdee0cecafcc89e2745760d4edc1af8c +_md5_=ce503c0df51d9600f1e2d4e01550f4b6 diff --git a/metadata/md5-cache/app-office/libreoffice-bin-7.2.6.2 b/metadata/md5-cache/app-office/libreoffice-bin-7.2.6.2 index d13c14ceab44..8acbc09bda76 100644 --- a/metadata/md5-cache/app-office/libreoffice-bin-7.2.6.2 +++ b/metadata/md5-cache/app-office/libreoffice-bin-7.2.6.2 @@ -4,7 +4,7 @@ DESCRIPTION=A full office productivity suite. Binary package EAPI=7 HOMEPAGE=https://www.libreoffice.org IUSE=gnome java kde java +python_single_target_python3_9 -KEYWORDS=-* ~amd64 ~x86 +KEYWORDS=-* amd64 ~x86 LICENSE=LGPL-3 PDEPEND==app-office/libreoffice-l10n-7.2.6.2* RDEPEND=app-text/hunspell:0/1.7 =app-text/libexttextcat-3.4* =app-text/libmwaw-0.3* dev-libs/boost:0/1.78.0 dev-libs/icu:0/70.1 dev-libs/liborcus:0/0.16 >=media-gfx/graphite2-1.3.10 media-libs/harfbuzz:0/3.0.0[icu] media-libs/libpng:0/16 >=sys-devel/gcc-11.2.1 >=sys-libs/glibc-2.34 virtual/jpeg-compat:62 python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[xml] ) app-arch/unzip app-arch/zip app-crypt/gpgme[cxx] app-text/hunspell:= >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 app-text/libepubgen >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libnumbertext-1.0.6 >=app-text/libodfgen-0.1.0 app-text/libqxp app-text/libstaroffice app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 >=dev-cpp/libcmis-0.5.2 dev-db/unixODBC >=games-engines/box2d-2.4.1:0 dev-lang/perl >=dev-libs/boost-1.72.0:=[nls] dev-libs/expat dev-libs/hyphen dev-libs/icu:= dev-libs/libassuan dev-libs/libgpg-error dev-libs/liborcus:0/0.16 dev-libs/librevenge dev-libs/libxml2 dev-libs/libxslt dev-libs/nspr dev-libs/nss >=dev-libs/redland-1.0.16 >=dev-libs/xmlsec-1.2.28[nss] media-gfx/fontforge media-gfx/graphite2 media-libs/fontconfig >=media-libs/freetype-2.11.0-r1:2 >=media-libs/harfbuzz-0.9.42:=[graphite,icu] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libepoxy-1.3.1[X] >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 media-libs/libzmf media-libs/zxing-cpp >=net-libs/neon-0.31.1:= net-misc/curl sci-mathematics/lpsolve sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/cairo[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender net-print/cups sys-apps/dbus[X] gnome? ( dev-libs/glib:2 gnome-base/dconf gnome-extra/evolution-data-server ) media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 !kde? ( dev-libs/glib:2 dev-libs/gobject-introspection gnome-base/dconf media-libs/mesa[egl(+)] x11-libs/gtk+:3[X] x11-libs/pango ) kde? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 kde-frameworks/kconfig:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kio:5 kde-frameworks/kwindowsystem:5 ) dev-db/mariadb-connector-c !app-office/libreoffice !app-office/openoffice media-fonts/liberation-fonts || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools ) java? ( virtual/jre:11 ) kde? ( kde-frameworks/breeze-icons:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) @@ -13,4 +13,4 @@ RESTRICT=test strip SLOT=0 SRC_URI=amd64? ( https://tamiko.43-1.org/distfiles/amd64-bin-libreoffice-7.2.6.2.tar.xz kde? ( !java? ( https://tamiko.43-1.org/distfiles/amd64-bin-libreoffice-kde-7.2.6.2.xd3 ) java? ( https://tamiko.43-1.org/distfiles/amd64-bin-libreoffice-kde-java-7.2.6.2.xd3 ) ) gnome? ( !java? ( https://tamiko.43-1.org/distfiles/amd64-bin-libreoffice-gnome-7.2.6.2.xd3 ) java? ( https://tamiko.43-1.org/distfiles/amd64-bin-libreoffice-gnome-java-7.2.6.2.xd3 ) ) !kde? ( !gnome? ( java? ( https://tamiko.43-1.org/distfiles/amd64-bin-libreoffice-java-7.2.6.2.xd3 ) ) ) ) x86? ( https://tamiko.43-1.org/distfiles/x86-bin-libreoffice-7.2.6.2.tar.xz kde? ( https://tamiko.43-1.org/distfiles/x86-bin-libreoffice-kde-7.2.6.2.xd3 ) gnome? ( https://tamiko.43-1.org/distfiles/x86-bin-libreoffice-gnome-7.2.6.2.xd3 ) ) _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=1a43d647df713c46c2bd57f2c7ab9ced +_md5_=26b38e4340005f28742882a37bce25c7 diff --git a/metadata/md5-cache/app-office/libreoffice-bin-debug-7.2.6.2 b/metadata/md5-cache/app-office/libreoffice-bin-debug-7.2.6.2 index 9f5a92a04df7..02d992733c39 100644 --- a/metadata/md5-cache/app-office/libreoffice-bin-debug-7.2.6.2 +++ b/metadata/md5-cache/app-office/libreoffice-bin-debug-7.2.6.2 @@ -4,10 +4,10 @@ DESCRIPTION=LibreOffice, a full office productivity suite. Binary package, debug EAPI=7 HOMEPAGE=https://www.libreoffice.org IUSE=gnome java kde -KEYWORDS=-* ~amd64 ~x86 +KEYWORDS=-* amd64 ~x86 LICENSE=LGPL-3 RDEPEND=~app-office/libreoffice-bin-7.2.6.2[gnome=,java=,kde=] RESTRICT=test strip SLOT=0 SRC_URI=amd64? ( https://tamiko.43-1.org/distfiles/amd64-debug-libreoffice-7.2.6.2.tar.xz kde? ( !java? ( https://tamiko.43-1.org/distfiles/amd64-debug-libreoffice-kde-7.2.6.2.xd3 ) java? ( https://tamiko.43-1.org/distfiles/amd64-debug-libreoffice-kde-java-7.2.6.2.xd3 ) ) gnome? ( !java? ( https://tamiko.43-1.org/distfiles/amd64-debug-libreoffice-gnome-7.2.6.2.xd3 ) java? ( https://tamiko.43-1.org/distfiles/amd64-debug-libreoffice-gnome-java-7.2.6.2.xd3 ) ) !kde? ( !gnome? ( java? ( https://tamiko.43-1.org/distfiles/amd64-debug-libreoffice-java-7.2.6.2.xd3 ) ) ) ) x86? ( https://tamiko.43-1.org/distfiles/x86-debug-libreoffice-7.2.6.2.tar.xz kde? ( https://tamiko.43-1.org/distfiles/x86-debug-libreoffice-kde-7.2.6.2.xd3 ) gnome? ( https://tamiko.43-1.org/distfiles/x86-debug-libreoffice-gnome-7.2.6.2.xd3 ) ) -_md5_=ca2d07f1212cfcf3e3f3cb18fa5e3edc +_md5_=f77728ca50bc7785cb3379e6c34c61b6 diff --git a/metadata/md5-cache/app-office/libreoffice-l10n-7.2.6.2 b/metadata/md5-cache/app-office/libreoffice-l10n-7.2.6.2 index 4c12ab78365d..f55dffaa28bb 100644 --- a/metadata/md5-cache/app-office/libreoffice-l10n-7.2.6.2 +++ b/metadata/md5-cache/app-office/libreoffice-l10n-7.2.6.2 @@ -4,11 +4,11 @@ DESCRIPTION=Translations for the Libreoffice suite EAPI=8 HOMEPAGE=https://www.libreoffice.org IUSE=offlinehelp l10n_am l10n_ar l10n_ast l10n_bg l10n_bn-IN l10n_bn l10n_bo l10n_bs l10n_ca-valencia l10n_ca l10n_cs l10n_da l10n_de l10n_dz l10n_el l10n_en-GB l10n_en l10n_en-ZA l10n_eo l10n_es l10n_et l10n_eu l10n_fi l10n_fr l10n_gl l10n_gu l10n_he l10n_hi l10n_hr l10n_hu l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_km l10n_ko l10n_lo l10n_lt l10n_lv l10n_mk l10n_nb l10n_ne l10n_nl l10n_nn l10n_om l10n_pl l10n_pt-BR l10n_pt l10n_ro l10n_ru l10n_si l10n_sid l10n_sk l10n_sl l10n_sq l10n_sv l10n_ta l10n_tg l10n_tr l10n_ug l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW l10n_af l10n_as l10n_be l10n_br l10n_brx l10n_ckb l10n_cy l10n_dgo l10n_dsb l10n_fa l10n_fur l10n_fy l10n_ga l10n_gd l10n_gug l10n_hsb l10n_kab l10n_kk l10n_kmr-Latn l10n_kn l10n_kok l10n_ks l10n_lb l10n_mai l10n_ml l10n_mn l10n_mni l10n_mr l10n_my l10n_nr l10n_nso l10n_oc l10n_or l10n_pa l10n_rw l10n_sa l10n_sat l10n_sd l10n_sr-Latn l10n_sr l10n_ss l10n_st l10n_sw-TZ l10n_szl l10n_te l10n_th l10n_tn l10n_ts l10n_tt l10n_uz l10n_ve l10n_vec l10n_xh l10n_zu -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux LICENSE=|| ( LGPL-3 MPL-1.1 ) RDEPEND=app-text/hunspell RESTRICT=strip SLOT=0 SRC_URI=l10n_am? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_am.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_am.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_am.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_am.tar.gz ) ) l10n_ar? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ar.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ar.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ar.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ar.tar.gz ) ) l10n_ast? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ast.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ast.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ast.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ast.tar.gz ) ) l10n_bg? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_bg.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bg.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bg.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bg.tar.gz ) ) l10n_bn-IN? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_bn-IN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bn-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bn-IN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bn-IN.tar.gz ) ) l10n_bn? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_bn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bn.tar.gz ) ) l10n_bo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_bo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bo.tar.gz ) ) l10n_bs? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_bs.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bs.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bs.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_bs.tar.gz ) ) l10n_ca-valencia? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ca-valencia.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ca-valencia.tar.gz ) ) l10n_ca? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ca.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ca.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ca.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ca.tar.gz ) ) l10n_cs? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_cs.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_cs.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_cs.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_cs.tar.gz ) ) l10n_da? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_da.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_da.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_da.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_da.tar.gz ) ) l10n_de? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_de.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_de.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_de.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_de.tar.gz ) ) l10n_dz? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_dz.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_dz.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_dz.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_dz.tar.gz ) ) l10n_el? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_el.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_el.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_el.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_el.tar.gz ) ) l10n_en-GB? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_en-GB.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_en-GB.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_en-GB.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_en-GB.tar.gz ) ) l10n_en? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_en-US.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_en-US.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_en-US.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_en-US.tar.gz ) ) l10n_en-ZA? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_en-ZA.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_en-ZA.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_en-ZA.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_en-ZA.tar.gz ) ) l10n_eo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_eo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_eo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_eo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_eo.tar.gz ) ) l10n_es? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_es.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_es.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_es.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_es.tar.gz ) ) l10n_et? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_et.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_et.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_et.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_et.tar.gz ) ) l10n_eu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_eu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_eu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_eu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_eu.tar.gz ) ) l10n_fi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_fi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_fi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_fi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_fi.tar.gz ) ) l10n_fr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_fr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_fr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_fr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_fr.tar.gz ) ) l10n_gl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_gl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_gl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_gl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_gl.tar.gz ) ) l10n_gu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_gu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_gu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_gu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_gu.tar.gz ) ) l10n_he? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_he.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_he.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_he.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_he.tar.gz ) ) l10n_hi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_hi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_hi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_hi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_hi.tar.gz ) ) l10n_hr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_hr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_hr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_hr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_hr.tar.gz ) ) l10n_hu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_hu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_hu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_hu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_hu.tar.gz ) ) l10n_id? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_id.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_id.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_id.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_id.tar.gz ) ) l10n_is? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_is.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_is.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_is.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_is.tar.gz ) ) l10n_it? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_it.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_it.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_it.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_it.tar.gz ) ) l10n_ja? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ja.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ja.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ja.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ja.tar.gz ) ) l10n_ka? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ka.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ka.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ka.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ka.tar.gz ) ) l10n_km? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_km.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_km.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_km.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_km.tar.gz ) ) l10n_ko? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ko.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ko.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ko.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ko.tar.gz ) ) l10n_lo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_lo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_lo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_lo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_lo.tar.gz ) ) l10n_lt? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_lt.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_lt.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_lt.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_lt.tar.gz ) ) l10n_lv? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_lv.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_lv.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_lv.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_lv.tar.gz ) ) l10n_mk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_mk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_mk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_mk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_mk.tar.gz ) ) l10n_nb? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_nb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_nb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_nb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_nb.tar.gz ) ) l10n_ne? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ne.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ne.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ne.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ne.tar.gz ) ) l10n_nl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_nl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_nl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_nl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_nl.tar.gz ) ) l10n_nn? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_nn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_nn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_nn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_nn.tar.gz ) ) l10n_om? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_om.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_om.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_om.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_om.tar.gz ) ) l10n_pl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_pl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_pl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_pl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_pl.tar.gz ) ) l10n_pt-BR? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_pt-BR.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_pt-BR.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_pt-BR.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_pt-BR.tar.gz ) ) l10n_pt? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_pt.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_pt.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_pt.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_pt.tar.gz ) ) l10n_ro? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ro.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ro.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ro.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ro.tar.gz ) ) l10n_ru? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ru.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ru.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ru.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ru.tar.gz ) ) l10n_si? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_si.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_si.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_si.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_si.tar.gz ) ) l10n_sid? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_sid.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sid.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sid.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sid.tar.gz ) ) l10n_sk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_sk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sk.tar.gz ) ) l10n_sl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_sl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sl.tar.gz ) ) l10n_sq? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_sq.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sq.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sq.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sq.tar.gz ) ) l10n_sv? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_sv.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sv.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sv.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_sv.tar.gz ) ) l10n_ta? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ta.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ta.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ta.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ta.tar.gz ) ) l10n_tg? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_tg.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_tg.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_tg.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_tg.tar.gz ) ) l10n_tr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_tr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_tr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_tr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_tr.tar.gz ) ) l10n_ug? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_ug.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ug.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ug.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_ug.tar.gz ) ) l10n_uk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_uk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_uk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_uk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_uk.tar.gz ) ) l10n_vi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_vi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_vi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_vi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_vi.tar.gz ) ) l10n_zh-CN? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_zh-CN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_zh-CN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_zh-CN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_zh-CN.tar.gz ) ) l10n_zh-TW? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_helppack_zh-TW.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_zh-TW.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_zh-TW.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_helppack_zh-TW.tar.gz ) ) l10n_am? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_am.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_am.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_am.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_am.tar.gz ) l10n_ar? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ar.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ar.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ar.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ar.tar.gz ) l10n_ast? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ast.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ast.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ast.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ast.tar.gz ) l10n_bg? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_bg.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bg.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bg.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bg.tar.gz ) l10n_bn-IN? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_bn-IN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bn-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bn-IN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bn-IN.tar.gz ) l10n_bn? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_bn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bn.tar.gz ) l10n_bo? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_bo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bo.tar.gz ) l10n_bs? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_bs.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bs.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bs.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_bs.tar.gz ) l10n_ca-valencia? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ca-valencia.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ca-valencia.tar.gz ) l10n_ca? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ca.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ca.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ca.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ca.tar.gz ) l10n_cs? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_cs.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_cs.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_cs.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_cs.tar.gz ) l10n_da? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_da.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_da.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_da.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_da.tar.gz ) l10n_de? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_de.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_de.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_de.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_de.tar.gz ) l10n_dz? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_dz.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_dz.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_dz.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_dz.tar.gz ) l10n_el? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_el.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_el.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_el.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_el.tar.gz ) l10n_en-GB? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_en-GB.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_en-GB.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_en-GB.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_en-GB.tar.gz ) l10n_en-ZA? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_en-ZA.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_en-ZA.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_en-ZA.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_en-ZA.tar.gz ) l10n_eo? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_eo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_eo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_eo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_eo.tar.gz ) l10n_es? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_es.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_es.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_es.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_es.tar.gz ) l10n_et? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_et.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_et.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_et.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_et.tar.gz ) l10n_eu? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_eu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_eu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_eu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_eu.tar.gz ) l10n_fi? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_fi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fi.tar.gz ) l10n_fr? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_fr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fr.tar.gz ) l10n_gl? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_gl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gl.tar.gz ) l10n_gu? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_gu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gu.tar.gz ) l10n_he? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_he.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_he.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_he.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_he.tar.gz ) l10n_hi? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_hi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hi.tar.gz ) l10n_hr? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_hr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hr.tar.gz ) l10n_hu? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_hu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hu.tar.gz ) l10n_id? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_id.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_id.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_id.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_id.tar.gz ) l10n_is? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_is.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_is.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_is.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_is.tar.gz ) l10n_it? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_it.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_it.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_it.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_it.tar.gz ) l10n_ja? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ja.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ja.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ja.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ja.tar.gz ) l10n_ka? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ka.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ka.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ka.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ka.tar.gz ) l10n_km? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_km.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_km.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_km.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_km.tar.gz ) l10n_ko? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ko.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ko.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ko.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ko.tar.gz ) l10n_lo? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_lo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lo.tar.gz ) l10n_lt? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_lt.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lt.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lt.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lt.tar.gz ) l10n_lv? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_lv.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lv.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lv.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lv.tar.gz ) l10n_mk? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_mk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mk.tar.gz ) l10n_nb? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_nb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nb.tar.gz ) l10n_ne? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ne.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ne.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ne.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ne.tar.gz ) l10n_nl? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_nl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nl.tar.gz ) l10n_nn? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_nn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nn.tar.gz ) l10n_om? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_om.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_om.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_om.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_om.tar.gz ) l10n_pl? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_pl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pl.tar.gz ) l10n_pt-BR? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_pt-BR.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pt-BR.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pt-BR.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pt-BR.tar.gz ) l10n_pt? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_pt.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pt.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pt.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pt.tar.gz ) l10n_ro? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ro.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ro.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ro.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ro.tar.gz ) l10n_ru? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ru.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ru.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ru.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ru.tar.gz ) l10n_si? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_si.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_si.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_si.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_si.tar.gz ) l10n_sid? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_sid.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sid.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sid.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sid.tar.gz ) l10n_sk? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_sk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sk.tar.gz ) l10n_sl? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_sl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sl.tar.gz ) l10n_sq? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_sq.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sq.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sq.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sq.tar.gz ) l10n_sv? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_sv.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sv.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sv.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sv.tar.gz ) l10n_ta? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ta.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ta.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ta.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ta.tar.gz ) l10n_tg? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_tg.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tg.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tg.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tg.tar.gz ) l10n_tr? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_tr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tr.tar.gz ) l10n_ug? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ug.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ug.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ug.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ug.tar.gz ) l10n_uk? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_uk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_uk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_uk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_uk.tar.gz ) l10n_vi? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_vi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_vi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_vi.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_vi.tar.gz ) l10n_zh-CN? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_zh-CN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_zh-CN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_zh-CN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_zh-CN.tar.gz ) l10n_zh-TW? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_zh-TW.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_zh-TW.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_zh-TW.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_zh-TW.tar.gz ) l10n_af? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_af.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_af.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_af.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_af.tar.gz ) l10n_as? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_as.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_as.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_as.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_as.tar.gz ) l10n_be? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_be.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_be.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_be.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_be.tar.gz ) l10n_br? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_br.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_br.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_br.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_br.tar.gz ) l10n_brx? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_brx.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_brx.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_brx.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_brx.tar.gz ) l10n_ckb? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ckb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ckb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ckb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ckb.tar.gz ) l10n_cy? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_cy.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_cy.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_cy.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_cy.tar.gz ) l10n_dgo? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_dgo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_dgo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_dgo.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_dgo.tar.gz ) l10n_dsb? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_dsb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_dsb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_dsb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_dsb.tar.gz ) l10n_fa? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_fa.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fa.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fa.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fa.tar.gz ) l10n_fur? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_fur.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fur.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fur.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fur.tar.gz ) l10n_fy? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_fy.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fy.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fy.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_fy.tar.gz ) l10n_ga? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ga.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ga.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ga.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ga.tar.gz ) l10n_gd? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_gd.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gd.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gd.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gd.tar.gz ) l10n_gug? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_gug.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gug.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gug.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_gug.tar.gz ) l10n_hsb? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_hsb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hsb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hsb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_hsb.tar.gz ) l10n_kab? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_kab.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kab.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kab.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kab.tar.gz ) l10n_kk? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_kk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kk.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kk.tar.gz ) l10n_kmr-Latn? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kmr-Latn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kmr-Latn.tar.gz ) l10n_kn? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_kn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kn.tar.gz ) l10n_kok? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_kok.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kok.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kok.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_kok.tar.gz ) l10n_ks? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ks.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ks.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ks.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ks.tar.gz ) l10n_lb? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_lb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lb.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_lb.tar.gz ) l10n_mai? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_mai.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mai.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mai.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mai.tar.gz ) l10n_ml? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ml.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ml.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ml.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ml.tar.gz ) l10n_mn? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_mn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mn.tar.gz ) l10n_mni? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_mni.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mni.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mni.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mni.tar.gz ) l10n_mr? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_mr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_mr.tar.gz ) l10n_my? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_my.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_my.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_my.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_my.tar.gz ) l10n_nr? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_nr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nr.tar.gz ) l10n_nso? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_nso.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nso.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nso.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_nso.tar.gz ) l10n_oc? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_oc.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_oc.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_oc.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_oc.tar.gz ) l10n_or? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_or.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_or.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_or.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_or.tar.gz ) l10n_pa? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_pa-IN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pa-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pa-IN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_pa-IN.tar.gz ) l10n_rw? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_rw.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_rw.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_rw.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_rw.tar.gz ) l10n_sa? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_sa-IN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sa-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sa-IN.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sa-IN.tar.gz ) l10n_sat? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_sat.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sat.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sat.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sat.tar.gz ) l10n_sd? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_sd.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sd.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sd.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sd.tar.gz ) l10n_sr-Latn? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sr-Latn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sr-Latn.tar.gz ) l10n_sr? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_sr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sr.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sr.tar.gz ) l10n_ss? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ss.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ss.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ss.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ss.tar.gz ) l10n_st? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_st.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_st.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_st.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_st.tar.gz ) l10n_sw-TZ? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sw-TZ.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_sw-TZ.tar.gz ) l10n_szl? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_szl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_szl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_szl.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_szl.tar.gz ) l10n_te? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_te.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_te.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_te.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_te.tar.gz ) l10n_th? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_th.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_th.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_th.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_th.tar.gz ) l10n_tn? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_tn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tn.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tn.tar.gz ) l10n_ts? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ts.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ts.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ts.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ts.tar.gz ) l10n_tt? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_tt.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tt.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tt.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_tt.tar.gz ) l10n_uz? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_uz.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_uz.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_uz.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_uz.tar.gz ) l10n_ve? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_ve.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ve.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ve.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_ve.tar.gz ) l10n_vec? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_vec.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_vec.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_vec.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_vec.tar.gz ) l10n_xh? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_xh.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_xh.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_xh.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_xh.tar.gz ) l10n_zu? ( https://download.documentfoundation.org/libreoffice/stable/7.2.6/rpm/x86_64/LibreOffice_7.2.6_Linux_x86-64_rpm_langpack_zu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_zu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.2.6/rpm/x86_64/LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_zu.tar.gz -> LibreOffice_7.2.6.2_Linux_x86-64_rpm_langpack_zu.tar.gz ) _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 rpm f73e907469f65e52192f110dec72dce0 -_md5_=18e17b1c8cdd40e6b07305bf9f0ed82e +_md5_=7336e81a7eda823d016f656db60c5ae0 diff --git a/metadata/md5-cache/app-office/magicpoint-1.13a_p20121015-r2 b/metadata/md5-cache/app-office/magicpoint-1.13a_p20121015-r2 index b52710e788fc..5a66309df3b8 100644 --- a/metadata/md5-cache/app-office/magicpoint-1.13a_p20121015-r2 +++ b/metadata/md5-cache/app-office/magicpoint-1.13a_p20121015-r2 @@ -11,5 +11,5 @@ RDEPEND=x11-libs/libICE x11-libs/libSM x11-libs/libXmu x11-libs/libXrender emacs REQUIRED_USE=imlib? ( !gif !png ) SLOT=0 SRC_URI=ftp://sh.wide.ad.jp/WIDE/free-ware/mgp-snap/mgp-snap-20121015.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=08fd46f322666d5eb8a697a133f26bba diff --git a/metadata/md5-cache/app-portage/Manifest.gz b/metadata/md5-cache/app-portage/Manifest.gz index 44b4b8b964f0..a64ae29b991a 100644 Binary files a/metadata/md5-cache/app-portage/Manifest.gz and b/metadata/md5-cache/app-portage/Manifest.gz differ diff --git a/metadata/md5-cache/app-portage/eix-0.36.0 b/metadata/md5-cache/app-portage/eix-0.36.0 deleted file mode 100644 index 80817f4ed2e0..000000000000 --- a/metadata/md5-cache/app-portage/eix-0.36.0 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=app-arch/xz-utils nls? ( sys-devel/gettext ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 -DEFINED_PHASES=configure install postinst postrm prepare setup -DEPEND=nls? ( virtual/libintl ) sqlite? ( >=dev-db/sqlite-3:= ) -DESCRIPTION=Search and query ebuilds -EAPI=7 -HOMEPAGE=https://github.com/vaeth/eix/ -IUSE=debug doc nls sqlite -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=GPL-2 -RDEPEND=nls? ( virtual/libintl ) sqlite? ( >=dev-db/sqlite-3:= ) >=app-shells/push-2.0-r1 >=app-shells/quoter-3.0_p2-r1 virtual/tmpfiles -SLOT=0 -SRC_URI=https://github.com/vaeth/eix/releases/download/v0.36.0/eix-0.36.0.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=8933a6d5eab5182e97a0ab8876afc715 diff --git a/metadata/md5-cache/app-portage/eix-0.36.1 b/metadata/md5-cache/app-portage/eix-0.36.1 index f643c9ac7b8c..e59edd13d846 100644 --- a/metadata/md5-cache/app-portage/eix-0.36.1 +++ b/metadata/md5-cache/app-portage/eix-0.36.1 @@ -5,10 +5,10 @@ DESCRIPTION=Search and query ebuilds EAPI=7 HOMEPAGE=https://github.com/vaeth/eix/ IUSE=debug doc nls sqlite -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 +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=GPL-2 RDEPEND=nls? ( virtual/libintl ) sqlite? ( >=dev-db/sqlite-3:= ) >=app-shells/push-2.0-r1 >=app-shells/quoter-3.0_p2-r1 virtual/tmpfiles SLOT=0 SRC_URI=https://github.com/vaeth/eix/releases/download/v0.36.1/eix-0.36.1.tar.xz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=9ab94e4b0952cf64e435bd2983fd5177 +_md5_=5d47d8fca4e806336a4277fe7ba77c9e diff --git a/metadata/md5-cache/app-text/Manifest.gz b/metadata/md5-cache/app-text/Manifest.gz index 50c4c8fe9a77..8010d24bb6df 100644 Binary files a/metadata/md5-cache/app-text/Manifest.gz and b/metadata/md5-cache/app-text/Manifest.gz differ diff --git a/metadata/md5-cache/app-text/a2ps-4.14-r6 b/metadata/md5-cache/app-text/a2ps-4.14-r6 index 65fc279b88ed..cff359952e8d 100644 --- a/metadata/md5-cache/app-text/a2ps-4.14-r6 +++ b/metadata/md5-cache/app-text/a2ps-4.14-r6 @@ -10,5 +10,5 @@ RDEPEND=app-text/ghostscript-gpl app-text/libpaper >=app-text/psutils-1.17 app-t RESTRICT=test SLOT=0 SRC_URI=mirror://gnu/a2ps/a2ps-4.14.tar.gz cjk? ( mirror://gentoo/a2ps-4.14-ja_nls.patch.gz ) -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=2894260d0887ecb08afd025efd22936d diff --git a/metadata/md5-cache/app-text/enchant-1.6.1-r2 b/metadata/md5-cache/app-text/enchant-1.6.1-r2 new file mode 100644 index 000000000000..afb59b966a97 --- /dev/null +++ b/metadata/md5-cache/app-text/enchant-1.6.1-r2 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=configure install prepare +DEPEND=>=dev-libs/glib-2.6:2 aspell? ( app-text/aspell ) hunspell? ( >=app-text/hunspell-1.2.1:0= ) test? ( >=dev-libs/unittest++-2.0.0-r2 ) +DESCRIPTION=Spellchecker wrapping library +EAPI=8 +HOMEPAGE=https://abiword.github.io/enchant/ +IUSE=aspell +hunspell test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris +LICENSE=LGPL-2.1+ +RDEPEND=>=dev-libs/glib-2.6:2 aspell? ( app-text/aspell ) hunspell? ( >=app-text/hunspell-1.2.1:0= ) !=dev-libs/glib-2.6:2 aspell? ( app-text/aspell ) hunspell? ( >=app-text/hunspell-1.2.1:0= ) nuspell? ( >=app-text/nuspell-5.1.0:0= ) voikko? ( dev-libs/libvoikko ) test? ( >=dev-libs/unittest++-2.0.0-r2 ) +DESCRIPTION=Spellchecker wrapping library +EAPI=8 +HOMEPAGE=https://abiword.github.io/enchant/ +IUSE=aspell +hunspell nuspell test voikko +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris +LICENSE=LGPL-2.1+ +RDEPEND=>=dev-libs/glib-2.6:2 aspell? ( app-text/aspell ) hunspell? ( >=app-text/hunspell-1.2.1:0= ) nuspell? ( >=app-text/nuspell-5.1.0:0= ) voikko? ( dev-libs/libvoikko ) !=dev-util/gi-docgen-2021.1 app-text/docbook-xml-dtd:4.3 ) dev-libs/appstream-glib dev-util/gdbus-codegen dev-util/glib-utils dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=dev-libs/atk >=dev-libs/glib-2.44.0:2 >=gui-libs/libhandy-1.5.0:1= >=dev-libs/libxml2-2.5:2 sys-libs/zlib:= >=x11-libs/gdk-pixbuf-2.40:2 >=x11-libs/gtk+-3.22.0:3[cups?,introspection?] gnome-base/gsettings-desktop-schemas >=x11-libs/cairo-1.10:= >=app-text/poppler-22.02.0[cairo] >=app-arch/libarchive-3.6.0 djvu? ( >=app-text/djvu-3.5.22:= ) dvi? ( >=app-text/libspectre-0.2:= dev-libs/kpathsea:= ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 ) gnome? ( gnome-base/gnome-desktop:3= ) gnome-keyring? ( >=app-crypt/libsecret-0.5 ) introspection? ( >=dev-libs/gobject-introspection-1:= ) nautilus? ( >=gnome-base/nautilus-3.28.0 ) postscript? ( >=app-text/libspectre-0.2:= ) spell? ( >=app-text/gspell-1.6.0:= ) tiff? ( >=media-libs/tiff-4.0:0= ) xps? ( >=app-text/libgxps-0.2.1:= ) +DESCRIPTION=Simple document viewer for GNOME +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Evince +IUSE=cups djvu dvi gstreamer gnome gnome-keyring gtk-doc +introspection nautilus postscript spell tiff xps +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris +LICENSE=GPL-2+ CC-BY-SA-3.0 +RDEPEND=dev-libs/atk >=dev-libs/glib-2.44.0:2 >=gui-libs/libhandy-1.5.0:1= >=dev-libs/libxml2-2.5:2 sys-libs/zlib:= >=x11-libs/gdk-pixbuf-2.40:2 >=x11-libs/gtk+-3.22.0:3[cups?,introspection?] gnome-base/gsettings-desktop-schemas >=x11-libs/cairo-1.10:= >=app-text/poppler-22.02.0[cairo] >=app-arch/libarchive-3.6.0 djvu? ( >=app-text/djvu-3.5.22:= ) dvi? ( >=app-text/libspectre-0.2:= dev-libs/kpathsea:= ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 ) gnome? ( gnome-base/gnome-desktop:3= ) gnome-keyring? ( >=app-crypt/libsecret-0.5 ) introspection? ( >=dev-libs/gobject-introspection-1:= ) nautilus? ( >=gnome-base/nautilus-3.28.0 ) postscript? ( >=app-text/libspectre-0.2:= ) spell? ( >=app-text/gspell-1.6.0:= ) tiff? ( >=media-libs/tiff-4.0:0= ) xps? ( >=app-text/libgxps-0.2.1:= ) gnome-base/gvfs gnome-base/librsvg || ( >=x11-themes/adwaita-icon-theme-2.17.1 >=x11-themes/hicolor-icon-theme-0.10 ) +SLOT=0/evd3.4-evv3.3 +SRC_URI=mirror://gnome/sources/evince/42/evince-42.2.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=ba456b5a0beb9f935c45d906792685f1 diff --git a/metadata/md5-cache/app-text/htmltidy-5.8.0-r1 b/metadata/md5-cache/app-text/htmltidy-5.8.0-r1 index 44aa42ecfe1f..b9837900d1de 100644 --- a/metadata/md5-cache/app-text/htmltidy-5.8.0-r1 +++ b/metadata/md5-cache/app-text/htmltidy-5.8.0-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0/58 SRC_URI=https://github.com/htacg/tidy-html5/archive/refs/tags/5.8.0.tar.gz -> htmltidy-5.8.0.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=fc7797531d448f28b627e20575abd905 diff --git a/metadata/md5-cache/app-text/hyperestraier-1.4.13-r1 b/metadata/md5-cache/app-text/hyperestraier-1.4.13-r1 index 01e4b4623611..3259969b88cc 100644 --- a/metadata/md5-cache/app-text/hyperestraier-1.4.13-r1 +++ b/metadata/md5-cache/app-text/hyperestraier-1.4.13-r1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-db/qdbm bzip2? ( app-arch/bzip2 ) java? ( >=virtual/jre-1.8:* ) lzo? ( dev-libs/lzo ) mecab? ( app-text/mecab ) perl? ( dev-lang/perl ) ruby? ( ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ) zlib? ( sys-libs/zlib ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=https://fallabs.com/hyperestraier/hyperestraier-1.4.13.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b perl-functions fea344a91ebf37efadf172c6a3de5a72 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b perl-functions fea344a91ebf37efadf172c6a3de5a72 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=674e71f5d31b366857fe94fe62681378 diff --git a/metadata/md5-cache/app-text/kramdown-rfc-1.6.5 b/metadata/md5-cache/app-text/kramdown-rfc-1.6.5 index 75607dc32d05..b7fc4c923337 100644 --- a/metadata/md5-cache/app-text/kramdown-rfc-1.6.5 +++ b/metadata/md5-cache/app-text/kramdown-rfc-1.6.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/kramdown-rfc-1.6.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b174daa83cdea55f4b77ba82ec980ec2 diff --git a/metadata/md5-cache/app-text/mdbook-0.4.17 b/metadata/md5-cache/app-text/mdbook-0.4.17 deleted file mode 100644 index 15957802f9aa..000000000000 --- a/metadata/md5-cache/app-text/mdbook-0.4.17 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=>=virtual/rust-1.53 -DEFINED_PHASES=compile configure install test unpack -DESCRIPTION=Create a book from markdown files -EAPI=8 -HOMEPAGE=https://rust-lang.github.io/mdBook/ -IUSE=doc debug -KEYWORDS=~amd64 ~arm64 ~x86 -LICENSE=Apache-2.0 BSD CC-BY-4.0 CC0-1.0 ISC MIT MPL-2.0 OFL-1.1 -SLOT=0 -SRC_URI=https://github.com/rust-lang/mdBook/archive/refs/tags/v0.4.17.tar.gz -> mdbook-0.4.17.tar.gz https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/ammonia/3.1.2/download -> ammonia-3.1.2.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/anyhow/1.0.43/download -> anyhow-1.0.43.crate https://crates.io/api/v1/crates/assert_cmd/1.0.7/download -> assert_cmd-1.0.7.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/base64/0.13.0/download -> base64-0.13.0.crate https://crates.io/api/v1/crates/bit-set/0.5.2/download -> bit-set-0.5.2.crate https://crates.io/api/v1/crates/bit-vec/0.6.3/download -> bit-vec-0.6.3.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/block-buffer/0.7.3/download -> block-buffer-0.7.3.crate https://crates.io/api/v1/crates/block-buffer/0.9.0/download -> block-buffer-0.9.0.crate https://crates.io/api/v1/crates/block-padding/0.1.5/download -> block-padding-0.1.5.crate https://crates.io/api/v1/crates/bstr/0.2.17/download -> bstr-0.2.17.crate https://crates.io/api/v1/crates/byte-tools/0.3.1/download -> byte-tools-0.3.1.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes/1.0.1/download -> bytes-1.0.1.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/clap/3.0.10/download -> clap-3.0.10.crate https://crates.io/api/v1/crates/clap_complete/3.0.4/download -> clap_complete-3.0.4.crate https://crates.io/api/v1/crates/cpufeatures/0.1.5/download -> cpufeatures-0.1.5.crate https://crates.io/api/v1/crates/ctor/0.1.20/download -> ctor-0.1.20.crate https://crates.io/api/v1/crates/difference/2.0.0/download -> difference-2.0.0.crate https://crates.io/api/v1/crates/difflib/0.4.0/download -> difflib-0.4.0.crate https://crates.io/api/v1/crates/digest/0.8.1/download -> digest-0.8.1.crate https://crates.io/api/v1/crates/digest/0.9.0/download -> digest-0.9.0.crate https://crates.io/api/v1/crates/doc-comment/0.3.3/download -> doc-comment-0.3.3.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/elasticlunr-rs/2.3.13/download -> elasticlunr-rs-2.3.13.crate https://crates.io/api/v1/crates/env_logger/0.7.1/download -> env_logger-0.7.1.crate https://crates.io/api/v1/crates/fake-simd/0.1.2/download -> fake-simd-0.1.2.crate https://crates.io/api/v1/crates/filetime/0.2.15/download -> filetime-0.2.15.crate https://crates.io/api/v1/crates/float-cmp/0.9.0/download -> float-cmp-0.9.0.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.crate https://crates.io/api/v1/crates/form_urlencoded/1.0.1/download -> form_urlencoded-1.0.1.crate https://crates.io/api/v1/crates/fsevent/0.4.0/download -> fsevent-0.4.0.crate https://crates.io/api/v1/crates/fsevent-sys/2.0.1/download -> fsevent-sys-2.0.1.crate https://crates.io/api/v1/crates/fuchsia-zircon/0.3.3/download -> fuchsia-zircon-0.3.3.crate https://crates.io/api/v1/crates/fuchsia-zircon-sys/0.3.3/download -> fuchsia-zircon-sys-0.3.3.crate https://crates.io/api/v1/crates/futf/0.1.4/download -> futf-0.1.4.crate https://crates.io/api/v1/crates/futures/0.3.16/download -> futures-0.3.16.crate https://crates.io/api/v1/crates/futures-channel/0.3.16/download -> futures-channel-0.3.16.crate https://crates.io/api/v1/crates/futures-core/0.3.16/download -> futures-core-0.3.16.crate https://crates.io/api/v1/crates/futures-io/0.3.16/download -> futures-io-0.3.16.crate https://crates.io/api/v1/crates/futures-macro/0.3.16/download -> futures-macro-0.3.16.crate https://crates.io/api/v1/crates/futures-sink/0.3.16/download -> futures-sink-0.3.16.crate https://crates.io/api/v1/crates/futures-task/0.3.16/download -> futures-task-0.3.16.crate https://crates.io/api/v1/crates/futures-util/0.3.16/download -> futures-util-0.3.16.crate https://crates.io/api/v1/crates/generic-array/0.12.4/download -> generic-array-0.12.4.crate https://crates.io/api/v1/crates/generic-array/0.14.4/download -> generic-array-0.14.4.crate https://crates.io/api/v1/crates/getrandom/0.1.16/download -> getrandom-0.1.16.crate https://crates.io/api/v1/crates/getrandom/0.2.3/download -> getrandom-0.2.3.crate https://crates.io/api/v1/crates/gitignore/1.0.7/download -> gitignore-1.0.7.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.crate https://crates.io/api/v1/crates/h2/0.3.4/download -> h2-0.3.4.crate https://crates.io/api/v1/crates/handlebars/4.1.2/download -> handlebars-4.1.2.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.crate https://crates.io/api/v1/crates/headers/0.3.4/download -> headers-0.3.4.crate https://crates.io/api/v1/crates/headers-core/0.2.0/download -> headers-core-0.2.0.crate https://crates.io/api/v1/crates/heck/0.3.3/download -> heck-0.3.3.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/html5ever/0.25.1/download -> html5ever-0.25.1.crate https://crates.io/api/v1/crates/http/0.2.4/download -> http-0.2.4.crate https://crates.io/api/v1/crates/http-body/0.4.3/download -> http-body-0.4.3.crate https://crates.io/api/v1/crates/httparse/1.5.1/download -> httparse-1.5.1.crate https://crates.io/api/v1/crates/httpdate/1.0.1/download -> httpdate-1.0.1.crate https://crates.io/api/v1/crates/humantime/1.3.0/download -> humantime-1.3.0.crate https://crates.io/api/v1/crates/hyper/0.14.11/download -> hyper-0.14.11.crate https://crates.io/api/v1/crates/idna/0.2.3/download -> idna-0.2.3.crate https://crates.io/api/v1/crates/indexmap/1.7.0/download -> indexmap-1.7.0.crate https://crates.io/api/v1/crates/inotify/0.7.1/download -> inotify-0.7.1.crate https://crates.io/api/v1/crates/inotify-sys/0.1.5/download -> inotify-sys-0.1.5.crate https://crates.io/api/v1/crates/input_buffer/0.4.0/download -> input_buffer-0.4.0.crate https://crates.io/api/v1/crates/iovec/0.1.4/download -> iovec-0.1.4.crate https://crates.io/api/v1/crates/itertools/0.10.1/download -> itertools-0.10.1.crate https://crates.io/api/v1/crates/itoa/0.4.8/download -> itoa-0.4.8.crate https://crates.io/api/v1/crates/kernel32-sys/0.2.2/download -> kernel32-sys-0.2.2.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.crate https://crates.io/api/v1/crates/libc/0.2.100/download -> libc-0.2.100.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/mac/0.1.1/download -> mac-0.1.1.crate https://crates.io/api/v1/crates/maplit/1.0.2/download -> maplit-1.0.2.crate https://crates.io/api/v1/crates/markup5ever/0.10.1/download -> markup5ever-0.10.1.crate https://crates.io/api/v1/crates/markup5ever_rcdom/0.1.0/download -> markup5ever_rcdom-0.1.0.crate https://crates.io/api/v1/crates/matches/0.1.9/download -> matches-0.1.9.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/mime/0.3.16/download -> mime-0.3.16.crate https://crates.io/api/v1/crates/mime_guess/2.0.3/download -> mime_guess-2.0.3.crate https://crates.io/api/v1/crates/mio/0.6.23/download -> mio-0.6.23.crate https://crates.io/api/v1/crates/mio/0.7.13/download -> mio-0.7.13.crate https://crates.io/api/v1/crates/mio-extras/2.0.6/download -> mio-extras-2.0.6.crate https://crates.io/api/v1/crates/miow/0.2.2/download -> miow-0.2.2.crate https://crates.io/api/v1/crates/miow/0.3.7/download -> miow-0.3.7.crate https://crates.io/api/v1/crates/net2/0.2.37/download -> net2-0.2.37.crate https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download -> new_debug_unreachable-1.0.4.crate https://crates.io/api/v1/crates/normalize-line-endings/0.3.0/download -> normalize-line-endings-0.3.0.crate https://crates.io/api/v1/crates/notify/4.0.17/download -> notify-4.0.17.crate https://crates.io/api/v1/crates/ntapi/0.3.6/download -> ntapi-0.3.6.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/opaque-debug/0.2.3/download -> opaque-debug-0.2.3.crate https://crates.io/api/v1/crates/opaque-debug/0.3.0/download -> opaque-debug-0.3.0.crate https://crates.io/api/v1/crates/opener/0.5.0/download -> opener-0.5.0.crate https://crates.io/api/v1/crates/os_str_bytes/6.0.0/download -> os_str_bytes-6.0.0.crate https://crates.io/api/v1/crates/output_vt100/0.1.2/download -> output_vt100-0.1.2.crate https://crates.io/api/v1/crates/percent-encoding/2.1.0/download -> percent-encoding-2.1.0.crate https://crates.io/api/v1/crates/pest/2.1.3/download -> pest-2.1.3.crate https://crates.io/api/v1/crates/pest_derive/2.1.0/download -> pest_derive-2.1.0.crate https://crates.io/api/v1/crates/pest_generator/2.1.3/download -> pest_generator-2.1.3.crate https://crates.io/api/v1/crates/pest_meta/2.1.3/download -> pest_meta-2.1.3.crate https://crates.io/api/v1/crates/phf/0.8.0/download -> phf-0.8.0.crate https://crates.io/api/v1/crates/phf_codegen/0.8.0/download -> phf_codegen-0.8.0.crate https://crates.io/api/v1/crates/phf_generator/0.8.0/download -> phf_generator-0.8.0.crate https://crates.io/api/v1/crates/phf_shared/0.8.0/download -> phf_shared-0.8.0.crate https://crates.io/api/v1/crates/pin-project/1.0.8/download -> pin-project-1.0.8.crate https://crates.io/api/v1/crates/pin-project-internal/1.0.8/download -> pin-project-internal-1.0.8.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.7/download -> pin-project-lite-0.2.7.crate https://crates.io/api/v1/crates/pin-utils/0.1.0/download -> pin-utils-0.1.0.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download -> ppv-lite86-0.2.10.crate https://crates.io/api/v1/crates/precomputed-hash/0.1.1/download -> precomputed-hash-0.1.1.crate https://crates.io/api/v1/crates/predicates/2.0.1/download -> predicates-2.0.1.crate https://crates.io/api/v1/crates/predicates-core/1.0.2/download -> predicates-core-1.0.2.crate https://crates.io/api/v1/crates/predicates-tree/1.0.2/download -> predicates-tree-1.0.2.crate https://crates.io/api/v1/crates/pretty_assertions/0.6.1/download -> pretty_assertions-0.6.1.crate https://crates.io/api/v1/crates/proc-macro-hack/0.5.19/download -> proc-macro-hack-0.5.19.crate https://crates.io/api/v1/crates/proc-macro-nested/0.1.7/download -> proc-macro-nested-0.1.7.crate https://crates.io/api/v1/crates/proc-macro2/1.0.28/download -> proc-macro2-1.0.28.crate https://crates.io/api/v1/crates/pulldown-cmark/0.9.1/download -> pulldown-cmark-0.9.1.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.crate https://crates.io/api/v1/crates/quick-error/2.0.1/download -> quick-error-2.0.1.crate https://crates.io/api/v1/crates/quote/1.0.9/download -> quote-1.0.9.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand/0.8.4/download -> rand-0.8.4.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_chacha/0.3.1/download -> rand_chacha-0.3.1.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_core/0.6.3/download -> rand_core-0.6.3.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_hc/0.3.1/download -> rand_hc-0.3.1.crate https://crates.io/api/v1/crates/rand_pcg/0.2.1/download -> rand_pcg-0.2.1.crate https://crates.io/api/v1/crates/redox_syscall/0.2.10/download -> redox_syscall-0.2.10.crate https://crates.io/api/v1/crates/regex/1.5.5/download -> regex-1.5.5.crate https://crates.io/api/v1/crates/regex-automata/0.1.10/download -> regex-automata-0.1.10.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/ryu/1.0.5/download -> ryu-1.0.5.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/scoped-tls/1.0.0/download -> scoped-tls-1.0.0.crate https://crates.io/api/v1/crates/select/0.5.0/download -> select-0.5.0.crate https://crates.io/api/v1/crates/semver/1.0.4/download -> semver-1.0.4.crate https://crates.io/api/v1/crates/serde/1.0.129/download -> serde-1.0.129.crate https://crates.io/api/v1/crates/serde_derive/1.0.129/download -> serde_derive-1.0.129.crate https://crates.io/api/v1/crates/serde_json/1.0.66/download -> serde_json-1.0.66.crate https://crates.io/api/v1/crates/serde_urlencoded/0.7.0/download -> serde_urlencoded-0.7.0.crate https://crates.io/api/v1/crates/sha-1/0.8.2/download -> sha-1-0.8.2.crate https://crates.io/api/v1/crates/sha-1/0.9.7/download -> sha-1-0.9.7.crate https://crates.io/api/v1/crates/shlex/1.0.0/download -> shlex-1.0.0.crate https://crates.io/api/v1/crates/siphasher/0.3.6/download -> siphasher-0.3.6.crate https://crates.io/api/v1/crates/slab/0.4.4/download -> slab-0.4.4.crate https://crates.io/api/v1/crates/socket2/0.4.1/download -> socket2-0.4.1.crate https://crates.io/api/v1/crates/string_cache/0.8.1/download -> string_cache-0.8.1.crate https://crates.io/api/v1/crates/string_cache_codegen/0.5.1/download -> string_cache_codegen-0.5.1.crate https://crates.io/api/v1/crates/strsim/0.10.0/download -> strsim-0.10.0.crate https://crates.io/api/v1/crates/strum/0.21.0/download -> strum-0.21.0.crate https://crates.io/api/v1/crates/strum_macros/0.21.1/download -> strum_macros-0.21.1.crate https://crates.io/api/v1/crates/syn/1.0.75/download -> syn-1.0.75.crate https://crates.io/api/v1/crates/tempfile/3.2.0/download -> tempfile-3.2.0.crate https://crates.io/api/v1/crates/tendril/0.4.2/download -> tendril-0.4.2.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/textwrap/0.14.2/download -> textwrap-0.14.2.crate https://crates.io/api/v1/crates/time/0.1.43/download -> time-0.1.43.crate https://crates.io/api/v1/crates/tinyvec/1.3.1/download -> tinyvec-1.3.1.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/tokio/1.10.0/download -> tokio-1.10.0.crate https://crates.io/api/v1/crates/tokio-macros/1.3.0/download -> tokio-macros-1.3.0.crate https://crates.io/api/v1/crates/tokio-stream/0.1.7/download -> tokio-stream-0.1.7.crate https://crates.io/api/v1/crates/tokio-tungstenite/0.13.0/download -> tokio-tungstenite-0.13.0.crate https://crates.io/api/v1/crates/tokio-util/0.6.7/download -> tokio-util-0.6.7.crate https://crates.io/api/v1/crates/toml/0.5.8/download -> toml-0.5.8.crate https://crates.io/api/v1/crates/topological-sort/0.1.0/download -> topological-sort-0.1.0.crate https://crates.io/api/v1/crates/tower-service/0.3.1/download -> tower-service-0.3.1.crate https://crates.io/api/v1/crates/tracing/0.1.26/download -> tracing-0.1.26.crate https://crates.io/api/v1/crates/tracing-core/0.1.19/download -> tracing-core-0.1.19.crate https://crates.io/api/v1/crates/treeline/0.1.0/download -> treeline-0.1.0.crate https://crates.io/api/v1/crates/try-lock/0.2.3/download -> try-lock-0.2.3.crate https://crates.io/api/v1/crates/tungstenite/0.12.0/download -> tungstenite-0.12.0.crate https://crates.io/api/v1/crates/typenum/1.13.0/download -> typenum-1.13.0.crate https://crates.io/api/v1/crates/ucd-trie/0.1.3/download -> ucd-trie-0.1.3.crate https://crates.io/api/v1/crates/unicase/2.6.0/download -> unicase-2.6.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.6/download -> unicode-bidi-0.3.6.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.19/download -> unicode-normalization-0.1.19.crate https://crates.io/api/v1/crates/unicode-segmentation/1.8.0/download -> unicode-segmentation-1.8.0.crate https://crates.io/api/v1/crates/unicode-xid/0.2.2/download -> unicode-xid-0.2.2.crate https://crates.io/api/v1/crates/url/2.2.2/download -> url-2.2.2.crate https://crates.io/api/v1/crates/utf-8/0.7.6/download -> utf-8-0.7.6.crate https://crates.io/api/v1/crates/version_check/0.9.3/download -> version_check-0.9.3.crate https://crates.io/api/v1/crates/wait-timeout/0.2.0/download -> wait-timeout-0.2.0.crate https://crates.io/api/v1/crates/walkdir/2.3.2/download -> walkdir-2.3.2.crate https://crates.io/api/v1/crates/want/0.3.0/download -> want-0.3.0.crate https://crates.io/api/v1/crates/warp/0.3.1/download -> warp-0.3.1.crate https://crates.io/api/v1/crates/wasi/0.10.2+wasi-snapshot-preview1/download -> wasi-0.10.2+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/winapi/0.2.8/download -> winapi-0.2.8.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-build/0.1.1/download -> winapi-build-0.1.1.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/ws2_32-sys/0.2.1/download -> ws2_32-sys-0.2.1.crate https://crates.io/api/v1/crates/xml5ever/0.16.1/download -> xml5ever-0.16.1.crate -_eclasses_=cargo 52a92ed3815080c5f2caac1905687b1c multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=5e1fdcdb9505038a31df2397b8bdea70 diff --git a/metadata/md5-cache/app-text/namazu-2.0.21 b/metadata/md5-cache/app-text/namazu-2.0.21 index 8c170dd51177..e572aceac597 100644 --- a/metadata/md5-cache/app-text/namazu-2.0.21 +++ b/metadata/md5-cache/app-text/namazu-2.0.21 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=dev-perl/File-MMagic emacs? ( >=app-editors/emacs-23.1:* ) l10n_ja? ( app-i18n/nkf || ( dev-perl/Text-Kakasi app-i18n/kakasi app-text/chasen app-text/mecab ) ) nls? ( virtual/libintl ) tk? ( dev-lang/tk:0 www-client/lynx ) SLOT=0 SRC_URI=http://www.namazu.org/stable/namazu-2.0.21.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=193b2830769613e8d7a51d6636012396 diff --git a/metadata/md5-cache/app-text/namazu-2.0.22_pre8 b/metadata/md5-cache/app-text/namazu-2.0.22_pre8 index bf27efe9a14d..9ccfbe2cc6a7 100644 --- a/metadata/md5-cache/app-text/namazu-2.0.22_pre8 +++ b/metadata/md5-cache/app-text/namazu-2.0.22_pre8 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=dev-perl/File-MMagic emacs? ( >=app-editors/emacs-23.1:* ) l10n_ja? ( app-i18n/nkf || ( dev-perl/Text-Kakasi app-i18n/kakasi app-text/chasen app-text/mecab ) ) nls? ( virtual/libintl ) tk? ( dev-lang/tk:0 www-client/lynx ) SLOT=0 SRC_URI=http://www.namazu.org/test/namazu-2.0.22pre8.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c53fab88204cbfadb1354ea1927f7763 diff --git a/metadata/md5-cache/app-text/poppler-22.03.0 b/metadata/md5-cache/app-text/poppler-22.03.0 index 5d53d48f469d..6235127f4a9e 100644 --- a/metadata/md5-cache/app-text/poppler-22.03.0 +++ b/metadata/md5-cache/app-text/poppler-22.03.0 @@ -5,11 +5,11 @@ DESCRIPTION=PDF rendering library based on the xpdf-3.0 code base EAPI=8 HOMEPAGE=https://poppler.freedesktop.org/ IUSE=boost cairo cjk curl +cxx debug doc +introspection +jpeg +jpeg2k +lcms nss png qt5 tiff +utils -KEYWORDS=~alpha ~amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=media-libs/fontconfig media-libs/freetype sys-libs/zlib cairo? ( dev-libs/glib:2 x11-libs/cairo introspection? ( dev-libs/gobject-introspection:= ) ) curl? ( net-misc/curl ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.3.0-r1:2= ) lcms? ( media-libs/lcms:2 ) nss? ( >=dev-libs/nss-3.19:0 ) png? ( media-libs/libpng:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtxml:5 ) tiff? ( media-libs/tiff:0 ) cjk? ( app-text/poppler-data ) RESTRICT=test SLOT=0/119 SRC_URI=https://poppler.freedesktop.org/poppler-22.03.0.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=e3e28359538891e3a7484205887eb519 +_md5_=007bbc40f7a7f6b7175145316417917e diff --git a/metadata/md5-cache/app-text/ronn-0.7.3-r4 b/metadata/md5-cache/app-text/ronn-0.7.3-r4 index 865f11f45b31..affd7c535c36 100644 --- a/metadata/md5-cache/app-text/ronn-0.7.3-r4 +++ b/metadata/md5-cache/app-text/ronn-0.7.3-r4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ronn-0.7.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=233f5916ff605288afb558b43b1147c7 diff --git a/metadata/md5-cache/app-text/ronn-ng-0.9.1 b/metadata/md5-cache/app-text/ronn-ng-0.9.1 index 65d3ba25e9df..59b11562975a 100644 --- a/metadata/md5-cache/app-text/ronn-ng-0.9.1 +++ b/metadata/md5-cache/app-text/ronn-ng-0.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ronn-ng-0.9.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=71c113894fae9dc690fec32a82905fdc diff --git a/metadata/md5-cache/app-text/ronn-ng-0.9.1-r1 b/metadata/md5-cache/app-text/ronn-ng-0.9.1-r1 index aca569dae043..fe1baf35d39a 100644 --- a/metadata/md5-cache/app-text/ronn-ng-0.9.1-r1 +++ b/metadata/md5-cache/app-text/ronn-ng-0.9.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ronn-ng-0.9.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3c3ae57c3ca7646cc168f8ad5b6061e2 diff --git a/metadata/md5-cache/app-text/webgen-1.7.2 b/metadata/md5-cache/app-text/webgen-1.7.2 index e7da8770e815..f4db4d0de70f 100644 --- a/metadata/md5-cache/app-text/webgen-1.7.2 +++ b/metadata/md5-cache/app-text/webgen-1.7.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/webgen-1.7.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fa9ca4a8d5024df7eb8254a04f1986ae diff --git a/metadata/md5-cache/app-text/xdvik-22.87.03-r3 b/metadata/md5-cache/app-text/xdvik-22.87.03-r3 index d1ccb12e0a94..510632fde134 100644 --- a/metadata/md5-cache/app-text/xdvik-22.87.03-r3 +++ b/metadata/md5-cache/app-text/xdvik-22.87.03-r3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=media-libs/freetype-2.9.1-r2:2 x11-libs/libX11 x11-libs/libXi x11-libs/libXmu x11-libs/libXpm x11-libs/libXt emacs? ( >=app-editors/emacs-23.1:* ) motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( Xaw3d? ( x11-libs/libXaw3d ) !Xaw3d? ( x11-libs/libXaw ) ) ) dev-libs/kpathsea:= virtual/latex-base !=app-editors/v REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) SLOT=0 SRC_URI=https://github.com/wincent/command-t/archive/5.0.3.tar.gz -> command-t-5.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vim-doc e063cddf18e5d2f2cfb21388252579ec vim-plugin a7b5f19bc94a311ca1cf7127c8b84c41 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vim-doc e063cddf18e5d2f2cfb21388252579ec vim-plugin a7b5f19bc94a311ca1cf7127c8b84c41 _md5_=31081c81d39e742467c4372c3739ca6d diff --git a/metadata/md5-cache/app-xemacs/Manifest.gz b/metadata/md5-cache/app-xemacs/Manifest.gz index 7f0da90b8552..f640c3ee7b6b 100644 Binary files a/metadata/md5-cache/app-xemacs/Manifest.gz and b/metadata/md5-cache/app-xemacs/Manifest.gz differ diff --git a/metadata/md5-cache/app-xemacs/ocaml-0.10 b/metadata/md5-cache/app-xemacs/ocaml-0.10 index b4dc5864364e..8aba292a1ccf 100644 --- a/metadata/md5-cache/app-xemacs/ocaml-0.10 +++ b/metadata/md5-cache/app-xemacs/ocaml-0.10 @@ -2,10 +2,10 @@ DEFINED_PHASES=install unpack DESCRIPTION=Objective Caml editing support EAPI=6 HOMEPAGE=http://xemacs.org/ -KEYWORDS=~alpha amd64 arm64 ~hppa ppc ppc64 sparc x86 +KEYWORDS=~alpha amd64 arm64 ~hppa ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2+ RDEPEND=app-xemacs/xemacs-base app-xemacs/fsf-compat app-editors/xemacs SLOT=0 SRC_URI=http://ftp.xemacs.org/pub/xemacs/packages/ocaml-0.10-pkg.tar.gz _eclasses_=xemacs-packages cb4ff18a62915c943d86310c8df19d60 -_md5_=4377a5d894c5efffd92d8824d23b06d9 +_md5_=b159ea9b54eba40e6ad433a9e110053b diff --git a/metadata/md5-cache/dev-cpp/Manifest.gz b/metadata/md5-cache/dev-cpp/Manifest.gz index 8543da2a64bb..728841f0ea02 100644 Binary files a/metadata/md5-cache/dev-cpp/Manifest.gz and b/metadata/md5-cache/dev-cpp/Manifest.gz differ diff --git a/metadata/md5-cache/dev-cpp/atkmm-2.36.1 b/metadata/md5-cache/dev-cpp/atkmm-2.36.1 index 156df7bb1a97..609ed50a6b1b 100644 --- a/metadata/md5-cache/dev-cpp/atkmm-2.36.1 +++ b/metadata/md5-cache/dev-cpp/atkmm-2.36.1 @@ -5,10 +5,10 @@ DESCRIPTION=C++ interface for the ATK library EAPI=7 HOMEPAGE=https://www.gtkmm.org IUSE=doc 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 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris LICENSE=LGPL-2.1+ RDEPEND=>=dev-cpp/glibmm-2.68.0:2.68[doc?,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/atk-2.18.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dev-libs/libsigc++:3[doc?,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=2.36 SRC_URI=mirror://gnome/sources/atkmm/2.36/atkmm-2.36.1.tar.xz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 gnome.org 429073e99d7067d3462e875bf5c6e14a meson 2d8a51910bc57e004c37aa55c7d99ce4 meson-multilib 84c0d4019bf29be0d9d0a2d98fb8b0d9 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=f763be95cd7349589421498d273563c9 +_md5_=9016ba1b82ce857a88c6daee47f48f0b diff --git a/metadata/md5-cache/dev-cpp/cairomm-1.16.1 b/metadata/md5-cache/dev-cpp/cairomm-1.16.1 index e60b9e281455..4f64b9b9f01c 100644 --- a/metadata/md5-cache/dev-cpp/cairomm-1.16.1 +++ b/metadata/md5-cache/dev-cpp/cairomm-1.16.1 @@ -5,11 +5,11 @@ DESCRIPTION=C++ bindings for the Cairo vector graphics library EAPI=7 HOMEPAGE=https://cairographics.org/cairomm/ IUSE=doc 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 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris LICENSE=LGPL-2+ RDEPEND=dev-libs/libsigc++:3[doc?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/cairo-1.12.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] RESTRICT=!test? ( test ) SLOT=1.16 SRC_URI=https://www.cairographics.org/releases/cairomm-1.16.1.tar.xz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 meson 2d8a51910bc57e004c37aa55c7d99ce4 meson-multilib 84c0d4019bf29be0d9d0a2d98fb8b0d9 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=bdc615ee0db7d2bf59cbc16e18fb2cd4 +_md5_=128b6c2bbef946fc8899a54f1cad3742 diff --git a/metadata/md5-cache/dev-cpp/catch-2.13.8 b/metadata/md5-cache/dev-cpp/catch-2.13.8 index 1d775a8e99ce..2349095f5120 100644 --- a/metadata/md5-cache/dev-cpp/catch-2.13.8 +++ b/metadata/md5-cache/dev-cpp/catch-2.13.8 @@ -4,10 +4,10 @@ DESCRIPTION=Modern C++ header-only framework for unit-tests EAPI=8 HOMEPAGE=https://github.com/catchorg/Catch2 IUSE=test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/catchorg/Catch2/archive/v2.13.8.tar.gz -> Catch2-2.13.8.tar.gz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=06185e61cdf16d881f550319e6bf2ec7 +_md5_=9bd28a15e3d093ea6dbb16b8a72d4452 diff --git a/metadata/md5-cache/dev-cpp/ctemplate-2.4 b/metadata/md5-cache/dev-cpp/ctemplate-2.4 index 1c028599eca5..0fa592f80951 100644 --- a/metadata/md5-cache/dev-cpp/ctemplate-2.4 +++ b/metadata/md5-cache/dev-cpp/ctemplate-2.4 @@ -11,5 +11,5 @@ RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) vim-syntax? ( >=app-editors/vim-co RESTRICT=test SLOT=0 SRC_URI=https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.4.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=da41407b5e0b1c67bfe4cc12212cc504 diff --git a/metadata/md5-cache/dev-cpp/glibmm-2.72.0 b/metadata/md5-cache/dev-cpp/glibmm-2.72.0 index 016bc7849cec..3a3e1ea68145 100644 --- a/metadata/md5-cache/dev-cpp/glibmm-2.72.0 +++ b/metadata/md5-cache/dev-cpp/glibmm-2.72.0 @@ -5,11 +5,11 @@ DESCRIPTION=C++ interface for glib2 EAPI=8 HOMEPAGE=https://www.gtkmm.org IUSE=doc debug 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 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris LICENSE=LGPL-2.1+ RDEPEND=>=dev-libs/glib-2.71.2:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dev-libs/libsigc++:3[doc?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] RESTRICT=!test? ( test ) SLOT=2.68 SRC_URI=mirror://gnome/sources/glibmm/2.72/glibmm-2.72.0.tar.xz _eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson 2d8a51910bc57e004c37aa55c7d99ce4 meson-multilib 84c0d4019bf29be0d9d0a2d98fb8b0d9 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=608f2b3fe4f677285a76dda6abd410c2 +_md5_=6dad25a9b9dfd6492599dbbccdab98e4 diff --git a/metadata/md5-cache/dev-cpp/gtest-1.10.0_p20200702 b/metadata/md5-cache/dev-cpp/gtest-1.10.0_p20200702 deleted file mode 100644 index 045cd73bf43c..000000000000 --- a/metadata/md5-cache/dev-cpp/gtest-1.10.0_p20200702 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=test? ( || ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) ) dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare setup test -DESCRIPTION=Google C++ Testing Framework -EAPI=7 -HOMEPAGE=https://github.com/google/googletest -IUSE=doc examples test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=BSD -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/google/googletest/archive/aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e.tar.gz -> gtest-1.10.0_p20200702.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cmake-multilib 7f8d0fb6ae10906fe334997f977e838b eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=a2c0ceab094b2e494f864516e79dce3a diff --git a/metadata/md5-cache/dev-cpp/gtkmm-4.6.1 b/metadata/md5-cache/dev-cpp/gtkmm-4.6.1 index 718624ba4166..26917b3c8d11 100644 --- a/metadata/md5-cache/dev-cpp/gtkmm-4.6.1 +++ b/metadata/md5-cache/dev-cpp/gtkmm-4.6.1 @@ -5,11 +5,11 @@ DESCRIPTION=C++ interface for GTK+ EAPI=8 HOMEPAGE=https://www.gtkmm.org IUSE=doc test test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~x86-solaris LICENSE=LGPL-2.1+ RDEPEND=>=dev-cpp/glibmm-2.68.0:2.68[doc?] >=gui-libs/gtk-4.6.0:4 >=dev-cpp/cairomm-1.15.4:1.16[doc?] >=dev-cpp/pangomm-2.50.0:2.48[doc?] >=x11-libs/gdk-pixbuf-2.35.5:2 >=media-libs/libepoxy-1.2 RESTRICT=!test? ( test ) !test? ( test ) SLOT=4.0 SRC_URI=mirror://gnome/sources/gtkmm/4.6/gtkmm-4.6.1.tar.xz _eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 -_md5_=e0d93416684eb82ff457e2c001bae3e1 +_md5_=76ad941808bf3f1f3abd7e158db1b0d0 diff --git a/metadata/md5-cache/dev-cpp/pangomm-2.50.0 b/metadata/md5-cache/dev-cpp/pangomm-2.50.0 index 60717d001699..db31ef8d47de 100644 --- a/metadata/md5-cache/dev-cpp/pangomm-2.50.0 +++ b/metadata/md5-cache/dev-cpp/pangomm-2.50.0 @@ -5,10 +5,10 @@ DESCRIPTION=C++ interface for pango EAPI=7 HOMEPAGE=https://www.gtkmm.org IUSE=doc 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 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris LICENSE=LGPL-2.1+ RDEPEND=>=dev-cpp/cairomm-1.16.0:1.16[doc?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-cpp/glibmm-2.68.0:2.68[doc?,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/libsigc++-3:3[doc?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/pango-1.49.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=2.48 SRC_URI=mirror://gnome/sources/pangomm/2.50/pangomm-2.50.0.tar.xz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 gnome.org 429073e99d7067d3462e875bf5c6e14a meson 2d8a51910bc57e004c37aa55c7d99ce4 meson-multilib 84c0d4019bf29be0d9d0a2d98fb8b0d9 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=cba45108bf2f93add0800742ac31af55 +_md5_=fb97bf5c8d40eadb552e07635b04dccf diff --git a/metadata/md5-cache/dev-db/Manifest.gz b/metadata/md5-cache/dev-db/Manifest.gz index 4f7aa8d04555..fe939ab55258 100644 Binary files a/metadata/md5-cache/dev-db/Manifest.gz and b/metadata/md5-cache/dev-db/Manifest.gz differ diff --git a/metadata/md5-cache/dev-db/postgresql-14.2-r1 b/metadata/md5-cache/dev-db/postgresql-14.2-r1 index a077fd5fb747..ad0840543c91 100644 --- a/metadata/md5-cache/dev-db/postgresql-14.2-r1 +++ b/metadata/md5-cache/dev-db/postgresql-14.2-r1 @@ -5,11 +5,11 @@ DESCRIPTION=PostgreSQL RDBMS EAPI=7 HOMEPAGE=https://www.postgresql.org/ IUSE=debug doc icu kerberos ldap llvm lz4 nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=POSTGRESQL GPL-2 RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( sys-devel/llvm:= sys-devel/clang:= ) lz4? ( app-arch/lz4 ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) selinux? ( sec-policy/selinux-postgresql ) virtual/tmpfiles REQUIRED_USE=python? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) SLOT=14 SRC_URI=https://ftp.postgresql.org/pub/source/v14.2/postgresql-14.2.tar.bz2 _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b pam e44a1dd98f13e1ad76de01e919bde1f1 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=fa6b31c85d50a13c792f275062cfa33f +_md5_=23de4ee1cdef93f5314ee2af1716f0ba diff --git a/metadata/md5-cache/dev-db/qdbm-1.8.78-r3 b/metadata/md5-cache/dev-db/qdbm-1.8.78-r3 index 92dab4612efa..94dd82ae7528 100644 --- a/metadata/md5-cache/dev-db/qdbm-1.8.78-r3 +++ b/metadata/md5-cache/dev-db/qdbm-1.8.78-r3 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=bzip2? ( app-arch/bzip2 ) java? ( >=virtual/jre-1.8:* ) lzo? ( dev-libs/lzo ) perl? ( dev-lang/perl ) ruby? ( ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ) zlib? ( sys-libs/zlib ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=https://fallabs.com/qdbm/qdbm-1.8.78.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b perl-functions fea344a91ebf37efadf172c6a3de5a72 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b perl-functions fea344a91ebf37efadf172c6a3de5a72 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=488c93741f6d3fd5a265bb70ecaaed14 diff --git a/metadata/md5-cache/dev-db/sqlite-3.37.2 b/metadata/md5-cache/dev-db/sqlite-3.37.2 deleted file mode 100644 index 5976aee9b69e..000000000000 --- a/metadata/md5-cache/dev-db/sqlite-3.37.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=app-arch/unzip >=dev-lang/tcl-8.6:0 sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] icu? ( dev-libs/icu: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(-)?] ) readline? ( sys-libs/readline:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tcl? ( dev-lang/tcl: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(-)?] ) tools? ( dev-lang/tcl:0= ) test? ( >=dev-lang/tcl-8.6:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -DESCRIPTION=SQL database engine -EAPI=7 -HOMEPAGE=https://sqlite.org/ -IUSE=debug doc icu +readline secure-delete static-libs tcl test tools abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -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=public-domain -RDEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] icu? ( dev-libs/icu: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(-)?] ) readline? ( sys-libs/readline:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tcl? ( dev-lang/tcl: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(-)?] ) tools? ( dev-lang/tcl:0= ) -RESTRICT=!test? ( test ) -SLOT=3 -SRC_URI=https://sqlite.org/2022/sqlite-src-3370200.zip doc? ( https://sqlite.org/2022/sqlite-doc-3370200.zip ) -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=288010e03e40872cae25e425c6ea3c1a diff --git a/metadata/md5-cache/dev-db/sqlite-3.38.0 b/metadata/md5-cache/dev-db/sqlite-3.38.0 index f1cb65fcd944..8e9f48d0dc38 100644 --- a/metadata/md5-cache/dev-db/sqlite-3.38.0 +++ b/metadata/md5-cache/dev-db/sqlite-3.38.0 @@ -5,11 +5,11 @@ DESCRIPTION=SQL database engine EAPI=7 HOMEPAGE=https://sqlite.org/ IUSE=debug doc icu +readline secure-delete static-libs tcl test tools abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -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 +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=public-domain RDEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] icu? ( dev-libs/icu: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(-)?] ) readline? ( sys-libs/readline:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tcl? ( dev-lang/tcl: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(-)?] ) tools? ( dev-lang/tcl:0= ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://sqlite.org/2022/sqlite-src-3380000.zip doc? ( https://sqlite.org/2022/sqlite-doc-3380000.zip ) _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=919e6bb1ed770b23b763581bfe7bc835 +_md5_=5b51ba89f3dbd6b8d5ba3610c8749ff6 diff --git a/metadata/md5-cache/dev-db/sqlite-3.38.1 b/metadata/md5-cache/dev-db/sqlite-3.38.1 index 25612d83add9..bd55d8b39103 100644 --- a/metadata/md5-cache/dev-db/sqlite-3.38.1 +++ b/metadata/md5-cache/dev-db/sqlite-3.38.1 @@ -5,11 +5,11 @@ DESCRIPTION=SQL database engine EAPI=7 HOMEPAGE=https://sqlite.org/ IUSE=debug doc icu +readline secure-delete static-libs tcl test tools abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -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 +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=public-domain RDEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] icu? ( dev-libs/icu: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(-)?] ) readline? ( sys-libs/readline:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tcl? ( dev-lang/tcl: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(-)?] ) tools? ( dev-lang/tcl:0= ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://sqlite.org/2022/sqlite-src-3380100.zip doc? ( https://sqlite.org/2022/sqlite-doc-3380100.zip ) _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=9e92be3c29559c74718a2b458b118055 +_md5_=61b308cc4cb387c0f86e4f2ceaa48966 diff --git a/metadata/md5-cache/dev-java/Manifest.gz b/metadata/md5-cache/dev-java/Manifest.gz index 7ad9de489ed6..f5f3c268e017 100644 Binary files a/metadata/md5-cache/dev-java/Manifest.gz and b/metadata/md5-cache/dev-java/Manifest.gz differ diff --git a/metadata/md5-cache/dev-java/fop-2.7 b/metadata/md5-cache/dev-java/fop-2.7 index 600371d876ca..e18682db9517 100644 --- a/metadata/md5-cache/dev-java/fop-2.7 +++ b/metadata/md5-cache/dev-java/fop-2.7 @@ -9,6 +9,6 @@ LICENSE=Apache-2.0 RDEPEND=dev-java/batik:1.14 dev-java/commons-io:1 dev-java/fontbox:0 dev-java/qdox:1.12 dev-java/sun-jai-bin:0 dev-java/xmlgraphics-commons:2 >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) RESTRICT=!test? ( test ) SLOT=2.7 -SRC_URI=mirror://apache/xmlgraphics/fop/source/fop-2.7-src.tar.gz +SRC_URI=mirror://apache/xmlgraphics/fop/source/fop-2.7-src.tar.gz https://dev.gentoo.org/~flow/distfiles/fop/fop-2.7-jars.tar.xz _eclasses_=java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae -_md5_=b85a8bc75bbcca54ddb6daefd37eaf4b +_md5_=4f847a640e7f092695b8bedf4cec2936 diff --git a/metadata/md5-cache/dev-java/icedtea-sound-1.0.1 b/metadata/md5-cache/dev-java/icedtea-sound-1.0.1 deleted file mode 100644 index 49655322880b..000000000000 --- a/metadata/md5-cache/dev-java/icedtea-sound-1.0.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure preinst prepare setup -DEPEND=>=virtual/jdk-1.6.0 >=media-sound/pulseaudio-0.9.11:= app-arch/zip >=dev-java/java-config-2.2.0-r3 -DESCRIPTION=Plugins for javax.sound -EAPI=5 -HOMEPAGE=http://icedtea.classpath.org -IUSE=+doc test -KEYWORDS=amd64 ~arm arm64 ppc64 x86 -LICENSE=GPL-2-with-linking-exception -RDEPEND=>=virtual/jdk-1.6.0 >=media-sound/pulseaudio-0.9.11:= >=dev-java/java-config-2.2.0-r3 -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=http://icedtea.classpath.org/download/source/icedtea-sound-1.0.1.tar.xz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=342d98dfbcfc03254c37b49d58392daa diff --git a/metadata/md5-cache/dev-java/jcommander-1.82 b/metadata/md5-cache/dev-java/jcommander-1.82 new file mode 100644 index 000000000000..ab11207747a4 --- /dev/null +++ b/metadata/md5-cache/dev-java/jcommander-1.82 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install preinst prepare setup test +DEPEND=>=virtual/jdk-1.8:* test? ( dev-java/jackson-annotations:2 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) test? ( dev-java/testng:0 ) +DESCRIPTION=Command line parsing framework for Java +EAPI=8 +HOMEPAGE=https://github.com/cbeust/jcommander +IUSE=doc source test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/cbeust/jcommander/archive/1.82.tar.gz -> jcommander-1.82.tar.gz +_eclasses_=java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae +_md5_=27215733855287078b0cf614e38b054e diff --git a/metadata/md5-cache/dev-java/jna-5.10.0 b/metadata/md5-cache/dev-java/jna-5.10.0 index d3f31a705534..e1800834eb63 100644 --- a/metadata/md5-cache/dev-java/jna-5.10.0 +++ b/metadata/md5-cache/dev-java/jna-5.10.0 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=4 SRC_URI=https://github.com/java-native-access/jna/archive/refs/tags/5.10.0.tar.gz -> jna-5.10.0.tar.gz _eclasses_=java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=150594df3137d60f17034b40994d1f82 +_md5_=a6729896dc2438d5aca085f73d5228e8 diff --git a/metadata/md5-cache/dev-java/microba-0.4.4.3-r1 b/metadata/md5-cache/dev-java/microba-0.4.4.3-r1 deleted file mode 100644 index 864f032b997f..000000000000 --- a/metadata/md5-cache/dev-java/microba-0.4.4.3-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=dev-java/jgraph:0 >=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Swing components for date operations and palettes -EAPI=6 -HOMEPAGE=https://github.com/tdbear/microba -IUSE=doc source -KEYWORDS=amd64 x86 -LICENSE=BSD -RDEPEND=dev-java/jgraph:0 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=https://github.com/tdbear/microba/archive/0.4.4.3.zip -> microba-0.4.4.3.zip -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=c15914077d044c9b72f8a027fc0f258b diff --git a/metadata/md5-cache/dev-java/microba-0.4.4.3-r2 b/metadata/md5-cache/dev-java/microba-0.4.4.3-r2 index 2b5cbb86d5ac..0ac9e9714b4b 100644 --- a/metadata/md5-cache/dev-java/microba-0.4.4.3-r2 +++ b/metadata/md5-cache/dev-java/microba-0.4.4.3-r2 @@ -4,10 +4,10 @@ DESCRIPTION=Swing components for date operations and palettes EAPI=8 HOMEPAGE=https://github.com/tdbear/microba IUSE=doc source -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=BSD RDEPEND=dev-java/jgraph:0 >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) SLOT=0 SRC_URI=https://github.com/tdbear/microba/archive/refs/tags/0.4.4.3.tar.gz -> microba-0.4.4.3.tar.gz _eclasses_=java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae -_md5_=84850ba57d8c9243e1748dd0e83ad36e +_md5_=c811b7362e71e4127d891198e7b0a894 diff --git a/metadata/md5-cache/dev-java/tomcat-servlet-api-10.0.17 b/metadata/md5-cache/dev-java/tomcat-servlet-api-10.0.17 deleted file mode 100644 index d42c7b86097b..000000000000 --- a/metadata/md5-cache/dev-java/tomcat-servlet-api-10.0.17 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Tomcat's Servlet API 5.0/JSP API 3.0/EL API 4.0 implementation -EAPI=8 -HOMEPAGE=https://tomcat.apache.org/ -IUSE=source -KEYWORDS=amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=5.0 -SRC_URI=mirror://apache/tomcat/tomcat-10/v10.0.17/src/apache-tomcat-10.0.17-src.tar.gz -_eclasses_=java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae -_md5_=020916eb2be685584c4c31be6ed12817 diff --git a/metadata/md5-cache/dev-java/tomcat-servlet-api-10.0.18 b/metadata/md5-cache/dev-java/tomcat-servlet-api-10.0.18 index b08297a2540b..3aadf777e3d3 100644 --- a/metadata/md5-cache/dev-java/tomcat-servlet-api-10.0.18 +++ b/metadata/md5-cache/dev-java/tomcat-servlet-api-10.0.18 @@ -4,10 +4,10 @@ DESCRIPTION=Tomcat's Servlet API 5.0/JSP API 3.0/EL API 4.0 implementation EAPI=8 HOMEPAGE=https://tomcat.apache.org/ IUSE=source -KEYWORDS=~amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris LICENSE=Apache-2.0 RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) SLOT=5.0 SRC_URI=mirror://apache/tomcat/tomcat-10/v10.0.18/src/apache-tomcat-10.0.18-src.tar.gz _eclasses_=java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae -_md5_=77855d10a095352ef8432dff69191097 +_md5_=020916eb2be685584c4c31be6ed12817 diff --git a/metadata/md5-cache/dev-java/tomcat-servlet-api-8.5.76 b/metadata/md5-cache/dev-java/tomcat-servlet-api-8.5.76 deleted file mode 100644 index 6f08e7f58170..000000000000 --- a/metadata/md5-cache/dev-java/tomcat-servlet-api-8.5.76 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Tomcat's Servlet API 3.1/JSP API 2.3/EL API 3.0 implementation -EAPI=7 -HOMEPAGE=https://tomcat.apache.org/ -IUSE=source -KEYWORDS=amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=3.1 -SRC_URI=mirror://apache/tomcat/tomcat-8/v8.5.76/src/apache-tomcat-8.5.76-src.tar.gz -_eclasses_=java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae -_md5_=1299696970c89c828be32d9a9d67e292 diff --git a/metadata/md5-cache/dev-java/tomcat-servlet-api-8.5.77 b/metadata/md5-cache/dev-java/tomcat-servlet-api-8.5.77 index 91a2e2870e42..04361335c466 100644 --- a/metadata/md5-cache/dev-java/tomcat-servlet-api-8.5.77 +++ b/metadata/md5-cache/dev-java/tomcat-servlet-api-8.5.77 @@ -4,10 +4,10 @@ DESCRIPTION=Tomcat's Servlet API 3.1/JSP API 2.3/EL API 3.0 implementation EAPI=7 HOMEPAGE=https://tomcat.apache.org/ IUSE=source -KEYWORDS=~amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris LICENSE=Apache-2.0 RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) SLOT=3.1 SRC_URI=mirror://apache/tomcat/tomcat-8/v8.5.77/src/apache-tomcat-8.5.77-src.tar.gz _eclasses_=java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae -_md5_=02ff9c0607d1e35b099496ea057bf1b4 +_md5_=1299696970c89c828be32d9a9d67e292 diff --git a/metadata/md5-cache/dev-java/tomcat-servlet-api-9.0.59 b/metadata/md5-cache/dev-java/tomcat-servlet-api-9.0.59 deleted file mode 100644 index a097dfcbfee7..000000000000 --- a/metadata/md5-cache/dev-java/tomcat-servlet-api-9.0.59 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Tomcat's Servlet API 4.0/JSP API 2.3/EL API 3.0 implementation -EAPI=8 -HOMEPAGE=https://tomcat.apache.org/ -IUSE=source -KEYWORDS=amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=4.0 -SRC_URI=mirror://apache/tomcat/tomcat-9/v9.0.59/src/apache-tomcat-9.0.59-src.tar.gz -_eclasses_=java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae -_md5_=89115bc19add62d8ea59308a19759575 diff --git a/metadata/md5-cache/dev-java/tomcat-servlet-api-9.0.60 b/metadata/md5-cache/dev-java/tomcat-servlet-api-9.0.60 index bc962ae08ebd..bd5603d81cdf 100644 --- a/metadata/md5-cache/dev-java/tomcat-servlet-api-9.0.60 +++ b/metadata/md5-cache/dev-java/tomcat-servlet-api-9.0.60 @@ -4,10 +4,10 @@ DESCRIPTION=Tomcat's Servlet API 4.0/JSP API 2.3/EL API 3.0 implementation EAPI=8 HOMEPAGE=https://tomcat.apache.org/ IUSE=source -KEYWORDS=~amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris LICENSE=Apache-2.0 RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) SLOT=4.0 SRC_URI=mirror://apache/tomcat/tomcat-9/v9.0.60/src/apache-tomcat-9.0.60-src.tar.gz _eclasses_=java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae -_md5_=c7720588ea9f9215c9fa5aa5c2d63302 +_md5_=89115bc19add62d8ea59308a19759575 diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index ab5ffa3d783a..fef9c9cd2db2 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/ammonite-repl-bin-2.5.3 b/metadata/md5-cache/dev-lang/ammonite-repl-bin-2.5.3 new file mode 100644 index 000000000000..b0f33ecd1428 --- /dev/null +++ b/metadata/md5-cache/dev-lang/ammonite-repl-bin-2.5.3 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install unpack +DESCRIPTION=Scala language-based scripting and REPL +EAPI=8 +HOMEPAGE=https://ammonite.io/ +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=virtual/jre-1.8:* +SLOT=0 +SRC_URI=https://github.com/com-lihaoyi/Ammonite/releases/download/2.5.3/2.13-2.5.3 -> ammonite-repl-bin-2.5.3 +_md5_=87cd3375bf2a2fe0358d4f4df9834b0d diff --git a/metadata/md5-cache/dev-lang/c-intercal-31.0 b/metadata/md5-cache/dev-lang/c-intercal-31.0 index f5b62b641f89..1e359de6de47 100644 --- a/metadata/md5-cache/dev-lang/c-intercal-31.0 +++ b/metadata/md5-cache/dev-lang/c-intercal-31.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ FDL-1.2+ RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=http://www.catb.org/~esr/intercal/intercal-0.31.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=6efac9b6271a5b52807b7e74901523da diff --git a/metadata/md5-cache/dev-lang/clipsjni-6.40 b/metadata/md5-cache/dev-lang/clipsjni-6.40-r1 similarity index 80% rename from metadata/md5-cache/dev-lang/clipsjni-6.40 rename to metadata/md5-cache/dev-lang/clipsjni-6.40-r1 index fc31d565eac3..fa5c0b142f2d 100644 --- a/metadata/md5-cache/dev-lang/clipsjni-6.40 +++ b/metadata/md5-cache/dev-lang/clipsjni-6.40-r1 @@ -1,7 +1,7 @@ DEFINED_PHASES=compile install postinst postrm preinst prepare setup -DEPEND=>=virtual/jdk-1.8:* dev-util/desktop-file-utils x11-misc/shared-mime-info >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +DEPEND=>=virtual/jdk-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) DESCRIPTION=Tool for building Expert Systems (Java version) -EAPI=7 +EAPI=8 HOMEPAGE=http://www.clipsrules.net/ IUSE=examples source KEYWORDS=~amd64 ~x86 @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/z SLOT=0 SRC_URI=https://sourceforge.net/projects/clipsrules/files/CLIPS/6.40/clips_jni_640.tar.gz -> clipsjni-6.40.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=e1436cad3489f333ae792a1d66ea7258 +_md5_=0f775739d750f1aff2680e8a1971ef4f diff --git a/metadata/md5-cache/dev-lang/erlang-23.3.4 b/metadata/md5-cache/dev-lang/erlang-23.3.4 index 33e85ba91cbe..62a164de7906 100644 --- a/metadata/md5-cache/dev-lang/erlang-23.3.4 +++ b/metadata/md5-cache/dev-lang/erlang-23.3.4 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( >=dev-libs/openssl-0.9.7d:0= ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/23.3.4 SRC_URI=https://github.com/erlang/otp/archive/OTP-23.3.4.tar.gz -> erlang-23.3.4.tar.gz http://erlang.org/download/otp_doc_man_23.3.tar.gz -> erlang_doc_man_23.3.tar.gz doc? ( http://erlang.org/download/otp_doc_html_23.3.tar.gz -> erlang_doc_html_23.3.tar.gz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 _md5_=fc38eb461b33dc6feec028d6fdb52f71 diff --git a/metadata/md5-cache/dev-lang/erlang-23.3.4.12 b/metadata/md5-cache/dev-lang/erlang-23.3.4.12 index dda3a689d40b..6d44eeb3c310 100644 --- a/metadata/md5-cache/dev-lang/erlang-23.3.4.12 +++ b/metadata/md5-cache/dev-lang/erlang-23.3.4.12 @@ -5,10 +5,10 @@ DESCRIPTION=Erlang programming language, runtime environment and libraries (OTP) EAPI=7 HOMEPAGE=https://www.erlang.org/ IUSE=doc emacs +hipe java +kpoll odbc sctp ssl systemd tk wxwidgets java -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( >=dev-libs/openssl-0.9.7d:0= ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/23.3.4.12 SRC_URI=https://github.com/erlang/otp/archive/OTP-23.3.4.12.tar.gz -> erlang-23.3.4.12.tar.gz http://erlang.org/download/otp_doc_man_23.3.tar.gz -> erlang_doc_man_23.3.tar.gz doc? ( http://erlang.org/download/otp_doc_html_23.3.tar.gz -> erlang_doc_html_23.3.tar.gz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 -_md5_=5f6446c8edbc5e8e78d5612e95e1676e +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 +_md5_=4402781e52a1a88df33c42fe0d6162c8 diff --git a/metadata/md5-cache/dev-lang/erlang-24.2.2 b/metadata/md5-cache/dev-lang/erlang-24.2.2 index 3a7620cc0228..80e7e462ffc3 100644 --- a/metadata/md5-cache/dev-lang/erlang-24.2.2 +++ b/metadata/md5-cache/dev-lang/erlang-24.2.2 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( >=dev-libs/openssl-0.9.7d:0= ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/24.2.2 SRC_URI=https://github.com/erlang/otp/archive/OTP-24.2.2.tar.gz -> erlang-24.2.2.tar.gz http://erlang.org/download/otp_doc_man_24.2.tar.gz -> erlang_doc_man_24.2.tar.gz doc? ( http://erlang.org/download/otp_doc_html_24.2.tar.gz -> erlang_doc_html_24.2.tar.gz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 _md5_=412fab764eaeed8936e8cd62c4def0da diff --git a/metadata/md5-cache/dev-lang/erlang-24.3.2 b/metadata/md5-cache/dev-lang/erlang-24.3.2 index 41106410d1f0..d77c109d0cd6 100644 --- a/metadata/md5-cache/dev-lang/erlang-24.3.2 +++ b/metadata/md5-cache/dev-lang/erlang-24.3.2 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( >=dev-libs/openssl-0.9.7d:0= ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/24.3.2 SRC_URI=https://github.com/erlang/otp/archive/OTP-24.3.2.tar.gz -> erlang-24.3.2.tar.gz https://github.com/erlang/otp/releases/download/OTP-24.3/otp_doc_man_24.3.tar.gz -> erlang_doc_man_24.3.tar.gz doc? ( https://github.com/erlang/otp/releases/download/OTP-24.3/otp_doc_html_24.3.tar.gz -> erlang_doc_html_24.3.tar.gz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 _md5_=cb59cb7552719895cffae4e70e37084c diff --git a/metadata/md5-cache/dev-lang/erlang-24.3.3 b/metadata/md5-cache/dev-lang/erlang-24.3.3 index cf581483d5a8..8b2670c4f1cd 100644 --- a/metadata/md5-cache/dev-lang/erlang-24.3.3 +++ b/metadata/md5-cache/dev-lang/erlang-24.3.3 @@ -5,10 +5,10 @@ DESCRIPTION=Erlang programming language, runtime environment and libraries (OTP) EAPI=7 HOMEPAGE=https://www.erlang.org/ IUSE=doc emacs java +kpoll odbc sctp ssl systemd tk wxwidgets java -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( >=dev-libs/openssl-0.9.7d:0= ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/24.3.3 SRC_URI=https://github.com/erlang/otp/archive/OTP-24.3.3.tar.gz -> erlang-24.3.3.tar.gz https://github.com/erlang/otp/releases/download/OTP-24.3/otp_doc_man_24.3.tar.gz -> erlang_doc_man_24.3.tar.gz doc? ( https://github.com/erlang/otp/releases/download/OTP-24.3/otp_doc_html_24.3.tar.gz -> erlang_doc_html_24.3.tar.gz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 -_md5_=cb59cb7552719895cffae4e70e37084c +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 +_md5_=21921ee9169da54cfd11c263396233b3 diff --git a/metadata/md5-cache/dev-lang/gforth-0.7.3-r2 b/metadata/md5-cache/dev-lang/gforth-0.7.3-r2 index c6844dd99ebe..b49cee52f18c 100644 --- a/metadata/md5-cache/dev-lang/gforth-0.7.3-r2 +++ b/metadata/md5-cache/dev-lang/gforth-0.7.3-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/ffcall emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=mirror://gnu/gforth/gforth-0.7.3.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=3e3df2c9d7ddfdef4f307869477a61a1 diff --git a/metadata/md5-cache/dev-lang/lfe-2.0 b/metadata/md5-cache/dev-lang/lfe-2.0 index b4f010b1c751..b50e6c59d790 100644 --- a/metadata/md5-cache/dev-lang/lfe-2.0 +++ b/metadata/md5-cache/dev-lang/lfe-2.0 @@ -11,5 +11,5 @@ RDEPEND=dev-lang/erlang RESTRICT=mirror test SLOT=0 SRC_URI=https://github.com/rvirding/lfe/archive/refs/tags/2.0.tar.gz -> lfe-2.0.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=998b9c5bfc40e0be2c3cf60a57fc0d74 diff --git a/metadata/md5-cache/dev-lang/lfe-2.0.1 b/metadata/md5-cache/dev-lang/lfe-2.0.1 index c8886f72942b..730c510aea34 100644 --- a/metadata/md5-cache/dev-lang/lfe-2.0.1 +++ b/metadata/md5-cache/dev-lang/lfe-2.0.1 @@ -11,5 +11,5 @@ RDEPEND=dev-lang/erlang RESTRICT=mirror test SLOT=0 SRC_URI=https://github.com/rvirding/lfe/archive/refs/tags/2.0.1.tar.gz -> lfe-2.0.1.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6da5d008e40fc24d9bb016bfa715e43d diff --git a/metadata/md5-cache/dev-lang/lisaac-0.13.1-r2 b/metadata/md5-cache/dev-lang/lisaac-0.13.1-r2 index ae5a930a3920..fbc6ff6d9167 100644 --- a/metadata/md5-cache/dev-lang/lisaac-0.13.1-r2 +++ b/metadata/md5-cache/dev-lang/lisaac-0.13.1-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=vim-syntax? ( app-editors/vim ) emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=http://isaacproject.u-strasbg.fr/download/lisaac-0.13.1.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=869b91654ce56a5adce08ce0c225679a diff --git a/metadata/md5-cache/dev-lang/mercury-20.06-r1 b/metadata/md5-cache/dev-lang/mercury-20.06-r1 index 161fc56c6077..1bc86661dd9d 100644 --- a/metadata/md5-cache/dev-lang/mercury-20.06-r1 +++ b/metadata/md5-cache/dev-lang/mercury-20.06-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=net-libs/libnsl:0= readline? ( sys-libs/readline:= ) erlang? ( dev-lang/erlang ) java? ( >=virtual/jdk-1.8:* ) mono? ( dev-lang/mono ) doc? ( sys-apps/texinfo ) emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=https://dl.mercurylang.org/release-20.06/mercury-srcdist-20.06.tar.gz https://dev.gentoo.org/~keri/distfiles/mercury/mercury-20.06-gentoo-patchset-3.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=ba5b7a587df505c3ad8fb3832e6d490f diff --git a/metadata/md5-cache/dev-lang/mercury-20.06.1 b/metadata/md5-cache/dev-lang/mercury-20.06.1 index c9a233c83957..c952dd95e58b 100644 --- a/metadata/md5-cache/dev-lang/mercury-20.06.1 +++ b/metadata/md5-cache/dev-lang/mercury-20.06.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=net-libs/libnsl:0= readline? ( sys-libs/readline:= ) erlang? ( dev-lang/erlang ) java? ( >=virtual/jdk-1.8:* ) mono? ( dev-lang/mono ) doc? ( sys-apps/texinfo ) emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=https://dl.mercurylang.org/release-20.06/mercury-srcdist-20.06.1.tar.gz https://dev.gentoo.org/~keri/distfiles/mercury/mercury-20.06.1-gentoo-patchset-0.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=1c2dd6c1b40bba346f8724c9d849630e diff --git a/metadata/md5-cache/dev-lang/mozart-2.0.1 b/metadata/md5-cache/dev-lang/mozart-2.0.1 index ac3ff02df13c..3b0455ae79b9 100644 --- a/metadata/md5-cache/dev-lang/mozart-2.0.1 +++ b/metadata/md5-cache/dev-lang/mozart-2.0.1 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/boost:= dev-libs/gmp:0 dev-lang/tcl:0 dev-lang/tk:0 emacs? ( >= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mozart/mozart2/archive/v2.0.1.tar.gz -> mozart-2.0.1.tar.gz https://dev.gentoo.org/~keri/distfiles/mozart/mozart-2.0.1-gentoo-patchset-2.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=6921b04cc92e7b8a396d4eedd6f64058 diff --git a/metadata/md5-cache/dev-lang/ocaml-4.14.0 b/metadata/md5-cache/dev-lang/ocaml-4.14.0 index e18f49e0e465..1fd467d30f40 100644 --- a/metadata/md5-cache/dev-lang/ocaml-4.14.0 +++ b/metadata/md5-cache/dev-lang/ocaml-4.14.0 @@ -4,11 +4,11 @@ DESCRIPTION=Programming language supporting functional, imperative & object-orie EAPI=8 HOMEPAGE=https://ocaml.org/ IUSE=emacs flambda latex +ocamlopt xemacs -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris LICENSE=QPL-1.0 LGPL-2 PDEPEND=emacs? ( app-emacs/ocaml-mode ) xemacs? ( app-xemacs/ocaml ) RDEPEND=sys-libs/binutils-libs:= SLOT=0/4.14 SRC_URI=https://github.com/ocaml/ocaml/archive/4.14.0.tar.gz -> ocaml-4.14.0.tar.gz _eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b2a7c59d40b6ea5ffd185a26c4b0e4d2 +_md5_=a7965f79432e67380545e926e23a4973 diff --git a/metadata/md5-cache/dev-lang/perl-5.34.0-r6 b/metadata/md5-cache/dev-lang/perl-5.34.0-r6 index f6b994e29305..8c8114710c73 100644 --- a/metadata/md5-cache/dev-lang/perl-5.34.0-r6 +++ b/metadata/md5-cache/dev-lang/perl-5.34.0-r6 @@ -5,11 +5,11 @@ 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 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 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-CPAN-2.290.0 >=virtual/perl-Encode-3.120.0 >=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.34 SRC_URI=mirror://cpan/src/5.0/perl-5.34.0.tar.xz mirror://cpan/authors/id/X/XS/XSAWYERX/perl-5.34.0.tar.xz https://github.com/gentoo-perl/perl-patchset/releases/download/perl-5.34.0-patches-1/perl-5.34.0-patches-1.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/perl-5.34.0-patches-1.tar.xz https://github.com/arsv/perl-cross/releases/download/1.3.6/perl-cross-1.3.6.tar.gz _eclasses_=alternatives a0c93671b4b99c1326c746e95dc53396 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=532e93ca7d6b8b52ea0f8259d05edfc6 +_md5_=c09d6a2631c9e2be57ac288aa875d384 diff --git a/metadata/md5-cache/dev-lang/perl-5.34.0-r7 b/metadata/md5-cache/dev-lang/perl-5.34.0-r7 index f3a83a5c083f..1558ca0ee29e 100644 --- a/metadata/md5-cache/dev-lang/perl-5.34.0-r7 +++ b/metadata/md5-cache/dev-lang/perl-5.34.0-r7 @@ -5,11 +5,11 @@ DESCRIPTION=Larry Wall's Practical Extraction and Report Language EAPI=7 HOMEPAGE=https://www.perl.org/ IUSE=berkdb debug doc gdbm ithreads minimal quadmath -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 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~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-CPAN-2.290.0 >=virtual/perl-Encode-3.120.0 >=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.34 SRC_URI=mirror://cpan/src/5.0/perl-5.34.0.tar.xz mirror://cpan/authors/id/X/XS/XSAWYERX/perl-5.34.0.tar.xz https://github.com/gentoo-perl/perl-patchset/releases/download/perl-5.34.0-patches-1/perl-5.34.0-patches-1.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/perl-5.34.0-patches-1.tar.xz https://github.com/arsv/perl-cross/releases/download/1.3.6/perl-cross-1.3.6.tar.gz _eclasses_=alternatives a0c93671b4b99c1326c746e95dc53396 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=bbb907b8b6faf8b8ea26ef9ee35c4af1 +_md5_=70c8222e324cf70c6fd0ac4901ed66f9 diff --git a/metadata/md5-cache/dev-lang/php-8.0.18 b/metadata/md5-cache/dev-lang/php-8.0.18 new file mode 100644 index 000000000000..34efbb8ebb02 --- /dev/null +++ b/metadata/md5-cache/dev-lang/php-8.0.18 @@ -0,0 +1,16 @@ +BDEPEND=virtual/pkgconfig virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 sys-devel/automake >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=>=app-eselect/eselect-php-0.9.7[apache2?,fpm?] >=dev-libs/libpcre2-10.30[jit?,unicode] fpm? ( acl? ( sys-apps/acl ) apparmor? ( sys-libs/libapparmor ) ) apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) argon2? ( app-crypt/argon2:= ) berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:4.8 ) ) bzip2? ( app-arch/bzip2:0= ) cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) coverage? ( dev-util/lcov ) curl? ( >=net-misc/curl-7.29.0 ) enchant? ( app-text/enchant:2 ) ffi? ( >=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[sdk] ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( >=dev-db/unixODBC-1.8.13 ) ) postgres? ( >=dev-db/postgresql-9.1:* ) 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:=[-minimal] ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( >=dev-libs/openssl-1.0.1:0= ) tidy? ( 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.9.0 ) xpm? ( x11-libs/libXpm ) xslt? ( dev-libs/libxslt ) zip? ( >=dev-libs/libzip-1.2.0:= ) zlib? ( >=sys-libs/zlib-1.2.0.4:0= ) app-arch/xz-utils >=sys-devel/bison-3.0.1 +DESCRIPTION=The PHP language runtime engine +EAPI=7 +HOMEPAGE=https://www.php.net/ +IUSE=embed +cli cgi fpm apache2 phpdbg threads acl apparmor 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 +jit kerberos ldap ldap-sasl libedit 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 xpm xslt zip zlib +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~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.7[apache2?,fpm?] >=dev-libs/libpcre2-10.30[jit?,unicode] fpm? ( acl? ( sys-apps/acl ) apparmor? ( sys-libs/libapparmor ) ) apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) argon2? ( app-crypt/argon2:= ) berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:4.8 ) ) bzip2? ( app-arch/bzip2:0= ) cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) coverage? ( dev-util/lcov ) curl? ( >=net-misc/curl-7.29.0 ) enchant? ( app-text/enchant:2 ) ffi? ( >=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[sdk] ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( >=dev-db/unixODBC-1.8.13 ) ) postgres? ( >=dev-db/postgresql-9.1:* ) 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:=[-minimal] ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( >=dev-libs/openssl-1.0.1:0= ) tidy? ( 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.9.0 ) 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 ) xmlreader? ( xml ) xmlwriter? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) oci8-instant-client? ( !ldap ) qdbm? ( !gdbm ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) firebird? ( pdo ) mssql? ( pdo ) +RESTRICT=!test? ( test ) +SLOT=8.0 +SRC_URI=https://www.php.net/distributions/php-8.0.18.tar.xz +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=3f171b7cd5ce425c6c2b4119f6ae0693 diff --git a/metadata/md5-cache/dev-lang/php-8.1.5 b/metadata/md5-cache/dev-lang/php-8.1.5 new file mode 100644 index 000000000000..b095f5172dbb --- /dev/null +++ b/metadata/md5-cache/dev-lang/php-8.1.5 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 sys-devel/automake >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=>=app-eselect/eselect-php-0.9.7[apache2?,fpm?] >=dev-libs/libpcre2-10.30[jit?,unicode] fpm? ( acl? ( sys-apps/acl ) apparmor? ( sys-libs/libapparmor ) ) apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) argon2? ( app-crypt/argon2:= ) berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:4.8 ) ) bzip2? ( app-arch/bzip2:0= ) cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) coverage? ( dev-util/lcov ) curl? ( >=net-misc/curl-7.29.0 ) enchant? ( app-text/enchant:2 ) ffi? ( >=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[sdk] ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( >=dev-db/unixODBC-1.8.13 ) ) postgres? ( >=dev-db/postgresql-9.1:* ) 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:=[-minimal] ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( >=dev-libs/openssl-1.0.2:0= ) tidy? ( 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.9.0 ) xpm? ( x11-libs/libXpm ) xslt? ( dev-libs/libxslt ) zip? ( >=dev-libs/libzip-1.2.0:= ) zlib? ( >=sys-libs/zlib-1.2.0.4:0= ) app-arch/xz-utils >=sys-devel/bison-3.0.1 +DESCRIPTION=The PHP language runtime engine +EAPI=8 +HOMEPAGE=https://www.php.net/ +IDEPEND=>=app-eselect/eselect-php-0.9.7[apache2?,fpm?] +IUSE=embed +cli cgi fpm apache2 phpdbg threads acl apparmor 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 +jit kerberos ldap ldap-sasl libedit 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 xpm xslt zip zlib +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~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.7[apache2?,fpm?] >=dev-libs/libpcre2-10.30[jit?,unicode] fpm? ( acl? ( sys-apps/acl ) apparmor? ( sys-libs/libapparmor ) ) apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) argon2? ( app-crypt/argon2:= ) berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:4.8 ) ) bzip2? ( app-arch/bzip2:0= ) cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) coverage? ( dev-util/lcov ) curl? ( >=net-misc/curl-7.29.0 ) enchant? ( app-text/enchant:2 ) ffi? ( >=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[sdk] ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( >=dev-db/unixODBC-1.8.13 ) ) postgres? ( >=dev-db/postgresql-9.1:* ) 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:=[-minimal] ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( >=dev-libs/openssl-1.0.2:0= ) tidy? ( 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.9.0 ) 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 ) xmlreader? ( xml ) xmlwriter? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) oci8-instant-client? ( !ldap ) qdbm? ( !gdbm ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) firebird? ( pdo ) mssql? ( pdo ) +RESTRICT=!test? ( test ) +SLOT=8.1 +SRC_URI=https://www.php.net/distributions/php-8.1.5.tar.xz +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=98b79d98374fce9c46c5a4285d14335a diff --git a/metadata/md5-cache/dev-lang/teyjus-2.1 b/metadata/md5-cache/dev-lang/teyjus-2.1 index 482bb339568a..a74da266f3ba 100644 --- a/metadata/md5-cache/dev-lang/teyjus-2.1 +++ b/metadata/md5-cache/dev-lang/teyjus-2.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=>=sys-devel/binutils-2.17:* >=sys-devel/gcc-2.95.3:* >=dev-lang/ocaml-3.10[ocamlopt?] emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0/2.1 SRC_URI=https://github.com/teyjus/teyjus/archive/v2.1.tar.gz -> teyjus-2.1.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp-common f9c72486dbcb18b633c9d0949211d86e estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp-common e7aaa047873789f549ea3df2f04b2145 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=5070c03cafa714de321e27f21715a0bb diff --git a/metadata/md5-cache/dev-lang/teyjus-2.1-r1 b/metadata/md5-cache/dev-lang/teyjus-2.1-r1 index 03ba7468e97d..448f3ecfed2b 100644 --- a/metadata/md5-cache/dev-lang/teyjus-2.1-r1 +++ b/metadata/md5-cache/dev-lang/teyjus-2.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=>=sys-devel/binutils-2.17:* >=sys-devel/gcc-2.95.3:* >=dev-lang/ocaml-3.10[ocamlopt?] emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0/2.1 SRC_URI=https://github.com/teyjus/teyjus/archive/v2.1.tar.gz -> teyjus-2.1.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=9fb896cc4c8813e11c023ed98a194a83 diff --git a/metadata/md5-cache/dev-libs/Ice-3.6.5-r2 b/metadata/md5-cache/dev-libs/Ice-3.6.5-r2 index 55cafe262570..48ec49c9ce85 100644 --- a/metadata/md5-cache/dev-libs/Ice-3.6.5-r2 +++ b/metadata/md5-cache/dev-libs/Ice-3.6.5-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_8 python_targets_python3_9 ) RESTRICT=test SLOT=0/36 SRC_URI=https://github.com/zeroc-ice/ice/archive/v3.6.5.tar.gz -> Ice-3.6.5.tar.gz doc? ( https://download.zeroc.com/Ice/3.6/Ice-3.6.4.pdf ) -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 db-use 867a9246a45efc09934e0f8e3380c813 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e mono-env 87888393b1c1b882d0543087e28ec0b0 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b php-ext-source-r3 3c26d87acac034aedf8bf126f7010c8a python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 db-use 867a9246a45efc09934e0f8e3380c813 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e mono-env 87888393b1c1b882d0543087e28ec0b0 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b php-ext-source-r3 3c26d87acac034aedf8bf126f7010c8a python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a9e4ad486e9713ff011a481d0cf623eb diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index 0dab5cf420aa..d251f3cd8d35 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/libjcat-0.1.10 b/metadata/md5-cache/dev-libs/libjcat-0.1.10 index 926681cd124c..b34059d28ce4 100644 --- a/metadata/md5-cache/dev-libs/libjcat-0.1.10 +++ b/metadata/md5-cache/dev-libs/libjcat-0.1.10 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hughsie/libjcat/archive/0.1.10.tar.gz -> libjcat-0.1.10.tar.gz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vala 9badd41d5aab740ae5ac301c4416c5f8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=cd8a3233fe86926c815d0847dc7c4988 +_md5_=2a7abc534d050948eaa69f787ace67d2 diff --git a/metadata/md5-cache/dev-libs/libjcat-0.1.11 b/metadata/md5-cache/dev-libs/libjcat-0.1.11 index 3b08cd477419..6d1ad0b01ef6 100644 --- a/metadata/md5-cache/dev-libs/libjcat-0.1.11 +++ b/metadata/md5-cache/dev-libs/libjcat-0.1.11 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hughsie/libjcat/archive/0.1.11.tar.gz -> libjcat-0.1.11.tar.gz _eclasses_=meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vala 9badd41d5aab740ae5ac301c4416c5f8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=d4b59ae07fbbfe31647f8546bfa23843 +_md5_=843067cece5ec9b31bcaa303e1224f80 diff --git a/metadata/md5-cache/dev-libs/libjcat-0.1.9-r1 b/metadata/md5-cache/dev-libs/libjcat-0.1.9-r1 index 9d44f6aa079f..0faed8dafd18 100644 --- a/metadata/md5-cache/dev-libs/libjcat-0.1.9-r1 +++ b/metadata/md5-cache/dev-libs/libjcat-0.1.9-r1 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hughsie/libjcat/archive/0.1.9.tar.gz -> libjcat-0.1.9.tar.gz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vala 9badd41d5aab740ae5ac301c4416c5f8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=cd8a3233fe86926c815d0847dc7c4988 +_md5_=2a7abc534d050948eaa69f787ace67d2 diff --git a/metadata/md5-cache/dev-libs/libportal-0.6 b/metadata/md5-cache/dev-libs/libportal-0.6 index 21d2cc421af9..81b50db00396 100644 --- a/metadata/md5-cache/dev-libs/libportal-0.6 +++ b/metadata/md5-cache/dev-libs/libportal-0.6 @@ -5,7 +5,7 @@ DESCRIPTION=Flatpak portal library EAPI=8 HOMEPAGE=https://github.com/flatpak/libportal IUSE=gtk gtk-doc +introspection qt5 test +vala test -KEYWORDS=~amd64 +KEYWORDS=~amd64 ~riscv LICENSE=LGPL-3 RDEPEND=>=dev-libs/glib-2.58:2 introspection? ( dev-libs/gobject-introspection:= ) gtk? ( x11-libs/gtk+:3 gui-libs/gtk:4 ) qt5? ( dev-qt/qtcore:= dev-qt/qtgui:= dev-qt/qtx11extras:= dev-qt/qtwidgets:= ) REQUIRED_USE=gtk-doc? ( introspection ) vala? ( introspection ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0/1-1-1-1 SRC_URI=https://github.com/flatpak/libportal/releases/download/0.6/libportal-0.6.tar.xz _eclasses_=meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vala 9badd41d5aab740ae5ac301c4416c5f8 virtualx 975d49ff3b3f451efe7a95f230532135 -_md5_=3d1ddea6dd905533b6c8faf11add1340 +_md5_=39de395fb7fa5849dc36c0db494b2878 diff --git a/metadata/md5-cache/dev-libs/librep-0.92.7-r1 b/metadata/md5-cache/dev-libs/librep-0.92.7-r1 index 9e4ae2fd085a..1e856b57f6ec 100644 --- a/metadata/md5-cache/dev-libs/librep-0.92.7-r1 +++ b/metadata/md5-cache/dev-libs/librep-0.92.7-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=>=sys-libs/gdbm-1.8.0:= virtual/libcrypt:= emacs? ( >=app-editors/emacs-23.1:* ) gmp? ( dev-libs/gmp:= ) readline? ( sys-libs/readline:0= ) SLOT=0 SRC_URI=https://download.tuxfamily.org/librep/librep_0.92.7.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=e9a7ab503f24cd4826cfd3ea5d5d1f85 diff --git a/metadata/md5-cache/dev-libs/libsigc++-3.2.0 b/metadata/md5-cache/dev-libs/libsigc++-3.2.0 index 78e8ef9ebb86..b010017038cb 100644 --- a/metadata/md5-cache/dev-libs/libsigc++-3.2.0 +++ b/metadata/md5-cache/dev-libs/libsigc++-3.2.0 @@ -4,10 +4,10 @@ DESCRIPTION=Typesafe callback system for standard C++ EAPI=7 HOMEPAGE=https://libsigcplusplus.github.io/libsigcplusplus/ https://github.com/libsigcplusplus/libsigcplusplus IUSE=doc examples test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1+ RESTRICT=!test? ( test ) SLOT=3 SRC_URI=mirror://gnome/sources/libsigc++/3.2/libsigc++-3.2.0.tar.xz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnome.org 429073e99d7067d3462e875bf5c6e14a meson 2d8a51910bc57e004c37aa55c7d99ce4 meson-multilib 84c0d4019bf29be0d9d0a2d98fb8b0d9 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=3d6afe04dc0990c9a8c9bdf0e785c825 +_md5_=69349a3f08624874a414a0ba8d510181 diff --git a/metadata/md5-cache/dev-libs/libuv-1.44.1 b/metadata/md5-cache/dev-libs/libuv-1.44.1 index 2110954816bf..8482bea0e320 100644 --- a/metadata/md5-cache/dev-libs/libuv-1.44.1 +++ b/metadata/md5-cache/dev-libs/libuv-1.44.1 @@ -4,9 +4,9 @@ DESCRIPTION=Cross-platform asychronous I/O EAPI=8 HOMEPAGE=https://github.com/libuv/libuv IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~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 +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=BSD BSD-2 ISC MIT SLOT=0/1 SRC_URI=https://github.com/libuv/libuv/archive/v1.44.1.tar.gz -> libuv-1.44.1.tar.gz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=64b0940da998620d120addffa7326117 +_md5_=72087a6885c8d8ef86fd4e0ddf526977 diff --git a/metadata/md5-cache/dev-libs/protobuf-3.17.3 b/metadata/md5-cache/dev-libs/protobuf-3.17.3 index 2def0c7cc990..03904fbcf9b4 100644 --- a/metadata/md5-cache/dev-libs/protobuf-3.17.3 +++ b/metadata/md5-cache/dev-libs/protobuf-3.17.3 @@ -11,5 +11,5 @@ RDEPEND=emacs? ( app-editors/emacs:* ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_ RESTRICT=!test? ( test ) SLOT=0/28 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.17.3.tar.gz -> protobuf-3.17.3.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=7795acbf0ab715b0f1dfeb9c2571704e diff --git a/metadata/md5-cache/dev-libs/protobuf-3.19.1 b/metadata/md5-cache/dev-libs/protobuf-3.19.1 index c60c23920503..5a9f0bde146a 100644 --- a/metadata/md5-cache/dev-libs/protobuf-3.19.1 +++ b/metadata/md5-cache/dev-libs/protobuf-3.19.1 @@ -11,5 +11,5 @@ RDEPEND=emacs? ( app-editors/emacs:* ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_ RESTRICT=!test? ( test ) SLOT=0/30 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.19.1.tar.gz -> protobuf-3.19.1.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=d6bf161a4f045e5eb6988d82ad519834 diff --git a/metadata/md5-cache/dev-libs/protobuf-3.19.3 b/metadata/md5-cache/dev-libs/protobuf-3.19.3 index ce2cf4d0abdf..5c2ef0356461 100644 --- a/metadata/md5-cache/dev-libs/protobuf-3.19.3 +++ b/metadata/md5-cache/dev-libs/protobuf-3.19.3 @@ -11,5 +11,5 @@ RDEPEND=emacs? ( app-editors/emacs:* ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_ RESTRICT=!test? ( test ) SLOT=0/30 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.19.3.tar.gz -> protobuf-3.19.3.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=5b19738ae9edee8e2c98f51194d4e71e diff --git a/metadata/md5-cache/dev-libs/protobuf-9999 b/metadata/md5-cache/dev-libs/protobuf-9999 index b8739f00f123..a10476b45c11 100644 --- a/metadata/md5-cache/dev-libs/protobuf-9999 +++ b/metadata/md5-cache/dev-libs/protobuf-9999 @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=emacs? ( app-editors/emacs:* ) 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(-)?] ) RESTRICT=!test? ( test ) SLOT=0/30 -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=492969c9a20990f14918c26c9276c40a diff --git a/metadata/md5-cache/dev-libs/tree-sitter-0.20.6 b/metadata/md5-cache/dev-libs/tree-sitter-0.20.6 index 765029f07d65..0e53d9b6da16 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-0.20.6 +++ b/metadata/md5-cache/dev-libs/tree-sitter-0.20.6 @@ -2,9 +2,9 @@ DEFINED_PHASES=install postinst prepare DESCRIPTION=Tree-sitter is a parser generator tool and an incremental parsing library EAPI=8 HOMEPAGE=https://github.com/tree-sitter/tree-sitter -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter/archive/refs/tags/v0.20.6.tar.gz -> tree-sitter-0.20.6.tar.gz _eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b optfeature d524f291c80f9d21ad80fe978e3ca760 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=99b6c30a00e31549a953b18fd8946097 +_md5_=8a69342da7c2d44886e3582d55daaabf diff --git a/metadata/md5-cache/dev-libs/tree-sitter-bash-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-bash-0.19.0 index 72e1540d1f29..4a27ecb54465 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-bash-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-bash-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-bash/archive/v0.19.0.tar.gz -> tree-sitter-bash-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=19f1b49c2adcf356611220d1cbf65a09 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-c-0.20.1 b/metadata/md5-cache/dev-libs/tree-sitter-c-0.20.1 index 5cf06072d7e4..6cb1107d2258 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-c-0.20.1 +++ b/metadata/md5-cache/dev-libs/tree-sitter-c-0.20.1 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-c/archive/v0.20.1.tar.gz -> tree-sitter-c-0.20.1.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=91765889d4c1c28d6adfbcbf22b14031 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-c-sharp-0.19.1 b/metadata/md5-cache/dev-libs/tree-sitter-c-sharp-0.19.1 index b4aedff74b8b..cbcf3a3a6d9a 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-c-sharp-0.19.1 +++ b/metadata/md5-cache/dev-libs/tree-sitter-c-sharp-0.19.1 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-c-sharp/archive/v0.19.1.tar.gz -> tree-sitter-c-sharp-0.19.1.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=17db7618b35eeddc8b6baff34a905aa2 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-cpp-0.20.0 b/metadata/md5-cache/dev-libs/tree-sitter-cpp-0.20.0 index 71dad088d822..f41d76df98a4 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-cpp-0.20.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-cpp-0.20.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-cpp/archive/v0.20.0.tar.gz -> tree-sitter-cpp-0.20.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=55ddbdb15dfc6936e48a9806552a55aa diff --git a/metadata/md5-cache/dev-libs/tree-sitter-css-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-css-0.19.0 index ef0a0745319d..315d22c7ea60 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-css-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-css-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-css/archive/v0.19.0.tar.gz -> tree-sitter-css-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=cff8fba25a235538f167cc21a603a4fa diff --git a/metadata/md5-cache/dev-libs/tree-sitter-embedded-template-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-embedded-template-0.19.0 index 917287c70bcb..daf64b0fca54 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-embedded-template-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-embedded-template-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-embedded-template/archive/v0.19.0.tar.gz -> tree-sitter-embedded-template-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=4e3b93c9b375d5f57f4245306352cfa9 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-go-0.19.1 b/metadata/md5-cache/dev-libs/tree-sitter-go-0.19.1 index 07cdf7b2b078..cf8f0790a476 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-go-0.19.1 +++ b/metadata/md5-cache/dev-libs/tree-sitter-go-0.19.1 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-go/archive/rust-0.19.1.tar.gz -> tree-sitter-go-0.19.1.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=23acbd29a27f3bf43befd4b49cc72f50 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-haskell-0.13.0_p20211114 b/metadata/md5-cache/dev-libs/tree-sitter-haskell-0.13.0_p20211114 index 8ffc1fabdb57..bf93af028d60 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-haskell-0.13.0_p20211114 +++ b/metadata/md5-cache/dev-libs/tree-sitter-haskell-0.13.0_p20211114 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-haskell/archive/d72f2e42c0d5ccf8e8b1c39e3642428317e8fe02.tar.gz -> tree-sitter-haskell-0.13.0_p20211114.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=3c210c5ee6b4fcbb1e9b4cb20a1b7296 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-html-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-html-0.19.0 index b3432244b2d9..48e0b80dd304 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-html-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-html-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-html/archive/v0.19.0.tar.gz -> tree-sitter-html-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=963675f7d47a8d3205825af45bbf510b diff --git a/metadata/md5-cache/dev-libs/tree-sitter-java-0.19.1 b/metadata/md5-cache/dev-libs/tree-sitter-java-0.19.1 index f75c7d3936df..6ed7604271cf 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-java-0.19.1 +++ b/metadata/md5-cache/dev-libs/tree-sitter-java-0.19.1 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-java/archive/v0.19.1.tar.gz -> tree-sitter-java-0.19.1.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=0d6302ae7fcb2ec8f431baa9c5a5e5dc diff --git a/metadata/md5-cache/dev-libs/tree-sitter-javascript-0.20.0 b/metadata/md5-cache/dev-libs/tree-sitter-javascript-0.20.0 index ac56aed1d433..fd3dd268fdfd 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-javascript-0.20.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-javascript-0.20.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-javascript/archive/rust-0.20.0.tar.gz -> tree-sitter-javascript-0.20.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=0c3064630953cd34497dcda6dfc6a650 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-jsdoc-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-jsdoc-0.19.0 index eb2fc32424bc..67936fc88a7c 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-jsdoc-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-jsdoc-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-jsdoc/archive/v0.19.0.tar.gz -> tree-sitter-jsdoc-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=8c506ccf738b09a4461eba758aac292c diff --git a/metadata/md5-cache/dev-libs/tree-sitter-json-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-json-0.19.0 index f7d6e0a1052e..26a9c7d3cfb1 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-json-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-json-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-json/archive/v0.19.0.tar.gz -> tree-sitter-json-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=e35e5ffe02b5b9ef49e17d3e19e25bb0 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-julia-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-julia-0.19.0 index 98795d248ff9..887c20e89517 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-julia-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-julia-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-julia/archive/v0.19.0.tar.gz -> tree-sitter-julia-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=6ff02d88437f2e83cbf83c335dde2267 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-ocaml-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-ocaml-0.19.0 index 88e2393a4179..dd048880b7e8 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-ocaml-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-ocaml-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-ocaml/archive/v0.19.0.tar.gz -> tree-sitter-ocaml-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=dff104e3037f5a91f8ffb133af5b4671 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-php-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-php-0.19.0 index 775780cba2a8..f0d6d26a4cfb 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-php-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-php-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-php/archive/v0.19.0.tar.gz -> tree-sitter-php-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=b965b5e3120f65200314c368964a9420 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-python-0.19.1_p20211112 b/metadata/md5-cache/dev-libs/tree-sitter-python-0.19.1_p20211112 index f8fed9abee1a..48a500808ae8 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-python-0.19.1_p20211112 +++ b/metadata/md5-cache/dev-libs/tree-sitter-python-0.19.1_p20211112 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-python/archive/24b530ca158d2782ea9046e756057a412e16b52f.tar.gz -> tree-sitter-python-0.19.1_p20211112.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=fb3ac12191efe4abd703775f8c1f0ac4 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-ql-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-ql-0.19.0 index 14bec9842555..1e3f29c6a827 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-ql-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-ql-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-ql/archive/v0.19.0.tar.gz -> tree-sitter-ql-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=1a5d5558aa9dc2eafb47463968a66156 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-regex-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-regex-0.19.0 index 32ae7fb31221..0380e1893576 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-regex-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-regex-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-regex/archive/v0.19.0.tar.gz -> tree-sitter-regex-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=8a29e39bc6f02bf7c1f9973fc8debf94 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-ruby-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-ruby-0.19.0 index ab47112f37dd..5a1613112f81 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-ruby-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-ruby-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-ruby/archive/v0.19.0.tar.gz -> tree-sitter-ruby-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=b7cc1d79d8d724c03e151e4d960c9c6a diff --git a/metadata/md5-cache/dev-libs/tree-sitter-rust-0.20.0 b/metadata/md5-cache/dev-libs/tree-sitter-rust-0.20.0 index 1cb8773822a7..f9545e4fa543 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-rust-0.20.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-rust-0.20.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-rust/archive/v0.20.0.tar.gz -> tree-sitter-rust-0.20.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=82d5fa6c84a7dda48945e002e62baff3 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-rust-0.20.1 b/metadata/md5-cache/dev-libs/tree-sitter-rust-0.20.1 index bbe389d913c3..cb844d40fb67 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-rust-0.20.1 +++ b/metadata/md5-cache/dev-libs/tree-sitter-rust-0.20.1 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-rust/archive/v0.20.1.tar.gz -> tree-sitter-rust-0.20.1.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=0e30100cfcd35b83dc1783a8671a9a7b diff --git a/metadata/md5-cache/dev-libs/tree-sitter-scala-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-scala-0.19.0 index 2060ea717526..19f0ccda059f 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-scala-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-scala-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-scala/archive/v0.19.0.tar.gz -> tree-sitter-scala-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=b59c0a8a5773768787245f939afc7d77 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-tsq-0.19.0 b/metadata/md5-cache/dev-libs/tree-sitter-tsq-0.19.0 index e7ccf1f3f1f4..3d37ad744f4d 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-tsq-0.19.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-tsq-0.19.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-tsq/archive/0.19.0.tar.gz -> tree-sitter-tsq-0.19.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=38f1d4aed3bd2379096e86d9e6beccef diff --git a/metadata/md5-cache/dev-libs/tree-sitter-typescript-0.20.0 b/metadata/md5-cache/dev-libs/tree-sitter-typescript-0.20.0 index 021bed594d69..ac825e8823e5 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-typescript-0.20.0 +++ b/metadata/md5-cache/dev-libs/tree-sitter-typescript-0.20.0 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-typescript/archive/rust-0.20.0.tar.gz -> tree-sitter-typescript-0.20.0.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=3092ddc7cc0a81982e4c21a2256f5daf diff --git a/metadata/md5-cache/dev-libs/tree-sitter-typescript-0.20.1 b/metadata/md5-cache/dev-libs/tree-sitter-typescript-0.20.1 index a2589a342eb9..be3c3ed1625e 100644 --- a/metadata/md5-cache/dev-libs/tree-sitter-typescript-0.20.1 +++ b/metadata/md5-cache/dev-libs/tree-sitter-typescript-0.20.1 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter-typescript/archive/v0.20.1.tar.gz -> tree-sitter-typescript-0.20.1.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar ddb7304ac0e90c1cc08b32af0ca9682b +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 tree-sitter-grammar a3a9088088917825fa24975b21938a86 _md5_=1320bc9faed6e42f4951ace75abe2d26 diff --git a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.18-r1 b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.18-r1 index 934684798cb5..ff6f1e93919b 100644 --- a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.18-r1 +++ b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.18-r1 @@ -11,5 +11,5 @@ RDEPEND=>=dev-libs/xapian-1.4.15 lua? ( lua_targets_luajit? ( dev-lang/luajit:= REQUIRED_USE=|| ( java lua mono perl php python ruby tcl ) lua? ( || ( lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-3 lua_targets_lua5-4 ) ) python? ( || ( python_targets_python3_8 python_targets_python3_9 ) ) ruby? ( || ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) ) php? ( || ( php_targets_php7-2 php_targets_php7-3 php_targets_php7-4 ) ) SLOT=0 SRC_URI=https://oligarchy.co.uk/xapian/1.4.18/xapian-bindings-1.4.18.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e lua d5c7dbcaf69f3065f5d7ce3b172c2214 lua-utils e69ff116248d78546ae1a234c086fe80 mono-env 87888393b1c1b882d0543087e28ec0b0 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b php-ext-source-r3 3c26d87acac034aedf8bf126f7010c8a python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e lua d5c7dbcaf69f3065f5d7ce3b172c2214 lua-utils e69ff116248d78546ae1a234c086fe80 mono-env 87888393b1c1b882d0543087e28ec0b0 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b php-ext-source-r3 3c26d87acac034aedf8bf126f7010c8a python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3f99d728c0458f6758c2fb9f70444d83 diff --git a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.19 b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.19 index c92a2c3faa32..7db0598abc4a 100644 --- a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.19 +++ b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.19 @@ -11,5 +11,5 @@ RDEPEND=>=dev-libs/xapian-1.4.19 lua? ( lua_targets_luajit? ( dev-lang/luajit:= REQUIRED_USE=|| ( java lua mono perl php python ruby tcl ) lua? ( || ( lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-3 lua_targets_lua5-4 ) ) python? ( || ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) ) ruby? ( || ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) ) php? ( || ( php_targets_php7-3 php_targets_php7-4 php_targets_php8-0 ) ) SLOT=0 SRC_URI=https://oligarchy.co.uk/xapian/1.4.19/xapian-bindings-1.4.19.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e lua d5c7dbcaf69f3065f5d7ce3b172c2214 lua-utils e69ff116248d78546ae1a234c086fe80 mono-env 87888393b1c1b882d0543087e28ec0b0 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b php-ext-source-r3 3c26d87acac034aedf8bf126f7010c8a python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e lua d5c7dbcaf69f3065f5d7ce3b172c2214 lua-utils e69ff116248d78546ae1a234c086fe80 mono-env 87888393b1c1b882d0543087e28ec0b0 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b php-ext-source-r3 3c26d87acac034aedf8bf126f7010c8a python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d705df7deabf90f9ac174162d3d9861a diff --git a/metadata/md5-cache/dev-lisp/Manifest.gz b/metadata/md5-cache/dev-lisp/Manifest.gz index 30be4014c199..c815f04e55f9 100644 Binary files a/metadata/md5-cache/dev-lisp/Manifest.gz and b/metadata/md5-cache/dev-lisp/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lisp/gcl-2.6.10 b/metadata/md5-cache/dev-lisp/gcl-2.6.10 deleted file mode 100644 index 580cf4432075..000000000000 --- a/metadata/md5-cache/dev-lisp/gcl-2.6.10 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=emacs? ( >=app-editors/emacs-23.1:* ) readline? ( sys-libs/readline:= ) athena? ( x11-libs/libXaw ) >=dev-libs/gmp-4.1:= tk? ( dev-lang/tk:= ) X? ( x11-libs/libXt x11-libs/libXext x11-libs/libXmu x11-libs/libXaw ) virtual/latex-base virtual/texi2dvi >=app-text/texi2html-1.64 >=sys-devel/autoconf-2.52 -DESCRIPTION=GNU Common Lisp -EAPI=5 -HOMEPAGE=https://www.gnu.org/software/gcl/gcl.html -IUSE=+ansi athena emacs +readline tk X -KEYWORDS=amd64 ~arm x86 -LICENSE=LGPL-2 GPL-2 -RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) readline? ( sys-libs/readline:= ) athena? ( x11-libs/libXaw ) >=dev-libs/gmp-4.1:= tk? ( dev-lang/tk:= ) X? ( x11-libs/libXt x11-libs/libXext x11-libs/libXmu x11-libs/libXaw ) virtual/latex-base -RESTRICT=strip -SLOT=0 -SRC_URI=mirror://gnu/gcl/gcl-2.6.10.tar.gz https://dev.gentoo.org/~grozin/gcl-2.6.10-fedora.tar.bz2 -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=b8f15dd42bf95e47c7dff847b2f43aef diff --git a/metadata/md5-cache/dev-lisp/gcl-2.6.13_pre99 b/metadata/md5-cache/dev-lisp/gcl-2.6.13_pre99 index 82ae95f1138a..4abb708f49f0 100644 --- a/metadata/md5-cache/dev-lisp/gcl-2.6.13_pre99 +++ b/metadata/md5-cache/dev-lisp/gcl-2.6.13_pre99 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/gmp virtual/latex-base emacs? ( app-editors/emacs:= ) readline? RESTRICT=strip SLOT=0 SRC_URI=https://dev.gentoo.org/~grozin/gcl-2.6.13_pre99.tar.xz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=2814595ef48906cd3c83c80950746167 diff --git a/metadata/md5-cache/dev-lua/Manifest.gz b/metadata/md5-cache/dev-lua/Manifest.gz index a63b9d12aa83..9cb054b44515 100644 Binary files a/metadata/md5-cache/dev-lua/Manifest.gz and b/metadata/md5-cache/dev-lua/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lua/lua-term-0.7-r1 b/metadata/md5-cache/dev-lua/lua-term-0.7-r2 similarity index 96% rename from metadata/md5-cache/dev-lua/lua-term-0.7-r1 rename to metadata/md5-cache/dev-lua/lua-term-0.7-r2 index 1606ac521124..56ca86cfc343 100644 --- a/metadata/md5-cache/dev-lua/lua-term-0.7-r1 +++ b/metadata/md5-cache/dev-lua/lua-term-0.7-r2 @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-3 lua_t SLOT=0 SRC_URI=https://github.com/hoelzro/lua-term/archive/0.07.tar.gz -> lua-term-0.7.tar.gz _eclasses_=lua d5c7dbcaf69f3065f5d7ce3b172c2214 lua-utils e69ff116248d78546ae1a234c086fe80 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=fed83c22ad53f71a168cc6daae819273 +_md5_=6fe437ea94a428d0453d469af3730aa7 diff --git a/metadata/md5-cache/dev-lua/luaposix-35.0-r103 b/metadata/md5-cache/dev-lua/luaposix-35.0-r103 deleted file mode 100644 index 1fdf67229b9e..000000000000 --- a/metadata/md5-cache/dev-lua/luaposix-35.0-r103 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=compile install prepare -DEPEND=lua_targets_luajit? ( dev-lang/luajit:= ) lua_targets_lua5-1? ( dev-lang/lua:5.1 ) lua_targets_lua5-3? ( dev-lang/lua:5.3 ) lua_targets_lua5-4? ( dev-lang/lua:5.4 ) virtual/libcrypt:= -DESCRIPTION=Bindings for POSIX APIs -EAPI=7 -HOMEPAGE=https://luaposix.github.io/luaposix/ https://github.com/luaposix/luaposix -IUSE=doc lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-3 lua_targets_lua5-4 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux -LICENSE=MIT -RDEPEND=lua_targets_luajit? ( dev-lang/luajit:= ) lua_targets_lua5-1? ( dev-lang/lua:5.1 ) lua_targets_lua5-3? ( dev-lang/lua:5.3 ) lua_targets_lua5-4? ( dev-lang/lua:5.4 ) virtual/libcrypt:= lua_targets_lua5-1? ( dev-lua/lua-bit32[lua_targets_lua5-1(-)] ) lua_targets_luajit? ( dev-lua/lua-bit32[lua_targets_luajit(-)] ) -REQUIRED_USE=|| ( lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-3 lua_targets_lua5-4 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/luaposix/luaposix/archive/v35.0.tar.gz -> luaposix-35.0.tar.gz -_eclasses_=lua d5c7dbcaf69f3065f5d7ce3b172c2214 lua-utils e69ff116248d78546ae1a234c086fe80 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ff1a28611b56a639192797e25be74be9 diff --git a/metadata/md5-cache/dev-ml/Manifest.gz b/metadata/md5-cache/dev-ml/Manifest.gz index 2f8534972e0d..f4824625bf49 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-1.5.0 b/metadata/md5-cache/dev-ml/alcotest-1.5.0 index 54396c1c1006..99da1966c81d 100644 --- a/metadata/md5-cache/dev-ml/alcotest-1.5.0 +++ b/metadata/md5-cache/dev-ml/alcotest-1.5.0 @@ -5,10 +5,10 @@ DESCRIPTION=A lightweight and colourful test framework EAPI=7 HOMEPAGE=https://github.com/mirage/alcotest/ IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=ISC RDEPEND=>=dev-ml/dune-2.8 dev-ml/astring:= dev-ml/async_unix:= dev-ml/cmdliner:= dev-ml/core:= dev-ml/core_kernel:= dev-ml/duration:= >=dev-ml/fmt-0.8.9:= dev-ml/mirage-clock:= dev-ml/re:= dev-ml/result:= dev-ml/logs:= dev-ml/uutf:= dev-ml/uuidm:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/1.5.0 SRC_URI=https://github.com/mirage/alcotest/archive/1.5.0.tar.gz -> alcotest-1.5.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=ca379f933799032cb611657164e3afd7 +_md5_=28f4f1887d0131cecf34aef81f3e01ee diff --git a/metadata/md5-cache/dev-ml/astring-0.8.5 b/metadata/md5-cache/dev-ml/astring-0.8.5 index 28d16b0feada..a5b3c36a0a06 100644 --- a/metadata/md5-cache/dev-ml/astring-0.8.5 +++ b/metadata/md5-cache/dev-ml/astring-0.8.5 @@ -4,10 +4,10 @@ DEPEND=>=dev-lang/ocaml-4:= DESCRIPTION=Alternative String module for OCaml EAPI=7 HOMEPAGE=https://erratique.ch/software/astring https://github.com/dbuenzli/astring -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 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 dc11e376d9abc263ca618c5741206216 -_md5_=a5f921c0b2a88df02ad18d2e8d417d77 +_md5_=89a181d411f1708e8091963ac82c1008 diff --git a/metadata/md5-cache/dev-ml/async_kernel-0.14.0 b/metadata/md5-cache/dev-ml/async_kernel-0.14.0 index 23395a574ceb..942c73be929c 100644 --- a/metadata/md5-cache/dev-ml/async_kernel-0.14.0 +++ b/metadata/md5-cache/dev-ml/async_kernel-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Jane Street Capital's asynchronous execution library (core) EAPI=7 HOMEPAGE=https://github.com/janestreet/async_kernel IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=dev-ml/core_kernel:= dev-ml/ppx_jane:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/async_kernel/archive/v0.14.0.tar.gz -> async_kernel-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=ba0a7899c35b77ff1d089d7bb43237a8 +_md5_=1f37ca1fea28359b2dde8a3f99db7744 diff --git a/metadata/md5-cache/dev-ml/async_unix-0.14.0 b/metadata/md5-cache/dev-ml/async_unix-0.14.0 index 6b4909725099..e4e8678133bb 100644 --- a/metadata/md5-cache/dev-ml/async_unix-0.14.0 +++ b/metadata/md5-cache/dev-ml/async_unix-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Jane Street Capital's asynchronous execution library (unix) EAPI=7 HOMEPAGE=https://github.com/janestreet/async_unix IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=dev-ml/async_kernel:= dev-ml/core:= dev-ml/core_kernel:= dev-ml/ppx_jane:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/async_unix/archive/v0.14.0.tar.gz -> async_unix-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=403002fa968dd686c13070ab04e074f9 +_md5_=b07c249fdd7671ae30802e9faee1963e diff --git a/metadata/md5-cache/dev-ml/base-0.14.3 b/metadata/md5-cache/dev-ml/base-0.14.3 index 00e4b18b0eb4..cd113aaa343e 100644 --- a/metadata/md5-cache/dev-ml/base-0.14.3 +++ b/metadata/md5-cache/dev-ml/base-0.14.3 @@ -5,10 +5,10 @@ DESCRIPTION=Standard library for OCaml EAPI=7 HOMEPAGE=https://github.com/janestreet/base IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/sexplib0-0.14.0:= dev-ml/dune-configurator:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.3 SRC_URI=https://github.com/janestreet/base/archive/v0.14.3.tar.gz -> base-0.14.3.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=67277066c046bef39837cb4a4a136a3a +_md5_=1d8fa6afa1393d415454bb48b93d6373 diff --git a/metadata/md5-cache/dev-ml/base_bigstring-0.14.0 b/metadata/md5-cache/dev-ml/base_bigstring-0.14.0 index fff230ea3db4..a0932e7bd46e 100644 --- a/metadata/md5-cache/dev-ml/base_bigstring-0.14.0 +++ b/metadata/md5-cache/dev-ml/base_bigstring-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=String type based on Bigarray, for use in I/O and C-bindings EAPI=7 HOMEPAGE=https://github.com/janestreet/base_bigstring IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=>=dev-lang/ocaml-4.08.0:=[ocamlopt=] dev-ml/base:= dev-ml/ppx_jane:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/base_bigstring/archive/v0.14.0.tar.gz -> base_bigstring-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=efc9db079a7ac0a51e653bc7f0c79966 +_md5_=dea925e6135e4aed947d682c531fd11e diff --git a/metadata/md5-cache/dev-ml/base_quickcheck-0.14.1-r1 b/metadata/md5-cache/dev-ml/base_quickcheck-0.14.1-r1 index 7524e60c7908..8fa0a26f9e3e 100644 --- a/metadata/md5-cache/dev-ml/base_quickcheck-0.14.1-r1 +++ b/metadata/md5-cache/dev-ml/base_quickcheck-0.14.1-r1 @@ -5,10 +5,10 @@ DESCRIPTION=Randomized testing framework, designed for compatibility with Base EAPI=7 HOMEPAGE=https://github.com/janestreet/base_quickcheck IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/ppx_base-0.14.0:= >=dev-ml/ppx_fields_conv-0.14.1:= >=dev-ml/ppx_let-0.14.0:= >=dev-ml/ppx_sexp_message-0.14.0:= >=dev-ml/ppx_sexp_value-0.14.0:= dev-ml/splittable_random:= >=dev-ml/ppxlib-0.22.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.1 SRC_URI=https://github.com/janestreet/base_quickcheck/archive/v0.14.1.tar.gz -> base_quickcheck-0.14.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=bf6bb2d09169399ded4e7a6a9df1c6e5 +_md5_=e03fe86698184f578e2afc42f6accf6c diff --git a/metadata/md5-cache/dev-ml/bigarray-compat-1.1.0 b/metadata/md5-cache/dev-ml/bigarray-compat-1.1.0 index 406dd75622bb..6e8c15631331 100644 --- a/metadata/md5-cache/dev-ml/bigarray-compat-1.1.0 +++ b/metadata/md5-cache/dev-ml/bigarray-compat-1.1.0 @@ -5,10 +5,10 @@ DESCRIPTION=Compatibility library to use Stdlib.Bigarray when possible EAPI=7 HOMEPAGE=https://github.com/mirage/bigarray-compat IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=ISC RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0 SRC_URI=https://github.com/mirage/bigarray-compat/archive/v1.1.0.tar.gz -> bigarray-compat-1.1.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=9b39ed34a2a50eccb519fb6ad2fdd5e8 +_md5_=729378948376542871f8bdbabac602a8 diff --git a/metadata/md5-cache/dev-ml/bin_prot-0.15.0 b/metadata/md5-cache/dev-ml/bin_prot-0.15.0 index 73483d172bae..08ad151ed36a 100644 --- a/metadata/md5-cache/dev-ml/bin_prot-0.15.0 +++ b/metadata/md5-cache/dev-ml/bin_prot-0.15.0 @@ -5,10 +5,10 @@ DESCRIPTION=Binary protocol generator EAPI=7 HOMEPAGE=https://github.com/janestreet/bin_prot IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/ppx_compare-0.14.0:= >=dev-ml/ppx_custom_printf-0.14.0:= >=dev-ml/ppx_fields_conv-0.14.0:= >=dev-ml/ppx_optcomp-0.14.0:= >=dev-ml/ppx_sexp_conv-0.14.0:= >=dev-ml/ppx_variants_conv-0.14.0:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.15.0 SRC_URI=https://github.com/janestreet/bin_prot/archive/v0.15.0.tar.gz -> bin_prot-0.15.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=e4782efd6f5058ef8f54eac4a8c953d4 +_md5_=5f7c9b71d0bfce069532d61f3e32f22f diff --git a/metadata/md5-cache/dev-ml/bos-0.2.1 b/metadata/md5-cache/dev-ml/bos-0.2.1 index 466bfd145fe1..c771ffd564d3 100644 --- a/metadata/md5-cache/dev-ml/bos-0.2.1 +++ b/metadata/md5-cache/dev-ml/bos-0.2.1 @@ -5,10 +5,10 @@ DESCRIPTION=Basic OS interaction for OCaml EAPI=7 HOMEPAGE=https://erratique.ch/software/bos https://github.com/dbuenzli/bos IUSE=test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=ISC RDEPEND=dev-lang/ocaml:= dev-ml/rresult:= dev-ml/astring:= dev-ml/fpath:= dev-ml/fmt:= dev-ml/mtime dev-ml/logs:=[fmt] RESTRICT=!test? ( test ) SLOT=0/0.2.1 SRC_URI=https://erratique.ch/software/bos/releases/bos-0.2.1.tbz -_md5_=fd08e1b95c6e38ff621e0570891325dd +_md5_=f3d143599b33ac0b5557565ab3ddee65 diff --git a/metadata/md5-cache/dev-ml/camlbz2-0.7.0 b/metadata/md5-cache/dev-ml/camlbz2-0.7.0 index 857ec7ce741e..4cd1963595d1 100644 --- a/metadata/md5-cache/dev-ml/camlbz2-0.7.0 +++ b/metadata/md5-cache/dev-ml/camlbz2-0.7.0 @@ -5,10 +5,10 @@ DESCRIPTION=OCaml bindings for libbz (AKA, bzip2) EAPI=7 HOMEPAGE=https://gitlab.com/irill/camlbz2 IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=LGPL-2.1 RDEPEND=app-arch/bzip2 >=dev-lang/ocaml-3.12:=[ocamlopt] dev-lang/ocaml:=[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 9724194ab651ce63fd9bc06e4e1410b4 findlib e6df6108c2d753998b1206f4d5ea4a2d gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=53f949252dfd0970f9771fd5bb4f0df2 +_md5_=d13a8d1d2fd8fd16efc58d04d1841bf5 diff --git a/metadata/md5-cache/dev-ml/camlzip-1.11 b/metadata/md5-cache/dev-ml/camlzip-1.11 index 4abe1a7e2bf5..840151ea5579 100644 --- a/metadata/md5-cache/dev-ml/camlzip-1.11 +++ b/metadata/md5-cache/dev-ml/camlzip-1.11 @@ -4,10 +4,10 @@ DESCRIPTION=Compressed file access ML library (ZIP, GZIP and JAR) EAPI=7 HOMEPAGE=https://github.com/xavierleroy/camlzip IUSE=+ocamlopt +ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/ocaml-4.07:=[ocamlopt?] >=sys-libs/zlib-1.1.3 dev-lang/ocaml:=[ocamlopt?] SLOT=1/1.11 SRC_URI=https://github.com/xavierleroy/camlzip/archive/rel111.tar.gz -> camlzip-1.11.tar.gz _eclasses_=findlib e6df6108c2d753998b1206f4d5ea4a2d -_md5_=633702732a6c6838dc2959d5c4650e8e +_md5_=e7726f861dcb83dda0dbad567e981268 diff --git a/metadata/md5-cache/dev-ml/cinaps-0.15.1 b/metadata/md5-cache/dev-ml/cinaps-0.15.1 index a26d31be5e20..8bcc51450270 100644 --- a/metadata/md5-cache/dev-ml/cinaps-0.15.1 +++ b/metadata/md5-cache/dev-ml/cinaps-0.15.1 @@ -5,11 +5,11 @@ DESCRIPTION=Trivial metaprogramming tool EAPI=7 HOMEPAGE=https://github.com/ocaml-ppx/cinaps IUSE=+ocamlopt test -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=dev-ml/re:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/0.15.1 SRC_URI=https://github.com/ocaml-ppx/cinaps/archive/v0.15.1.tar.gz -> cinaps-0.15.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=3f2e34e66df5d78d32b747ced0c03b3b +_md5_=54c25cfd7bf6352ef91ae2c80a163352 diff --git a/metadata/md5-cache/dev-ml/cmdliner-1.1.1 b/metadata/md5-cache/dev-ml/cmdliner-1.1.1 index ba36615d2ebd..acbeb453629a 100644 --- a/metadata/md5-cache/dev-ml/cmdliner-1.1.1 +++ b/metadata/md5-cache/dev-ml/cmdliner-1.1.1 @@ -4,10 +4,10 @@ DESCRIPTION=Declarative definition of command line interfaces for OCaml EAPI=7 HOMEPAGE=http://erratique.ch/software/cmdliner IUSE=+ocamlopt +ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=ISC RDEPEND=>=dev-lang/ocaml-4.08.00:=[ocamlopt?] dev-ml/result:= dev-ml/findlib:= dev-lang/ocaml:=[ocamlopt?] SLOT=0/1.1.1 SRC_URI=http://erratique.ch/software/cmdliner/releases/cmdliner-1.1.1.tbz _eclasses_=findlib e6df6108c2d753998b1206f4d5ea4a2d -_md5_=6ff8f0d4db3ade542fa07d4178dc0c73 +_md5_=d31f6d7860bf5ab5581504d8b8d8d33d diff --git a/metadata/md5-cache/dev-ml/core-0.14.1 b/metadata/md5-cache/dev-ml/core-0.14.1 index 67b7966ee558..d0659011f631 100644 --- a/metadata/md5-cache/dev-ml/core-0.14.1 +++ b/metadata/md5-cache/dev-ml/core-0.14.1 @@ -5,11 +5,11 @@ DESCRIPTION=Jane Street's alternative to the standard library EAPI=7 HOMEPAGE=https://github.com/janestreet/core IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=dev-ml/base:= dev-ml/core_kernel:= dev-ml/jst-config:= dev-ml/ppx_jane:= dev-ml/sexplib:= dev-ml/spawn:= dev-ml/stdio:= dev-ml/timezone:= =dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/0.14.1 SRC_URI=https://github.com/janestreet/core/archive/v0.14.1.tar.gz -> core-0.14.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=f17311d174fbbd0c71bd336c984c71db +_md5_=ea14e6914210dd0ca558422e5587a6d4 diff --git a/metadata/md5-cache/dev-ml/core_bench-0.14.0 b/metadata/md5-cache/dev-ml/core_bench-0.14.0 index 0cbc7570f23a..a7a02a9497b9 100644 --- a/metadata/md5-cache/dev-ml/core_bench-0.14.0 +++ b/metadata/md5-cache/dev-ml/core_bench-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Micro-benchmarking library for OCaml EAPI=7 HOMEPAGE=https://github.com/janestreet/core_bench IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=>=dev-ml/core-0.14.0:= >=dev-ml/core_kernel-0.14.0:= >=dev-ml/ppx_jane-0.14.0:= dev-ml/textutils:= >=dev-ml/re-1.8.0:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/core_bench/archive/v0.14.0.tar.gz -> core_bench-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=06e90a9323e1b7c35463289181898291 +_md5_=49b5a08e943b9ef062984af3a3f80c27 diff --git a/metadata/md5-cache/dev-ml/core_kernel-0.14.2-r1 b/metadata/md5-cache/dev-ml/core_kernel-0.14.2-r1 index b80b34d1db93..8e756cce5748 100644 --- a/metadata/md5-cache/dev-ml/core_kernel-0.14.2-r1 +++ b/metadata/md5-cache/dev-ml/core_kernel-0.14.2-r1 @@ -5,11 +5,11 @@ DESCRIPTION=System-independent part of Core EAPI=8 HOMEPAGE=https://github.com/janestreet/core_kernel IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1-with-linking-exception RDEPEND=dev-lang/ocaml:= =dev-ml/ppx_optcomp-0.14.3:= dev-ml/base:= dev-ml/base_bigstring:= dev-ml/base_quickcheck:= dev-ml/bin_prot:= dev-ml/fieldslib:= dev-ml/jane-street-headers:= dev-ml/ocaml-migrate-parsetree:= dev-ml/ppx_assert:= dev-ml/ppx_base:= dev-ml/ppx_hash:= dev-ml/ppx_inline_test:= dev-ml/ppx_jane:= dev-ml/ppx_sexp_conv:= dev-ml/ppx_sexp_message:= dev-ml/sexplib:= dev-ml/splittable_random:= dev-ml/stdio:= dev-ml/time_now:= dev-ml/typerep:= dev-ml/variantslib:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/0.14.2 SRC_URI=https://github.com/janestreet/core_kernel/archive/v0.14.2.tar.gz -> core_kernel-0.14.2.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=7606d1446d38cd1e2c7e6bdd35260402 +_md5_=9a960d947586301f6103e064bdff3c51 diff --git a/metadata/md5-cache/dev-ml/cppo-1.6.8 b/metadata/md5-cache/dev-ml/cppo-1.6.8 index 33ba64062a98..7ba08a5f9a53 100644 --- a/metadata/md5-cache/dev-ml/cppo-1.6.8 +++ b/metadata/md5-cache/dev-ml/cppo-1.6.8 @@ -5,10 +5,10 @@ DESCRIPTION=An equivalent of the C preprocessor for OCaml programs EAPI=7 HOMEPAGE=https://github.com/ocaml-community/cppo/ IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=BSD RDEPEND=dev-ml/ocamlbuild dev-ml/findlib:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/1.6.8 SRC_URI=https://github.com/ocaml-community/cppo/archive/v1.6.8.tar.gz -> cppo-1.6.8.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=e1265bfefc08609dfc70516e96decb75 +_md5_=60d1e24742aa70b1895f4384b230d037 diff --git a/metadata/md5-cache/dev-ml/csexp-1.5.1 b/metadata/md5-cache/dev-ml/csexp-1.5.1 index 0c3705aa1642..6eefa90cba29 100644 --- a/metadata/md5-cache/dev-ml/csexp-1.5.1 +++ b/metadata/md5-cache/dev-ml/csexp-1.5.1 @@ -5,11 +5,11 @@ DESCRIPTION=Parsing and printing of S-expressions in Canonical form EAPI=7 HOMEPAGE=https://github.com/ocaml-dune/csexp IUSE=+ocamlopt test -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=>=dev-ml/result-1.5:=[ocamlopt=] >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/1.5.1 SRC_URI=https://github.com/ocaml-dune/csexp/releases/download/1.5.1/csexp-1.5.1.tbz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=3d19ed9126570500bfa2c342a5b591d3 +_md5_=2628c866d6a5afcf0f07ea3fc401d6e1 diff --git a/metadata/md5-cache/dev-ml/cudf-0.9-r2 b/metadata/md5-cache/dev-ml/cudf-0.9-r2 index bdf26e50ba45..4bce922d835e 100644 --- a/metadata/md5-cache/dev-ml/cudf-0.9-r2 +++ b/metadata/md5-cache/dev-ml/cudf-0.9-r2 @@ -5,11 +5,11 @@ DESCRIPTION=Library to parse, pretty print, and evaluate CUDF documents EAPI=7 HOMEPAGE=http://www.mancoosi.org/cudf/ IUSE=+ocamlopt llvm-libunwind test -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=LGPL-3 RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] dev-ml/extlib:= dev-ml/findlib:= dev-libs/glib:2 llvm-libunwind? ( sys-libs/llvm-libunwind:= ) !llvm-libunwind? ( sys-libs/libunwind:= ) sys-libs/ncurses:= RESTRICT=!test? ( test ) SLOT=0/0.9 SRC_URI=https://gforge.inria.fr/frs/download.php/file/36602/cudf-0.9.tar.gz _eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=d8af68629d40b73892e05cb205afd0e4 +_md5_=2a05c9dfab35294f3df2878dc084f5ed diff --git a/metadata/md5-cache/dev-ml/dose3-7.0.0 b/metadata/md5-cache/dev-ml/dose3-7.0.0 index c3089129646f..accb836689d4 100644 --- a/metadata/md5-cache/dev-ml/dose3-7.0.0 +++ b/metadata/md5-cache/dev-ml/dose3-7.0.0 @@ -5,11 +5,11 @@ DESCRIPTION=Library to perform analysis on package repositories EAPI=7 HOMEPAGE=http://www.mancoosi.org/software/ https://gforge.inria.fr/projects/dose IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-3 RDEPEND=>=dev-lang/ocaml-4.03:=[ocamlopt=] dev-ml/ocaml-base64:=[ocamlopt=] >=dev-ml/cudf-0.7:=[ocamlopt=] >=dev-ml/extlib-1.7.8:=[ocamlopt=] >=dev-ml/ocamlgraph-2.0.0:=[ocamlopt=] >=dev-ml/re-1.2.2:=[ocamlopt=] dev-ml/parmap:=[ocamlopt=] >=dev-ml/camlzip-1.08:=[ocamlopt=] >=dev-ml/camlbz2-0.7.0:= dev-ml/ocaml-expat:=[ocamlopt=] dev-ml/xml-light:=[ocamlopt=] app-arch/rpm >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/7.0.0 SRC_URI=https://gitlab.com/irill/dose3/-/archive/7.0.0/dose3-7.0.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=f092762cd7e18a8a6ec5c055f2241d8b +_md5_=68a802bd7482347f304bb405c7c689c9 diff --git a/metadata/md5-cache/dev-ml/dune-2.9.3 b/metadata/md5-cache/dev-ml/dune-2.9.3 deleted file mode 100644 index 460e1f7cc1c1..000000000000 --- a/metadata/md5-cache/dev-ml/dune-2.9.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install -DEPEND=>=dev-lang/ocaml-4.08:= dev-ml/findlib test? ( dev-ml/core_bench dev-ml/ppx_bench dev-ml/ppx_expect ) -DESCRIPTION=A composable build system for OCaml -EAPI=7 -HOMEPAGE=https://github.com/ocaml/dune -IUSE=test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-lang/ocaml-4.08:= -RESTRICT=!test? ( test ) -SLOT=0/2.9.3 -SRC_URI=https://github.com/ocaml/dune/archive/2.9.3.tar.gz -> dune-2.9.3.tar.gz -_eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=39638bf63bb0de1fe3a5fe03cf226af7 diff --git a/metadata/md5-cache/dev-ml/dune-2.9.3-r1 b/metadata/md5-cache/dev-ml/dune-2.9.3-r1 new file mode 100644 index 000000000000..054071c62743 --- /dev/null +++ b/metadata/md5-cache/dev-ml/dune-2.9.3-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install +DEPEND=>=dev-lang/ocaml-4.08:= emacs? ( >=app-editors/emacs-23.1:* ) dev-ml/findlib test? ( dev-ml/core_bench dev-ml/ppx_bench dev-ml/ppx_expect ) +DESCRIPTION=A composable build system for OCaml +EAPI=8 +HOMEPAGE=https://github.com/ocaml/dune +IUSE=emacs test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 +LICENSE=MIT +RDEPEND=>=dev-lang/ocaml-4.08:= emacs? ( >=app-editors/emacs-23.1:* ) +RESTRICT=!test? ( test ) +SLOT=0/2.9.3 +SRC_URI=https://github.com/ocaml/dune/archive/2.9.3.tar.gz -> dune-2.9.3.tar.gz +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multiprocessing 61c959fc55c15c00bbb1079d6a71370b +_md5_=c00f4f5c3dacb1dcf9a4017160314c7b diff --git a/metadata/md5-cache/dev-ml/dune-configurator-2.9.3 b/metadata/md5-cache/dev-ml/dune-configurator-2.9.3 index aacb2b3dfcad..d4b81223c57a 100644 --- a/metadata/md5-cache/dev-ml/dune-configurator-2.9.3 +++ b/metadata/md5-cache/dev-ml/dune-configurator-2.9.3 @@ -5,11 +5,11 @@ DESCRIPTION=A composable build system for OCaml EAPI=7 HOMEPAGE=https://github.com/ocaml/dune IUSE=+ocamlopt test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=~dev-ml/dune-private-libs-2.9.3:=[ocamlopt=] dev-ml/csexp:=[ocamlopt=] dev-ml/result:=[ocamlopt=] >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/2.9.3 SRC_URI=https://github.com/ocaml/dune/archive/2.9.3.tar.gz -> dune-2.9.3.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=54c22469342fd2018d377e949a580852 +_md5_=328df214eefa29550d886c829bc7ada5 diff --git a/metadata/md5-cache/dev-ml/dune-private-libs-2.9.3 b/metadata/md5-cache/dev-ml/dune-private-libs-2.9.3 index 0f10900d73cf..4bd1cef422f7 100644 --- a/metadata/md5-cache/dev-ml/dune-private-libs-2.9.3 +++ b/metadata/md5-cache/dev-ml/dune-private-libs-2.9.3 @@ -5,11 +5,11 @@ DESCRIPTION=A composable build system for OCaml EAPI=7 HOMEPAGE=https://github.com/ocaml/dune IUSE=+ocamlopt test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=dev-ml/csexp:=[ocamlopt=] dev-ml/findlib:=[ocamlopt=] >=dev-lang/ocaml-4.09:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/2.9.3 SRC_URI=https://github.com/ocaml/dune/archive/2.9.3.tar.gz -> dune-2.9.3.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=e70bea5cb4fae4ca987f1db5fff18f0c +_md5_=3986f1be01ec9858bce4562cb42148e5 diff --git a/metadata/md5-cache/dev-ml/duration-0.1.3 b/metadata/md5-cache/dev-ml/duration-0.1.3 index 68a9eb211f09..2cef84e8ed48 100644 --- a/metadata/md5-cache/dev-ml/duration-0.1.3 +++ b/metadata/md5-cache/dev-ml/duration-0.1.3 @@ -5,11 +5,11 @@ DESCRIPTION=Duration - conversions to various time units EAPI=7 HOMEPAGE=https://github.com/hannesm/duration IUSE=+ocamlopt test -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=ISC RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/0.1.3 SRC_URI=https://github.com/hannesm/duration/archive/0.1.3.tar.gz -> duration-0.1.3.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=3a883a2db4ff8f5d3e4032c879183e48 +_md5_=40a8da006102e1229372b87c8c942bac diff --git a/metadata/md5-cache/dev-ml/extlib-1.7.8 b/metadata/md5-cache/dev-ml/extlib-1.7.8 index bfa3b2d5e340..daffc9d50e50 100644 --- a/metadata/md5-cache/dev-ml/extlib-1.7.8 +++ b/metadata/md5-cache/dev-ml/extlib-1.7.8 @@ -5,10 +5,10 @@ DESCRIPTION=Standard library extensions for O'Caml EAPI=7 HOMEPAGE=https://github.com/ygrek/ocaml-extlib IUSE=doc +ocamlopt +ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=LGPL-2.1 RDEPEND=dev-lang/ocaml:=[ocamlopt?] 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 e6df6108c2d753998b1206f4d5ea4a2d vcs-clean d271b7bc7e6a009758d7d4ef749174e3 -_md5_=c1e0119e5d1db22c929ea51f542a0d8e +_md5_=327d92a4570184e72e07a7ac65a3f83f diff --git a/metadata/md5-cache/dev-ml/fieldslib-0.15.0 b/metadata/md5-cache/dev-ml/fieldslib-0.15.0 index d5a17f4740ab..87b20ceffa0c 100644 --- a/metadata/md5-cache/dev-ml/fieldslib-0.15.0 +++ b/metadata/md5-cache/dev-ml/fieldslib-0.15.0 @@ -5,10 +5,10 @@ DESCRIPTION=Folding over record fields EAPI=7 HOMEPAGE=https://github.com/janestreet/fieldslib IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.15.0 SRC_URI=https://github.com/janestreet/fieldslib/archive/v0.15.0.tar.gz -> fieldslib-0.15.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=61f2b84a011a4fc3463c230d19bc0f04 +_md5_=6e8cc7fc879974a0dd518836a27b86d4 diff --git a/metadata/md5-cache/dev-ml/findlib-1.9.3 b/metadata/md5-cache/dev-ml/findlib-1.9.3 index 6e5266a0f03f..f177ebcace04 100644 --- a/metadata/md5-cache/dev-ml/findlib-1.9.3 +++ b/metadata/md5-cache/dev-ml/findlib-1.9.3 @@ -4,9 +4,9 @@ DESCRIPTION=OCaml tool to find/use non-standard packages EAPI=7 HOMEPAGE=http://projects.camlcity.org/projects/findlib.html IUSE=doc +ocamlopt tk -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=MIT RDEPEND=>=dev-lang/ocaml-4.02.3-r1:=[ocamlopt?] tk? ( dev-ml/labltk:= ) SLOT=0 SRC_URI=http://download.camlcity.org/download/findlib-1.9.3.tar.gz -_md5_=ae6a86a685c1b6bf8c9a142ae09bd378 +_md5_=96298023606085fb1cc87dec7801e452 diff --git a/metadata/md5-cache/dev-ml/fmt-0.9.0 b/metadata/md5-cache/dev-ml/fmt-0.9.0 index 089b6386bc64..d674f57266b8 100644 --- a/metadata/md5-cache/dev-ml/fmt-0.9.0 +++ b/metadata/md5-cache/dev-ml/fmt-0.9.0 @@ -5,11 +5,11 @@ DESCRIPTION=Combinators to devise OCaml Format pretty-printing functions EAPI=7 HOMEPAGE=https://erratique.ch/software/fmt https://github.com/dbuenzli/fmt IUSE=test +ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=ISC RDEPEND=dev-ml/cmdliner:=[ocamlopt] >=dev-lang/ocaml-4.08:=[ocamlopt] dev-ml/result:=[ocamlopt] dev-ml/stdlib-shims:=[ocamlopt] dev-ml/uchar:=[ocamlopt] dev-lang/ocaml:=[ocamlopt?] >=dev-lang/ocaml-4:= RESTRICT=!test? ( test ) SLOT=0/0.9.0 SRC_URI=https://erratique.ch/software/fmt/releases/fmt-0.9.0.tbz _eclasses_=findlib e6df6108c2d753998b1206f4d5ea4a2d opam dc11e376d9abc263ca618c5741206216 -_md5_=d8724e120cda277810202d8547385cdf +_md5_=f531524fa94b0e2011b92cb3f4c36084 diff --git a/metadata/md5-cache/dev-ml/fpath-0.7.3 b/metadata/md5-cache/dev-ml/fpath-0.7.3 index fd90b0720f40..78665add9bf1 100644 --- a/metadata/md5-cache/dev-ml/fpath-0.7.3 +++ b/metadata/md5-cache/dev-ml/fpath-0.7.3 @@ -4,10 +4,10 @@ DEPEND=dev-ml/result:= dev-ml/astring:= >=dev-lang/ocaml-4:= DESCRIPTION=File system paths for OCaml EAPI=7 HOMEPAGE=https://erratique.ch/software/fpath https://github.com/dbuenzli/fpath -KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv ~x86 LICENSE=ISC RDEPEND=dev-ml/result:= dev-ml/astring:= >=dev-lang/ocaml-4:= SLOT=0/0.7.3 SRC_URI=https://erratique.ch/software/fpath/releases/fpath-0.7.3.tbz _eclasses_=opam dc11e376d9abc263ca618c5741206216 -_md5_=6c8d2b5a917094e1a3ee6e8fd2438e86 +_md5_=5705cc677de2a0cc28fa24bbe3996c29 diff --git a/metadata/md5-cache/dev-ml/graphics-5.1.2 b/metadata/md5-cache/dev-ml/graphics-5.1.2 index d38cf10af0d0..4a8810a2570d 100644 --- a/metadata/md5-cache/dev-ml/graphics-5.1.2 +++ b/metadata/md5-cache/dev-ml/graphics-5.1.2 @@ -5,10 +5,10 @@ DESCRIPTION=The OCaml graphics library EAPI=7 HOMEPAGE=https://github.com/ocaml/graphics IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=LGPL-2.1-with-linking-exception RDEPEND=dev-ml/dune-configurator:=[ocamlopt?] >=dev-lang/ocaml-4.09:= x11-libs/libX11:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0 SRC_URI=https://github.com/ocaml/graphics/releases/download/5.1.2/graphics-5.1.2.tbz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=592849b6342f0428b37a77fe0bd2b233 +_md5_=6f6e4f0010b53b828b3030123db3b6a6 diff --git a/metadata/md5-cache/dev-ml/integers-0.5.1 b/metadata/md5-cache/dev-ml/integers-0.5.1 index b2f83c925e3a..6a40a7e7ea8f 100644 --- a/metadata/md5-cache/dev-ml/integers-0.5.1 +++ b/metadata/md5-cache/dev-ml/integers-0.5.1 @@ -5,10 +5,10 @@ DESCRIPTION=Various signed and unsigned integer types for OCaml EAPI=7 HOMEPAGE=https://github.com/ocamllabs/ocaml-integers IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.5.1 SRC_URI=https://github.com/ocamllabs/ocaml-integers/archive/0.5.1.tar.gz -> integers-0.5.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=1a5c8bb625f77c52e9da210011ae4038 +_md5_=b8cae2ef90ce9384e5d609da001d7ed5 diff --git a/metadata/md5-cache/dev-ml/jane-street-headers-0.14.0 b/metadata/md5-cache/dev-ml/jane-street-headers-0.14.0 index 0106f559e4fa..a5d80d6d7007 100644 --- a/metadata/md5-cache/dev-ml/jane-street-headers-0.14.0 +++ b/metadata/md5-cache/dev-ml/jane-street-headers-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Jane Street header files EAPI=7 HOMEPAGE=https://github.com/janestreet/jane-street-headers IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/jane-street-headers/archive/v0.14.0.tar.gz -> jane-street-headers-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=1dd0befe5b9e7a2d26883c32b33e5cad +_md5_=618e8839fb6eea05d5173473e13766dd diff --git a/metadata/md5-cache/dev-ml/jane-street-headers-0.15.0 b/metadata/md5-cache/dev-ml/jane-street-headers-0.15.0 index 715d0f91ac7f..21f002592fad 100644 --- a/metadata/md5-cache/dev-ml/jane-street-headers-0.15.0 +++ b/metadata/md5-cache/dev-ml/jane-street-headers-0.15.0 @@ -5,10 +5,10 @@ DESCRIPTION=Jane Street header files EAPI=7 HOMEPAGE=https://github.com/janestreet/jane-street-headers IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.15.0 SRC_URI=https://github.com/janestreet/jane-street-headers/archive/v0.15.0.tar.gz -> jane-street-headers-0.15.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=77f3e4e45e90aae86e92630cfc06e538 +_md5_=4cb23de035871cf5b86518aaeae8fe08 diff --git a/metadata/md5-cache/dev-ml/jst-config-0.14.0 b/metadata/md5-cache/dev-ml/jst-config-0.14.0 index 46a490894fed..0204912afab1 100644 --- a/metadata/md5-cache/dev-ml/jst-config-0.14.0 +++ b/metadata/md5-cache/dev-ml/jst-config-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Compile-time configuration for Jane Street libraries EAPI=7 HOMEPAGE=https://github.com/janestreet/jst-config IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=dev-ml/base:= dev-ml/ppx_assert:= dev-ml/stdio:= dev-ml/dune-configurator:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/jst-config/archive/v0.14.0.tar.gz -> jst-config-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=e71a4b2baed42f208f8c076dbed23409 +_md5_=370544e0a3e5d3e764749aa0859d41a1 diff --git a/metadata/md5-cache/dev-ml/jst-config-0.15.0 b/metadata/md5-cache/dev-ml/jst-config-0.15.0 index 53734c193443..6af99369e2c8 100644 --- a/metadata/md5-cache/dev-ml/jst-config-0.15.0 +++ b/metadata/md5-cache/dev-ml/jst-config-0.15.0 @@ -5,10 +5,10 @@ DESCRIPTION=Compile-time configuration for Jane Street libraries EAPI=7 HOMEPAGE=https://github.com/janestreet/jst-config IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=dev-ml/base:= dev-ml/ppx_assert:= dev-ml/stdio:= dev-ml/dune-configurator:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.15.0 SRC_URI=https://github.com/janestreet/jst-config/archive/v0.15.0.tar.gz -> jst-config-0.15.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=85123193d0db88eaa901f57c5d09801d +_md5_=845b13fed495c7621c222dbb5fa81bb1 diff --git a/metadata/md5-cache/dev-ml/labltk-8.06.12 b/metadata/md5-cache/dev-ml/labltk-8.06.12 index 9bac74484cf5..594061dbad00 100644 --- a/metadata/md5-cache/dev-ml/labltk-8.06.12 +++ b/metadata/md5-cache/dev-ml/labltk-8.06.12 @@ -4,10 +4,10 @@ DESCRIPTION=OCaml interface to the Tcl/Tk GUI framework EAPI=7 HOMEPAGE=https://garrigue.github.io/labltk/ IUSE=+ocamlopt X +ocamlopt -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux LICENSE=QPL-1.0 LGPL-2 RDEPEND=dev-lang/tk:= >=dev-lang/ocaml-4.14:=[ocamlopt?,X(+)?] dev-lang/ocaml:=[ocamlopt?] SLOT=0/8.06.12 SRC_URI=https://github.com/garrigue/labltk/archive/8.06.12.tar.gz -> labltk-8.06.12.tar.gz _eclasses_=findlib e6df6108c2d753998b1206f4d5ea4a2d multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e5c47b918ade4c9f43195ec275f94874 +_md5_=765cc2c1a705c12553fca313137861d8 diff --git a/metadata/md5-cache/dev-ml/logs-0.7.0-r1 b/metadata/md5-cache/dev-ml/logs-0.7.0-r1 index 8e413db075ca..0a1b7cc3a60d 100644 --- a/metadata/md5-cache/dev-ml/logs-0.7.0-r1 +++ b/metadata/md5-cache/dev-ml/logs-0.7.0-r1 @@ -5,11 +5,11 @@ DESCRIPTION=Logging infrastructure for OCaml EAPI=7 HOMEPAGE=https://erratique.ch/software/logs https://github.com/dbuenzli/logs IUSE=+fmt cli +lwt test +ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=ISC RDEPEND=dev-ml/result:=[ocamlopt] dev-lang/ocaml:=[ocamlopt] fmt? ( dev-ml/fmt:= ) cli? ( dev-ml/cmdliner:=[ocamlopt] ) lwt? ( dev-ml/lwt:= ) dev-lang/ocaml:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/0.7.0 SRC_URI=https://erratique.ch/software/logs/releases/logs-0.7.0.tbz _eclasses_=findlib e6df6108c2d753998b1206f4d5ea4a2d -_md5_=e10fcaf5c6b17194cf26bf474bef12be +_md5_=9d5da67822bab3d0eb73672dc11c4c2c diff --git a/metadata/md5-cache/dev-ml/luv-0.5.11 b/metadata/md5-cache/dev-ml/luv-0.5.11 index fa5f69c7658b..201e25c905a0 100644 --- a/metadata/md5-cache/dev-ml/luv-0.5.11 +++ b/metadata/md5-cache/dev-ml/luv-0.5.11 @@ -5,11 +5,11 @@ DESCRIPTION=Binding to libuv: cross-platform asynchronous I/O EAPI=8 HOMEPAGE=https://github.com/aantron/luv IUSE=+ocamlopt test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=dev-lang/ocaml:=[ocamlopt?] dev-libs/libuv:= dev-ml/ocaml-ctypes:=[ocamlopt?] dev-ml/result:=[ocamlopt?] >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/0.5.11 SRC_URI=https://github.com/aantron/luv/releases/download/0.5.11/luv-0.5.11.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=7d6aa502794e6422aaaf3ddb9abb2cc5 +_md5_=6e7dd9a235a657d01dc880f39fb7b3ad diff --git a/metadata/md5-cache/dev-ml/lwt-5.4.2-r1 b/metadata/md5-cache/dev-ml/lwt-5.4.2-r1 index 975524f06396..322d80177fc9 100644 --- a/metadata/md5-cache/dev-ml/lwt-5.4.2-r1 +++ b/metadata/md5-cache/dev-ml/lwt-5.4.2-r1 @@ -5,10 +5,10 @@ DESCRIPTION=Cooperative light-weight thread library for OCaml EAPI=7 HOMEPAGE=http://ocsigen.org/lwt IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1-with-linking-exception RDEPEND=dev-ml/result:= dev-ml/mmap:= dev-ml/ocplib-endian:= dev-ml/ppxlib:= dev-ml/react:= dev-ml/luv:= dev-libs/libev >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/5.4.2 SRC_URI=https://github.com/ocsigen/lwt/archive/5.4.2.tar.gz -> lwt-5.4.2.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=b6ef6f43faba5091fe35421fda702e7b +_md5_=bbedd63f9bd65e93de5d9ed8a1c6191a diff --git a/metadata/md5-cache/dev-ml/mccs-1.1.13 b/metadata/md5-cache/dev-ml/mccs-1.1.13 index 0203d0cd7bc5..fdf902f474d9 100644 --- a/metadata/md5-cache/dev-ml/mccs-1.1.13 +++ b/metadata/md5-cache/dev-ml/mccs-1.1.13 @@ -5,11 +5,11 @@ DESCRIPTION=Multi Criteria CUDF Solver EAPI=7 HOMEPAGE=http://www.i3s.unice.fr/~cpjm/misc/ https://github.com/AltGr/ocaml-mccs/issues IUSE=+ocamlopt test -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=BSD RDEPEND=dev-ml/cudf:= sci-mathematics/glpk:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/1.1.13 SRC_URI=https://github.com/AltGr/ocaml-mccs/archive/1.1+13.tar.gz -> mccs-1.1.13.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=b740c78482766c63d1762c053fb3ccd1 +_md5_=846a54a45c9cde9e168e17165b4d0e74 diff --git a/metadata/md5-cache/dev-ml/menhir-20211012 b/metadata/md5-cache/dev-ml/menhir-20211012 index 07d4dc3ed27f..8af5a9bf5148 100644 --- a/metadata/md5-cache/dev-ml/menhir-20211012 +++ b/metadata/md5-cache/dev-ml/menhir-20211012 @@ -5,10 +5,10 @@ DESCRIPTION=LR(1) parser generator for the OCaml language EAPI=7 HOMEPAGE=http://gallium.inria.fr/~fpottier/menhir/ IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=GPL-2 LGPL-2-with-linking-exception RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/20211012 SRC_URI=https://gitlab.inria.fr/fpottier/menhir/-/archive/20211012/menhir-20211012.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=abb3126df465272611ff9e21373b6338 +_md5_=6e7dcf24770de934300344be5a4cde62 diff --git a/metadata/md5-cache/dev-ml/merlin-3.4.2-r1 b/metadata/md5-cache/dev-ml/merlin-3.4.2-r1 index 28c9b6942f3f..6b0eaf999b52 100644 --- a/metadata/md5-cache/dev-ml/merlin-3.4.2-r1 +++ b/metadata/md5-cache/dev-ml/merlin-3.4.2-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-ml/csexp:= dev-ml/yojson:= >=dev-lang/ocaml-4.09:= =app-editors/emacs-23.1:* app-emacs/auto-complete app-emacs/company-mode ) >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/3.4.2 SRC_URI=https://github.com/ocaml/merlin/archive/v3.4.2.tar.gz -> merlin-3.4.2.tar.gz -_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common f9c72486dbcb18b633c9d0949211d86e multiprocessing 61c959fc55c15c00bbb1079d6a71370b +_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common e7aaa047873789f549ea3df2f04b2145 multiprocessing 61c959fc55c15c00bbb1079d6a71370b _md5_=8a5a0751184bc93d507186e699808717 diff --git a/metadata/md5-cache/dev-ml/merlin-4.2 b/metadata/md5-cache/dev-ml/merlin-4.2 index 8f5c649f2cf7..7ec51b59f882 100644 --- a/metadata/md5-cache/dev-ml/merlin-4.2 +++ b/metadata/md5-cache/dev-ml/merlin-4.2 @@ -11,5 +11,5 @@ RDEPEND=dev-ml/csexp:= dev-ml/yojson:= dev-ml/menhir:= || ( dev-lang/ocaml:0/4.1 RESTRICT=!test? ( test ) SLOT=0/4.2 SRC_URI=https://github.com/ocaml/merlin/archive/v4.2-411.tar.gz -> merlin-4.2-411.tar.gz https://dev.gentoo.org/~tupone/distfiles/merlin-4.2-ocaml-4.12.patch.gz -_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common f9c72486dbcb18b633c9d0949211d86e multiprocessing 61c959fc55c15c00bbb1079d6a71370b +_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common e7aaa047873789f549ea3df2f04b2145 multiprocessing 61c959fc55c15c00bbb1079d6a71370b _md5_=12fcbdcdfda74e269608fd55e421334f diff --git a/metadata/md5-cache/dev-ml/merlin-4.3.1 b/metadata/md5-cache/dev-ml/merlin-4.3.1 index dc88a38557c2..dddee2f7b989 100644 --- a/metadata/md5-cache/dev-ml/merlin-4.3.1 +++ b/metadata/md5-cache/dev-ml/merlin-4.3.1 @@ -11,5 +11,5 @@ RDEPEND=dev-ml/csexp:= dev-ml/yojson:= dev-ml/menhir:= >=dev-ml/dune-2.9 || ( de RESTRICT=!test? ( test ) SLOT=0/4.3.1 SRC_URI=https://github.com/ocaml/merlin/archive/v4.3.1-411.tar.gz -> merlin-4.3.1-411.tar.gz https://dev.gentoo.org/~tupone/distfiles/merlin-4.3.1-ocaml-4.12.patch.gz -_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common f9c72486dbcb18b633c9d0949211d86e multiprocessing 61c959fc55c15c00bbb1079d6a71370b +_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common e7aaa047873789f549ea3df2f04b2145 multiprocessing 61c959fc55c15c00bbb1079d6a71370b _md5_=f0f54939c211439dcfc43009337d0374 diff --git a/metadata/md5-cache/dev-ml/merlin-4.4 b/metadata/md5-cache/dev-ml/merlin-4.4 index 3fa0262cf88e..bcc19b75f436 100644 --- a/metadata/md5-cache/dev-ml/merlin-4.4 +++ b/metadata/md5-cache/dev-ml/merlin-4.4 @@ -11,5 +11,5 @@ RDEPEND=dev-ml/csexp:= dev-ml/yojson:= dev-ml/menhir:= >=dev-ml/dune-2.9 || ( de RESTRICT=!test? ( test ) SLOT=0/4.4 SRC_URI=https://github.com/ocaml/merlin/releases/download/v4.4-411/merlin-4.4-411.tbz https://github.com/ocaml/merlin/releases/download/v4.4-412/merlin-4.4-412.tbz https://github.com/ocaml/merlin/releases/download/v4.4-413/merlin-4.4-413.tbz -_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common f9c72486dbcb18b633c9d0949211d86e multiprocessing 61c959fc55c15c00bbb1079d6a71370b +_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common e7aaa047873789f549ea3df2f04b2145 multiprocessing 61c959fc55c15c00bbb1079d6a71370b _md5_=06898a1d4143355d39047fea3ce50e93 diff --git a/metadata/md5-cache/dev-ml/merlin-4.5 b/metadata/md5-cache/dev-ml/merlin-4.5 index 265d8f0dbf17..8b595befaeec 100644 --- a/metadata/md5-cache/dev-ml/merlin-4.5 +++ b/metadata/md5-cache/dev-ml/merlin-4.5 @@ -11,5 +11,5 @@ RDEPEND=dev-ml/csexp:= dev-ml/yojson:= dev-ml/menhir:= >=dev-ml/dune-2.9 || ( de RESTRICT=!test? ( test ) SLOT=0/4.5 SRC_URI=https://github.com/ocaml/merlin/releases/download/v4.5-411/merlin-4.5-411.tbz https://github.com/ocaml/merlin/releases/download/v4.5-412/merlin-4.5-412.tbz https://github.com/ocaml/merlin/releases/download/v4.5-413/merlin-4.5-413.tbz https://github.com/ocaml/merlin/releases/download/v4.5-414/merlin-4.5-414.tbz -_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common f9c72486dbcb18b633c9d0949211d86e multiprocessing 61c959fc55c15c00bbb1079d6a71370b +_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common e7aaa047873789f549ea3df2f04b2145 multiprocessing 61c959fc55c15c00bbb1079d6a71370b _md5_=9a0e4014848429a9bcee9237fd36767c diff --git a/metadata/md5-cache/dev-ml/mirage-clock-3.1.0 b/metadata/md5-cache/dev-ml/mirage-clock-3.1.0 index bedd7c89c510..f896ecbd5870 100644 --- a/metadata/md5-cache/dev-ml/mirage-clock-3.1.0 +++ b/metadata/md5-cache/dev-ml/mirage-clock-3.1.0 @@ -5,10 +5,10 @@ DESCRIPTION=A lightweight and colourful test framework EAPI=7 HOMEPAGE=https://github.com/mirage/mirage-clock IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=ISC RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/3.1.0 SRC_URI=https://github.com/mirage/mirage-clock/archive/v3.1.0.tar.gz -> mirage-clock-3.1.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=ad2ec03b357513a93133a5c784c94e3e +_md5_=47f1341f8fd0704a737bafa8e859c948 diff --git a/metadata/md5-cache/dev-ml/mmap-1.1.0 b/metadata/md5-cache/dev-ml/mmap-1.1.0 index bf6a88caca53..d7228b5c5fd2 100644 --- a/metadata/md5-cache/dev-ml/mmap-1.1.0 +++ b/metadata/md5-cache/dev-ml/mmap-1.1.0 @@ -5,10 +5,10 @@ DESCRIPTION=File mapping EAPI=7 HOMEPAGE=https://github.com/mirage/mmap IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/1.1.0 SRC_URI=https://github.com/mirage/mmap/releases/download/v1.1.0/mmap-v1.1.0.tbz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=3d1debf93628d959d338c781b250469b +_md5_=5c3e06e732787c434dda47b81ff16749 diff --git a/metadata/md5-cache/dev-ml/mtime-1.3.0 b/metadata/md5-cache/dev-ml/mtime-1.3.0 index eabb3c9dbea1..a7cadcc74800 100644 --- a/metadata/md5-cache/dev-ml/mtime-1.3.0 +++ b/metadata/md5-cache/dev-ml/mtime-1.3.0 @@ -5,11 +5,11 @@ DESCRIPTION=OCaml module to access monotonic wall-clock time EAPI=7 HOMEPAGE=https://erratique.ch/software/mtime https://github.com/dbuenzli/mtime IUSE=test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=ISC RDEPEND=dev-lang/ocaml:=[ocamlopt] >=dev-lang/ocaml-4:= RESTRICT=!test? ( test ) SLOT=0/1.3.0 SRC_URI=https://erratique.ch/software/mtime/releases/mtime-1.3.0.tbz _eclasses_=opam dc11e376d9abc263ca618c5741206216 -_md5_=957c3c7cc5a87d8554ee54eb4d131469 +_md5_=51b07a0938d59ce533ee9dff71ac2900 diff --git a/metadata/md5-cache/dev-ml/num-1.4-r3 b/metadata/md5-cache/dev-ml/num-1.4-r3 index d302c54545a4..818ed4ad450f 100644 --- a/metadata/md5-cache/dev-ml/num-1.4-r3 +++ b/metadata/md5-cache/dev-ml/num-1.4-r3 @@ -5,10 +5,10 @@ DESCRIPTION=Library for arbitrary-precision integer and rational arithmetic EAPI=7 HOMEPAGE=https://github.com/ocaml/num IUSE=+ocamlopt +ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris LICENSE=LGPL-2.1-with-linking-exception RDEPEND=dev-lang/ocaml:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] SLOT=0 SRC_URI=https://github.com/ocaml/num/archive/v1.4.tar.gz -> num-1.4.tar.gz _eclasses_=findlib e6df6108c2d753998b1206f4d5ea4a2d -_md5_=f1c999eb2d34deec74cd520e4a41c872 +_md5_=a4cee0bbe85f59ca3d84da60394db0ad diff --git a/metadata/md5-cache/dev-ml/ocaml-base64-3.5.0 b/metadata/md5-cache/dev-ml/ocaml-base64-3.5.0 index 91b16018de92..1968b7419000 100644 --- a/metadata/md5-cache/dev-ml/ocaml-base64-3.5.0 +++ b/metadata/md5-cache/dev-ml/ocaml-base64-3.5.0 @@ -5,11 +5,11 @@ DESCRIPTION=Library for radix-64 representation (de)coding EAPI=7 HOMEPAGE=https://github.com/mirage/ocaml-base64 IUSE=+ocamlopt test -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=ISC RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/3.5.0 SRC_URI=https://github.com/mirage/ocaml-base64/archive/v3.5.0.tar.gz -> ocaml-base64-3.5.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=e7f5c4b305c09e3ad92a07917b11e0a8 +_md5_=57e3e0570a0d022e51923c3c25413e17 diff --git a/metadata/md5-cache/dev-ml/ocaml-compiler-libs-0.12.4 b/metadata/md5-cache/dev-ml/ocaml-compiler-libs-0.12.4 index 8faa94c44096..beece45d364e 100644 --- a/metadata/md5-cache/dev-ml/ocaml-compiler-libs-0.12.4 +++ b/metadata/md5-cache/dev-ml/ocaml-compiler-libs-0.12.4 @@ -5,10 +5,10 @@ DESCRIPTION=Repackage the OCaml compiler libs so they do not expose everything a EAPI=7 HOMEPAGE=https://github.com/janestreet/ocaml-compiler-libs IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.12.4 SRC_URI=https://github.com/janestreet/ocaml-compiler-libs/archive/v0.12.4.tar.gz -> ocaml-compiler-libs-0.12.4.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=150815ce528958d5775a8c9073f29449 +_md5_=1994e55e1d6e6d13cc277d6679711ca7 diff --git a/metadata/md5-cache/dev-ml/ocaml-ctypes-0.20.0 b/metadata/md5-cache/dev-ml/ocaml-ctypes-0.20.0 index 919322f3250d..a0e6c9b7b295 100644 --- a/metadata/md5-cache/dev-ml/ocaml-ctypes-0.20.0 +++ b/metadata/md5-cache/dev-ml/ocaml-ctypes-0.20.0 @@ -4,11 +4,11 @@ DESCRIPTION=Library for binding to C libraries using pure OCaml EAPI=7 HOMEPAGE=https://github.com/ocamllabs/ocaml-ctypes IUSE=test +ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=>=dev-lang/ocaml-4.02:=[ocamlopt] >=dev-libs/libffi-3.3_rc0:= dev-ml/bigarray-compat:= dev-ml/integers:= dev-lang/ocaml:=[ocamlopt?] RESTRICT=!test? ( test ) SLOT=0/0.20.0 SRC_URI=https://github.com/ocamllabs/ocaml-ctypes/archive/0.20.0.tar.gz -> ocaml-ctypes-0.20.0.tar.gz _eclasses_=findlib e6df6108c2d753998b1206f4d5ea4a2d -_md5_=98e9f4de5781ccb3aa7a177584978d79 +_md5_=cc8a2fe70295703d1a3921e6bcdb9849 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 356d635795b9..82253274a60a 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 @@ -4,11 +4,11 @@ DESCRIPTION=OCaml bindings for expat EAPI=7 HOMEPAGE=https://github.com/whitequark/ocaml-expat IUSE=doc +ocamlopt test +ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=dev-libs/expat >=dev-lang/ocaml-3.10.2:=[ocamlopt?] dev-lang/ocaml:=[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 e6df6108c2d753998b1206f4d5ea4a2d -_md5_=b6e98d5f23a30ea8ec6982b56b3b3efd +_md5_=2b16a080c264023292f0587ead412991 diff --git a/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-2.3.0 b/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-2.3.0 index 572ce0768942..a9c0f5528911 100644 --- a/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-2.3.0 +++ b/metadata/md5-cache/dev-ml/ocaml-migrate-parsetree-2.3.0 @@ -5,11 +5,11 @@ DESCRIPTION=Convert OCaml parsetrees between different major versions EAPI=7 HOMEPAGE=https://github.com/let-def/ocaml-migrate-parsetree IUSE=+ocamlopt test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) strip SLOT=0/2.3.0 SRC_URI=https://github.com/let-def/ocaml-migrate-parsetree/archive/v2.3.0.tar.gz -> ocaml-migrate-parsetree-2.3.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=047fcca425f80c3eb8bf71f785440dc5 +_md5_=160ce833b1e2172ed3f99a4d010a02cc diff --git a/metadata/md5-cache/dev-ml/ocamlbuild-0.14.0-r1 b/metadata/md5-cache/dev-ml/ocamlbuild-0.14.0-r1 index 6a6dd6b257dd..05748234baf8 100644 --- a/metadata/md5-cache/dev-ml/ocamlbuild-0.14.0-r1 +++ b/metadata/md5-cache/dev-ml/ocamlbuild-0.14.0-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Generic build tool with built-in rules for building OCaml library an EAPI=7 HOMEPAGE=https://github.com/ocaml/ocamlbuild IUSE=+ocamlopt test -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.02.3-r1:=[ocamlopt?] REQUIRED_USE=test? ( ocamlopt ) RESTRICT=!test? ( test ) SLOT=0/0.14.0 SRC_URI=https://github.com/ocaml/ocamlbuild/archive/0.14.0.tar.gz -> ocamlbuild-0.14.0.tar.gz -_md5_=9c9f487d2c8d1c70c068f3d0de05a309 +_md5_=26ab0d2f4b329fe184cf948e67f4d609 diff --git a/metadata/md5-cache/dev-ml/ocamlgraph-2.0.0-r1 b/metadata/md5-cache/dev-ml/ocamlgraph-2.0.0-r1 index ab17afecc079..ac073cbec4fa 100644 --- a/metadata/md5-cache/dev-ml/ocamlgraph-2.0.0-r1 +++ b/metadata/md5-cache/dev-ml/ocamlgraph-2.0.0-r1 @@ -5,10 +5,10 @@ DESCRIPTION=O'Caml Graph library EAPI=7 HOMEPAGE=http://ocamlgraph.lri.fr/index.en.html IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=LGPL-2.1 RDEPEND=dev-ml/stdlib-shims:=[ocamlopt?] dev-ml/graphics:=[ocamlopt?] >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/2.0.0 SRC_URI=https://github.com/backtracking/ocamlgraph/releases/download/2.0.0/ocamlgraph-2.0.0.tbz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=5a3ca6625f027484d8d7520baff626a8 +_md5_=4a057ffa90e0d57392d6f7e8ae8b937f diff --git a/metadata/md5-cache/dev-ml/ocplib-endian-1.2 b/metadata/md5-cache/dev-ml/ocplib-endian-1.2 index 70cfc764011a..36f2135d2936 100644 --- a/metadata/md5-cache/dev-ml/ocplib-endian-1.2 +++ b/metadata/md5-cache/dev-ml/ocplib-endian-1.2 @@ -5,11 +5,11 @@ DESCRIPTION=Functions to read and write int16/32/64 from strings, bytes, and big EAPI=7 HOMEPAGE=https://github.com/OCamlPro/ocplib-endian IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/1.2 SRC_URI=https://github.com/OCamlPro/ocplib-endian/archive/1.2.tar.gz -> ocplib-endian-1.2.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=53e08b28e1e0fedce03a7f93ae8b378d +_md5_=5117e892471bf1ffabd45fd39e8e6b0c diff --git a/metadata/md5-cache/dev-ml/octavius-1.2.2 b/metadata/md5-cache/dev-ml/octavius-1.2.2 index c9e16e2bfb90..00796c78f7ad 100644 --- a/metadata/md5-cache/dev-ml/octavius-1.2.2 +++ b/metadata/md5-cache/dev-ml/octavius-1.2.2 @@ -5,10 +5,10 @@ DESCRIPTION=ocamldoc comment syntax parser EAPI=7 HOMEPAGE=https://github.com/ocaml-doc/octavius IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=ISC RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/1.2.2 SRC_URI=https://github.com/ocaml-doc/octavius/archive/v1.2.2.tar.gz -> octavius-1.2.2.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=164b2fd54fba60fd6a947ab252db5f62 +_md5_=3082c12f9e6fc0c843474abab68b03bd diff --git a/metadata/md5-cache/dev-ml/opam-2.1.2 b/metadata/md5-cache/dev-ml/opam-2.1.2 index 7c263be5490e..1a29972d53e8 100644 --- a/metadata/md5-cache/dev-ml/opam-2.1.2 +++ b/metadata/md5-cache/dev-ml/opam-2.1.2 @@ -5,10 +5,10 @@ DESCRIPTION=A source-based package manager for OCaml EAPI=7 HOMEPAGE=http://opam.ocaml.org/ IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1-with-linking-exception RDEPEND=dev-ml/cmdliner:= dev-ml/cudf:= >=dev-ml/dose3-6.0:= dev-ml/extlib:= ~dev-ml/opam-client-2.1.2:= dev-ml/opam-file-format:= dev-ml/re:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/2.1.2 SRC_URI=https://github.com/ocaml/opam/archive/2.1.2.tar.gz -> opam-2.1.2.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-ml/opam/opam-2.1.0-dose3-6.patch.xz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=a5243c43e3512113312b7107613ef36f +_md5_=b53881bc30f873feadb9f8b86a250db3 diff --git a/metadata/md5-cache/dev-ml/opam-client-2.1.2 b/metadata/md5-cache/dev-ml/opam-client-2.1.2 index 400607ffe10d..71a3b037db91 100644 --- a/metadata/md5-cache/dev-ml/opam-client-2.1.2 +++ b/metadata/md5-cache/dev-ml/opam-client-2.1.2 @@ -5,11 +5,11 @@ DESCRIPTION=opam client libraries EAPI=7 HOMEPAGE=https://opam.ocaml.org/ https://github.com/ocaml/opam IUSE=+ocamlopt test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1 RDEPEND=dev-ml/cmdliner:= ~dev-ml/opam-repository-2.1.2:= ~dev-ml/opam-state-2.1.2:= ~dev-ml/opam-solver-2.1.2:= dev-ml/opam-file-format:= dev-ml/re:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/2.1.2 SRC_URI=https://github.com/ocaml/opam/archive/2.1.2.tar.gz -> opam-2.1.2.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-ml/opam/opam-2.1.0-dose3-6.patch.xz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=cf8c19035ceacfdf96e7f54fa2cb04f2 +_md5_=e48c1d2b32e0463081e935f5a06e7840 diff --git a/metadata/md5-cache/dev-ml/opam-core-2.1.2 b/metadata/md5-cache/dev-ml/opam-core-2.1.2 index 6489e8c35f14..f17ba2eb1dfa 100644 --- a/metadata/md5-cache/dev-ml/opam-core-2.1.2 +++ b/metadata/md5-cache/dev-ml/opam-core-2.1.2 @@ -4,10 +4,10 @@ DEPEND=dev-ml/ocamlgraph:= dev-ml/re:= dev-ml/opam-file-format:= dev-ml/cmdliner DESCRIPTION=Core libraries for opam EAPI=7 HOMEPAGE=https://opam.ocaml.org/ https://github.com/ocaml/opam -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 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.1.2 SRC_URI=https://github.com/ocaml/opam/archive/2.1.2.tar.gz -> opam-2.1.2.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-ml/opam/opam-2.1.0-dose3-6.patch.xz _eclasses_=opam dc11e376d9abc263ca618c5741206216 -_md5_=f637989890f8d8f28381755b2cfe7fc9 +_md5_=2b5c375d6203d85d56513d9c4003406a diff --git a/metadata/md5-cache/dev-ml/opam-file-format-2.1.3 b/metadata/md5-cache/dev-ml/opam-file-format-2.1.3 index d133fa554c24..40f5c57d59c1 100644 --- a/metadata/md5-cache/dev-ml/opam-file-format-2.1.3 +++ b/metadata/md5-cache/dev-ml/opam-file-format-2.1.3 @@ -5,11 +5,11 @@ DESCRIPTION=Parser and printer for the opam file syntax EAPI=7 HOMEPAGE=https://github.com/ocaml/opam-file-format IUSE=+ocamlopt test -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/2.1.3 SRC_URI=https://github.com/ocaml/opam-file-format/archive/2.1.3.tar.gz -> opam-file-format-2.1.3.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=695d4d447ce2ca1fbf18dcee3868b61d +_md5_=09390dce8d72eceac674f8d41ad4d85a diff --git a/metadata/md5-cache/dev-ml/opam-format-2.1.2-r1 b/metadata/md5-cache/dev-ml/opam-format-2.1.2-r1 index e0216058ff09..b9b0d97f5713 100644 --- a/metadata/md5-cache/dev-ml/opam-format-2.1.2-r1 +++ b/metadata/md5-cache/dev-ml/opam-format-2.1.2-r1 @@ -5,11 +5,11 @@ DESCRIPTION=Core libraries for opam EAPI=7 HOMEPAGE=https://opam.ocaml.org/ https://github.com/ocaml/opam IUSE=+ocamlopt test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1 RDEPEND=~dev-ml/opam-core-2.1.2:= dev-ml/re:= dev-ml/opam-file-format:= >=dev-ml/dose3-6.0:= dev-ml/mccs:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/2.1.2 SRC_URI=https://github.com/ocaml/opam/archive/2.1.2.tar.gz -> opam-2.1.2.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-ml/opam/opam-2.1.0-dose3-6.patch.xz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=187b8dd794763bedc70a6efb4fdb82ef +_md5_=f817b080ba727487c440404178b0e0d9 diff --git a/metadata/md5-cache/dev-ml/opam-installer-2.1.2 b/metadata/md5-cache/dev-ml/opam-installer-2.1.2 index b609da41aa3d..511f52dc433c 100644 --- a/metadata/md5-cache/dev-ml/opam-installer-2.1.2 +++ b/metadata/md5-cache/dev-ml/opam-installer-2.1.2 @@ -5,10 +5,10 @@ DESCRIPTION=Core installer for opam packages EAPI=7 HOMEPAGE=https://opam.ocaml.org/ https://github.com/ocaml/opam IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/ocaml-4.02.3 dev-ml/cmdliner:= ~dev-ml/opam-format-2.1.2 >=dev-ml/dose3-6 >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/2.1.2 SRC_URI=https://github.com/ocaml/opam/releases/download/2.1.2/opam-full-2.1.2.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-ml/opam/opam-2.1.0-dose3-6.patch.xz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=e12963f5f2fd77a9ea5c8888f461c9a5 +_md5_=0770288e747e5df6502cff848a36d9d9 diff --git a/metadata/md5-cache/dev-ml/opam-repository-2.1.2 b/metadata/md5-cache/dev-ml/opam-repository-2.1.2 index 5ae06b789e6f..1a1dfb157ded 100644 --- a/metadata/md5-cache/dev-ml/opam-repository-2.1.2 +++ b/metadata/md5-cache/dev-ml/opam-repository-2.1.2 @@ -5,11 +5,11 @@ DESCRIPTION=opam repository libraries EAPI=7 HOMEPAGE=https://opam.ocaml.org/ https://github.com/ocaml/opam IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1 RDEPEND=~dev-ml/opam-format-2.1.2:= dev-ml/re:= >=dev-ml/dose3-6.0:= dev-ml/opam-file-format:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/2.1.2 SRC_URI=https://github.com/ocaml/opam/archive/2.1.2.tar.gz -> opam-2.1.2.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-ml/opam/opam-2.1.0-dose3-6.patch.xz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=b555d52dd4917ddcf7f40f0f6ff16a0b +_md5_=483680a01d4334863adb50443b46734f diff --git a/metadata/md5-cache/dev-ml/opam-solver-2.1.2 b/metadata/md5-cache/dev-ml/opam-solver-2.1.2 index 7a086c64b2ea..930da8e3d63a 100644 --- a/metadata/md5-cache/dev-ml/opam-solver-2.1.2 +++ b/metadata/md5-cache/dev-ml/opam-solver-2.1.2 @@ -5,11 +5,11 @@ DESCRIPTION=opam solver EAPI=7 HOMEPAGE=https://opam.ocaml.org/ https://github.com/ocaml/opam IUSE=+ocamlopt test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1 RDEPEND=~dev-ml/opam-format-2.1.2:= dev-ml/opam-file-format:= dev-ml/re:= >=dev-ml/mccs-1.1.4:= >=dev-ml/dose3-6.0:= dev-ml/cudf:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/2.1.2 SRC_URI=https://github.com/ocaml/opam/archive/2.1.2.tar.gz -> opam-2.1.2.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-ml/opam/opam-2.1.0-dose3-6.patch.xz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=8bc3f1b623f932b46138b77604af77c9 +_md5_=93c2cf72875dc2434e148874aceb996c diff --git a/metadata/md5-cache/dev-ml/opam-state-2.1.2 b/metadata/md5-cache/dev-ml/opam-state-2.1.2 index da199ba7d63d..48fb30d1e0e8 100644 --- a/metadata/md5-cache/dev-ml/opam-state-2.1.2 +++ b/metadata/md5-cache/dev-ml/opam-state-2.1.2 @@ -5,11 +5,11 @@ DESCRIPTION=opam state libraries EAPI=7 HOMEPAGE=https://opam.ocaml.org/ https://github.com/ocaml/opam IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1 RDEPEND=dev-ml/re:= dev-ml/opam-file-format:= ~dev-ml/opam-repository-2.1.2:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/2.1.2 SRC_URI=https://github.com/ocaml/opam/archive/2.1.2.tar.gz -> opam-2.1.2.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-ml/opam/opam-2.1.0-dose3-6.patch.xz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=e21a85f782c05450e0fabcb492941412 +_md5_=f3f3956f03581a161c956270ea91a392 diff --git a/metadata/md5-cache/dev-ml/ounit2-2.2.6 b/metadata/md5-cache/dev-ml/ounit2-2.2.6 index f899315f0eaf..a8374f06ec66 100644 --- a/metadata/md5-cache/dev-ml/ounit2-2.2.6 +++ b/metadata/md5-cache/dev-ml/ounit2-2.2.6 @@ -5,10 +5,10 @@ DESCRIPTION=Unit testing framework for OCaml EAPI=8 HOMEPAGE=https://github.com/gildor478/ounit IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=dev-ml/lwt:= dev-ml/stdlib-shims:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/2.2.6 SRC_URI=https://github.com/gildor478/ounit/archive/v2.2.6.tar.gz -> ounit2-2.2.6.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=e5987dd38ac712c0d627f2d0e20b3a30 +_md5_=e9d1832eee35f9a57edbda80092ea826 diff --git a/metadata/md5-cache/dev-ml/parmap-1.2.4 b/metadata/md5-cache/dev-ml/parmap-1.2.4 index 9898ffacfe7c..4ef585638d2f 100644 --- a/metadata/md5-cache/dev-ml/parmap-1.2.4 +++ b/metadata/md5-cache/dev-ml/parmap-1.2.4 @@ -5,10 +5,10 @@ DESCRIPTION=Library to exploit multicore architectures for OCaml programs EAPI=7 HOMEPAGE=https://www.dicosmo.org/code/parmap/ IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.03:=[ocamlopt?] >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/1.2.4 SRC_URI=https://github.com/rdicosmo/parmap/archive/1.2.4.tar.gz -> parmap-1.2.4.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=ffd8d06ccbb8974c4e704013645ce217 +_md5_=67719fd663d54f709c933127cb3e022c diff --git a/metadata/md5-cache/dev-ml/parsexp-0.14.1 b/metadata/md5-cache/dev-ml/parsexp-0.14.1 index 9c050b19c376..beb52e42a3a9 100644 --- a/metadata/md5-cache/dev-ml/parsexp-0.14.1 +++ b/metadata/md5-cache/dev-ml/parsexp-0.14.1 @@ -5,10 +5,10 @@ DESCRIPTION=S-expression parsing library EAPI=7 HOMEPAGE=https://github.com/janestreet/parsexp IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=dev-ml/sexplib0:= dev-ml/base:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.1 SRC_URI=https://github.com/janestreet/parsexp/archive/v0.14.1.tar.gz -> parsexp-0.14.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=95e2d84bd16ecba6ac8c840f3ee85172 +_md5_=792c468db2438a894d0c1ad808b73d27 diff --git a/metadata/md5-cache/dev-ml/patience_diff-0.14.0 b/metadata/md5-cache/dev-ml/patience_diff-0.14.0 index 2194a78d18eb..487ae1df6fd5 100644 --- a/metadata/md5-cache/dev-ml/patience_diff-0.14.0 +++ b/metadata/md5-cache/dev-ml/patience_diff-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Tool and library implementing patience diff EAPI=7 HOMEPAGE=https://github.com/janestreet/patience_diff IUSE=+ocamlopt -KEYWORDS=~amd64 +KEYWORDS=~amd64 ~riscv LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/core_kernel:= dev-ml/ppx_jane:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14 SRC_URI=https://github.com/janestreet/patience_diff/archive/v0.14.0.tar.gz -> patience_diff-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=f1f5c00286b366bd86a6b4ef500a1362 +_md5_=f71848602d4b7fbe5b0201999730088e diff --git a/metadata/md5-cache/dev-ml/pcre-ocaml-7.4.6-r2 b/metadata/md5-cache/dev-ml/pcre-ocaml-7.4.6-r2 index 4fca8a3086bf..dd1287f2d60e 100644 --- a/metadata/md5-cache/dev-ml/pcre-ocaml-7.4.6-r2 +++ b/metadata/md5-cache/dev-ml/pcre-ocaml-7.4.6-r2 @@ -5,10 +5,10 @@ DESCRIPTION=Perl Compatibility Regular Expressions for O'Caml EAPI=7 HOMEPAGE=http://mmottl.github.io/pcre-ocaml/ https://github.com/mmottl/pcre-ocaml IUSE=examples +ocamlopt -KEYWORDS=amd64 ~arm ~arm64 ~ppc x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc ~riscv x86 LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-libs/libpcre-4.5 dev-ml/stdio:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/7.4.6 SRC_URI=https://github.com/mmottl/pcre-ocaml/releases/download/7.4.6/pcre-7.4.6.tbz -> pcre-ocaml-7.4.6.tbz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=318b0671adf3cd1604cd00be96c288a0 +_md5_=5bd5ab85714ad1c4dc515e5c3ed6f86f diff --git a/metadata/md5-cache/dev-ml/ppx_assert-0.14.0 b/metadata/md5-cache/dev-ml/ppx_assert-0.14.0 index 9c511a95619c..c469788a8ce0 100644 --- a/metadata/md5-cache/dev-ml/ppx_assert-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_assert-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Assert-like extension nodes that raise useful errors on failure EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_assert IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/ppx_cold-0.14.0:= >=dev-ml/ppx_compare-0.14.0:= >=dev-ml/ppx_here-0.14.0:= >=dev-ml/ppx_sexp_conv-0.14.1:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_assert/archive/v0.14.0.tar.gz -> ppx_assert-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=ea12a7517fb1e2f08f4b4cb143b7db49 +_md5_=2527b2f4ec9e791ef78674b4c85df71b diff --git a/metadata/md5-cache/dev-ml/ppx_base-0.14.0 b/metadata/md5-cache/dev-ml/ppx_base-0.14.0 index eb283628bacc..37e3eb35fc72 100644 --- a/metadata/md5-cache/dev-ml/ppx_base-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_base-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Base set of ppx rewriters EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_base IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/ppx_cold-0.14.0:= >=dev-ml/ppx_compare-0.14.0:= >=dev-ml/ppx_enumerate-0.14.0:= >=dev-ml/ppx_hash-0.14.0:= >=dev-ml/ppx_js_style-0.14.0:= >=dev-ml/ppx_sexp_conv-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_base/archive/v0.14.0.tar.gz -> ppx_base-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=91b9664a1b9b32b81a11cc0a58758276 +_md5_=d760cf118ec4867e6a6028c9fb8b05c7 diff --git a/metadata/md5-cache/dev-ml/ppx_bench-0.14.1 b/metadata/md5-cache/dev-ml/ppx_bench-0.14.1 index df50b626ca33..4acb09e6b7b7 100644 --- a/metadata/md5-cache/dev-ml/ppx_bench-0.14.1 +++ b/metadata/md5-cache/dev-ml/ppx_bench-0.14.1 @@ -5,10 +5,10 @@ DESCRIPTION=Syntax extension for writing in-line benchmarks in ocaml code EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_bench IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/ppx_inline_test-0.14.1:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/stdio-0.14.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.1 SRC_URI=https://github.com/janestreet/ppx_bench/archive/v0.14.1.tar.gz -> ppx_bench-0.14.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=9313a0f6bae62132a87052f49fe88581 +_md5_=dfd981f1cb0324022a7d64d4ce445527 diff --git a/metadata/md5-cache/dev-ml/ppx_bin_prot-0.14.0 b/metadata/md5-cache/dev-ml/ppx_bin_prot-0.14.0 index 3b1129c08366..2309e74c5f1a 100644 --- a/metadata/md5-cache/dev-ml/ppx_bin_prot-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_bin_prot-0.14.0 @@ -5,11 +5,11 @@ DESCRIPTION=Generation of bin_prot readers and writers from types EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_bin_prot IUSE=+ocamlopt test -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/bin_prot-0.14.0:= >=dev-ml/ppx_here-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_bin_prot/archive/v0.14.0.tar.gz -> ppx_bin_prot-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=2435cade6f4df4060cb5378b3c61bf7f +_md5_=7ddfd6a4cf5cfbe2647c22396cac3d07 diff --git a/metadata/md5-cache/dev-ml/ppx_cold-0.14.0 b/metadata/md5-cache/dev-ml/ppx_cold-0.14.0 index 52e8ca306b5f..1149da491ef9 100644 --- a/metadata/md5-cache/dev-ml/ppx_cold-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_cold-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Expands [@cold] into [@inline never][@specialise never][@local never EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_cold IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_cold/archive/v0.14.0.tar.gz -> ppx_cold-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=2ba85696d780b4ede2393f58c0adf9d1 +_md5_=61b2d6ba2288c6e5e9e8991202103639 diff --git a/metadata/md5-cache/dev-ml/ppx_compare-0.14.0 b/metadata/md5-cache/dev-ml/ppx_compare-0.14.0 index 19063f8e4c23..8427f6d02b58 100644 --- a/metadata/md5-cache/dev-ml/ppx_compare-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_compare-0.14.0 @@ -5,11 +5,11 @@ DESCRIPTION=Generation of comparison functions from types EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_compare IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_compare/archive/v0.14.0.tar.gz -> ppx_compare-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=b65269c0052c640b886526fa37210583 +_md5_=c274c0be35101576598811b58a3a8983 diff --git a/metadata/md5-cache/dev-ml/ppx_custom_printf-0.14.1 b/metadata/md5-cache/dev-ml/ppx_custom_printf-0.14.1 index 728834c0a85b..bb2fc1f34485 100644 --- a/metadata/md5-cache/dev-ml/ppx_custom_printf-0.14.1 +++ b/metadata/md5-cache/dev-ml/ppx_custom_printf-0.14.1 @@ -5,10 +5,10 @@ DESCRIPTION=Printf-style format-strings for user-defined string conversion EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_custom_printf IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/ppx_sexp_conv-0.14.1:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.1 SRC_URI=https://github.com/janestreet/ppx_custom_printf/archive/v0.14.1.tar.gz -> ppx_custom_printf-0.14.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=be438b3a581e47aef0fd8fb18e4d8d59 +_md5_=fa134cc79eed1c4dbf85f24011150a19 diff --git a/metadata/md5-cache/dev-ml/ppx_derivers-1.2.1 b/metadata/md5-cache/dev-ml/ppx_derivers-1.2.1 index a122bfe95513..a4533c41ea04 100644 --- a/metadata/md5-cache/dev-ml/ppx_derivers-1.2.1 +++ b/metadata/md5-cache/dev-ml/ppx_derivers-1.2.1 @@ -5,10 +5,10 @@ DESCRIPTION=Shared [@@deriving] plugin registry EAPI=7 HOMEPAGE=https://github.com/diml/ppx_derivers IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=BSD RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/1.2.1 SRC_URI=https://github.com/diml/ppx_derivers/archive/1.2.1.tar.gz -> ppx_derivers-1.2.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=0fe234da13c35a0c64fe5383f5d46bca +_md5_=f7d3fa382dd60e987fc40ddb735c73db diff --git a/metadata/md5-cache/dev-ml/ppx_enumerate-0.14.0 b/metadata/md5-cache/dev-ml/ppx_enumerate-0.14.0 index b7d924fa31f0..740b354ee4a1 100644 --- a/metadata/md5-cache/dev-ml/ppx_enumerate-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_enumerate-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Generate a list containing all values of a finite type EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_enumerate IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_enumerate/archive/v0.14.0.tar.gz -> ppx_enumerate-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=1c735673039181296c3276c11ccd570e +_md5_=3283fd3803c0f8f6208ce391dc4fab5a diff --git a/metadata/md5-cache/dev-ml/ppx_expect-0.14.2 b/metadata/md5-cache/dev-ml/ppx_expect-0.14.2 index ce7a793d5d34..b797d6dc9cd0 100644 --- a/metadata/md5-cache/dev-ml/ppx_expect-0.14.2 +++ b/metadata/md5-cache/dev-ml/ppx_expect-0.14.2 @@ -5,11 +5,11 @@ DESCRIPTION=Cram like framework for OCaml EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_expect IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/ppx_here-0.14.0:= >=dev-ml/ppx_inline_test-0.14.1:= >=dev-ml/stdio-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= dev-ml/re:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/0.14.2 SRC_URI=https://github.com/janestreet/ppx_expect/archive/v0.14.2.tar.gz -> ppx_expect-0.14.2.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=b2e2c9d02ff07c2ebbf99eeb1cf62b52 +_md5_=1e1c02934fc2d3bc440fa70bcf42e86a diff --git a/metadata/md5-cache/dev-ml/ppx_fail-0.14.0 b/metadata/md5-cache/dev-ml/ppx_fail-0.14.0 index 1d1217ca8e40..09b959d0607c 100644 --- a/metadata/md5-cache/dev-ml/ppx_fail-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_fail-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Add location to calls to failwiths EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_fail IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/ppx_here-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_fail/archive/v0.14.0.tar.gz -> ppx_fail-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=4db4b154f73cc15cb849e7ec51520254 +_md5_=56c16f31ebe36d60c969340aea83f1d7 diff --git a/metadata/md5-cache/dev-ml/ppx_fields_conv-0.14.2 b/metadata/md5-cache/dev-ml/ppx_fields_conv-0.14.2 index 58985aacda87..4a5b1d99120a 100644 --- a/metadata/md5-cache/dev-ml/ppx_fields_conv-0.14.2 +++ b/metadata/md5-cache/dev-ml/ppx_fields_conv-0.14.2 @@ -5,10 +5,10 @@ DESCRIPTION=Generation of accessor and iteration functions for ocaml records EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_fields_conv IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/fieldslib-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.2 SRC_URI=https://github.com/janestreet/ppx_fields_conv/archive/v0.14.2.tar.gz -> ppx_fields_conv-0.14.2.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=3a5c5f7057127db1c473512c940dce97 +_md5_=b5c3d668f86f408ba914d7c51d5fddf7 diff --git a/metadata/md5-cache/dev-ml/ppx_fixed_literal-0.14.0 b/metadata/md5-cache/dev-ml/ppx_fixed_literal-0.14.0 index 2c2962256e92..20c6ee964028 100644 --- a/metadata/md5-cache/dev-ml/ppx_fixed_literal-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_fixed_literal-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Simpler notation for fixed point literals EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_fixed_literal IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_fixed_literal/archive/v0.14.0.tar.gz -> ppx_fixed_literal-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=8db208d19f33cc93b02939a58c8ebd17 +_md5_=7d46e1641932d27f0f1a2157bf4dd013 diff --git a/metadata/md5-cache/dev-ml/ppx_hash-0.14.0 b/metadata/md5-cache/dev-ml/ppx_hash-0.14.0 index 64df9366ab2c..ba7ba84c6404 100644 --- a/metadata/md5-cache/dev-ml/ppx_hash-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_hash-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=PPX rewriter that generates hash functions from type expressions and EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_hash IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/ppx_compare-0.14.0:= >=dev-ml/ppx_sexp_conv-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_hash/archive/v0.14.0.tar.gz -> ppx_hash-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=6784fdc499c16caad72b973fcf347ab8 +_md5_=b865b88aece9613eb0e235990eca8d40 diff --git a/metadata/md5-cache/dev-ml/ppx_here-0.14.0 b/metadata/md5-cache/dev-ml/ppx_here-0.14.0 index bf4aee2b0b71..21d03cfc1d36 100644 --- a/metadata/md5-cache/dev-ml/ppx_here-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_here-0.14.0 @@ -5,11 +5,11 @@ DESCRIPTION=Expands [%here] into its location EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_here IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_here/archive/v0.14.0.tar.gz -> ppx_here-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=910e845a38f5496396e46c5570cd069d +_md5_=df9a07996e14a8e994723bcad6cd78e7 diff --git a/metadata/md5-cache/dev-ml/ppx_inline_test-0.14.1 b/metadata/md5-cache/dev-ml/ppx_inline_test-0.14.1 index 103434c6859a..6b8103f51669 100644 --- a/metadata/md5-cache/dev-ml/ppx_inline_test-0.14.1 +++ b/metadata/md5-cache/dev-ml/ppx_inline_test-0.14.1 @@ -5,11 +5,11 @@ DESCRIPTION=Syntax extension for writing in-line tests in ocaml code EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_inline_test IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-ml/time_now-0.14.0:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/0.14.1 SRC_URI=https://github.com/janestreet/ppx_inline_test/archive/v0.14.1.tar.gz -> ppx_inline_test-0.14.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=b0c86b01fc459d6890e7058eed038f52 +_md5_=b29dbb3fcbf9168bf1bcd7167a359e6d diff --git a/metadata/md5-cache/dev-ml/ppx_jane-0.14.0 b/metadata/md5-cache/dev-ml/ppx_jane-0.14.0 index da4574d43452..4b3ba78e0e9f 100644 --- a/metadata/md5-cache/dev-ml/ppx_jane-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_jane-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Standard Jane Street ppx rewriters EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_jane IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base_quickcheck-0.14.0:= >=dev-ml/ppx_assert-0.14.0:= >=dev-ml/ppx_base-0.14.0:= >=dev-ml/ppx_bench-0.14.1:= >=dev-ml/ppx_bin_prot-0.14.0:= >=dev-ml/ppx_custom_printf-0.14.0:= >=dev-ml/ppx_expect-0.14.0:= >=dev-ml/ppx_fail-0.14.0:= >=dev-ml/ppx_fields_conv-0.14.1:= >=dev-ml/ppx_fixed_literal-0.14.0:= >=dev-ml/ppx_here-0.14.0:= >=dev-ml/ppx_inline_test-0.14.1:= >=dev-ml/ppx_let-0.14.0:= >=dev-ml/ppx_module_timer-0.14.0:= >=dev-ml/ppx_optcomp-0.14.0:= >=dev-ml/ppx_optional-0.14.0:= >=dev-ml/ppx_pipebang-0.14.0:= >=dev-ml/ppx_sexp_message-0.14.0:= >=dev-ml/ppx_sexp_value-0.14.0:= >=dev-ml/ppx_stable-0.14.1:= >=dev-ml/ppx_string-0.14.1:= >=dev-ml/ppx_typerep_conv-0.14.1:= >=dev-ml/ppx_variants_conv-0.14.1:= >=dev-ml/ppxlib-0.18.0:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_jane/archive/v0.14.0.tar.gz -> ppx_jane-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=53bdbcfba90e4bb4480ace9e0e31dd1d +_md5_=1b5b7af2441c5a0fa1e692d8583b0765 diff --git a/metadata/md5-cache/dev-ml/ppx_js_style-0.14.1 b/metadata/md5-cache/dev-ml/ppx_js_style-0.14.1 index cb8f1a745a7d..dac5fc2b9a68 100644 --- a/metadata/md5-cache/dev-ml/ppx_js_style-0.14.1 +++ b/metadata/md5-cache/dev-ml/ppx_js_style-0.14.1 @@ -5,10 +5,10 @@ DESCRIPTION=Code style checker for Jane Street Packages EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_js_style IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= dev-ml/octavius:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.1 SRC_URI=https://github.com/janestreet/ppx_js_style/archive/v0.14.1.tar.gz -> ppx_js_style-0.14.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=7b3cd8a7030b3a1f8f2d695e2fd7c4ae +_md5_=6e15f356dc234deb6ea5d471b82e809c diff --git a/metadata/md5-cache/dev-ml/ppx_let-0.14.0 b/metadata/md5-cache/dev-ml/ppx_let-0.14.0 index a38560ee7f72..a290dce2b259 100644 --- a/metadata/md5-cache/dev-ml/ppx_let-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_let-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Monadic let-bindings EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_let IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_let/archive/v0.14.0.tar.gz -> ppx_let-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=c97bf83e0cd20e12cece3b0ee480de7a +_md5_=eca990080ad0aa93eaccb31afdeb77f7 diff --git a/metadata/md5-cache/dev-ml/ppx_module_timer-0.14.0 b/metadata/md5-cache/dev-ml/ppx_module_timer-0.14.0 index ae029d2f0a0b..d51c3636b41c 100644 --- a/metadata/md5-cache/dev-ml/ppx_module_timer-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_module_timer-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Ppx rewriter that records top-level module startup times EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_module_timer IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/ppx_base-0.14.0:= >=dev-ml/stdio-0.14.0:= >=dev-ml/time_now-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_module_timer/archive/v0.14.0.tar.gz -> ppx_module_timer-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=63ebc42221e3d5767b19753c9b8454ad +_md5_=667843787229656fde2017a93c6d7b82 diff --git a/metadata/md5-cache/dev-ml/ppx_optcomp-0.14.3 b/metadata/md5-cache/dev-ml/ppx_optcomp-0.14.3 index 2f8aafbe9316..81b4ff9a690d 100644 --- a/metadata/md5-cache/dev-ml/ppx_optcomp-0.14.3 +++ b/metadata/md5-cache/dev-ml/ppx_optcomp-0.14.3 @@ -5,10 +5,10 @@ DESCRIPTION=Optional compilation for OCaml EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_optcomp IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/stdio-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.3 SRC_URI=https://github.com/janestreet/ppx_optcomp/archive/v0.14.3.tar.gz -> ppx_optcomp-0.14.3.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=26fa3c2c35f66c8595f15fd765e9a594 +_md5_=2eed980ecf99c321b4d8b8a8d6011f9a diff --git a/metadata/md5-cache/dev-ml/ppx_optional-0.14.0 b/metadata/md5-cache/dev-ml/ppx_optional-0.14.0 index c3f7752ee95d..d09e28cff271 100644 --- a/metadata/md5-cache/dev-ml/ppx_optional-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_optional-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Pattern matching on flat options EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_optional IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/ppxlib:= dev-ml/ocaml-migrate-parsetree:= dev-ml/result:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_optional/archive/v0.14.0.tar.gz -> ppx_optional-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=e99869b6678b671eb150895670553da9 +_md5_=c661c3afed8c6192d5d44391882b0d6b diff --git a/metadata/md5-cache/dev-ml/ppx_pipebang-0.14.0 b/metadata/md5-cache/dev-ml/ppx_pipebang-0.14.0 index 0aa5b31605e4..0495ea79c8c3 100644 --- a/metadata/md5-cache/dev-ml/ppx_pipebang-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_pipebang-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=A ppx rewriter that inlines reverse application operators |> and |! EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_pipebang IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_pipebang/archive/v0.14.0.tar.gz -> ppx_pipebang-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=85fd0913ede9b983cb4c4acf17a720ff +_md5_=fa3a803382326ddbc1f6f4253f4508c5 diff --git a/metadata/md5-cache/dev-ml/ppx_sexp_conv-0.14.3 b/metadata/md5-cache/dev-ml/ppx_sexp_conv-0.14.3 index 4a8f352cb375..882ffb553bb3 100644 --- a/metadata/md5-cache/dev-ml/ppx_sexp_conv-0.14.3 +++ b/metadata/md5-cache/dev-ml/ppx_sexp_conv-0.14.3 @@ -5,10 +5,10 @@ DESCRIPTION=Support Library for type-driven code generators EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_sexp_conv IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/ppxlib-0.22.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= dev-ml/sexplib0:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.3 SRC_URI=https://github.com/janestreet/ppx_sexp_conv/archive/v0.14.3.tar.gz -> ppx_sexp_conv-0.14.3.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=96d9e21694078cffef45c3cebcbda9d0 +_md5_=c85eeacbba88a5c5c20dcb12c78c2dec diff --git a/metadata/md5-cache/dev-ml/ppx_sexp_message-0.14.1 b/metadata/md5-cache/dev-ml/ppx_sexp_message-0.14.1 index 820e2c6e75e1..3190d1e38daf 100644 --- a/metadata/md5-cache/dev-ml/ppx_sexp_message-0.14.1 +++ b/metadata/md5-cache/dev-ml/ppx_sexp_message-0.14.1 @@ -5,10 +5,10 @@ DESCRIPTION=A ppx rewriter for easy construction of s-expressions EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_sexp_message IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= dev-ml/findlib:= >=dev-ml/ppx_here-0.14.0:= >=dev-ml/ppx_sexp_conv-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.1 SRC_URI=https://github.com/janestreet/ppx_sexp_message/archive/v0.14.1.tar.gz -> ppx_sexp_message-0.14.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=7592807921610528bf4594031ea91f2a +_md5_=86d41b60d71963ad825399129edcde90 diff --git a/metadata/md5-cache/dev-ml/ppx_sexp_value-0.14.0 b/metadata/md5-cache/dev-ml/ppx_sexp_value-0.14.0 index 285b8bfb79d0..590792870195 100644 --- a/metadata/md5-cache/dev-ml/ppx_sexp_value-0.14.0 +++ b/metadata/md5-cache/dev-ml/ppx_sexp_value-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Standard library for ppx rewriters EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_sexp_value IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/ppx_here-0.14.0:= >=dev-ml/ppx_sexp_conv-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/ppx_sexp_value/archive/v0.14.0.tar.gz -> ppx_sexp_value-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=2051cb025f218163885302621509430c +_md5_=c75d106f25fa3dd98a47f90d37c75a73 diff --git a/metadata/md5-cache/dev-ml/ppx_stable-0.14.1 b/metadata/md5-cache/dev-ml/ppx_stable-0.14.1 index 8ecab364cbd3..c454f803aa8a 100644 --- a/metadata/md5-cache/dev-ml/ppx_stable-0.14.1 +++ b/metadata/md5-cache/dev-ml/ppx_stable-0.14.1 @@ -5,10 +5,10 @@ DESCRIPTION=Stable types conversions generator EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_stable IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.1 SRC_URI=https://github.com/janestreet/ppx_stable/archive/v0.14.1.tar.gz -> ppx_stable-0.14.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=a3570c89294b127be505635bf687622b +_md5_=0486b64e8b7d05bacae937f03ab7f244 diff --git a/metadata/md5-cache/dev-ml/ppx_string-0.14.1 b/metadata/md5-cache/dev-ml/ppx_string-0.14.1 index ad82a84aa24c..28204c1a0c7b 100644 --- a/metadata/md5-cache/dev-ml/ppx_string-0.14.1 +++ b/metadata/md5-cache/dev-ml/ppx_string-0.14.1 @@ -5,10 +5,10 @@ DESCRIPTION=Ppx extension for string interpolation EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_string IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/ppx_base-0.14.0:= >=dev-ml/ppxlib-0.18.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-ml/stdio-0.14.0:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.1 SRC_URI=https://github.com/janestreet/ppx_string/archive/v0.14.1.tar.gz -> ppx_string-0.14.1.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=6918e8b6f0e6dae05a9bcc7096793af8 +_md5_=43df13ea0b0ac1b1468d9ac400f55d55 diff --git a/metadata/md5-cache/dev-ml/ppx_typerep_conv-0.14.2 b/metadata/md5-cache/dev-ml/ppx_typerep_conv-0.14.2 index e91459624da5..2565194f999c 100644 --- a/metadata/md5-cache/dev-ml/ppx_typerep_conv-0.14.2 +++ b/metadata/md5-cache/dev-ml/ppx_typerep_conv-0.14.2 @@ -5,10 +5,10 @@ DESCRIPTION=Generation of runtime types from type declarations EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_typerep_conv IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/typerep-0.14.0:= >=dev-ml/ppxlib-0.22.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.2 SRC_URI=https://github.com/janestreet/ppx_typerep_conv/archive/v0.14.2.tar.gz -> ppx_typerep_conv-0.14.2.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=89cfd1660b1dcc6c24b4d85e6e65bfab +_md5_=3cf5b13c6821552e0eb17d979d1087e0 diff --git a/metadata/md5-cache/dev-ml/ppx_variants_conv-0.14.2 b/metadata/md5-cache/dev-ml/ppx_variants_conv-0.14.2 index fbfcb3c6c8c0..a3cc83a95e4c 100644 --- a/metadata/md5-cache/dev-ml/ppx_variants_conv-0.14.2 +++ b/metadata/md5-cache/dev-ml/ppx_variants_conv-0.14.2 @@ -5,10 +5,10 @@ DESCRIPTION=Generation of accessor and iteration functions for ocaml variant typ EAPI=7 HOMEPAGE=https://github.com/janestreet/ppx_variants_conv IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.14.0:= >=dev-ml/variantslib-0.14.0:= >=dev-ml/ppxlib-0.23.0:= >=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.0.0:= dev-ml/cinaps:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.2 SRC_URI=https://github.com/janestreet/ppx_variants_conv/archive/v0.14.2.tar.gz -> ppx_variants_conv-0.14.2.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=0764c011ade79e1d2a14314b03e3f4a4 +_md5_=2ca8a096e65832e46b06972115c9b97d diff --git a/metadata/md5-cache/dev-ml/ppxlib-0.24.0 b/metadata/md5-cache/dev-ml/ppxlib-0.24.0 index 86118a2219ed..d2b8cc5d690c 100644 --- a/metadata/md5-cache/dev-ml/ppxlib-0.24.0 +++ b/metadata/md5-cache/dev-ml/ppxlib-0.24.0 @@ -5,11 +5,11 @@ DESCRIPTION=Base library and tools for ppx rewriters EAPI=7 HOMEPAGE=https://github.com/ocaml-ppx/ppxlib IUSE=+ocamlopt test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/ocaml-compiler-libs-0.11.0:= >=dev-ml/ocaml-migrate-parsetree-2.2.0:= dev-ml/sexplib0:= dev-ml/stdlib-shims:= >=dev-ml/ppx_derivers-1.2.1:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/0.24.0 SRC_URI=https://github.com/ocaml-ppx/ppxlib/archive/0.24.0.tar.gz -> ppxlib-0.24.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=9f8be191ec210d1e4373d60174ccd26a +_md5_=e252cb87b91dfe34ee93944343383a77 diff --git a/metadata/md5-cache/dev-ml/re-1.10.3 b/metadata/md5-cache/dev-ml/re-1.10.3 index 5d2c29e1d396..4801a0199999 100644 --- a/metadata/md5-cache/dev-ml/re-1.10.3 +++ b/metadata/md5-cache/dev-ml/re-1.10.3 @@ -5,11 +5,11 @@ DESCRIPTION=Regular expression library for OCaml EAPI=7 HOMEPAGE=https://github.com/ocaml/ocaml-re IUSE=+ocamlopt test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2-with-linking-exception RDEPEND=!dev-ml/ocaml-re dev-ml/seq:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/1.10.3 SRC_URI=https://github.com/ocaml/ocaml-re/archive/1.10.3.tar.gz -> ocaml-re-1.10.3.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=a57de6bd9f55dc2c44b3abb436a4480b +_md5_=e87c02b86714a717e871d622a0c875e3 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 82f02c9acfd6..683a4e91ac64 100644 --- a/metadata/md5-cache/dev-ml/react-1.2.1-r1 +++ b/metadata/md5-cache/dev-ml/react-1.2.1-r1 @@ -5,11 +5,11 @@ DESCRIPTION=OCaml module for functional reactive programming EAPI=7 HOMEPAGE=http://erratique.ch/software/react https://github.com/dbuenzli/react IUSE=test -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=BSD 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 dc11e376d9abc263ca618c5741206216 -_md5_=abcba1e81fef7b4cd5188e3b477b79c4 +_md5_=8986a733da66ca3aa746ac45ac5d8b87 diff --git a/metadata/md5-cache/dev-ml/result-1.5 b/metadata/md5-cache/dev-ml/result-1.5 index 3f4edd288aaf..f4a033505931 100644 --- a/metadata/md5-cache/dev-ml/result-1.5 +++ b/metadata/md5-cache/dev-ml/result-1.5 @@ -5,10 +5,10 @@ DESCRIPTION=Compat result type EAPI=7 HOMEPAGE=https://github.com/janestreet/result IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=BSD RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/1.5 SRC_URI=https://github.com/janestreet/result/archive/1.5.tar.gz -> result-1.5.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=0c7372b47a829cf2705ef9fb70e24859 +_md5_=554b0aacd4f07911f15d71508574c5c7 diff --git a/metadata/md5-cache/dev-ml/rresult-0.7.0 b/metadata/md5-cache/dev-ml/rresult-0.7.0 index f6979935b31c..13b4bc3fcd74 100644 --- a/metadata/md5-cache/dev-ml/rresult-0.7.0 +++ b/metadata/md5-cache/dev-ml/rresult-0.7.0 @@ -4,10 +4,10 @@ DEPEND=dev-ml/result:= >=dev-lang/ocaml-4.08:= >=dev-lang/ocaml-4:= DESCRIPTION=Result value combinators for OCaml EAPI=7 HOMEPAGE=https://erratique.ch/software/rresult https://github.com/dbuenzli/rresult -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=ISC RDEPEND=dev-ml/result:= >=dev-lang/ocaml-4.08:= >=dev-lang/ocaml-4:= SLOT=0/0.7.0 SRC_URI=https://erratique.ch/software/rresult/releases/rresult-0.7.0.tbz _eclasses_=opam dc11e376d9abc263ca618c5741206216 -_md5_=bc7a734e3f9a00335df160cd05629973 +_md5_=c961ad72c67d22e7b06d975ef7b7cc48 diff --git a/metadata/md5-cache/dev-ml/seq-0.2.2 b/metadata/md5-cache/dev-ml/seq-0.2.2 index d07924a75fd3..cd882c014463 100644 --- a/metadata/md5-cache/dev-ml/seq-0.2.2 +++ b/metadata/md5-cache/dev-ml/seq-0.2.2 @@ -5,10 +5,10 @@ DESCRIPTION=Compatibility package for the standard OCaml iterator type EAPI=7 HOMEPAGE=https://github.com/c-cube/seq IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=GPL-3 RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0 SRC_URI=https://github.com/c-cube/seq/archive/0.2.2.tar.gz -> seq-0.2.2.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=11d91d868cba1bc53260a38c58ffc51d +_md5_=ffb7ae8ecaf54d8fe23614454e41d47a diff --git a/metadata/md5-cache/dev-ml/sexplib-0.14.0 b/metadata/md5-cache/dev-ml/sexplib-0.14.0 index 83494035056c..67b516a06616 100644 --- a/metadata/md5-cache/dev-ml/sexplib-0.14.0 +++ b/metadata/md5-cache/dev-ml/sexplib-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Library for automated conversion of OCaml-values to and from S-expre EAPI=7 HOMEPAGE=https://github.com/janestreet/sexplib IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=dev-ml/parsexp:= dev-ml/base:= dev-ml/sexplib0:= dev-ml/num:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/sexplib/archive/v0.14.0.tar.gz -> sexplib-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=825411cc433a43cb0a36ef82da1d16f4 +_md5_=2ed24cbbeb59e1cac926324203c4c4f1 diff --git a/metadata/md5-cache/dev-ml/sexplib0-0.14.0 b/metadata/md5-cache/dev-ml/sexplib0-0.14.0 index 73151fb655e6..f0ef9a4ee48a 100644 --- a/metadata/md5-cache/dev-ml/sexplib0-0.14.0 +++ b/metadata/md5-cache/dev-ml/sexplib0-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Library for automated conversion of OCaml-values to and from S-expre EAPI=7 HOMEPAGE=https://github.com/janestreet/sexplib0 IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/sexplib0/archive/v0.14.0.tar.gz -> sexplib0-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=28090e689086a8bfebc1b623517496f3 +_md5_=3c7b112223532a9b935a5c346e979ed6 diff --git a/metadata/md5-cache/dev-ml/spawn-0.15.0 b/metadata/md5-cache/dev-ml/spawn-0.15.0 index 1d6d4b199b3b..0d551a61a662 100644 --- a/metadata/md5-cache/dev-ml/spawn-0.15.0 +++ b/metadata/md5-cache/dev-ml/spawn-0.15.0 @@ -5,11 +5,11 @@ DESCRIPTION=Spawning sub-processes EAPI=7 HOMEPAGE=https://github.com/janestreet/spawn IUSE=+ocamlopt test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/0.15.0 SRC_URI=https://github.com/janestreet/spawn/archive/v0.15.0.tar.gz -> spawn-0.15.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=9c3ae29b0f10248992c4305f054da347 +_md5_=ce55549a064b84e7274e1671d8d7f702 diff --git a/metadata/md5-cache/dev-ml/splittable_random-0.14.0 b/metadata/md5-cache/dev-ml/splittable_random-0.14.0 index 97beec1b2c30..895418dff295 100644 --- a/metadata/md5-cache/dev-ml/splittable_random-0.14.0 +++ b/metadata/md5-cache/dev-ml/splittable_random-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=PRNG that can be split into independent streams EAPI=7 HOMEPAGE=https://github.com/janestreet/splittable_random IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= dev-ml/ppx_assert:= dev-ml/ppx_bench:= dev-ml/ppx_inline_test:= dev-ml/ppx_sexp_message:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/splittable_random/archive/v0.14.0.tar.gz -> splittable_random-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=17f106438290f92b3cda891113da5cea +_md5_=bde622192a71f79fbd37edc595d0363a diff --git a/metadata/md5-cache/dev-ml/stdio-0.14.0 b/metadata/md5-cache/dev-ml/stdio-0.14.0 index 317c83b3d52b..c35f74675a4a 100644 --- a/metadata/md5-cache/dev-ml/stdio-0.14.0 +++ b/metadata/md5-cache/dev-ml/stdio-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Standard IO Library for OCaml EAPI=7 HOMEPAGE=https://github.com/janestreet/stdio IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=dev-ml/base-0.11.0:= dev-ml/sexplib0:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/stdio/archive/v0.14.0.tar.gz -> stdio-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=ec88677aa4b80aa1aaa0f6a2eb397faa +_md5_=a05acb44f1e6ba2f70feeaf4f278894f diff --git a/metadata/md5-cache/dev-ml/stdlib-shims-0.3.0 b/metadata/md5-cache/dev-ml/stdlib-shims-0.3.0 index 279488e77755..e4b9a6c0b926 100644 --- a/metadata/md5-cache/dev-ml/stdlib-shims-0.3.0 +++ b/metadata/md5-cache/dev-ml/stdlib-shims-0.3.0 @@ -5,10 +5,10 @@ DESCRIPTION=Pure OCaml library that allows replacing Pervasives with Stdlib befo EAPI=7 HOMEPAGE=https://github.com/ocaml/stdlib-shims IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=LGPL-2.1-with-linking-exception RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0 SRC_URI=https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=113d794f66510a4eaa9311171ced7354 +_md5_=d0752845fc419c3b03fcb4b820d09c1d diff --git a/metadata/md5-cache/dev-ml/textutils-0.14.0 b/metadata/md5-cache/dev-ml/textutils-0.14.0 index ae46ae3953f4..70b8dfd38fbd 100644 --- a/metadata/md5-cache/dev-ml/textutils-0.14.0 +++ b/metadata/md5-cache/dev-ml/textutils-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Text output utilities EAPI=7 HOMEPAGE=https://github.com/janestreet/textutils IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=dev-ml/core:= dev-ml/core_kernel:= dev-ml/ppx_jane:= dev-ml/uutf:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/textutils/archive/v0.14.0.tar.gz -> textutils-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=7efaa1b4c24125d0ddcf430af6945f25 +_md5_=f6c9f4cb8bb447b678d104b30b8edbbf diff --git a/metadata/md5-cache/dev-ml/time_now-0.14.0 b/metadata/md5-cache/dev-ml/time_now-0.14.0 index 49e7cfd61fca..b6f88a338093 100644 --- a/metadata/md5-cache/dev-ml/time_now-0.14.0 +++ b/metadata/md5-cache/dev-ml/time_now-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Reports the current time EAPI=7 HOMEPAGE=https://github.com/janestreet/time_now IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=dev-ml/base:= dev-ml/jane-street-headers:= dev-ml/jst-config:= dev-ml/ppx_base:= dev-ml/ppx_optcomp:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/time_now/archive/v0.14.0.tar.gz -> time_now-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=bc5bd94cfa69d5e50db94af976ed837e +_md5_=2242d7bc25c352352f666a0e5b755b69 diff --git a/metadata/md5-cache/dev-ml/timezone-0.14.0 b/metadata/md5-cache/dev-ml/timezone-0.14.0 index 51198763f29c..02fc06af12b9 100644 --- a/metadata/md5-cache/dev-ml/timezone-0.14.0 +++ b/metadata/md5-cache/dev-ml/timezone-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Time-zone handling for OCaml EAPI=7 HOMEPAGE=https://github.com/janestreet/timezone IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT RDEPEND=dev-ml/core_kernel:= dev-ml/ppx_jane:= dev-ml/stdio:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/timezone/archive/v0.14.0.tar.gz -> timezone-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=28e4f26a19b3264dfa11c1915f472548 +_md5_=3c351a31154f1123a1371567c83187ca diff --git a/metadata/md5-cache/dev-ml/topkg-1.0.5 b/metadata/md5-cache/dev-ml/topkg-1.0.5 index 667cd66e078d..f52966df5a6c 100644 --- a/metadata/md5-cache/dev-ml/topkg-1.0.5 +++ b/metadata/md5-cache/dev-ml/topkg-1.0.5 @@ -4,10 +4,10 @@ DESCRIPTION=The transitory OCaml software packager EAPI=7 HOMEPAGE=http://erratique.ch/software/topkg https://github.com/dbuenzli/topkg IUSE=+ocamlopt +ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=ISC RDEPEND=dev-ml/result:= dev-ml/ocamlbuild:= dev-ml/findlib:= dev-lang/ocaml:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] SLOT=0/1.0.5 SRC_URI=https://github.com/dbuenzli/topkg/archive/v1.0.5.tar.gz -> topkg-1.0.5.tar.gz _eclasses_=findlib e6df6108c2d753998b1206f4d5ea4a2d -_md5_=f2f6718a0d6768b2681c4fec5dee9a98 +_md5_=9ccf21b5a677145d2cd0c34ce8d134df diff --git a/metadata/md5-cache/dev-ml/typerep-0.14.0 b/metadata/md5-cache/dev-ml/typerep-0.14.0 index fa0a10d56fee..fb8346315cef 100644 --- a/metadata/md5-cache/dev-ml/typerep-0.14.0 +++ b/metadata/md5-cache/dev-ml/typerep-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=Library for creating runtime representation of OCaml types EAPI=7 HOMEPAGE=https://github.com/janestreet/typerep IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/typerep/archive/v0.14.0.tar.gz -> typerep-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=a6dbba2ff193e484313ab2d8fb52b914 +_md5_=3a43d25022ab5a9ec4c3a60dc4702af9 diff --git a/metadata/md5-cache/dev-ml/uchar-0.0.2 b/metadata/md5-cache/dev-ml/uchar-0.0.2 index e52b9e6d0682..67a1fa126be9 100644 --- a/metadata/md5-cache/dev-ml/uchar-0.0.2 +++ b/metadata/md5-cache/dev-ml/uchar-0.0.2 @@ -4,11 +4,11 @@ DESCRIPTION=Uchar compatibility library EAPI=6 HOMEPAGE=https://github.com/ocaml/uchar IUSE=+ocamlopt +ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=LGPL-2-with-linking-exception RDEPEND=>=dev-lang/ocaml-4.03:= dev-lang/ocaml:=[ocamlopt?] 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 e6df6108c2d753998b1206f4d5ea4a2d -_md5_=075971e040b1fc6f38dc67df153a8921 +_md5_=3473ec7ad00112f6fbc14d18463c12e5 diff --git a/metadata/md5-cache/dev-ml/uuidm-0.9.7 b/metadata/md5-cache/dev-ml/uuidm-0.9.7 index c2a4b21be596..388db037e749 100644 --- a/metadata/md5-cache/dev-ml/uuidm-0.9.7 +++ b/metadata/md5-cache/dev-ml/uuidm-0.9.7 @@ -5,10 +5,10 @@ DESCRIPTION=Universally unique identifiers (UUIDs) for OCaml EAPI=7 HOMEPAGE=https://github.com/dbuenzli/uuidm IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=ISC RDEPEND=>=dev-lang/ocaml-4:= SLOT=0/0.9.7 SRC_URI=https://github.com/dbuenzli/uuidm/archive/v0.9.7.tar.gz -> uuidm-0.9.7.tar.gz _eclasses_=opam dc11e376d9abc263ca618c5741206216 -_md5_=cb96a5f28185216b2d32fed20fc4e280 +_md5_=c62e48c79cf0d1b49c0a936558a54d94 diff --git a/metadata/md5-cache/dev-ml/uutf-1.0.3 b/metadata/md5-cache/dev-ml/uutf-1.0.3 index 2def530d66b0..e935226d350c 100644 --- a/metadata/md5-cache/dev-ml/uutf-1.0.3 +++ b/metadata/md5-cache/dev-ml/uutf-1.0.3 @@ -5,7 +5,7 @@ DESCRIPTION=Non-blocking streaming Unicode codec for OCaml EAPI=7 HOMEPAGE=https://erratique.ch/software/uutf IUSE=doc utftrip +ocamlopt test +ocamlopt -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=ISC RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] dev-ml/uchar:= utftrip? ( dev-ml/cmdliner:= ) dev-lang/ocaml:=[ocamlopt?] REQUIRED_USE=utftrip? ( ocamlopt ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0/1.0.3 SRC_URI=https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz _eclasses_=findlib e6df6108c2d753998b1206f4d5ea4a2d -_md5_=3dec000db78cc33065906ee105428bd7 +_md5_=fea74a88e7a40eaed4f8cbc2f7696140 diff --git a/metadata/md5-cache/dev-ml/variantslib-0.14.0 b/metadata/md5-cache/dev-ml/variantslib-0.14.0 index a5e7b010e0ab..7cfc10f5de18 100644 --- a/metadata/md5-cache/dev-ml/variantslib-0.14.0 +++ b/metadata/md5-cache/dev-ml/variantslib-0.14.0 @@ -5,10 +5,10 @@ DESCRIPTION=OCaml variants as first class values EAPI=7 HOMEPAGE=https://github.com/janestreet/variantslib IUSE=+ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=dev-ml/base:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/variantslib/archive/v0.14.0.tar.gz -> variantslib-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=225303762d79b9ca89657f6de0e07fef +_md5_=190557f876ca0599787453bb2505af5c diff --git a/metadata/md5-cache/dev-ml/xml-light-2.2-r3 b/metadata/md5-cache/dev-ml/xml-light-2.2-r3 index 93d4c8d4f767..183f1910ba88 100644 --- a/metadata/md5-cache/dev-ml/xml-light-2.2-r3 +++ b/metadata/md5-cache/dev-ml/xml-light-2.2-r3 @@ -5,9 +5,9 @@ DESCRIPTION=Minimal Xml parser and printer for OCaml EAPI=7 HOMEPAGE=http://tech.motion-twin.com/xmllight.html IUSE=doc +ocamlopt -KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=LGPL-2.1 RDEPEND=dev-lang/ocaml:=[ocamlopt?] SLOT=0/2.2 SRC_URI=http://tech.motion-twin.com/zip/xml-light-2.2.zip -_md5_=93c11a06a70fb09caf9f67cc79d929f8 +_md5_=1570911204b20c5b181d61c6639f6493 diff --git a/metadata/md5-cache/dev-perl/Emacs-PDE-0.2.17 b/metadata/md5-cache/dev-perl/Emacs-PDE-0.2.17 index f1cfd188621f..de8f21ce437d 100644 --- a/metadata/md5-cache/dev-perl/Emacs-PDE-0.2.17 +++ b/metadata/md5-cache/dev-perl/Emacs-PDE-0.2.17 @@ -9,5 +9,5 @@ LICENSE=|| ( Artistic GPL-1+ ) GPL-2+ FDL-1.1+ RDEPEND=>=app-editors/emacs-23.1:* dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/Y/YE/YEWENBIN/Emacs-PDE-v0.2.17.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 _md5_=71af4aab61634d84ddfe5e7612348c53 diff --git a/metadata/md5-cache/dev-perl/Manifest.gz b/metadata/md5-cache/dev-perl/Manifest.gz index f54dbb309ded..3883acd56558 100644 Binary files a/metadata/md5-cache/dev-perl/Manifest.gz and b/metadata/md5-cache/dev-perl/Manifest.gz differ diff --git a/metadata/md5-cache/dev-perl/Perl-Critic-1.140.0-r1 b/metadata/md5-cache/dev-perl/Perl-Critic-1.140.0-r1 index 6c6dfe7bc30b..073f7747b55d 100644 --- a/metadata/md5-cache/dev-perl/Perl-Critic-1.140.0-r1 +++ b/metadata/md5-cache/dev-perl/Perl-Critic-1.140.0-r1 @@ -11,5 +11,5 @@ RDEPEND=>=dev-perl/B-Keywords-1.50.0 virtual/perl-Carp >=dev-perl/Config-Tiny-2 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/P/PE/PETDANCE/Perl-Critic-1.140.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 _md5_=5400cf3261fa3f6533dd0d65136dde02 diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index cd0bb04817eb..29e989097f63 100644 Binary files a/metadata/md5-cache/dev-python/Manifest.gz and b/metadata/md5-cache/dev-python/Manifest.gz differ diff --git a/metadata/md5-cache/dev-python/PyPDF2-1.26.0-r2 b/metadata/md5-cache/dev-python/PyPDF2-1.26.0-r2 deleted file mode 100644 index 81cacd29abaa..000000000000 --- a/metadata/md5-cache/dev-python/PyPDF2-1.26.0-r2 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Python library to work with PDF files -EAPI=8 -HOMEPAGE=https://pypi.org/project/PyPDF2/ https://github.com/mstamy2/PyPDF2 -IUSE=examples python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~arm64 ~ppc64 x86 -LICENSE=BSD-2 -RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -SLOT=0 -SRC_URI=mirror://pypi/P/PyPDF2/PyPDF2-1.26.0.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e31a988e919e98c6515b64a3a58eebbb diff --git a/metadata/md5-cache/dev-python/PyPDF2-1.27.1 b/metadata/md5-cache/dev-python/PyPDF2-1.27.1 deleted file mode 100644 index 8dc33fc97428..000000000000 --- a/metadata/md5-cache/dev-python/PyPDF2-1.27.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Python library to work with PDF files -EAPI=8 -HOMEPAGE=https://pypi.org/project/PyPDF2/ https://github.com/py-pdf/PyPDF2/ -IUSE=examples test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 -LICENSE=BSD-2 -RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/py-pdf/PyPDF2/archive/1.27.1.tar.gz -> PyPDF2-1.27.1.gh.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=61d8b1b60da51df209fea5dcbd4ac793 diff --git a/metadata/md5-cache/dev-python/PyPDF2-1.27.4 b/metadata/md5-cache/dev-python/PyPDF2-1.27.4 deleted file mode 100644 index 802d7ea832d7..000000000000 --- a/metadata/md5-cache/dev-python/PyPDF2-1.27.4 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Python library to work with PDF files -EAPI=8 -HOMEPAGE=https://pypi.org/project/PyPDF2/ https://github.com/py-pdf/PyPDF2/ -IUSE=examples test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 -LICENSE=BSD-2 -RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/py-pdf/PyPDF2/archive/1.27.4.tar.gz -> PyPDF2-1.27.4.gh.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=61d8b1b60da51df209fea5dcbd4ac793 diff --git a/metadata/md5-cache/dev-python/PyPDF2-1.27.5 b/metadata/md5-cache/dev-python/PyPDF2-1.27.5 index ff0354f107d4..e45e5028d1f3 100644 --- a/metadata/md5-cache/dev-python/PyPDF2-1.27.5 +++ b/metadata/md5-cache/dev-python/PyPDF2-1.27.5 @@ -4,7 +4,7 @@ DESCRIPTION=Python library to work with PDF files EAPI=8 HOMEPAGE=https://pypi.org/project/PyPDF2/ https://github.com/py-pdf/PyPDF2/ IUSE=examples test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +KEYWORDS=amd64 ~arm64 ~ppc64 x86 LICENSE=BSD-2 RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/py-pdf/PyPDF2/archive/1.27.5.tar.gz -> PyPDF2-1.27.5.gh.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=5552e72cd7605cd9e44e52f9f590d81c +_md5_=a2e468c183a67ac00e4cf85e652becba diff --git a/metadata/md5-cache/dev-python/PyPDF2-1.27.3 b/metadata/md5-cache/dev-python/PyPDF2-1.27.6 similarity index 93% rename from metadata/md5-cache/dev-python/PyPDF2-1.27.3 rename to metadata/md5-cache/dev-python/PyPDF2-1.27.6 index e075573c9405..da3eb3e94641 100644 --- a/metadata/md5-cache/dev-python/PyPDF2-1.27.3 +++ b/metadata/md5-cache/dev-python/PyPDF2-1.27.6 @@ -10,6 +10,6 @@ RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_ REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/py-pdf/PyPDF2/archive/1.27.3.tar.gz -> PyPDF2-1.27.3.gh.tar.gz +SRC_URI=https://github.com/py-pdf/PyPDF2/archive/1.27.6.tar.gz -> PyPDF2-1.27.6.gh.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=61d8b1b60da51df209fea5dcbd4ac793 +_md5_=5552e72cd7605cd9e44e52f9f590d81c diff --git a/metadata/md5-cache/dev-python/aesara-2.6.0 b/metadata/md5-cache/dev-python/aesara-2.6.0 new file mode 100644 index 000000000000..d5eaefbde62d --- /dev/null +++ b/metadata/md5-cache/dev-python/aesara-2.6.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/pytest-xdist[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-python/sphinx-4.4.0[python_targets_python3_10(-)] dev-python/sphinx_rtd_theme[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-python/sphinx-4.4.0[python_targets_python3_9(-)] dev-python/sphinx_rtd_theme[python_targets_python3_9(-)] ) ( >=dev-lang/python-3.8.12_p1-r1:3.8 >=dev-python/sphinx-4.4.0[python_targets_python3_8(-)] dev-python/sphinx_rtd_theme[python_targets_python3_8(-)] ) ) ) test? ( dev-python/cons[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/etuples[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/logical-unification[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/minikanren[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/filelock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/numpy-1.17.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/typing-extensions[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=Library for operating on mathematical expressions with multi-dimensional arrays +EAPI=8 +HOMEPAGE=https://github.com/aesara-devs/aesara/ https://pypi.org/project/aesara/ +IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 +LICENSE=BSD +RDEPEND=dev-python/cons[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/etuples[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/logical-unification[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/minikanren[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/filelock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/numpy-1.17.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/typing-extensions[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/aesara-devs/aesara/archive/rel-2.6.0.tar.gz -> aesara-rel-2.6.0.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=ea924eef1238af3556731b21255e2b7c diff --git a/metadata/md5-cache/dev-python/argparse-manpage-2.2 b/metadata/md5-cache/dev-python/argparse-manpage-2.2 index aa2e00d27ad8..35ec175f357c 100644 --- a/metadata/md5-cache/dev-python/argparse-manpage-2.2 +++ b/metadata/md5-cache/dev-python/argparse-manpage-2.2 @@ -4,7 +4,7 @@ DESCRIPTION=Automatically build man-pages for your Python project EAPI=8 HOMEPAGE=https://github.com/praiskup/argparse-manpage https://pypi.org/project/argparse-manpage/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~ppc ~sparc ~x86 +KEYWORDS=~amd64 ~arm64 ~ppc ~sparc ~x86 LICENSE=Apache-2.0 RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/praiskup/argparse-manpage/archive/v2.2.tar.gz -> argparse-manpage-2.2.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=d0dcd3e006846526e3a07d2447aed77f +_md5_=c34d8cf7b719471a3abf5029d63da372 diff --git a/metadata/md5-cache/dev-python/authheaders-0.15.0 b/metadata/md5-cache/dev-python/authheaders-0.15.0 new file mode 100644 index 000000000000..b07f3bb4d3da --- /dev/null +++ b/metadata/md5-cache/dev-python/authheaders-0.15.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-python/authres-1.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/dkimpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/dnspython[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/publicsuffix-2.20190205[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A library wrapping email authentication header verification and generation +EAPI=8 +HOMEPAGE=https://pypi.org/project/authheaders/ https://github.com/ValiMail/authentication-headers/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/authres-1.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/dkimpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/dnspython[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/publicsuffix-2.20190205[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/a/authheaders/authheaders-0.15.0.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=20dadad3ae3dde5a2ad9e2e9e49ce758 diff --git a/metadata/md5-cache/dev-python/authres-1.2.0-r1 b/metadata/md5-cache/dev-python/authres-1.2.0-r1 new file mode 100644 index 000000000000..cf8bfeedb773 --- /dev/null +++ b/metadata/md5-cache/dev-python/authres-1.2.0-r1 @@ -0,0 +1,14 @@ +BDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Parse and generate Authentication-Results headers +EAPI=8 +HOMEPAGE=https://launchpad.net/authentication-results-python/ https://pypi.org/project/authres/ +IUSE=python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +SLOT=0 +SRC_URI=mirror://pypi/a/authres/authres-1.2.0.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=f8a100255259531aead40f1ecdc16265 diff --git a/metadata/md5-cache/dev-python/black-21.12_beta0 b/metadata/md5-cache/dev-python/black-21.12_beta0 deleted file mode 100644 index 1fa735e4cfdc..000000000000 --- a/metadata/md5-cache/dev-python/black-21.12_beta0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-python/setuptools_scm[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/aiohttp-3.7.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/aiohttp-cors[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/colorama[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/parameterized[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/click-8.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mypy_extensions-0.4.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/platformdirs-2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install postinst prepare test -DESCRIPTION=The uncompromising Python code formatter -EAPI=8 -HOMEPAGE=https://black.readthedocs.io/en/stable/ https://github.com/psf/black -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos -LICENSE=MIT -RDEPEND=>=dev-python/click-8.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mypy_extensions-0.4.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/platformdirs-2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/psf/black/archive/21.12b0.tar.gz -> black-21.12b0.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=24300d064e40256f60b6eb0cb3d7fc5a diff --git a/metadata/md5-cache/dev-python/black-21.12_beta0-r1 b/metadata/md5-cache/dev-python/black-21.12_beta0-r1 deleted file mode 100644 index 439a8c450eee..000000000000 --- a/metadata/md5-cache/dev-python/black-21.12_beta0-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-python/setuptools_scm[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/aiohttp-3.7.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/aiohttp-cors[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/colorama[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/parameterized[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/click-8.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mypy_extensions-0.4.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/platformdirs-2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install postinst prepare test -DESCRIPTION=The uncompromising Python code formatter -EAPI=8 -HOMEPAGE=https://black.readthedocs.io/en/stable/ https://github.com/psf/black -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos -LICENSE=MIT -RDEPEND=>=dev-python/click-8.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mypy_extensions-0.4.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/platformdirs-2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/psf/black/archive/21.12b0.tar.gz -> black-21.12b0.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=433d8b2c25c10abfc30987b2ff33198b diff --git a/metadata/md5-cache/dev-python/cppy-1.2.1-r1 b/metadata/md5-cache/dev-python/cppy-1.2.1-r1 index 0da274126ad4..ff11be0d25df 100644 --- a/metadata/md5-cache/dev-python/cppy-1.2.1-r1 +++ b/metadata/md5-cache/dev-python/cppy-1.2.1-r1 @@ -4,7 +4,7 @@ DESCRIPTION=C++ header library which makes it easier to write Python extension m EAPI=8 HOMEPAGE=https://pypi.org/project/cppy/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha ~amd64 ~ia64 ~m68k ~s390 ~x86 +KEYWORDS=~alpha ~amd64 ~ia64 ~m68k ~riscv ~s390 ~x86 LICENSE=BSD RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/c/cppy/cppy-1.2.1.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=74b3c8e524399098850ce4e93e4160dd +_md5_=bde6ed511a716a6fc55350d460f38096 diff --git a/metadata/md5-cache/dev-python/cython-0.29.28 b/metadata/md5-cache/dev-python/cython-0.29.28 index d7e86798675a..9687180759b5 100644 --- a/metadata/md5-cache/dev-python/cython-0.29.28 +++ b/metadata/md5-cache/dev-python/cython-0.29.28 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_p RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cython/cython/archive/0.29.28.tar.gz -> cython-0.29.28.gh.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d elisp-common f9c72486dbcb18b633c9d0949211d86e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d elisp-common e7aaa047873789f549ea3df2f04b2145 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=27d9f99c5b3af7ee11102980ca09ec2f diff --git a/metadata/md5-cache/dev-python/dkimpy-1.0.5-r1 b/metadata/md5-cache/dev-python/dkimpy-1.0.5-r1 new file mode 100644 index 000000000000..82574492f26b --- /dev/null +++ b/metadata/md5-cache/dev-python/dkimpy-1.0.5-r1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/authres[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pynacl[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/dnspython[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/unittest-or-fail[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=DKIM and ARC email signing and verification library +EAPI=8 +HOMEPAGE=https://launchpad.net/dkimpy/ https://pypi.org/project/dkimpy/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=BSD +RDEPEND=dev-python/dnspython[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/d/dkimpy/dkimpy-1.0.5.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=e7e356527a3e3acec90ed9bc016c2a21 diff --git a/metadata/md5-cache/dev-python/ephemeral-port-reserve-1.1.4 b/metadata/md5-cache/dev-python/ephemeral-port-reserve-1.1.4 index 5fd3f5be5159..36399f7d5f9c 100644 --- a/metadata/md5-cache/dev-python/ephemeral-port-reserve-1.1.4 +++ b/metadata/md5-cache/dev-python/ephemeral-port-reserve-1.1.4 @@ -4,7 +4,7 @@ DESCRIPTION=Bind to an ephemeral port, force it into the TIME_WAIT state, and un EAPI=8 HOMEPAGE=https://pypi.org/project/ephemeral-port-reserve/ https://github.com/Yelp/ephemeral-port-reserve/ IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Yelp/ephemeral-port-reserve/archive/v1.1.4.tar.gz -> ephemeral-port-reserve-1.1.4.gh.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=a6e1f17f1da57811c1ea8cdd70237d27 +_md5_=994c0e56600736f3349e62b802db0a5f diff --git a/metadata/md5-cache/dev-python/fonttools-4.29.1 b/metadata/md5-cache/dev-python/fonttools-4.29.1 deleted file mode 100644 index c580c617b5db..000000000000 --- a/metadata/md5-cache/dev-python/fonttools-4.29.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-python/fs-2.4.9[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cython[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( app-arch/brotli[python,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] app-arch/zopfli ) test? ( >=dev-python/fs-2.4.9[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[xml(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[xml(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[xml(+)] ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Library for manipulating TrueType, OpenType, AFM and Type1 fonts -EAPI=8 -HOMEPAGE=https://github.com/fonttools/fonttools/ -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 test -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv sparc x86 ~x64-macos -LICENSE=BSD -RDEPEND=>=dev-python/fs-2.4.9[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[xml(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[xml(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[xml(+)] ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/fonttools/fonttools/archive/4.29.1.tar.gz -> fonttools-4.29.1.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 -_md5_=ccf31443bb7417fe5272098cdbf71054 diff --git a/metadata/md5-cache/dev-python/fonttools-4.30.0 b/metadata/md5-cache/dev-python/fonttools-4.30.0 index ee69db343b8d..d7d1047be7ce 100644 --- a/metadata/md5-cache/dev-python/fonttools-4.30.0 +++ b/metadata/md5-cache/dev-python/fonttools-4.30.0 @@ -4,7 +4,7 @@ DESCRIPTION=Library for manipulating TrueType, OpenType, AFM and Type1 fonts EAPI=8 HOMEPAGE=https://github.com/fonttools/fonttools/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 test -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~riscv sparc x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv sparc x86 ~x64-macos LICENSE=BSD RDEPEND=>=dev-python/fs-2.4.9[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[xml(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[xml(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[xml(+)] ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/fonttools/fonttools/archive/4.30.0.tar.gz -> fonttools-4.30.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 -_md5_=c180c0a79066ac300133bd21617498a3 +_md5_=2af7d16a38ba6fa20023b7574c5261e0 diff --git a/metadata/md5-cache/dev-python/git-review-2.3.0 b/metadata/md5-cache/dev-python/git-review-2.3.0 new file mode 100644 index 000000000000..0f7dfb43b811 --- /dev/null +++ b/metadata/md5-cache/dev-python/git-review-2.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-python/pbr-4.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Tool to submit code to Gerrit +EAPI=8 +HOMEPAGE=https://git.openstack.org/cgit/openstack-infra/git-review +IUSE=python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/requests-1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +SLOT=0 +SRC_URI=mirror://pypi/g/git-review/git-review-2.3.0.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=e285a682f04e9c28b3f97c3e9d497d2d diff --git a/metadata/md5-cache/dev-python/git-review-9999 b/metadata/md5-cache/dev-python/git-review-9999 index 79f18fcad989..d65eaabd05b4 100644 --- a/metadata/md5-cache/dev-python/git-review-9999 +++ b/metadata/md5-cache/dev-python/git-review-9999 @@ -1,14 +1,13 @@ -BDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=>=dev-python/pbr-4.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-python/pbr-4.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] DESCRIPTION=Tool to submit code to Gerrit EAPI=8 HOMEPAGE=https://git.openstack.org/cgit/openstack-infra/git-review -IUSE=python_targets_python3_8 python_targets_python3_9 +IUSE=python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 LICENSE=Apache-2.0 PROPERTIES=live -RDEPEND=>=dev-python/requests-1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=>=dev-python/requests-1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) SLOT=0 _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e18ce8067a1584f0afd62ec9473f85de +_md5_=e285a682f04e9c28b3f97c3e9d497d2d diff --git a/metadata/md5-cache/dev-python/hypothesis-6.43.3 b/metadata/md5-cache/dev-python/hypothesis-6.43.3 new file mode 100644 index 000000000000..8f4b2628bda2 --- /dev/null +++ b/metadata/md5-cache/dev-python/hypothesis-6.43.3 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pexpect[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-xdist[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/attrs-19.2.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/sortedcontainers-2.1.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] cli? ( python_targets_python3_8? ( dev-python/black[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( dev-python/black[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( dev-python/black[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) ) >=dev-python/pytest-7.0.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0=[threads(+),sqlite] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[threads(+),sqlite] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[threads(+),sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[threads(+),sqlite] ) >=dev-python/installer-0.4.0_p20220124[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=A library for property based testing +EAPI=8 +HOMEPAGE=https://github.com/HypothesisWorks/hypothesis https://pypi.org/project/hypothesis/ +IUSE=cli test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +LICENSE=MPL-2.0 +RDEPEND=>=dev-python/attrs-19.2.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/sortedcontainers-2.1.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] cli? ( python_targets_python3_8? ( dev-python/black[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( dev-python/black[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( dev-python/black[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0=[threads(+),sqlite] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[threads(+),sqlite] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[threads(+),sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[threads(+),sqlite] ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-6.43.3.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=8139ae31a1729a0f6389d33351515d6b diff --git a/metadata/md5-cache/dev-python/imageio-2.16.0 b/metadata/md5-cache/dev-python/imageio-2.16.0 deleted file mode 100644 index cf9caa9db742..000000000000 --- a/metadata/md5-cache/dev-python/imageio-2.16.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/fsspec[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/psutil[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tifffile[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/numpy-1.20.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pillow-8.3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] media-libs/freeimage >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Python library for reading and writing image data -EAPI=8 -HOMEPAGE=https://imageio.github.io/ -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -PROPERTIES=test_network -RDEPEND=>=dev-python/numpy-1.20.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pillow-8.3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] media-libs/freeimage python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=test !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/imageio/imageio/archive/v2.16.0.tar.gz -> imageio-2.16.0.gh.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=0bedf2046a6cf9fb7bddfd61c3df9b7d diff --git a/metadata/md5-cache/dev-python/imageio-2.16.1 b/metadata/md5-cache/dev-python/imageio-2.16.1 deleted file mode 100644 index 22bd84cd9a21..000000000000 --- a/metadata/md5-cache/dev-python/imageio-2.16.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/fsspec[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/psutil[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tifffile[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/numpy-1.20.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pillow-8.3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] media-libs/freeimage >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Python library for reading and writing image data -EAPI=8 -HOMEPAGE=https://imageio.github.io/ -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -PROPERTIES=test_network -RDEPEND=>=dev-python/numpy-1.20.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pillow-8.3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] media-libs/freeimage python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=test !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/imageio/imageio/archive/v2.16.1.tar.gz -> imageio-2.16.1.gh.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=0bedf2046a6cf9fb7bddfd61c3df9b7d diff --git a/metadata/md5-cache/dev-python/imageio-2.17.0 b/metadata/md5-cache/dev-python/imageio-2.17.0 new file mode 100644 index 000000000000..e8b01f0a716c --- /dev/null +++ b/metadata/md5-cache/dev-python/imageio-2.17.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/fsspec[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/imageio-ffmpeg[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/psutil[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tifffile[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/numpy-1.20.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pillow-8.3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] media-libs/freeimage >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python library for reading and writing image data +EAPI=8 +HOMEPAGE=https://imageio.github.io/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +PROPERTIES=test_network +RDEPEND=>=dev-python/numpy-1.20.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pillow-8.3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] media-libs/freeimage python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=test !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/imageio/imageio/archive/v2.17.0.tar.gz -> imageio-2.17.0.gh.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=5b8b26767ef294963b66fb3a560cd186 diff --git a/metadata/md5-cache/dev-python/imageio-ffmpeg-0.4.7 b/metadata/md5-cache/dev-python/imageio-ffmpeg-0.4.7 index f247627b6f52..6bddb0e13d70 100644 --- a/metadata/md5-cache/dev-python/imageio-ffmpeg-0.4.7 +++ b/metadata/md5-cache/dev-python/imageio-ffmpeg-0.4.7 @@ -4,7 +4,7 @@ DESCRIPTION=FFMPEG wrapper for Python EAPI=8 HOMEPAGE=https://pypi.org/project/imageio-ffmpeg/ https://github.com/imageio/imageio-ffmpeg IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 +KEYWORDS=~amd64 ~x86 LICENSE=BSD-2 PROPERTIES=test_network RDEPEND=media-video/ffmpeg:* python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://github.com/imageio/imageio-ffmpeg/archive/v0.4.7.tar.gz -> imageio-ffmpeg-0.4.7.gh.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ad1a0a65c152a92ef1b3daa3f6ef4496 +_md5_=5a6b5b28b9b5364e8d9e535fa8c5235a diff --git a/metadata/md5-cache/dev-python/ini2toml-0.10 b/metadata/md5-cache/dev-python/ini2toml-0.10 index bfa22f1e15bb..72b1ddb0689c 100644 --- a/metadata/md5-cache/dev-python/ini2toml-0.10 +++ b/metadata/md5-cache/dev-python/ini2toml-0.10 @@ -4,7 +4,7 @@ DESCRIPTION=Automatically conversion of .ini/.cfg files to TOML equivalents EAPI=8 HOMEPAGE=https://pypi.org/project/ini2toml/ https://github.com/abravalheri/ini2toml/ IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~m68k ~riscv ~s390 ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MPL-2.0 RDEPEND=>=dev-python/packaging-20.7[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-w-0.4.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/abravalheri/ini2toml/archive/v0.10.tar.gz -> ini2toml-0.10.gh.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=4bee7182fdda39a36c81810ebd0f5aa9 +_md5_=97de92dcc4335927d3f11763027dfed0 diff --git a/metadata/md5-cache/dev-python/jaraco-functools-3.5.0-r2 b/metadata/md5-cache/dev-python/jaraco-functools-3.5.0-r2 index 8cc62eb1d84b..4c5f7c08e4f8 100644 --- a/metadata/md5-cache/dev-python/jaraco-functools-3.5.0-r2 +++ b/metadata/md5-cache/dev-python/jaraco-functools-3.5.0-r2 @@ -4,7 +4,7 @@ DESCRIPTION=Additional functions used by other projects by developer jaraco EAPI=7 HOMEPAGE=https://github.com/jaraco/jaraco.functools IUSE=doc test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=>=dev-python/more-itertools-0.12.0-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/j/jaraco.functools/jaraco.functools-3.5.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=a9d72e46db2590b2a5e3c6dbea058b3d +_md5_=31402847e3aab44091c2e93fb4365590 diff --git a/metadata/md5-cache/dev-python/jupyter_core-4.10.0 b/metadata/md5-cache/dev-python/jupyter_core-4.10.0 new file mode 100644 index 000000000000..c97687fce06a --- /dev/null +++ b/metadata/md5-cache/dev-python/jupyter_core-4.10.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-python/ipython-4.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/nose[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-python/sphinx-4.4.0[python_targets_python3_10(-)] dev-python/sphinxcontrib-github-alt[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-python/sphinx-4.4.0[python_targets_python3_9(-)] dev-python/sphinxcontrib-github-alt[python_targets_python3_9(-)] ) ( >=dev-lang/python-3.8.12_p1-r1:3.8 >=dev-python/sphinx-4.4.0[python_targets_python3_8(-)] dev-python/sphinxcontrib-github-alt[python_targets_python3_8(-)] ) ) ) test? ( dev-python/traitlets[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Core common functionality of Jupyter projects +EAPI=8 +HOMEPAGE=https://jupyter.org +IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=BSD +RDEPEND=dev-python/traitlets[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/j/jupyter_core/jupyter_core-4.10.0.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=197a74b36412cf7470f4ce0ca72cc578 diff --git a/metadata/md5-cache/dev-python/kiwisolver-1.4.1 b/metadata/md5-cache/dev-python/kiwisolver-1.4.1 index cbeebf7a9972..8025637cc33f 100644 --- a/metadata/md5-cache/dev-python/kiwisolver-1.4.1 +++ b/metadata/md5-cache/dev-python/kiwisolver-1.4.1 @@ -4,7 +4,7 @@ DESCRIPTION=An efficient C++ implementation of the Cassowary constraint solving EAPI=8 HOMEPAGE=https://github.com/nucleic/kiwi/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 sparc x86 LICENSE=Clear-BSD RDEPEND=>=dev-python/cppy-1.2.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/nucleic/kiwi/archive/1.4.1.tar.gz -> kiwi-1.4.1.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e969eb070f55be06a271a76ab59e3537 +_md5_=b28a178b169060b4836b16c860ae35be diff --git a/metadata/md5-cache/dev-python/lz4-4.0.0 b/metadata/md5-cache/dev-python/lz4-4.0.0 index c93b83b2a075..52df7557c046 100644 --- a/metadata/md5-cache/dev-python/lz4-4.0.0 +++ b/metadata/md5-cache/dev-python/lz4-4.0.0 @@ -5,7 +5,7 @@ DESCRIPTION=LZ4 Bindings for Python EAPI=8 HOMEPAGE=https://pypi.org/project/lz4/ https://github.com/python-lz4/python-lz4 IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=app-arch/lz4:= python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/l/lz4/lz4-4.0.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=c87b1755bda65899358855b3b9ad6e20 +_md5_=361fd6af03ab77b0f781d142436e704f diff --git a/metadata/md5-cache/dev-python/mando-0.6.4-r1 b/metadata/md5-cache/dev-python/mando-0.6.4-r1 deleted file mode 100644 index 1287800813f9..000000000000 --- a/metadata/md5-cache/dev-python/mando-0.6.4-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=doc? ( || ( ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-python/sphinx-4.4.0[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-python/sphinx-4.4.0[python_targets_python3_9(-)] ) ( >=dev-lang/python-3.8.12_p1-r1:3.8 >=dev-python/sphinx-4.4.0[python_targets_python3_8(-)] ) ) ) test? ( dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Create Python CLI apps with little to no effort at all! -EAPI=7 -HOMEPAGE=https://mando.readthedocs.io/ https://github.com/rubik/mando/ -IUSE=examples doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 -LICENSE=MIT -RDEPEND=dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/rubik/mando/archive/v0.6.4.tar.gz -> mando-0.6.4.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=bbbf0e68eb2333197a65adfe26c8c18a diff --git a/metadata/md5-cache/dev-python/mypy-0.941 b/metadata/md5-cache/dev-python/mypy-0.941 index e04a4498c56e..0d64d98673b4 100644 --- a/metadata/md5-cache/dev-python/mypy-0.941 +++ b/metadata/md5-cache/dev-python/mypy-0.941 @@ -4,7 +4,7 @@ DESCRIPTION=Optional static typing for Python EAPI=8 HOMEPAGE=http://www.mypy-lang.org/ IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=!dev-util/stubgen >=dev-python/psutil-4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/typed-ast-1.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/typing-extensions-3.7.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mypy_extensions-0.4.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/python/mypy/archive/v0.941.tar.gz -> mypy-0.941.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e97770db7d396d610255b2b3105ad131 +_md5_=6a70422cdf524fc29d67a5a4e7da25be diff --git a/metadata/md5-cache/dev-python/myst_parser-0.17.2 b/metadata/md5-cache/dev-python/myst_parser-0.17.2 new file mode 100644 index 000000000000..abf482ab12c6 --- /dev/null +++ b/metadata/md5-cache/dev-python/myst_parser-0.17.2 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/beautifulsoup4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-regressions[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-param-files[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( =dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flit_core-3.7.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Extended commonmark compliant parser, with bridges to sphinx +EAPI=8 +HOMEPAGE=https://pypi.org/project/myst-parser/ https://github.com/executablebooks/MyST-Parser +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND==dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/executablebooks/MyST-Parser/archive/v0.17.2.tar.gz -> MyST-Parser-0.17.2.gh.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=aeff3455ac0a50aa36731fac0f15bd03 diff --git a/metadata/md5-cache/dev-python/paste-3.5.0-r1 b/metadata/md5-cache/dev-python/paste-3.5.0-r1 index eb04146b3280..1c1d8892a3aa 100644 --- a/metadata/md5-cache/dev-python/paste-3.5.0-r1 +++ b/metadata/md5-cache/dev-python/paste-3.5.0-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Tools for using a Web Server Gateway Interface stack EAPI=8 HOMEPAGE=https://pypi.org/project/Paste/ IUSE=test doc python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris LICENSE=MIT RDEPEND=>=dev-python/six-1.4.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/P/Paste/Paste-3.5.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=2263d8365c7eb7f5cf72eabe18b1d67c +_md5_=da7c36122b2f62243eff2ae8e101a5ec diff --git a/metadata/md5-cache/dev-python/pikepdf-5.1.2 b/metadata/md5-cache/dev-python/pikepdf-5.1.2 new file mode 100644 index 000000000000..abceed724581 --- /dev/null +++ b/metadata/md5-cache/dev-python/pikepdf-5.1.2 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-python/pybind11-2.9.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools_scm-6.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tomli[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/setuptools_scm_git_archive[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/attrs-20.2.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/hypothesis-5[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pillow-5.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,jpeg,lcms,tiff] >=dev-python/psutil-5[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-6[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-timeout-1.4.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-dateutil-2.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-xmp-toolkit-2.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=app-text/qpdf-10.6.2:0= =dev-python/lxml-4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/packaging-20[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pybind11-2.9.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=app-text/qpdf-10.6.2:0= +DESCRIPTION=Python library to work with pdf files based on qpdf +EAPI=8 +HOMEPAGE=https://pypi.org/project/pikepdf/ https://github.com/pikepdf/pikepdf +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MPL-2.0 +RDEPEND=>=app-text/qpdf-10.6.2:0= =dev-python/lxml-4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/packaging-20[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pybind11-2.9.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/pikepdf/pikepdf/archive/v5.1.2.tar.gz -> pikepdf-5.1.2.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=1bc300bc0f41538c7f1dcc5cbd9474a4 diff --git a/metadata/md5-cache/dev-python/pipenv-2021.11.9 b/metadata/md5-cache/dev-python/pipenv-2021.11.9 deleted file mode 100644 index 8b5849c0bf53..000000000000 --- a/metadata/md5-cache/dev-python/pipenv-2021.11.9 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) dev-python/attrs[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/certifi[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/colorama-0.4.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jinja-3.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pip[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/virtualenv-20.0.35[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/virtualenv-clone[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.26.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/wheel-0.36.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/flaky[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytz[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Python Development Workflow for Humans -EAPI=7 -HOMEPAGE=https://github.com/pypa/pipenv https://pypi.org/project/pipenv/ -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux -LICENSE=MIT -RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) dev-python/attrs[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/certifi[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/colorama-0.4.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jinja-3.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pip[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/virtualenv-20.0.35[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/virtualenv-clone[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.26.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/wheel-0.36.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/pypa/pipenv/archive/v2021.11.9.tar.gz -> pipenv-2021.11.9.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=5859a74261d5fa5c5689075ff59b1502 diff --git a/metadata/md5-cache/dev-python/pipenv-2022.4.8 b/metadata/md5-cache/dev-python/pipenv-2022.4.8 new file mode 100644 index 000000000000..ae36ba30583d --- /dev/null +++ b/metadata/md5-cache/dev-python/pipenv-2022.4.8 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/attrs[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cached-property[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/cerberus-1.3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/colorama-0.4.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/idna-3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/iso8601[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pexpect-4.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pip[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-dateutil-2.8.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/virtualenv-20.0.35[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/virtualenv-clone[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.26.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/toml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/urllib3-1.26.7[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/wheel-0.36.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/zipp-3.6.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/flaky[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytz[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/attrs[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cached-property[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/cerberus-1.3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/colorama-0.4.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/idna-3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/iso8601[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pexpect-4.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pip[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-dateutil-2.8.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/virtualenv-20.0.35[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/virtualenv-clone[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.26.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/toml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/urllib3-1.26.7[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/wheel-0.36.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/zipp-3.6.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python Development Workflow for Humans +EAPI=8 +HOMEPAGE=https://github.com/pypa/pipenv https://pypi.org/project/pipenv/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~riscv ~x86 +LICENSE=MIT +RDEPEND=dev-python/attrs[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cached-property[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/cerberus-1.3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/colorama-0.4.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/idna-3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/iso8601[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pexpect-4.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pip[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-dateutil-2.8.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/virtualenv-20.0.35[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/virtualenv-clone[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.26.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/toml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/urllib3-1.26.7[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/wheel-0.36.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/zipp-3.6.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/pypa/pipenv/archive/v2022.4.8.tar.gz -> pipenv-2022.4.8.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=6068626ba2221ea9adf3da22c37463ed diff --git a/metadata/md5-cache/dev-python/publicsuffix-2.20191221-r2 b/metadata/md5-cache/dev-python/publicsuffix-2.20191221-r2 new file mode 100644 index 000000000000..a6314f1d7c08 --- /dev/null +++ b/metadata/md5-cache/dev-python/publicsuffix-2.20191221-r2 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-python/requests-2.7.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Get a public suffix for a domain name using the Public Suffix List +EAPI=8 +HOMEPAGE=https://github.com/nexB/python-publicsuffix2/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/requests-2.7.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/nexB/python-publicsuffix2/archive/release-2.2019-12-21.tar.gz -> python-publicsuffix2-release-2.2019-12-21.gh.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=8cb2f4f01303bdda21e910d1ed3b3287 diff --git a/metadata/md5-cache/dev-python/py-amqp-5.1.1 b/metadata/md5-cache/dev-python/py-amqp-5.1.1 new file mode 100644 index 000000000000..693c13d7869d --- /dev/null +++ b/metadata/md5-cache/dev-python/py-amqp-5.1.1 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-python/vine-5.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/case-1.3.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-rerunfailures-6.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-python/sphinx-4.4.0[python_targets_python3_10(-)] dev-python/sphinx_celery[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-python/sphinx-4.4.0[python_targets_python3_9(-)] dev-python/sphinx_celery[python_targets_python3_9(-)] ) ( >=dev-lang/python-3.8.12_p1-r1:3.8 >=dev-python/sphinx-4.4.0[python_targets_python3_8(-)] dev-python/sphinx_celery[python_targets_python3_8(-)] ) ) ) test? ( >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Low-level AMQP client for Python (fork of amqplib) +EAPI=8 +HOMEPAGE=https://github.com/celery/py-amqp https://pypi.org/project/amqp/ +IUSE=extras doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=BSD +RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/a/amqp/amqp-5.1.1.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=7be87ec760c4eacf893d2fa7aaa068e1 diff --git a/metadata/md5-cache/dev-python/pybind11-2.9.2 b/metadata/md5-cache/dev-python/pybind11-2.9.2 index 7be4938aace5..4eca00b08fbd 100644 --- a/metadata/md5-cache/dev-python/pybind11-2.9.2 +++ b/metadata/md5-cache/dev-python/pybind11-2.9.2 @@ -4,7 +4,7 @@ DESCRIPTION=AST-based Python refactoring library EAPI=8 HOMEPAGE=https://pybind11.readthedocs.io/en/stable/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=BSD RDEPEND=dev-cpp/eigen:3 python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pybind/pybind11/archive/v2.9.2.tar.gz -> pybind11-2.9.2.tar.gz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 distutils-r1 779bc733c68a72273cfce64602bada1d flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=bbf8a17da1952a260d7f801f892c5b86 +_md5_=bea591cf9ae1b01b22ce8741efd01164 diff --git a/metadata/md5-cache/dev-python/pyfakefs-4.5.6 b/metadata/md5-cache/dev-python/pyfakefs-4.5.6 index 6ede158679f0..f2e3a8dabedf 100644 --- a/metadata/md5-cache/dev-python/pyfakefs-4.5.6 +++ b/metadata/md5-cache/dev-python/pyfakefs-4.5.6 @@ -4,7 +4,7 @@ DESCRIPTION=a fake file system that mocks the Python file system modules EAPI=8 HOMEPAGE=https://github.com/jmcgeheeiv/pyfakefs/ https://pypi.org/project/pyfakefs/ IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos LICENSE=Apache-2.0 RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jmcgeheeiv/pyfakefs/archive/v4.5.6.tar.gz -> pyfakefs-4.5.6.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=555db52a77ce41bfd1345383736534a6 +_md5_=2f948221b528b94351e20c0a8039b794 diff --git a/metadata/md5-cache/dev-python/pymongo-4.0.1 b/metadata/md5-cache/dev-python/pymongo-4.0.1 deleted file mode 100644 index 6e3636a63fa6..000000000000 --- a/metadata/md5-cache/dev-python/pymongo-4.0.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( >=dev-db/mongodb-2.6.0 ) doc? ( || ( ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-python/sphinx-4.4.0[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-python/sphinx-4.4.0[python_targets_python3_9(-)] ) ( >=dev-lang/python-3.8.12_p1-r1:3.8 >=dev-python/sphinx-4.4.0[python_targets_python3_8(-)] ) ) ) test? ( kerberos? ( dev-python/pykerberos[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) dev-python/unittest-or-fail[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare pretend setup test -DESCRIPTION=Python driver for MongoDB -EAPI=8 -HOMEPAGE=https://github.com/mongodb/mongo-python-driver https://pypi.org/project/pymongo/ -IUSE=doc kerberos doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 arm64 ~hppa ~riscv x86 -LICENSE=Apache-2.0 -RDEPEND=kerberos? ( dev-python/pykerberos[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/mongodb/mongo-python-driver/archive/4.0.1.tar.gz -> mongo-python-driver-4.0.1.tar.gz -_eclasses_=check-reqs 82234bf011d5453330773cd5fc3f0199 distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ee456de79195157542371156e372c4ed diff --git a/metadata/md5-cache/dev-python/pymongo-4.0.2 b/metadata/md5-cache/dev-python/pymongo-4.0.2 index 1a7847185c96..a3574c0f7f42 100644 --- a/metadata/md5-cache/dev-python/pymongo-4.0.2 +++ b/metadata/md5-cache/dev-python/pymongo-4.0.2 @@ -4,7 +4,7 @@ DESCRIPTION=Python driver for MongoDB EAPI=8 HOMEPAGE=https://github.com/mongodb/mongo-python-driver https://pypi.org/project/pymongo/ IUSE=doc kerberos doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 arm64 ~hppa ~riscv ~x86 +KEYWORDS=amd64 arm64 ~hppa ~riscv x86 LICENSE=Apache-2.0 RDEPEND=kerberos? ( dev-python/pykerberos[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mongodb/mongo-python-driver/archive/4.0.2.tar.gz -> mongo-python-driver-4.0.2.tar.gz _eclasses_=check-reqs 82234bf011d5453330773cd5fc3f0199 distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=0f4af85efdc6ac6434b6831c4cacf1da +_md5_=4fd23fc693fec2942a1b25448e349f4c diff --git a/metadata/md5-cache/dev-python/pyqtgraph-0.12.4 b/metadata/md5-cache/dev-python/pyqtgraph-0.12.4 index 5c3ae546f631..879d9dc415e3 100644 --- a/metadata/md5-cache/dev-python/pyqtgraph-0.12.4 +++ b/metadata/md5-cache/dev-python/pyqtgraph-0.12.4 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A pure-python graphics and GUI library built on PyQt and numpy EAPI=8 HOMEPAGE=https://www.pyqtgraph.org/ https://pypi.org/project/pyqtgraph/ -IUSE=examples opengl svg doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +IUSE=opengl svg doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=~amd64 ~x86 LICENSE=MIT RDEPEND=>=dev-python/numpy-1.17[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/PyQt5[gui,widgets,opengl=,svg=,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] opengl? ( dev-python/pyopengl[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pyqtgraph/pyqtgraph/archive/pyqtgraph-0.12.4.tar.gz test? ( https://github.com/pyqtgraph/test-data/archive/test-data-8.tar.gz -> pyqtgraph-test-data-8.tar.gz ) _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=79c5718008b5b1566a733fc90bd3e406 +_md5_=6815c788df573023cdfea251302676c6 diff --git a/metadata/md5-cache/dev-python/pytest-codeblocks-0.15.0 b/metadata/md5-cache/dev-python/pytest-codeblocks-0.15.0 new file mode 100644 index 000000000000..fa95ef0462ab --- /dev/null +++ b/metadata/md5-cache/dev-python/pytest-codeblocks-0.15.0 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-python/pytest-7.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flit_core-3.7.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Extract code blocks from markdown +EAPI=8 +HOMEPAGE=https://github.com/nschloe/pytest-codeblocks/ https://pypi.org/project/pytest_codeblocks/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/nschloe/pytest-codeblocks/archive/v0.15.0.tar.gz -> pytest-codeblocks-0.15.0.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=9c136ae713f3bcfa0529e3a5da0340e5 diff --git a/metadata/md5-cache/dev-python/pytest-console-scripts-1.3.1 b/metadata/md5-cache/dev-python/pytest-console-scripts-1.3.1 index 1ecf66036cdb..3706169d56be 100644 --- a/metadata/md5-cache/dev-python/pytest-console-scripts-1.3.1 +++ b/metadata/md5-cache/dev-python/pytest-console-scripts-1.3.1 @@ -4,7 +4,7 @@ DESCRIPTION=Pytest plugin for testing console scripts EAPI=8 HOMEPAGE=https://github.com/kvas-it/pytest-console-scripts IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT RDEPEND=>=dev-python/pytest-4.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pytest-console-scripts/pytest-console-scripts-1.3.1.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=cfd746328f722340198685d4f8c3db15 +_md5_=34a4e157f9f7d10c5efad36d6a4e7804 diff --git a/metadata/md5-cache/dev-python/pytools-2022.1.4 b/metadata/md5-cache/dev-python/pytools-2022.1.4 new file mode 100644 index 000000000000..18b80f7a2802 --- /dev/null +++ b/metadata/md5-cache/dev-python/pytools-2022.1.4 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-python/numpy-1.6.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/platformdirs-2.2.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-python/typing-extensions[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( dev-python/typing-extensions[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( dev-python/typing-extensions[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[sqlite] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[sqlite] ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Collection of tools missing from the Python standard library +EAPI=8 +HOMEPAGE=https://mathema.tician.de/software/pytools/ https://github.com/inducer/pytools +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 +LICENSE=MIT +RDEPEND=>=dev-python/numpy-1.6.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/platformdirs-2.2.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-python/typing-extensions[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( dev-python/typing-extensions[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( dev-python/typing-extensions[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[sqlite] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[sqlite] ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/p/pytools/pytools-2022.1.4.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=f2e067289648afb1490bf8f8e45b154b diff --git a/metadata/md5-cache/dev-python/pytz-2022.1 b/metadata/md5-cache/dev-python/pytz-2022.1 index c57a5c997d49..44108f4ef052 100644 --- a/metadata/md5-cache/dev-python/pytz-2022.1 +++ b/metadata/md5-cache/dev-python/pytz-2022.1 @@ -5,11 +5,11 @@ DESCRIPTION=World timezone definitions for Python EAPI=8 HOMEPAGE=https://pythonhosted.org/pytz/ https://pypi.org/project/pytz/ IUSE=python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris LICENSE=MIT RDEPEND=|| ( >=sys-libs/timezone-data-2017a sys-libs/glibc[vanilla] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0=[threads(+)] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[threads(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[threads(+)] ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) SLOT=0 SRC_URI=mirror://pypi/p/pytz/pytz-2022.1.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=72fb6650327d91922803c1287a9a3d11 +_md5_=c3fa19958c98bef8ed8aac236bcb6d83 diff --git a/metadata/md5-cache/dev-python/repoze-lru-0.7-r2 b/metadata/md5-cache/dev-python/repoze-lru-0.7-r2 index 239c6a9bdf41..06323909cf9b 100644 --- a/metadata/md5-cache/dev-python/repoze-lru-0.7-r2 +++ b/metadata/md5-cache/dev-python/repoze-lru-0.7-r2 @@ -4,7 +4,7 @@ DESCRIPTION=A tiny LRU cache implementation and decorator EAPI=8 HOMEPAGE=http://www.repoze.org IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=~amd64 arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=repoze RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/repoze/repoze.lru/archive/0.7.tar.gz -> repoze-lru-0.7.gh.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e5e810fd170f68102d8bceb0a63c1d70 +_md5_=a925552deb4070fcf2db52c9a494ef60 diff --git a/metadata/md5-cache/dev-python/setuptools-62.1.0 b/metadata/md5-cache/dev-python/setuptools-62.1.0 index fcf67ffdfbca..1428d74890c9 100644 --- a/metadata/md5-cache/dev-python/setuptools-62.1.0 +++ b/metadata/md5-cache/dev-python/setuptools-62.1.0 @@ -4,7 +4,7 @@ DESCRIPTION=Collection of extensions to Distutils EAPI=7 HOMEPAGE=https://github.com/pypa/setuptools/ https://pypi.org/project/setuptools/ IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~m68k ~s390 ~x86 ~x64-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-solaris LICENSE=MIT PDEPEND=>=dev-python/certifi-2016.9.26[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] RDEPEND=>=dev-python/appdirs-1.4.4-r2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jaraco-text-3.7.0-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/more-itertools-8.12.0-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/nspektr[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/ordered-set-4.0.2-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/packaging-21.3-r2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/importlib_metadata-4.10.1-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( >=dev-python/importlib_metadata-4.10.1-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_9? ( >=dev-python/importlib_metadata-4.10.1-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_pypy3? ( >=dev-python/importlib_resources-5.4.0-r3[python_targets_pypy3(-)?,python_targets_python3_8(-)?] ) python_targets_python3_8? ( >=dev-python/importlib_resources-5.4.0-r3[python_targets_pypy3(-)?,python_targets_python3_8(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0=[xml(+)] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[xml(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[xml(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[xml(+)] ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-62.1.0.tar.gz https://dev.gentoo.org/~mgorny/dist/python/python-gentoo-patches-3.10.4.tar.xz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=875cbdbd7b8234d8a7f91e1401813c39 +_md5_=e9256084814448b8c6f5ea22949a2d14 diff --git a/metadata/md5-cache/dev-python/stripe-2.73.0 b/metadata/md5-cache/dev-python/stripe-2.73.0 new file mode 100644 index 000000000000..47e396be5984 --- /dev/null +++ b/metadata/md5-cache/dev-python/stripe-2.73.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-util/stripe-mock-0.123.0 dev-python/pytest-mock[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] net-misc/curl ) test? ( >=dev-python/requests-2.20[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Stripe python bindings +EAPI=8 +HOMEPAGE=https://github.com/stripe/stripe-python +IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/requests-2.20[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/s/stripe/stripe-2.73.0.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=24e12b8d1b55db90b4d64308bf3f916c diff --git a/metadata/md5-cache/dev-python/typing-extensions-4.2.0 b/metadata/md5-cache/dev-python/typing-extensions-4.2.0 new file mode 100644 index 000000000000..674c453b7652 --- /dev/null +++ b/metadata/md5-cache/dev-python/typing-extensions-4.2.0 @@ -0,0 +1,14 @@ +BDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flit_core-3.7.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Backported and Experimental Type Hints for Python 3.7+ +EAPI=8 +HOMEPAGE=https://pypi.org/project/typing-extensions/ https://github.com/python/typing/ +IUSE=python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris +LICENSE=PSF-2 +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +SLOT=0 +SRC_URI=https://github.com/python/typing/archive/4.2.0.tar.gz -> typing-extensions-4.2.0.gh.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=95c33a6a48d071e148122c9c71ecd220 diff --git a/metadata/md5-cache/dev-python/watchgod-0.7 b/metadata/md5-cache/dev-python/watchgod-0.7 deleted file mode 100644 index 59c234189968..000000000000 --- a/metadata/md5-cache/dev-python/watchgod-0.7 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/pytest-asyncio[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-toolbox[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Simple, modern file watching and code reload in Python -EAPI=8 -HOMEPAGE=https://pypi.org/project/watchgod/ https://github.com/samuelcolvin/watchgod/ -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 -LICENSE=MIT -RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/samuelcolvin/watchgod/archive/v0.7.tar.gz -> watchgod-0.7.gh.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b3d002bd2e1e208de0e4c747c70e9092 diff --git a/metadata/md5-cache/dev-python/watchgod-0.8 b/metadata/md5-cache/dev-python/watchgod-0.8 index 62cfbca20e00..79eae0f10677 100644 --- a/metadata/md5-cache/dev-python/watchgod-0.8 +++ b/metadata/md5-cache/dev-python/watchgod-0.8 @@ -4,7 +4,7 @@ DESCRIPTION=Simple, modern file watching and code reload in Python EAPI=8 HOMEPAGE=https://pypi.org/project/watchgod/ https://github.com/samuelcolvin/watchgod/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86 +KEYWORDS=amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 LICENSE=MIT RDEPEND==dev-python/anyio-3*[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/samuelcolvin/watchgod/archive/v0.8.tar.gz -> watchgod-0.8.gh.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b797a85183a5076f08742945f126fdac +_md5_=9357d77b0da24d638951ab65c1379aa5 diff --git a/metadata/md5-cache/dev-python/websockets-10.3 b/metadata/md5-cache/dev-python/websockets-10.3 new file mode 100644 index 000000000000..ebef40213e05 --- /dev/null +++ b/metadata/md5-cache/dev-python/websockets-10.3 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-python/pytest-7.0.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Library for building WebSocket servers and clients in Python +EAPI=8 +HOMEPAGE=https://websockets.readthedocs.io/ https://github.com/aaugustin/websockets/ https://pypi.org/project/websockets/ +IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=BSD +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/aaugustin/websockets/archive/10.3.tar.gz -> websockets-10.3.gh.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=c9041d78dd3e18722113ec2f243a8c87 diff --git a/metadata/md5-cache/dev-python/werkzeug-2.1.1 b/metadata/md5-cache/dev-python/werkzeug-2.1.1 index fb17eee35424..b6f50a68a072 100644 --- a/metadata/md5-cache/dev-python/werkzeug-2.1.1 +++ b/metadata/md5-cache/dev-python/werkzeug-2.1.1 @@ -4,7 +4,7 @@ DESCRIPTION=Collection of various utilities for WSGI applications EAPI=8 HOMEPAGE=https://werkzeug.palletsprojects.com/ https://pypi.org/project/Werkzeug/ https://github.com/pallets/werkzeug/ IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=BSD RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pallets/werkzeug/archive/2.1.1.tar.gz -> werkzeug-2.1.1.gh.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=9a39f2dc5ef0cd0268fbd621359c412e +_md5_=abe3218f4c743fdcfb43aacf88a88c1a diff --git a/metadata/md5-cache/dev-python/wrapt-1.14.0 b/metadata/md5-cache/dev-python/wrapt-1.14.0 index 88e45bc5653e..0c11c992f8f1 100644 --- a/metadata/md5-cache/dev-python/wrapt-1.14.0 +++ b/metadata/md5-cache/dev-python/wrapt-1.14.0 @@ -4,7 +4,7 @@ DESCRIPTION=Module for decorators, wrappers and monkey patching EAPI=8 HOMEPAGE=https://github.com/GrahamDumpleton/wrapt IUSE=test doc python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos LICENSE=BSD RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/GrahamDumpleton/wrapt/archive/1.14.0.tar.gz -> wrapt-1.14.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=5a4ce86d5b5f73443e29caa974088b0f +_md5_=dfb065d60c58a3bc4edd3578ef0c92d6 diff --git a/metadata/md5-cache/dev-python/wsproto-1.0.0-r1 b/metadata/md5-cache/dev-python/wsproto-1.0.0-r1 index 7ba111d0f066..86761ff0ad12 100644 --- a/metadata/md5-cache/dev-python/wsproto-1.0.0-r1 +++ b/metadata/md5-cache/dev-python/wsproto-1.0.0-r1 @@ -4,7 +4,7 @@ DESCRIPTION=WebSockets state-machine based protocol implementation EAPI=8 HOMEPAGE=https://github.com/python-hyper/wsproto/ https://pypi.org/project/wsproto/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv sparc ~x86 LICENSE=MIT RDEPEND=>=dev-python/h11-0.9[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/w/wsproto/wsproto-1.0.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=9f0d8d86b6051312f7a2de5f495cc85a +_md5_=604bef26242c57bbc2f935302cee29d5 diff --git a/metadata/md5-cache/dev-python/wxpython-4.0.7-r1 b/metadata/md5-cache/dev-python/wxpython-4.0.7-r1 index 5de80d167b48..c7a2b65168e3 100644 --- a/metadata/md5-cache/dev-python/wxpython-4.0.7-r1 +++ b/metadata/md5-cache/dev-python/wxpython-4.0.7-r1 @@ -1,16 +1,16 @@ -BDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install prepare test -DEPEND=>=x11-libs/wxGTK-3.0.4-r301:3.0-gtk3=[gstreamer,libnotify,opengl,sdl,tiff,webkit?,X] media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg:0 app-doc/doxygen dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost dev-python/appdirs[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) +DEPEND=>=x11-libs/wxGTK-3.0.4-r301:3.0-gtk3=[gstreamer,libnotify,opengl,sdl,tiff,webkit?,X] media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg:0 app-doc/doxygen dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost dev-python/appdirs[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) DESCRIPTION=A blending of the wxWindows C++ class library with Python EAPI=7 HOMEPAGE=https://www.wxpython.org/ -IUSE=test webkit python_targets_python3_8 python_targets_python3_9 test +IUSE=test webkit python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 test KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv ~sparc x86 LICENSE=wxWinLL-3 -RDEPEND=>=x11-libs/wxGTK-3.0.4-r301:3.0-gtk3=[gstreamer,libnotify,opengl,sdl,tiff,webkit?,X] media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg:0 python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=>=x11-libs/wxGTK-3.0.4-r301:3.0-gtk3=[gstreamer,libnotify,opengl,sdl,tiff,webkit?,X] media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg:0 python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=test SLOT=4.0 SRC_URI=mirror://pypi/w/wxPython/wxPython-4.0.7.post2.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 -_md5_=9b8d5b07316371f0d0e1b103a3fbf755 +_md5_=891733fc285cc7c331ab783ac080294a diff --git a/metadata/md5-cache/dev-python/zstd-1.5.2.2 b/metadata/md5-cache/dev-python/zstd-1.5.2.2 new file mode 100644 index 000000000000..6069a1086625 --- /dev/null +++ b/metadata/md5-cache/dev-python/zstd-1.5.2.2 @@ -0,0 +1,16 @@ +BDEPEND=test? ( app-arch/zstd:= !=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-arch/zstd:= +DESCRIPTION=Simple python bindings to Yann Collet ZSTD compression library +EAPI=8 +HOMEPAGE=https://github.com/sergey-dryabzhinsky/python-zstd/ https://pypi.org/project/zstd/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=BSD-2 +RDEPEND=app-arch/zstd:= !=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/z/zstd/zstd-1.5.2.2.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=f017a40bf1a2e8a12f2d6f12045b1c9f diff --git a/metadata/md5-cache/dev-qt/Manifest.gz b/metadata/md5-cache/dev-qt/Manifest.gz index dbe71c770d45..708a5843ed74 100644 Binary files a/metadata/md5-cache/dev-qt/Manifest.gz and b/metadata/md5-cache/dev-qt/Manifest.gz differ diff --git a/metadata/md5-cache/dev-qt/assistant-5.15.3 b/metadata/md5-cache/dev-qt/assistant-5.15.3 index 15eee73fddec..6cdd1a2c1a8c 100644 --- a/metadata/md5-cache/dev-qt/assistant-5.15.3 +++ b/metadata/md5-cache/dev-qt/assistant-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3*:5= =dev-qt/qtgui-5.15.3*[png] =dev-qt/qthelp-5.15 RESTRICT=test SLOT=0 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttools-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qttools-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=ec8af375888469334f9c35afc4fa5404 diff --git a/metadata/md5-cache/dev-qt/designer-5.15.3 b/metadata/md5-cache/dev-qt/designer-5.15.3 index 2c40845453be..381079d07070 100644 --- a/metadata/md5-cache/dev-qt/designer-5.15.3 +++ b/metadata/md5-cache/dev-qt/designer-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3*:5= =dev-qt/qtgui-5.15.3*:5=[png] =dev-qt/qtnetwor RESTRICT=test SLOT=5/5.15 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttools-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qttools-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=a19af1d52b07f8ce4fe992e5fd2f3463 diff --git a/metadata/md5-cache/dev-qt/linguist-5.15.3 b/metadata/md5-cache/dev-qt/linguist-5.15.3 index 2decbafbc5aa..847333837433 100644 --- a/metadata/md5-cache/dev-qt/linguist-5.15.3 +++ b/metadata/md5-cache/dev-qt/linguist-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/designer-5.15.3* =dev-qt/qtcore-5.15.3*:5= =dev-qt/qtgui-5.15.3* RESTRICT=test SLOT=0 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttools-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qttools-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=99b9d65192ce2d057b8007c12edabf9b diff --git a/metadata/md5-cache/dev-qt/linguist-tools-5.15.3 b/metadata/md5-cache/dev-qt/linguist-tools-5.15.3 index 3185f0d4d65f..c42808862d32 100644 --- a/metadata/md5-cache/dev-qt/linguist-tools-5.15.3 +++ b/metadata/md5-cache/dev-qt/linguist-tools-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3*:5= =dev-qt/qtxml-5.15.3* qml? ( =dev-qt/qtdeclara RESTRICT=test SLOT=5 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttools-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qttools-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=1d5fd29cbfe6bcdd75f511aed2c1437c diff --git a/metadata/md5-cache/dev-qt/pixeltool-5.15.3 b/metadata/md5-cache/dev-qt/pixeltool-5.15.3 index 80a9f93911f8..c79fb41ce8a4 100644 --- a/metadata/md5-cache/dev-qt/pixeltool-5.15.3 +++ b/metadata/md5-cache/dev-qt/pixeltool-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3*:5= =dev-qt/qtgui-5.15.3*:5=[png] =dev-qt/qtwidget RESTRICT=test SLOT=0 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttools-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qttools-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=d21530cb6322489007e7fd0d1841c028 diff --git a/metadata/md5-cache/dev-qt/qdbus-5.15.3 b/metadata/md5-cache/dev-qt/qdbus-5.15.3 index 6e657be282f8..16ac16f5f66f 100644 --- a/metadata/md5-cache/dev-qt/qdbus-5.15.3 +++ b/metadata/md5-cache/dev-qt/qdbus-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3* =dev-qt/qtdbus-5.15.3* =dev-qt/qtxml-5.15.3* !dev RESTRICT=test SLOT=0 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttools-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qttools-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=6679f111fd7353b170b874e914790005 diff --git a/metadata/md5-cache/dev-qt/qdbusviewer-5.15.3 b/metadata/md5-cache/dev-qt/qdbusviewer-5.15.3 index 84141ae47aca..22e7cc7837fb 100644 --- a/metadata/md5-cache/dev-qt/qdbusviewer-5.15.3 +++ b/metadata/md5-cache/dev-qt/qdbusviewer-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3* =dev-qt/qtdbus-5.15.3* =dev-qt/qtgui-5.15.3* =dev RESTRICT=test SLOT=0 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttools-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qttools-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=8ef166fc4a3cbf6c0634c3ddd1273a28 diff --git a/metadata/md5-cache/dev-qt/qdoc-5.15.3 b/metadata/md5-cache/dev-qt/qdoc-5.15.3 index 0ddc9382ca50..9465ffc38827 100644 --- a/metadata/md5-cache/dev-qt/qdoc-5.15.3 +++ b/metadata/md5-cache/dev-qt/qdoc-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3*:5= sys-devel/clang:= qml? ( =dev-qt/qtdeclarative RESTRICT=test SLOT=5 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttools-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qttools-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=fbda7da59db59dffde84b5e07370a566 diff --git a/metadata/md5-cache/dev-qt/qt3d-5.15.3 b/metadata/md5-cache/dev-qt/qt3d-5.15.3 index ff8bfab32867..372297ae3ec4 100644 --- a/metadata/md5-cache/dev-qt/qt3d-5.15.3 +++ b/metadata/md5-cache/dev-qt/qt3d-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtconcurrent-5.15.3* =dev-qt/qtcore-5.15.3* =dev-qt/qtgui-5.15.3 RESTRICT=test SLOT=5/5.15 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qt3d-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qt3d-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=4048eb52bc9b4acf17bfabfab3d0e84f diff --git a/metadata/md5-cache/dev-qt/qtbluetooth-5.15.3 b/metadata/md5-cache/dev-qt/qtbluetooth-5.15.3 index 010d8bfa2e01..73cbd720c5d5 100644 --- a/metadata/md5-cache/dev-qt/qtbluetooth-5.15.3 +++ b/metadata/md5-cache/dev-qt/qtbluetooth-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtconcurrent-5.15.3* =dev-qt/qtcore-5.15.3*:5= =dev-qt/qtdbus-5. RESTRICT=test SLOT=5/5.15 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtconnectivity-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtconnectivity-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=0cc697441f6ca9b5a642f68826a055ae diff --git a/metadata/md5-cache/dev-qt/qtcharts-5.15.3 b/metadata/md5-cache/dev-qt/qtcharts-5.15.3 index 489f23be4ba8..535c93bd7ad7 100644 --- a/metadata/md5-cache/dev-qt/qtcharts-5.15.3 +++ b/metadata/md5-cache/dev-qt/qtcharts-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3* =dev-qt/qtgui-5.15.3* =dev-qt/qtwidgets-5.15.3* q RESTRICT=test SLOT=5/5.15 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtcharts-everywhere-opensource-src-5.15.3.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=1c3ed29d59cfc08da3f0b351787111e5 diff --git a/metadata/md5-cache/dev-qt/qtchooser-66-r1 b/metadata/md5-cache/dev-qt/qtchooser-66-r1 deleted file mode 100644 index faf5a9f9c0b7..000000000000 --- a/metadata/md5-cache/dev-qt/qtchooser-66-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install test -DEPEND=test? ( dev-qt/qtcore:5 dev-qt/qttest:5 ) -DESCRIPTION=Tool to quickly switch between multiple Qt installations -EAPI=8 -HOMEPAGE=https://code.qt.io/cgit/qtsdk/qtchooser.git/ -IUSE=test -KEYWORDS=ppc ppc64 -LICENSE=|| ( LGPL-2.1 GPL-3 ) -RDEPEND=!=app-accessibility/speech-dispatcher-0.8.7 =dev-qt/qtcore-5.15.3* flite RESTRICT=test SLOT=5/5.15 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtspeech-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtspeech-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=fface3820df5be546fa22158e013273a diff --git a/metadata/md5-cache/dev-qt/qtsql-5.15.3 b/metadata/md5-cache/dev-qt/qtsql-5.15.3 index dfc6c5874977..e6c73c105400 100644 --- a/metadata/md5-cache/dev-qt/qtsql-5.15.3 +++ b/metadata/md5-cache/dev-qt/qtsql-5.15.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( freetds mysql oci8 odbc postgres sqlite ) RESTRICT=test SLOT=5/5.15.3 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtbase-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtbase-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=237e9e2e0a5d3aa8624443e00737c700 diff --git a/metadata/md5-cache/dev-qt/qtsvg-5.15.3 b/metadata/md5-cache/dev-qt/qtsvg-5.15.3 index caf08ef6164a..67705a5db1ce 100644 --- a/metadata/md5-cache/dev-qt/qtsvg-5.15.3 +++ b/metadata/md5-cache/dev-qt/qtsvg-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3* =dev-qt/qtgui-5.15.3* =dev-qt/qtwidgets-5.15.3* s RESTRICT=test SLOT=5/5.15 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtsvg-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtsvg-5.15.3-gentoo-kde-1.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtsvg-5.15.3-QTBUG-90744.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=a9aa03d0c91c017ae6614717ad5609ab diff --git a/metadata/md5-cache/dev-qt/qttest-5.15.3 b/metadata/md5-cache/dev-qt/qttest-5.15.3 index 1f0a9fe5b6ac..c40bbbd8d386 100644 --- a/metadata/md5-cache/dev-qt/qttest-5.15.3 +++ b/metadata/md5-cache/dev-qt/qttest-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3*:5= RESTRICT=!test? ( test ) test SLOT=5/5.15 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtbase-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtbase-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=c88a7bed9df6987dfd22cf6d50d0fadc diff --git a/metadata/md5-cache/dev-qt/qttranslations-5.15.3 b/metadata/md5-cache/dev-qt/qttranslations-5.15.3 index 0ddf13e6378d..e5a6c527359e 100644 --- a/metadata/md5-cache/dev-qt/qttranslations-5.15.3 +++ b/metadata/md5-cache/dev-qt/qttranslations-5.15.3 @@ -10,5 +10,5 @@ LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 RESTRICT=test SLOT=5 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttranslations-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qttranslations-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=11280b58edf22c58e4cac0acc3659404 diff --git a/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.15.3 b/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.15.3 index ca6a5b6acabe..530381357f3c 100644 --- a/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.15.3 +++ b/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3* =dev-qt/qtdeclarative-5.15.3* =dev-qt/qtgui-5.15. RESTRICT=test SLOT=5/5.15 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtvirtualkeyboard-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtvirtualkeyboard-5.15.3-gentoo-kde-1.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=f9c8d69778c6ebdddc3b3f82b2805335 diff --git a/metadata/md5-cache/dev-qt/qtwayland-5.15.3-r1 b/metadata/md5-cache/dev-qt/qtwayland-5.15.3-r1 index 727df66ac816..bdbad1d088e6 100644 --- a/metadata/md5-cache/dev-qt/qtwayland-5.15.3-r1 +++ b/metadata/md5-cache/dev-qt/qtwayland-5.15.3-r1 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/wayland =dev-qt/qtcore-5.15.3*:5= =dev-qt/qtdeclarative-5.15.3* RESTRICT=test SLOT=5/5.15.3 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtwayland-everywhere-opensource-src-5.15.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtwayland-5.15.3-gentoo-kde-2.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build 8f05dc278c2f4587e3b92316ffc324cd toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qt5-build a5a0ff059a4fa28ec744cd82cc8de1d7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=164e2ebe3900d604a4070c9f9abccf68 diff --git a/metadata/md5-cache/dev-qt/qtwaylandscanner-5.15.3 b/metadata/md5-cache/dev-qt/qtwaylandscanner-5.15.3 index 4449941ddacd..8529a5bcf8d9 100644 --- a/metadata/md5-cache/dev-qt/qtwaylandscanner-5.15.3 +++ b/metadata/md5-cache/dev-qt/qtwaylandscanner-5.15.3 @@ -11,5 +11,5 @@ RDEPEND==dev-qt/qtcore-5.15.3*:5= ! acme-client-2.0.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b22cb712fc216cb961e0fe9eadb44c7c diff --git a/metadata/md5-cache/dev-ruby/acme-client-2.0.9 b/metadata/md5-cache/dev-ruby/acme-client-2.0.9 index a401234be7bd..a1749da28a73 100644 --- a/metadata/md5-cache/dev-ruby/acme-client-2.0.9 +++ b/metadata/md5-cache/dev-ruby/acme-client-2.0.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/unixcharles/acme-client/archive/v2.0.9.tar.gz -> acme-client-2.0.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=363c1183f19cbda1b47813357233bc9a diff --git a/metadata/md5-cache/dev-ruby/actioncable-5.2.6 b/metadata/md5-cache/dev-ruby/actioncable-5.2.6 index 597ecffcd4d8..175a9627c3ac 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-5.2.6 +++ b/metadata/md5-cache/dev-ruby/actioncable-5.2.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.tar.gz -> rails-5.2.6.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0db335f19158522ce8188f1be6ad9ff2 diff --git a/metadata/md5-cache/dev-ruby/actioncable-5.2.6.2 b/metadata/md5-cache/dev-ruby/actioncable-5.2.6.2 index 24828c269470..138d575cfaa9 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-5.2.6.2 +++ b/metadata/md5-cache/dev-ruby/actioncable-5.2.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.2.tar.gz -> rails-5.2.6.2.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bdc31c85736bccd3bb36014c0c289827 diff --git a/metadata/md5-cache/dev-ruby/actioncable-5.2.7 b/metadata/md5-cache/dev-ruby/actioncable-5.2.7 index fd3a29c46714..9e0cdd7a4178 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-5.2.7 +++ b/metadata/md5-cache/dev-ruby/actioncable-5.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.7.tar.gz -> rails-5.2.7.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bdc31c85736bccd3bb36014c0c289827 diff --git a/metadata/md5-cache/dev-ruby/actioncable-6.0.4.1 b/metadata/md5-cache/dev-ruby/actioncable-6.0.4.1 index c78ea287aae7..7d240f5c23d4 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/actioncable-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=366044cd7d7112cb66a350871f55cd56 diff --git a/metadata/md5-cache/dev-ruby/actioncable-6.0.4.3 b/metadata/md5-cache/dev-ruby/actioncable-6.0.4.3 index 019db37cfc83..aac97e14ed24 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/actioncable-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=097b36fbb2e1b784de10bea0cf715f29 diff --git a/metadata/md5-cache/dev-ruby/actioncable-6.0.4.4 b/metadata/md5-cache/dev-ruby/actioncable-6.0.4.4 index 9dcdaf7ad2c7..290872377905 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/actioncable-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=097b36fbb2e1b784de10bea0cf715f29 diff --git a/metadata/md5-cache/dev-ruby/actioncable-6.0.4.6 b/metadata/md5-cache/dev-ruby/actioncable-6.0.4.6 index ce9d6dd9c184..8bf4c4d9a44f 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/actioncable-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d4fc592a25b4d7d6649b3dee08717dcf diff --git a/metadata/md5-cache/dev-ruby/actioncable-6.0.4.7 b/metadata/md5-cache/dev-ruby/actioncable-6.0.4.7 index 945276e50247..71a636a5c111 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/actioncable-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d4fc592a25b4d7d6649b3dee08717dcf diff --git a/metadata/md5-cache/dev-ruby/actioncable-6.1.4.4 b/metadata/md5-cache/dev-ruby/actioncable-6.1.4.4 index e12ac26c141e..258562f0eaf5 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/actioncable-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3cc4b249d1dedc02464f0ac4f90853b5 diff --git a/metadata/md5-cache/dev-ruby/actioncable-6.1.4.6 b/metadata/md5-cache/dev-ruby/actioncable-6.1.4.6 index 2b560388c0ea..975e89a3ee78 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/actioncable-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b69731d5104d486cbf1f617ba04c2df1 diff --git a/metadata/md5-cache/dev-ruby/actioncable-6.1.5 b/metadata/md5-cache/dev-ruby/actioncable-6.1.5 index 9c9c698c299f..13e1267756e6 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-6.1.5 +++ b/metadata/md5-cache/dev-ruby/actioncable-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b69731d5104d486cbf1f617ba04c2df1 diff --git a/metadata/md5-cache/dev-ruby/actioncable-7.0.2.2 b/metadata/md5-cache/dev-ruby/actioncable-7.0.2.2 index a88d826f6e57..75a6dd8d7022 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/actioncable-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=13ee5cbb3a8846463df23e8eb2a817fb diff --git a/metadata/md5-cache/dev-ruby/actioncable-7.0.2.3 b/metadata/md5-cache/dev-ruby/actioncable-7.0.2.3 index 580d95be9e51..8cfbe65886cb 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/actioncable-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c460056f225257c9e28a9f645288d902 diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.1 b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.1 index 414c770a42f6..a6bbc2e1f1d3 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9341164ac1e90046e35d9c6d62b8a215 diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.3 b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.3 index 7a18f887537c..4b4fd8bfcb06 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=46289b2de2a07dddc949696214b957e8 diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.4 b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.4 index 71601d4eb75d..be25e483155f 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=46289b2de2a07dddc949696214b957e8 diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.6 b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.6 index fc277db6c8e2..64af60bbb195 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=801da1bc592130766d7329643443c27d diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.7 b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.7 index b406d11c0c2b..27f9e8e1c9c9 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=801da1bc592130766d7329643443c27d diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-6.1.4.4 b/metadata/md5-cache/dev-ruby/actionmailbox-6.1.4.4 index 2f8b5149c6e8..68c6ac7492d3 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=06c0e97c7d105d41b562983963193650 diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-6.1.4.6 b/metadata/md5-cache/dev-ruby/actionmailbox-6.1.4.6 index 336ae9e507b2..717d63271d5d 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9ff4d57213f5c0f4efaac204da892175 diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-6.1.5 b/metadata/md5-cache/dev-ruby/actionmailbox-6.1.5 index ba34fab84cfa..9ada53b40694 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-6.1.5 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9ff4d57213f5c0f4efaac204da892175 diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-7.0.2.2 b/metadata/md5-cache/dev-ruby/actionmailbox-7.0.2.2 index f115ee679f14..6b469bbe9166 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d01ea2335a2896944dfc0a0964488b70 diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-7.0.2.3 b/metadata/md5-cache/dev-ruby/actionmailbox-7.0.2.3 index aa9af2ae5693..6e1358787324 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b559f5383572c380c5039e9eb0f98edd diff --git a/metadata/md5-cache/dev-ruby/actionmailer-5.2.6 b/metadata/md5-cache/dev-ruby/actionmailer-5.2.6 index 3ab86fdb7d06..b5afe47dba8d 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-5.2.6 +++ b/metadata/md5-cache/dev-ruby/actionmailer-5.2.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.tar.gz -> rails-5.2.6.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e730121fd6f2c378610cc90e34e43a83 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-5.2.6.2 b/metadata/md5-cache/dev-ruby/actionmailer-5.2.6.2 index cea5201e43de..f129cfdeb071 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-5.2.6.2 +++ b/metadata/md5-cache/dev-ruby/actionmailer-5.2.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.2.tar.gz -> rails-5.2.6.2.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=895d8bb7729e1cf2b44778416b0b7f8e diff --git a/metadata/md5-cache/dev-ruby/actionmailer-5.2.7 b/metadata/md5-cache/dev-ruby/actionmailer-5.2.7 index 963f5d130f1d..9814edeaf13e 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-5.2.7 +++ b/metadata/md5-cache/dev-ruby/actionmailer-5.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.7.tar.gz -> rails-5.2.7.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=895d8bb7729e1cf2b44778416b0b7f8e diff --git a/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.1 b/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.1 index d21098ae8d26..70160b2bfd51 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ac007e3640964fbe8035addf1d7bb8e7 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.3 b/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.3 index 13c9ae5eb92d..12aa2c14d3c9 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e4bf5e9b5c4fa5bcf826300cf4041047 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.4 b/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.4 index 1c3ec091c45f..376c37711aa2 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e4bf5e9b5c4fa5bcf826300cf4041047 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.6 b/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.6 index 5c2c9cf6472d..2f271eccb87c 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=980245bc503e71f0c30720d6f7950b19 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.7 b/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.7 index bf19e70c54f6..161e1815792e 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/actionmailer-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=980245bc503e71f0c30720d6f7950b19 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-6.1.4.4 b/metadata/md5-cache/dev-ruby/actionmailer-6.1.4.4 index 5c0e95952bbe..16c27537eaf0 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/actionmailer-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0ba62e4bf1e53bd0303f3e608b8c4b8a diff --git a/metadata/md5-cache/dev-ruby/actionmailer-6.1.4.6 b/metadata/md5-cache/dev-ruby/actionmailer-6.1.4.6 index 2c3d0c57b970..33fcbef086ef 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/actionmailer-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=46a8eb84e20a5de30e87719193d8e632 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-6.1.5 b/metadata/md5-cache/dev-ruby/actionmailer-6.1.5 index 9b60cb1c647e..c6f997787237 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-6.1.5 +++ b/metadata/md5-cache/dev-ruby/actionmailer-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=46a8eb84e20a5de30e87719193d8e632 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-7.0.2.2 b/metadata/md5-cache/dev-ruby/actionmailer-7.0.2.2 index a7ec42754d85..37fd7c00fe5a 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/actionmailer-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6d81d070a966e9e6f7a727869ca6915b diff --git a/metadata/md5-cache/dev-ruby/actionmailer-7.0.2.3 b/metadata/md5-cache/dev-ruby/actionmailer-7.0.2.3 index ffd6c4735ade..7261c8562efb 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/actionmailer-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0c59f72c1ef6df67dd2b7c73edaac802 diff --git a/metadata/md5-cache/dev-ruby/actionpack-5.2.6 b/metadata/md5-cache/dev-ruby/actionpack-5.2.6 index 4d72e2b1cfc1..2139cae81c18 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-5.2.6 +++ b/metadata/md5-cache/dev-ruby/actionpack-5.2.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.tar.gz -> rails-5.2.6.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6fd7a99e23136e386f6662b5178c3896 diff --git a/metadata/md5-cache/dev-ruby/actionpack-5.2.6.2 b/metadata/md5-cache/dev-ruby/actionpack-5.2.6.2 index 0b241f1a0c69..86165c50464c 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-5.2.6.2 +++ b/metadata/md5-cache/dev-ruby/actionpack-5.2.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.2.tar.gz -> rails-5.2.6.2.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4ea2a2c218b99c647615c533cf1e6d71 diff --git a/metadata/md5-cache/dev-ruby/actionpack-5.2.7 b/metadata/md5-cache/dev-ruby/actionpack-5.2.7 index 97f61d517089..217c3d1cddcf 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-5.2.7 +++ b/metadata/md5-cache/dev-ruby/actionpack-5.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.7.tar.gz -> rails-5.2.7.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6f401110be36257e16590777e2ba5906 diff --git a/metadata/md5-cache/dev-ruby/actionpack-6.0.4.1 b/metadata/md5-cache/dev-ruby/actionpack-6.0.4.1 index 65e0b0525d8e..8cd4bd37c053 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/actionpack-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3f261df82716c2ba69faec68486126c4 diff --git a/metadata/md5-cache/dev-ruby/actionpack-6.0.4.3 b/metadata/md5-cache/dev-ruby/actionpack-6.0.4.3 index 5b963857abc6..79254d2836ae 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/actionpack-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9db9e72a602f306d94fcb5fe0386c3d6 diff --git a/metadata/md5-cache/dev-ruby/actionpack-6.0.4.4 b/metadata/md5-cache/dev-ruby/actionpack-6.0.4.4 index a7b37da8b343..33d1c4ffba11 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/actionpack-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=92528e955782c570c0e13521c561b30e diff --git a/metadata/md5-cache/dev-ruby/actionpack-6.0.4.6 b/metadata/md5-cache/dev-ruby/actionpack-6.0.4.6 index cb3fc1e04ac4..cae4129480bb 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/actionpack-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5206694f7a6fbe16c22c270c67b4527d diff --git a/metadata/md5-cache/dev-ruby/actionpack-6.0.4.7 b/metadata/md5-cache/dev-ruby/actionpack-6.0.4.7 index f781293208d8..a40038ea00d8 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/actionpack-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=006d6c471446b1b35a2d88f8bf45bcd7 diff --git a/metadata/md5-cache/dev-ruby/actionpack-6.1.4.4 b/metadata/md5-cache/dev-ruby/actionpack-6.1.4.4 index ddc99a984bb2..1b83a990f797 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/actionpack-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=db115f62183bfa8730d36e2bc52dc70c diff --git a/metadata/md5-cache/dev-ruby/actionpack-6.1.4.6 b/metadata/md5-cache/dev-ruby/actionpack-6.1.4.6 index 32d599df4fd6..98069cdcd0bf 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/actionpack-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ef1634e7069b3582ee09f35ecbe4f93b diff --git a/metadata/md5-cache/dev-ruby/actionpack-6.1.5 b/metadata/md5-cache/dev-ruby/actionpack-6.1.5 index 2a94e7586e3c..11cee7e0d6f4 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-6.1.5 +++ b/metadata/md5-cache/dev-ruby/actionpack-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ef1634e7069b3582ee09f35ecbe4f93b diff --git a/metadata/md5-cache/dev-ruby/actionpack-7.0.2.2 b/metadata/md5-cache/dev-ruby/actionpack-7.0.2.2 index b13ad6bb1378..fb1878666f28 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/actionpack-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=db4119909dc176b66ac92aacef706ac0 diff --git a/metadata/md5-cache/dev-ruby/actionpack-7.0.2.3 b/metadata/md5-cache/dev-ruby/actionpack-7.0.2.3 index 98eedb926ad4..c284488bbf04 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/actionpack-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1a6f624e785a340b2a37bfbf9f7aac5a diff --git a/metadata/md5-cache/dev-ruby/actionpack-action_caching-1.2.1 b/metadata/md5-cache/dev-ruby/actionpack-action_caching-1.2.1 index 8c1565dc32ad..de30b1f27d9a 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-action_caching-1.2.1 +++ b/metadata/md5-cache/dev-ruby/actionpack-action_caching-1.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/actionpack-action_caching-1.2.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=02c3127f5e9c1d9b62e017ca872df786 diff --git a/metadata/md5-cache/dev-ruby/actionpack-action_caching-1.2.2 b/metadata/md5-cache/dev-ruby/actionpack-action_caching-1.2.2 index 2f9c4a14c46a..70c7717b84e6 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-action_caching-1.2.2 +++ b/metadata/md5-cache/dev-ruby/actionpack-action_caching-1.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/actionpack-action_caching-1.2.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=549f041bff35414e8603b1095c230ce1 diff --git a/metadata/md5-cache/dev-ruby/actionpack-xml_parser-2.0.1-r1 b/metadata/md5-cache/dev-ruby/actionpack-xml_parser-2.0.1-r1 index 6d33ba40ae81..ef5340876dd9 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-xml_parser-2.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/actionpack-xml_parser-2.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rails/actionpack-xml_parser/archive/v2.0.1.tar.gz -> actionpack-xml_parser-2.0.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=aab15262fa34f5adef21259efb46dd9f diff --git a/metadata/md5-cache/dev-ruby/actiontext-6.0.4.1 b/metadata/md5-cache/dev-ruby/actiontext-6.0.4.1 index 720c5acf990c..3ffc64eecc35 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/actiontext-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d1b660fabf382a908c9127090f552aba diff --git a/metadata/md5-cache/dev-ruby/actiontext-6.0.4.3 b/metadata/md5-cache/dev-ruby/actiontext-6.0.4.3 index 24571ad909f9..a1dccbdfdc91 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/actiontext-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=29564b1db7e77d17ae57bafd612c2e32 diff --git a/metadata/md5-cache/dev-ruby/actiontext-6.0.4.4 b/metadata/md5-cache/dev-ruby/actiontext-6.0.4.4 index 60363c26d520..7912ffe84e02 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/actiontext-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=29564b1db7e77d17ae57bafd612c2e32 diff --git a/metadata/md5-cache/dev-ruby/actiontext-6.0.4.6 b/metadata/md5-cache/dev-ruby/actiontext-6.0.4.6 index 48754c4793e9..1dfa54079104 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/actiontext-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3fe23a201c9a9ec64ec9b22f0d1a9453 diff --git a/metadata/md5-cache/dev-ruby/actiontext-6.0.4.7 b/metadata/md5-cache/dev-ruby/actiontext-6.0.4.7 index ecfa41e67a2b..eb0729d9530b 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/actiontext-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3fe23a201c9a9ec64ec9b22f0d1a9453 diff --git a/metadata/md5-cache/dev-ruby/actiontext-6.1.4.4 b/metadata/md5-cache/dev-ruby/actiontext-6.1.4.4 index 5b234ecaa620..11a299ac1aec 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/actiontext-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ad9f66a30146ba71eccb194cf357c820 diff --git a/metadata/md5-cache/dev-ruby/actiontext-6.1.4.6 b/metadata/md5-cache/dev-ruby/actiontext-6.1.4.6 index 7011a8cc0b49..071c7b7c1b69 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/actiontext-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dd46d30f98b372336929877dd2b46257 diff --git a/metadata/md5-cache/dev-ruby/actiontext-6.1.5 b/metadata/md5-cache/dev-ruby/actiontext-6.1.5 index 2e5135c0ee1b..df02e81d6a0a 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-6.1.5 +++ b/metadata/md5-cache/dev-ruby/actiontext-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dd46d30f98b372336929877dd2b46257 diff --git a/metadata/md5-cache/dev-ruby/actiontext-7.0.2.2 b/metadata/md5-cache/dev-ruby/actiontext-7.0.2.2 index 5b173949aed2..6eddd0ffd1e3 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/actiontext-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2862296268e6eae15a98694c451edb25 diff --git a/metadata/md5-cache/dev-ruby/actiontext-7.0.2.3 b/metadata/md5-cache/dev-ruby/actiontext-7.0.2.3 index da870835bfcf..f25022081fcd 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/actiontext-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=67fc3715479b0b9b9841373c27bd7695 diff --git a/metadata/md5-cache/dev-ruby/actionview-5.2.6 b/metadata/md5-cache/dev-ruby/actionview-5.2.6 index d5e51b8f3833..010ae93f4649 100644 --- a/metadata/md5-cache/dev-ruby/actionview-5.2.6 +++ b/metadata/md5-cache/dev-ruby/actionview-5.2.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.tar.gz -> rails-5.2.6.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e06d848f5df9096d9556ff23ff8c565e diff --git a/metadata/md5-cache/dev-ruby/actionview-5.2.6.2 b/metadata/md5-cache/dev-ruby/actionview-5.2.6.2 index 70a9b3086c46..e61dfddd2aa5 100644 --- a/metadata/md5-cache/dev-ruby/actionview-5.2.6.2 +++ b/metadata/md5-cache/dev-ruby/actionview-5.2.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.2.tar.gz -> rails-5.2.6.2.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fda21cca81b9d8951a8e71a75ae1438f diff --git a/metadata/md5-cache/dev-ruby/actionview-5.2.7 b/metadata/md5-cache/dev-ruby/actionview-5.2.7 index 69bef3397e1e..5deec12a6d66 100644 --- a/metadata/md5-cache/dev-ruby/actionview-5.2.7 +++ b/metadata/md5-cache/dev-ruby/actionview-5.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.7.tar.gz -> rails-5.2.7.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fda21cca81b9d8951a8e71a75ae1438f diff --git a/metadata/md5-cache/dev-ruby/actionview-6.0.4.1 b/metadata/md5-cache/dev-ruby/actionview-6.0.4.1 index db953a14d138..ff1fea9d24ec 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/actionview-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e5b63787a023f40cec3149f9184029d6 diff --git a/metadata/md5-cache/dev-ruby/actionview-6.0.4.3 b/metadata/md5-cache/dev-ruby/actionview-6.0.4.3 index 6096a4424dad..6aa38049cfdd 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/actionview-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=eb6cf16d33cf597b4457599b209095da diff --git a/metadata/md5-cache/dev-ruby/actionview-6.0.4.4 b/metadata/md5-cache/dev-ruby/actionview-6.0.4.4 index 1ed92bf5f2a8..565271041c6a 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/actionview-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0e3d4796eb6500dd778e2ebc00a4d649 diff --git a/metadata/md5-cache/dev-ruby/actionview-6.0.4.6 b/metadata/md5-cache/dev-ruby/actionview-6.0.4.6 index a19d179aff63..4de9dab6a39d 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/actionview-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7fbfda0b531c46282e081911337adaf8 diff --git a/metadata/md5-cache/dev-ruby/actionview-6.0.4.7 b/metadata/md5-cache/dev-ruby/actionview-6.0.4.7 index 88d4e6f34639..af0ebcced10f 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/actionview-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=19d93f3945764411b228af22a0f5b752 diff --git a/metadata/md5-cache/dev-ruby/actionview-6.1.4.4 b/metadata/md5-cache/dev-ruby/actionview-6.1.4.4 index a76162b2d1bb..136be8055c7c 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/actionview-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2d704118ace66e362d20df02ec58c4aa diff --git a/metadata/md5-cache/dev-ruby/actionview-6.1.4.6 b/metadata/md5-cache/dev-ruby/actionview-6.1.4.6 index cd3bd172ba2a..b33ef97901cf 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/actionview-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f0b46e64bb679451b1783a844d7a4acf diff --git a/metadata/md5-cache/dev-ruby/actionview-6.1.5 b/metadata/md5-cache/dev-ruby/actionview-6.1.5 index 5ac2287b516d..a03a9f5104f8 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.1.5 +++ b/metadata/md5-cache/dev-ruby/actionview-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f0b46e64bb679451b1783a844d7a4acf diff --git a/metadata/md5-cache/dev-ruby/actionview-7.0.2.2 b/metadata/md5-cache/dev-ruby/actionview-7.0.2.2 index 326d33da7ec8..1da2a3b80bad 100644 --- a/metadata/md5-cache/dev-ruby/actionview-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/actionview-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e9dfe37a15e13e5ee568e247c3fb6818 diff --git a/metadata/md5-cache/dev-ruby/actionview-7.0.2.3 b/metadata/md5-cache/dev-ruby/actionview-7.0.2.3 index 1e4132b29d89..660a7e83124b 100644 --- a/metadata/md5-cache/dev-ruby/actionview-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/actionview-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4bedd7b8d11762be57b49d6b988a61cc diff --git a/metadata/md5-cache/dev-ruby/activejob-5.2.6 b/metadata/md5-cache/dev-ruby/activejob-5.2.6 index a42f88908958..597556300c57 100644 --- a/metadata/md5-cache/dev-ruby/activejob-5.2.6 +++ b/metadata/md5-cache/dev-ruby/activejob-5.2.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.tar.gz -> rails-5.2.6.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0b53729fd4312e822a11711e56b9398d diff --git a/metadata/md5-cache/dev-ruby/activejob-5.2.6.2 b/metadata/md5-cache/dev-ruby/activejob-5.2.6.2 index e12072fc6ee2..4dbfa9aebece 100644 --- a/metadata/md5-cache/dev-ruby/activejob-5.2.6.2 +++ b/metadata/md5-cache/dev-ruby/activejob-5.2.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.2.tar.gz -> rails-5.2.6.2.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ed9a46c617e4c536f5a2c6066f1a53cc diff --git a/metadata/md5-cache/dev-ruby/activejob-5.2.7 b/metadata/md5-cache/dev-ruby/activejob-5.2.7 index 1c973b9ec89e..407d31ee090c 100644 --- a/metadata/md5-cache/dev-ruby/activejob-5.2.7 +++ b/metadata/md5-cache/dev-ruby/activejob-5.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.7.tar.gz -> rails-5.2.7.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ed9a46c617e4c536f5a2c6066f1a53cc diff --git a/metadata/md5-cache/dev-ruby/activejob-6.0.4.1 b/metadata/md5-cache/dev-ruby/activejob-6.0.4.1 index 756c1b04b2ea..de8c096f1e70 100644 --- a/metadata/md5-cache/dev-ruby/activejob-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/activejob-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=702ab20b567a7586bac8e64a01cc4658 diff --git a/metadata/md5-cache/dev-ruby/activejob-6.0.4.3 b/metadata/md5-cache/dev-ruby/activejob-6.0.4.3 index b9f6f09156ee..f77ec5fc90c5 100644 --- a/metadata/md5-cache/dev-ruby/activejob-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/activejob-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6213115f3a2942546e4768e61cb63199 diff --git a/metadata/md5-cache/dev-ruby/activejob-6.0.4.4 b/metadata/md5-cache/dev-ruby/activejob-6.0.4.4 index ffd2381a6e81..8886a60b158c 100644 --- a/metadata/md5-cache/dev-ruby/activejob-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/activejob-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6213115f3a2942546e4768e61cb63199 diff --git a/metadata/md5-cache/dev-ruby/activejob-6.0.4.6 b/metadata/md5-cache/dev-ruby/activejob-6.0.4.6 index d95bba360340..7073e27b159d 100644 --- a/metadata/md5-cache/dev-ruby/activejob-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/activejob-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5805ba7eff52e95fb218c7a6f7d93c69 diff --git a/metadata/md5-cache/dev-ruby/activejob-6.0.4.7 b/metadata/md5-cache/dev-ruby/activejob-6.0.4.7 index 580ed51efae1..0180f3b7a48f 100644 --- a/metadata/md5-cache/dev-ruby/activejob-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/activejob-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5805ba7eff52e95fb218c7a6f7d93c69 diff --git a/metadata/md5-cache/dev-ruby/activejob-6.1.4.4 b/metadata/md5-cache/dev-ruby/activejob-6.1.4.4 index f3a52c037c00..5ef22f000e29 100644 --- a/metadata/md5-cache/dev-ruby/activejob-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/activejob-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc8155865b2603d5876489c9a749319c diff --git a/metadata/md5-cache/dev-ruby/activejob-6.1.4.6 b/metadata/md5-cache/dev-ruby/activejob-6.1.4.6 index 39ea696085a9..60c235cbc1e7 100644 --- a/metadata/md5-cache/dev-ruby/activejob-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/activejob-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1dfe144799a05a5582f815d16dd91a93 diff --git a/metadata/md5-cache/dev-ruby/activejob-6.1.5 b/metadata/md5-cache/dev-ruby/activejob-6.1.5 index 4aab4f9deed2..66b2fa592e7d 100644 --- a/metadata/md5-cache/dev-ruby/activejob-6.1.5 +++ b/metadata/md5-cache/dev-ruby/activejob-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1dfe144799a05a5582f815d16dd91a93 diff --git a/metadata/md5-cache/dev-ruby/activejob-7.0.2.2 b/metadata/md5-cache/dev-ruby/activejob-7.0.2.2 index 712e49acb9ad..bf776868232a 100644 --- a/metadata/md5-cache/dev-ruby/activejob-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/activejob-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2b445b43695bad901a8cea560dac3e7e diff --git a/metadata/md5-cache/dev-ruby/activejob-7.0.2.3 b/metadata/md5-cache/dev-ruby/activejob-7.0.2.3 index 8f3ef9d06881..2c9bc7194a37 100644 --- a/metadata/md5-cache/dev-ruby/activejob-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/activejob-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2b445b43695bad901a8cea560dac3e7e diff --git a/metadata/md5-cache/dev-ruby/activejob-7.0.2.3-r1 b/metadata/md5-cache/dev-ruby/activejob-7.0.2.3-r1 index cc7b35aebc65..5abf48ce5b8f 100644 --- a/metadata/md5-cache/dev-ruby/activejob-7.0.2.3-r1 +++ b/metadata/md5-cache/dev-ruby/activejob-7.0.2.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dd610d37f46b7d82a3ac5a133c5bd586 diff --git a/metadata/md5-cache/dev-ruby/activeldap-5.2.4 b/metadata/md5-cache/dev-ruby/activeldap-5.2.4 index 0f40c449bcdc..ab868b10ea05 100644 --- a/metadata/md5-cache/dev-ruby/activeldap-5.2.4 +++ b/metadata/md5-cache/dev-ruby/activeldap-5.2.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/activeldap-5.2.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=966764b50fa5a29ff4a5040d337f8efa diff --git a/metadata/md5-cache/dev-ruby/activeldap-6.0.4 b/metadata/md5-cache/dev-ruby/activeldap-6.0.4 index 62f82149d831..853227f71668 100644 --- a/metadata/md5-cache/dev-ruby/activeldap-6.0.4 +++ b/metadata/md5-cache/dev-ruby/activeldap-6.0.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/activeldap-6.0.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7283440d84d2da702ea70c7bed35312d diff --git a/metadata/md5-cache/dev-ruby/activeldap-6.1.0 b/metadata/md5-cache/dev-ruby/activeldap-6.1.0 index d466bd807c77..d38260909ef3 100644 --- a/metadata/md5-cache/dev-ruby/activeldap-6.1.0 +++ b/metadata/md5-cache/dev-ruby/activeldap-6.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/activeldap-6.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e3a6a95240da5348abd9bae1dd007b3e diff --git a/metadata/md5-cache/dev-ruby/activemodel-5.2.6 b/metadata/md5-cache/dev-ruby/activemodel-5.2.6 index ff61bef77019..41947e31e714 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-5.2.6 +++ b/metadata/md5-cache/dev-ruby/activemodel-5.2.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.tar.gz -> rails-5.2.6.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6af5cf9939ef936cdb19bc53e13bdee4 diff --git a/metadata/md5-cache/dev-ruby/activemodel-5.2.6.2 b/metadata/md5-cache/dev-ruby/activemodel-5.2.6.2 index 9601344d5f4a..c99c396d5607 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-5.2.6.2 +++ b/metadata/md5-cache/dev-ruby/activemodel-5.2.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.2.tar.gz -> rails-5.2.6.2.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1ca40061dc549ab2b432110d18fc1d39 diff --git a/metadata/md5-cache/dev-ruby/activemodel-5.2.7 b/metadata/md5-cache/dev-ruby/activemodel-5.2.7 index 598250e6c498..15d824c356d7 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-5.2.7 +++ b/metadata/md5-cache/dev-ruby/activemodel-5.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.7.tar.gz -> rails-5.2.7.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c9bc0dcc4b67b2cd9631b74f3ef4ae1b diff --git a/metadata/md5-cache/dev-ruby/activemodel-6.0.4.1 b/metadata/md5-cache/dev-ruby/activemodel-6.0.4.1 index 2d8223c94be9..5b64678ddfde 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/activemodel-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=41d84a9a2f070a09e080493e8d5bcd3c diff --git a/metadata/md5-cache/dev-ruby/activemodel-6.0.4.3 b/metadata/md5-cache/dev-ruby/activemodel-6.0.4.3 index b63988a7f522..571e03f7f5bb 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/activemodel-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=56ef2e348f22776524e5099aebd72caa diff --git a/metadata/md5-cache/dev-ruby/activemodel-6.0.4.4 b/metadata/md5-cache/dev-ruby/activemodel-6.0.4.4 index 170399460b7e..4be8ad51a89a 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/activemodel-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ce43575eac41710f9ccd085b2e26dce9 diff --git a/metadata/md5-cache/dev-ruby/activemodel-6.0.4.6 b/metadata/md5-cache/dev-ruby/activemodel-6.0.4.6 index 4a59eca187aa..8c329ea55410 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/activemodel-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6da76a4080080020287bee1a307dee94 diff --git a/metadata/md5-cache/dev-ruby/activemodel-6.0.4.7 b/metadata/md5-cache/dev-ruby/activemodel-6.0.4.7 index 1fe19d545b99..83f1f4cf6a5c 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/activemodel-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8647d354e24ad868b4a52eed0a92f7ca diff --git a/metadata/md5-cache/dev-ruby/activemodel-6.1.4.4 b/metadata/md5-cache/dev-ruby/activemodel-6.1.4.4 index 33c54ef68548..953aec0d1a12 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/activemodel-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=334e427b44d644fe6afb0d5b647925a3 diff --git a/metadata/md5-cache/dev-ruby/activemodel-6.1.4.6 b/metadata/md5-cache/dev-ruby/activemodel-6.1.4.6 index e35413282699..d30580b02c55 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/activemodel-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7c04efc2058ad8e71343be54cb7cadbb diff --git a/metadata/md5-cache/dev-ruby/activemodel-6.1.5 b/metadata/md5-cache/dev-ruby/activemodel-6.1.5 index 044ebaec3a9b..8919b64aa836 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-6.1.5 +++ b/metadata/md5-cache/dev-ruby/activemodel-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7c04efc2058ad8e71343be54cb7cadbb diff --git a/metadata/md5-cache/dev-ruby/activemodel-7.0.2.2 b/metadata/md5-cache/dev-ruby/activemodel-7.0.2.2 index f6ebed24968b..6532baca99cd 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/activemodel-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=179e7f547ddcc0710cdb3c01fb7044c7 diff --git a/metadata/md5-cache/dev-ruby/activemodel-7.0.2.3 b/metadata/md5-cache/dev-ruby/activemodel-7.0.2.3 index f49f7a70d544..46f7ac496af6 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/activemodel-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5cbfdc7ae82dd38703bd4c0408e5af4c diff --git a/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2-r1 b/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2-r1 index 153926c625cc..65bd2c58beb2 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2-r1 +++ b/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://github.com/rails/activemodel-serializers-xml/archive/v1.0.2.tar.gz -> activemodel-serializers-xml-1.0.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5fd4d328a40948de0e991b81170d8c84 diff --git a/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2-r2 b/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2-r2 index c7ceea5cee40..3e4264fd9d06 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2-r2 +++ b/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://github.com/rails/activemodel-serializers-xml/archive/v1.0.2.tar.gz -> activemodel-serializers-xml-1.0.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=44ff6888f3b69742925b86fd385f645b diff --git a/metadata/md5-cache/dev-ruby/activerecord-5.2.6 b/metadata/md5-cache/dev-ruby/activerecord-5.2.6 index b511e07d543b..c569d52f871a 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-5.2.6 +++ b/metadata/md5-cache/dev-ruby/activerecord-5.2.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.tar.gz -> rails-5.2.6.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=39394ceded1e006ab138cb7098023786 diff --git a/metadata/md5-cache/dev-ruby/activerecord-5.2.6.2 b/metadata/md5-cache/dev-ruby/activerecord-5.2.6.2 index be4aa421edd5..533fec559840 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-5.2.6.2 +++ b/metadata/md5-cache/dev-ruby/activerecord-5.2.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.2.tar.gz -> rails-5.2.6.2.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9497ab8319a4e59ec3e398bb48f55ced diff --git a/metadata/md5-cache/dev-ruby/activerecord-5.2.7 b/metadata/md5-cache/dev-ruby/activerecord-5.2.7 index 88c62cdfa1fe..ee6b61d4aaef 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-5.2.7 +++ b/metadata/md5-cache/dev-ruby/activerecord-5.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.7.tar.gz -> rails-5.2.7.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ee1f8f22e609e6779bbbcc7e126a74ab diff --git a/metadata/md5-cache/dev-ruby/activerecord-6.0.4.1 b/metadata/md5-cache/dev-ruby/activerecord-6.0.4.1 index 64080ff7be05..5e7551022ace 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/activerecord-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a13642036a0f0ee8a6faf9af4a9318c3 diff --git a/metadata/md5-cache/dev-ruby/activerecord-6.0.4.3 b/metadata/md5-cache/dev-ruby/activerecord-6.0.4.3 index fb07b217ceee..1f45ce4dbdb2 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/activerecord-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3bbe7e64e9a238b538008e64f5748cdc diff --git a/metadata/md5-cache/dev-ruby/activerecord-6.0.4.4 b/metadata/md5-cache/dev-ruby/activerecord-6.0.4.4 index cd82ead85fd6..39e91839cc12 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/activerecord-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=489309e78c5039d811bc01192a181e42 diff --git a/metadata/md5-cache/dev-ruby/activerecord-6.0.4.6 b/metadata/md5-cache/dev-ruby/activerecord-6.0.4.6 index 22d6b130ce2e..e7525e348bba 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/activerecord-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dcde3d1c7bfb1f7ace03d42f692944b4 diff --git a/metadata/md5-cache/dev-ruby/activerecord-6.0.4.7 b/metadata/md5-cache/dev-ruby/activerecord-6.0.4.7 index 9cfa485a2e8f..e050a4f1cb27 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/activerecord-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0d1819adcb39aebc776dd38bbb8b3143 diff --git a/metadata/md5-cache/dev-ruby/activerecord-6.1.4.4 b/metadata/md5-cache/dev-ruby/activerecord-6.1.4.4 index 72fe005fbce4..0b83e9b9a3e2 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/activerecord-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9ac7fea76a0e96ddb20ce892e1b92956 diff --git a/metadata/md5-cache/dev-ruby/activerecord-6.1.4.6 b/metadata/md5-cache/dev-ruby/activerecord-6.1.4.6 index 9f2a6a68741e..7e07544e05a2 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/activerecord-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9fe57c2c3af91b8bc76911ee3150416e diff --git a/metadata/md5-cache/dev-ruby/activerecord-6.1.5 b/metadata/md5-cache/dev-ruby/activerecord-6.1.5 index fec6c6845382..37fff52bf5b6 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-6.1.5 +++ b/metadata/md5-cache/dev-ruby/activerecord-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e87d678ab2831e32104b2dc1c9576abb diff --git a/metadata/md5-cache/dev-ruby/activerecord-7.0.2.2 b/metadata/md5-cache/dev-ruby/activerecord-7.0.2.2 index 348fc7dca7e5..6f1682195239 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/activerecord-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a44777db03dc00de76e9d8af7dbdbaf0 diff --git a/metadata/md5-cache/dev-ruby/activerecord-7.0.2.3 b/metadata/md5-cache/dev-ruby/activerecord-7.0.2.3 index 19ef530272d5..6b2de0e814ca 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/activerecord-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6270fc7d042b423998f7e6a81e7c7cc0 diff --git a/metadata/md5-cache/dev-ruby/activestorage-5.2.6 b/metadata/md5-cache/dev-ruby/activestorage-5.2.6 index 7a7f9aea1caa..27ace2228ff1 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-5.2.6 +++ b/metadata/md5-cache/dev-ruby/activestorage-5.2.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.tar.gz -> rails-5.2.6.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6970929ae3e71888b2b54dee32f8c593 diff --git a/metadata/md5-cache/dev-ruby/activestorage-5.2.6.2 b/metadata/md5-cache/dev-ruby/activestorage-5.2.6.2 index ad0d8b3f61b6..2c26a2193b7b 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-5.2.6.2 +++ b/metadata/md5-cache/dev-ruby/activestorage-5.2.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.2.tar.gz -> rails-5.2.6.2.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a26c869df8e4d9b3d9a1b93c1f20284c diff --git a/metadata/md5-cache/dev-ruby/activestorage-5.2.7 b/metadata/md5-cache/dev-ruby/activestorage-5.2.7 index aad88b14dbe7..90f06262387d 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-5.2.7 +++ b/metadata/md5-cache/dev-ruby/activestorage-5.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.7.tar.gz -> rails-5.2.7.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a26c869df8e4d9b3d9a1b93c1f20284c diff --git a/metadata/md5-cache/dev-ruby/activestorage-6.0.4.1 b/metadata/md5-cache/dev-ruby/activestorage-6.0.4.1 index e502b3a5c36f..53418eb1a171 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/activestorage-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5ea69aa7809722e9fdc8cee96ff3c2b5 diff --git a/metadata/md5-cache/dev-ruby/activestorage-6.0.4.3 b/metadata/md5-cache/dev-ruby/activestorage-6.0.4.3 index 80d284f84dd2..754f341d66c8 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/activestorage-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a55f5571fab3f402fe02583c52456ec5 diff --git a/metadata/md5-cache/dev-ruby/activestorage-6.0.4.4 b/metadata/md5-cache/dev-ruby/activestorage-6.0.4.4 index db891259e7c9..03b825e7d6e6 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/activestorage-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a55f5571fab3f402fe02583c52456ec5 diff --git a/metadata/md5-cache/dev-ruby/activestorage-6.0.4.6 b/metadata/md5-cache/dev-ruby/activestorage-6.0.4.6 index cb16ece4b77a..5b032b8982bf 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/activestorage-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d60415a2324bfaccd6223c34aedbcbe8 diff --git a/metadata/md5-cache/dev-ruby/activestorage-6.0.4.7 b/metadata/md5-cache/dev-ruby/activestorage-6.0.4.7 index 5c611b073405..f4959adaa02f 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/activestorage-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d60415a2324bfaccd6223c34aedbcbe8 diff --git a/metadata/md5-cache/dev-ruby/activestorage-6.1.4.4 b/metadata/md5-cache/dev-ruby/activestorage-6.1.4.4 index d48586a0b0ca..ec389848fb6f 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/activestorage-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=915924adc920c485d241f5c73d9ea8ad diff --git a/metadata/md5-cache/dev-ruby/activestorage-6.1.4.6 b/metadata/md5-cache/dev-ruby/activestorage-6.1.4.6 index aad1f6955799..78fef0193baa 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/activestorage-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=df9b60708243653713bdeadf6b72bc82 diff --git a/metadata/md5-cache/dev-ruby/activestorage-6.1.5 b/metadata/md5-cache/dev-ruby/activestorage-6.1.5 index 47d0138aa7d0..af89e48b7c61 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-6.1.5 +++ b/metadata/md5-cache/dev-ruby/activestorage-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=df9b60708243653713bdeadf6b72bc82 diff --git a/metadata/md5-cache/dev-ruby/activestorage-7.0.2.2 b/metadata/md5-cache/dev-ruby/activestorage-7.0.2.2 index b03ffcc0e9e7..824a4ecd888c 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/activestorage-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=246ebf7b3a5b95d753de97a2c39ec2c3 diff --git a/metadata/md5-cache/dev-ruby/activestorage-7.0.2.3 b/metadata/md5-cache/dev-ruby/activestorage-7.0.2.3 index 0f6b1791aa0b..357794156130 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/activestorage-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e5ae84932cd67ef1d794eefe68d170e3 diff --git a/metadata/md5-cache/dev-ruby/activesupport-5.2.6 b/metadata/md5-cache/dev-ruby/activesupport-5.2.6 index bdd4128252eb..ed9bfe2cf44e 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-5.2.6 +++ b/metadata/md5-cache/dev-ruby/activesupport-5.2.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.tar.gz -> rails-5.2.6.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3f9465ac66c41c10726f6bd2f051e9a9 diff --git a/metadata/md5-cache/dev-ruby/activesupport-5.2.6.2 b/metadata/md5-cache/dev-ruby/activesupport-5.2.6.2 index 18c6298695ea..f47966f21d4d 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-5.2.6.2 +++ b/metadata/md5-cache/dev-ruby/activesupport-5.2.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.2.tar.gz -> rails-5.2.6.2.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c572d41511ad14eae876b99f5532cc97 diff --git a/metadata/md5-cache/dev-ruby/activesupport-5.2.7 b/metadata/md5-cache/dev-ruby/activesupport-5.2.7 index 7b10e6709490..d1bd0d2151ab 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-5.2.7 +++ b/metadata/md5-cache/dev-ruby/activesupport-5.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.7.tar.gz -> rails-5.2.7.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ac4e14def87214e0d02955cb03d56eaa diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.0.4.1 b/metadata/md5-cache/dev-ruby/activesupport-6.0.4.1 index e666a3502f3f..3373ae21da5e 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/activesupport-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f5b37d20dd09ece4c0cfd3527abae568 diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.0.4.3 b/metadata/md5-cache/dev-ruby/activesupport-6.0.4.3 index ce231ec8415b..a044b702a6a3 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/activesupport-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5338e066f19fa39ac8d0905d73c770f6 diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.0.4.4 b/metadata/md5-cache/dev-ruby/activesupport-6.0.4.4 index 2c1ec240098e..f8b93e93cfa5 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/activesupport-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cec98a525af8b9d47b0e5c9e27ed6d89 diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.0.4.6 b/metadata/md5-cache/dev-ruby/activesupport-6.0.4.6 index 5a7db668217c..a4847e663a92 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/activesupport-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=914ac8b23b9e7c3a11ea9e8df4f99a66 diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.0.4.7 b/metadata/md5-cache/dev-ruby/activesupport-6.0.4.7 index 18ddb8894280..c79fd8741727 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/activesupport-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b4e56a5349429588f8ae78023eb4ecf1 diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.1.4.4 b/metadata/md5-cache/dev-ruby/activesupport-6.1.4.4 index 9d791ca8fdd3..0269a2519449 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/activesupport-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b21dbff8e171ee20dfa78f1653d57ac8 diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.1.4.6 b/metadata/md5-cache/dev-ruby/activesupport-6.1.4.6 index 6ac689c75d3d..6821691b711f 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/activesupport-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b6be3de305caadba048f5b1983d63a0f diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.1.5 b/metadata/md5-cache/dev-ruby/activesupport-6.1.5 index 6453d151c048..120d518904ad 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-6.1.5 +++ b/metadata/md5-cache/dev-ruby/activesupport-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5b795079686420d47f1454a41fcd8dbf diff --git a/metadata/md5-cache/dev-ruby/activesupport-7.0.2.2 b/metadata/md5-cache/dev-ruby/activesupport-7.0.2.2 index a8065d6c76a7..27dfb13994dd 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/activesupport-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9425399ba2c8f2322c967c4b2088e4c3 diff --git a/metadata/md5-cache/dev-ruby/activesupport-7.0.2.3 b/metadata/md5-cache/dev-ruby/activesupport-7.0.2.3 index 8e0d8aa7c42d..bf5a35b91cd0 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/activesupport-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=866e1c31a03ebf4e6ef457f0be3b3d72 diff --git a/metadata/md5-cache/dev-ruby/acts_as_list-1.0.4 b/metadata/md5-cache/dev-ruby/acts_as_list-1.0.4 index fea33f4f85c4..8596dbbc94cd 100644 --- a/metadata/md5-cache/dev-ruby/acts_as_list-1.0.4 +++ b/metadata/md5-cache/dev-ruby/acts_as_list-1.0.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/acts_as_list-1.0.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b4f221d8acdf9fba8403f9f5d19e43d9 diff --git a/metadata/md5-cache/dev-ruby/addressable-2.8.0 b/metadata/md5-cache/dev-ruby/addressable-2.8.0 index 13135d6de60a..bc87acde0624 100644 --- a/metadata/md5-cache/dev-ruby/addressable-2.8.0 +++ b/metadata/md5-cache/dev-ruby/addressable-2.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/addressable-2.8.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5aaa9c9c15010312a4bf6a789cb84975 diff --git a/metadata/md5-cache/dev-ruby/ae-1.8.2-r1 b/metadata/md5-cache/dev-ruby/ae-1.8.2-r1 index 165574cf47a3..287c77991ca3 100644 --- a/metadata/md5-cache/dev-ruby/ae-1.8.2-r1 +++ b/metadata/md5-cache/dev-ruby/ae-1.8.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ae-1.8.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4bec492eb71e67ac6e956c8661b1cbae diff --git a/metadata/md5-cache/dev-ruby/afm-0.2.2-r1 b/metadata/md5-cache/dev-ruby/afm-0.2.2-r1 index cc37e9519e60..639426b287fd 100644 --- a/metadata/md5-cache/dev-ruby/afm-0.2.2-r1 +++ b/metadata/md5-cache/dev-ruby/afm-0.2.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/afm-0.2.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6912652af0564c7f206988b451a4903d diff --git a/metadata/md5-cache/dev-ruby/airbrussh-1.4.0 b/metadata/md5-cache/dev-ruby/airbrussh-1.4.0 index 11856c1346ee..989b33e3b202 100644 --- a/metadata/md5-cache/dev-ruby/airbrussh-1.4.0 +++ b/metadata/md5-cache/dev-ruby/airbrussh-1.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/mattbrictson/airbrussh/archive/v1.4.0.tar.gz -> airbrussh-1.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4f1122e2655f638f72db2481f19b5479 diff --git a/metadata/md5-cache/dev-ruby/allison-2.0.3-r4 b/metadata/md5-cache/dev-ruby/allison-2.0.3-r4 index 0209b1ff2549..79fdaacd391b 100644 --- a/metadata/md5-cache/dev-ruby/allison-2.0.3-r4 +++ b/metadata/md5-cache/dev-ruby/allison-2.0.3-r4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/allison-2.0.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4d29cb92a1422671ce5a1f327b31fcda diff --git a/metadata/md5-cache/dev-ruby/amatch-0.4.0-r1 b/metadata/md5-cache/dev-ruby/amatch-0.4.0-r1 index c07216f11715..c6516a2e41c5 100644 --- a/metadata/md5-cache/dev-ruby/amatch-0.4.0-r1 +++ b/metadata/md5-cache/dev-ruby/amatch-0.4.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/amatch-0.4.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=33d398797d8f70705f929b2e1a586282 diff --git a/metadata/md5-cache/dev-ruby/ammeter-1.1.5 b/metadata/md5-cache/dev-ruby/ammeter-1.1.5 index 27e778a4fd1b..293ffe10671e 100644 --- a/metadata/md5-cache/dev-ruby/ammeter-1.1.5 +++ b/metadata/md5-cache/dev-ruby/ammeter-1.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ammeter-1.1.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a0b96d28372809ba0375a59e8ddf59be diff --git a/metadata/md5-cache/dev-ruby/amq-client-1.0.4-r1 b/metadata/md5-cache/dev-ruby/amq-client-1.0.4-r1 index 8a21c3ff4f0a..682de0c1ef21 100644 --- a/metadata/md5-cache/dev-ruby/amq-client-1.0.4-r1 +++ b/metadata/md5-cache/dev-ruby/amq-client-1.0.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/amq-client-1.0.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4348c652deecd37eb10492e431cf477f diff --git a/metadata/md5-cache/dev-ruby/amq-protocol-2.3.2 b/metadata/md5-cache/dev-ruby/amq-protocol-2.3.2 index 686ecb1d81ff..e0835da790c7 100644 --- a/metadata/md5-cache/dev-ruby/amq-protocol-2.3.2 +++ b/metadata/md5-cache/dev-ruby/amq-protocol-2.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/amq-protocol-2.3.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=93db0c8794fba22986e0429856d721cb diff --git a/metadata/md5-cache/dev-ruby/amqp-1.8.0-r1 b/metadata/md5-cache/dev-ruby/amqp-1.8.0-r1 index 46df76a29981..09bdeb965105 100644 --- a/metadata/md5-cache/dev-ruby/amqp-1.8.0-r1 +++ b/metadata/md5-cache/dev-ruby/amqp-1.8.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.4 SRC_URI=https://rubygems.org/gems/amqp-1.8.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f60933456188702deff23865bbb4dfc7 diff --git a/metadata/md5-cache/dev-ruby/annoy-0.5.6-r2 b/metadata/md5-cache/dev-ruby/annoy-0.5.6-r2 index 9207df90cd76..d786e1220c6f 100644 --- a/metadata/md5-cache/dev-ruby/annoy-0.5.6-r2 +++ b/metadata/md5-cache/dev-ruby/annoy-0.5.6-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/annoy-0.5.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cbfbc0f89e0b145fd6345c627ee937fc diff --git a/metadata/md5-cache/dev-ruby/ansi-1.5.0-r1 b/metadata/md5-cache/dev-ruby/ansi-1.5.0-r1 index e33db3edf94d..0b22d9f1701c 100644 --- a/metadata/md5-cache/dev-ruby/ansi-1.5.0-r1 +++ b/metadata/md5-cache/dev-ruby/ansi-1.5.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/ansi-1.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b739be77664c31368e99ba53dcd4cd2c diff --git a/metadata/md5-cache/dev-ruby/arel-9.0.0 b/metadata/md5-cache/dev-ruby/arel-9.0.0 index ada06d9758f1..3e9ee15a2931 100644 --- a/metadata/md5-cache/dev-ruby/arel-9.0.0 +++ b/metadata/md5-cache/dev-ruby/arel-9.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=9.0 SRC_URI=https://github.com/rails/arel/archive/v9.0.0.tar.gz -> arel-9.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=157616a3bb65aff1dc0834f97e08daaa diff --git a/metadata/md5-cache/dev-ruby/arel-helpers-2.12.0 b/metadata/md5-cache/dev-ruby/arel-helpers-2.12.0 index e2e4ada959a8..c16a126b3ca3 100644 --- a/metadata/md5-cache/dev-ruby/arel-helpers-2.12.0 +++ b/metadata/md5-cache/dev-ruby/arel-helpers-2.12.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/arel-helpers-2.12.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=eb26f57ad7690ac0de73c316250bd305 diff --git a/metadata/md5-cache/dev-ruby/arel-helpers-2.12.1 b/metadata/md5-cache/dev-ruby/arel-helpers-2.12.1 index 3de076a09a60..694623b32f4c 100644 --- a/metadata/md5-cache/dev-ruby/arel-helpers-2.12.1 +++ b/metadata/md5-cache/dev-ruby/arel-helpers-2.12.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/arel-helpers-2.12.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6c6503f749a420d717eda6ba11010dad diff --git a/metadata/md5-cache/dev-ruby/arel-helpers-2.13.0 b/metadata/md5-cache/dev-ruby/arel-helpers-2.13.0 index cc2095563ba5..1fdda66b0c02 100644 --- a/metadata/md5-cache/dev-ruby/arel-helpers-2.13.0 +++ b/metadata/md5-cache/dev-ruby/arel-helpers-2.13.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/arel-helpers-2.13.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6c6503f749a420d717eda6ba11010dad diff --git a/metadata/md5-cache/dev-ruby/ascii85-1.0.3 b/metadata/md5-cache/dev-ruby/ascii85-1.0.3 index 0bf2688bbb8b..5706a05d66d8 100644 --- a/metadata/md5-cache/dev-ruby/ascii85-1.0.3 +++ b/metadata/md5-cache/dev-ruby/ascii85-1.0.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/Ascii85-1.0.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=07860a7673186d1562d08cb10fa0f1f7 diff --git a/metadata/md5-cache/dev-ruby/ascii85-1.1.0 b/metadata/md5-cache/dev-ruby/ascii85-1.1.0 index 13b0294e1179..8fd8f1517bf4 100644 --- a/metadata/md5-cache/dev-ruby/ascii85-1.1.0 +++ b/metadata/md5-cache/dev-ruby/ascii85-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/Ascii85-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1cce87eded96959e38e0ff60d04a30e7 diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-2.0.15 b/metadata/md5-cache/dev-ruby/asciidoctor-2.0.15 index 263c26eaad3a..b031b9494cb7 100644 --- a/metadata/md5-cache/dev-ruby/asciidoctor-2.0.15 +++ b/metadata/md5-cache/dev-ruby/asciidoctor-2.0.15 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/asciidoctor/asciidoctor/archive/v2.0.15.tar.gz -> asciidoctor-2.0.15.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6a0c9ab36202bd8912218ad7e5b44867 diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-2.0.16 b/metadata/md5-cache/dev-ruby/asciidoctor-2.0.16 index c04d02e283ff..7b2d087d81e6 100644 --- a/metadata/md5-cache/dev-ruby/asciidoctor-2.0.16 +++ b/metadata/md5-cache/dev-ruby/asciidoctor-2.0.16 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/asciidoctor/asciidoctor/archive/v2.0.16.tar.gz -> asciidoctor-2.0.16.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f3917a1fe63bab4a7021df38e0914c4e diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.5 b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.5 index 66891927c2f2..e10124ad68aa 100644 --- a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.5 +++ b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/asciidoctor/asciidoctor-diagram/archive/v2.0.5.tar.gz -> asciidoctor-diagram-2.0.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a0e33da7516227030d618cedcdfce831 diff --git a/metadata/md5-cache/dev-ruby/asciimath-1.0.9 b/metadata/md5-cache/dev-ruby/asciimath-1.0.9 index eb10892a089c..40818775fefe 100644 --- a/metadata/md5-cache/dev-ruby/asciimath-1.0.9 +++ b/metadata/md5-cache/dev-ruby/asciimath-1.0.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/asciimath-1.0.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b0bafd90840842d302187198832836dd diff --git a/metadata/md5-cache/dev-ruby/asciimath-2.0.0 b/metadata/md5-cache/dev-ruby/asciimath-2.0.0 index cb39f8de32e5..cdf97361a577 100644 --- a/metadata/md5-cache/dev-ruby/asciimath-2.0.0 +++ b/metadata/md5-cache/dev-ruby/asciimath-2.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/asciimath-2.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=73b815922c5fa0720d202457a29132d9 diff --git a/metadata/md5-cache/dev-ruby/asciimath-2.0.1 b/metadata/md5-cache/dev-ruby/asciimath-2.0.1 index 9090e19d71d6..b795ed635e1f 100644 --- a/metadata/md5-cache/dev-ruby/asciimath-2.0.1 +++ b/metadata/md5-cache/dev-ruby/asciimath-2.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/asciimath-2.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1f8560af9427109153d9127a341533bb diff --git a/metadata/md5-cache/dev-ruby/asciimath-2.0.2 b/metadata/md5-cache/dev-ruby/asciimath-2.0.2 index 66317e4f0688..8939db58e95e 100644 --- a/metadata/md5-cache/dev-ruby/asciimath-2.0.2 +++ b/metadata/md5-cache/dev-ruby/asciimath-2.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/asciimath-2.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=feccc7da63b9d6a0cfbb6137f1baaace diff --git a/metadata/md5-cache/dev-ruby/asciimath-2.0.3 b/metadata/md5-cache/dev-ruby/asciimath-2.0.3 index 340cc985b3ff..b1dbe3e08ddf 100644 --- a/metadata/md5-cache/dev-ruby/asciimath-2.0.3 +++ b/metadata/md5-cache/dev-ruby/asciimath-2.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/asciimath-2.0.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=00e96d60bcd53aec0ae865dbeee6119c diff --git a/metadata/md5-cache/dev-ruby/ast-2.4.2 b/metadata/md5-cache/dev-ruby/ast-2.4.2 index 6b5d8914ab12..ed550b9b1ecd 100644 --- a/metadata/md5-cache/dev-ruby/ast-2.4.2 +++ b/metadata/md5-cache/dev-ruby/ast-2.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whitequark/ast/archive/v2.4.2.tar.gz -> ast-2.4.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fdd3bc8a75221a2a4f13f43e6ef551c3 diff --git a/metadata/md5-cache/dev-ruby/async_sinatra-1.3.0-r1 b/metadata/md5-cache/dev-ruby/async_sinatra-1.3.0-r1 index 1cb08cde8fde..df907a956058 100644 --- a/metadata/md5-cache/dev-ruby/async_sinatra-1.3.0-r1 +++ b/metadata/md5-cache/dev-ruby/async_sinatra-1.3.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/raggi/async_sinatra/archive/v1.3.0.tar.gz -> async_sinatra-1.3.0-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=30bb6fc6668b52e5e8f572a23a39cb30 diff --git a/metadata/md5-cache/dev-ruby/atomic-1.1.101-r1 b/metadata/md5-cache/dev-ruby/atomic-1.1.101-r1 index e53861311937..15268b6cbc2d 100644 --- a/metadata/md5-cache/dev-ruby/atomic-1.1.101-r1 +++ b/metadata/md5-cache/dev-ruby/atomic-1.1.101-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/atomic-1.1.101.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0c22abc075a11d532e16fdf8d1beb812 diff --git a/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.3.1.0 b/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.3.1.0 index 17d0ad41e8c6..b003323a1527 100644 --- a/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.3.1.0 +++ b/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.3.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=10 SRC_URI=https://github.com/ai/autoprefixer-rails/archive/10.3.1.0.tar.gz -> autoprefixer-rails-10.3.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=09453092158ca280c75e92c2527cf90f diff --git a/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.4.2.0 b/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.4.2.0 index 1f02ce711c4e..c947278bdd71 100644 --- a/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.4.2.0 +++ b/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.4.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=10 SRC_URI=https://github.com/ai/autoprefixer-rails/archive/10.4.2.0.tar.gz -> autoprefixer-rails-10.4.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=922140e4c043ce04789fefce2df3d109 diff --git a/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.6.5 b/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.6.5 index 259bf3a3516e..b315244396ff 100644 --- a/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.6.5 +++ b/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.6.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=9 SRC_URI=https://rubygems.org/gems/autoprefixer-rails-9.8.6.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=12c3e247e33c6eb20ae94a2afe66826f diff --git a/metadata/md5-cache/dev-ruby/aws-eventstream-1.1.0 b/metadata/md5-cache/dev-ruby/aws-eventstream-1.1.0 index ffadda07f75e..faee67af2d30 100644 --- a/metadata/md5-cache/dev-ruby/aws-eventstream-1.1.0 +++ b/metadata/md5-cache/dev-ruby/aws-eventstream-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/aws-eventstream-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9c184443b5bdad44f97ca3369abc273b diff --git a/metadata/md5-cache/dev-ruby/aws-eventstream-1.1.1 b/metadata/md5-cache/dev-ruby/aws-eventstream-1.1.1 index 5143605f8b3c..6f1a36605aa3 100644 --- a/metadata/md5-cache/dev-ruby/aws-eventstream-1.1.1 +++ b/metadata/md5-cache/dev-ruby/aws-eventstream-1.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/aws-eventstream-1.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6687f58965edb68cce41fa749d6da514 diff --git a/metadata/md5-cache/dev-ruby/aws-eventstream-1.2.0 b/metadata/md5-cache/dev-ruby/aws-eventstream-1.2.0 index fc6116381361..a80e86922361 100644 --- a/metadata/md5-cache/dev-ruby/aws-eventstream-1.2.0 +++ b/metadata/md5-cache/dev-ruby/aws-eventstream-1.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/aws-eventstream-1.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=50dc9cbc5802ea3e52bc950266b04214 diff --git a/metadata/md5-cache/dev-ruby/aws-partitions-1.297.0 b/metadata/md5-cache/dev-ruby/aws-partitions-1.297.0 index 01a7e48674bf..a342df7de97c 100644 --- a/metadata/md5-cache/dev-ruby/aws-partitions-1.297.0 +++ b/metadata/md5-cache/dev-ruby/aws-partitions-1.297.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/aws-partitions-1.297.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=90252676dd1761ed67b99228e01f57ad diff --git a/metadata/md5-cache/dev-ruby/aws-partitions-1.298.0 b/metadata/md5-cache/dev-ruby/aws-partitions-1.298.0 index 0ede0e3265af..f6100d2ac03f 100644 --- a/metadata/md5-cache/dev-ruby/aws-partitions-1.298.0 +++ b/metadata/md5-cache/dev-ruby/aws-partitions-1.298.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/aws-partitions-1.298.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=90252676dd1761ed67b99228e01f57ad diff --git a/metadata/md5-cache/dev-ruby/aws-partitions-1.370.0 b/metadata/md5-cache/dev-ruby/aws-partitions-1.370.0 index 3aed0c0a093a..8e358af7a39d 100644 --- a/metadata/md5-cache/dev-ruby/aws-partitions-1.370.0 +++ b/metadata/md5-cache/dev-ruby/aws-partitions-1.370.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/aws-partitions-1.370.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=449d47795834ca53ed7f616e69c53d58 diff --git a/metadata/md5-cache/dev-ruby/aws-sdk-2.11.488 b/metadata/md5-cache/dev-ruby/aws-sdk-2.11.488 index 2b4f4af20732..cde0c73585e1 100644 --- a/metadata/md5-cache/dev-ruby/aws-sdk-2.11.488 +++ b/metadata/md5-cache/dev-ruby/aws-sdk-2.11.488 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/aws/aws-sdk-ruby/archive/v2.11.488.tar.gz -> aws-sdk-ruby-2.11.488.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e112891746cf5589e768608be60634ea diff --git a/metadata/md5-cache/dev-ruby/aws-sdk-core-2.11.488 b/metadata/md5-cache/dev-ruby/aws-sdk-core-2.11.488 index 056141a10cb9..26503610c3c0 100644 --- a/metadata/md5-cache/dev-ruby/aws-sdk-core-2.11.488 +++ b/metadata/md5-cache/dev-ruby/aws-sdk-core-2.11.488 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/aws/aws-sdk-ruby/archive/v2.11.488.tar.gz -> aws-sdk-ruby-2.11.488.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=27ba17c94e52a7296c5b3e473510979e diff --git a/metadata/md5-cache/dev-ruby/aws-sdk-core-3.94.0 b/metadata/md5-cache/dev-ruby/aws-sdk-core-3.94.0 index 7ea22f01cc22..b30002943afd 100644 --- a/metadata/md5-cache/dev-ruby/aws-sdk-core-3.94.0 +++ b/metadata/md5-cache/dev-ruby/aws-sdk-core-3.94.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/aws-sdk-core-3.94.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b89bd8bd0611b8fb6906c44b205d90c2 diff --git a/metadata/md5-cache/dev-ruby/aws-sdk-resources-2.11.488 b/metadata/md5-cache/dev-ruby/aws-sdk-resources-2.11.488 index 29e442815cad..454c4c65aa95 100644 --- a/metadata/md5-cache/dev-ruby/aws-sdk-resources-2.11.488 +++ b/metadata/md5-cache/dev-ruby/aws-sdk-resources-2.11.488 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/aws/aws-sdk-ruby/archive/v2.11.488.tar.gz -> aws-sdk-ruby-2.11.488.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ed4697db5d6fb27328bec27fb7101729 diff --git a/metadata/md5-cache/dev-ruby/aws-sigv4-1.2.3 b/metadata/md5-cache/dev-ruby/aws-sigv4-1.2.3 index 9e2317f3d182..86de4b0e44d8 100644 --- a/metadata/md5-cache/dev-ruby/aws-sigv4-1.2.3 +++ b/metadata/md5-cache/dev-ruby/aws-sigv4-1.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/aws-sigv4-1.2.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6418bbff212124431dcf3f780f439b90 diff --git a/metadata/md5-cache/dev-ruby/aws-sigv4-1.2.4 b/metadata/md5-cache/dev-ruby/aws-sigv4-1.2.4 index 22dd788c61fa..4b90295ffdfd 100644 --- a/metadata/md5-cache/dev-ruby/aws-sigv4-1.2.4 +++ b/metadata/md5-cache/dev-ruby/aws-sigv4-1.2.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/aws-sigv4-1.2.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=96446b0dcd68c3b497c1ee67cea6dd6b diff --git a/metadata/md5-cache/dev-ruby/aws-sigv4-1.4.0 b/metadata/md5-cache/dev-ruby/aws-sigv4-1.4.0 index b1e28c946860..0a7b854945fe 100644 --- a/metadata/md5-cache/dev-ruby/aws-sigv4-1.4.0 +++ b/metadata/md5-cache/dev-ruby/aws-sigv4-1.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/aws-sigv4-1.4.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=96446b0dcd68c3b497c1ee67cea6dd6b diff --git a/metadata/md5-cache/dev-ruby/axiom-types-0.1.1-r1 b/metadata/md5-cache/dev-ruby/axiom-types-0.1.1-r1 index be0a29dc2fa7..b7f147d5d01a 100644 --- a/metadata/md5-cache/dev-ruby/axiom-types-0.1.1-r1 +++ b/metadata/md5-cache/dev-ruby/axiom-types-0.1.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/axiom-types-0.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=633e94aa60712befbdae0d4803dba3eb diff --git a/metadata/md5-cache/dev-ruby/backports-3.20.2-r1 b/metadata/md5-cache/dev-ruby/backports-3.20.2-r1 index 0762e9113fca..fc9b36e37000 100644 --- a/metadata/md5-cache/dev-ruby/backports-3.20.2-r1 +++ b/metadata/md5-cache/dev-ruby/backports-3.20.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/marcandre/backports/archive/v3.20.2.tar.gz -> backports-3.20.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=981c27aaf2462af8e78d842a672ee410 diff --git a/metadata/md5-cache/dev-ruby/backports-3.21.0 b/metadata/md5-cache/dev-ruby/backports-3.21.0 index 925b6f94ee13..fa50bfa510e0 100644 --- a/metadata/md5-cache/dev-ruby/backports-3.21.0 +++ b/metadata/md5-cache/dev-ruby/backports-3.21.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/marcandre/backports/archive/v3.21.0.tar.gz -> backports-3.21.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a6c34d6e9c8d7f30f51e4a322ae28bb8 diff --git a/metadata/md5-cache/dev-ruby/backports-3.23.0 b/metadata/md5-cache/dev-ruby/backports-3.23.0 index e9c25efbb6d6..7eb47f174e27 100644 --- a/metadata/md5-cache/dev-ruby/backports-3.23.0 +++ b/metadata/md5-cache/dev-ruby/backports-3.23.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/marcandre/backports/archive/v3.23.0.tar.gz -> backports-3.23.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6c08c8340efdaeb7f207fa632fab64ee diff --git a/metadata/md5-cache/dev-ruby/bacon-1.2.0-r3 b/metadata/md5-cache/dev-ruby/bacon-1.2.0-r3 index ff22633ba3a1..14bf9c8d35c6 100644 --- a/metadata/md5-cache/dev-ruby/bacon-1.2.0-r3 +++ b/metadata/md5-cache/dev-ruby/bacon-1.2.0-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bacon-1.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=161f67045477fc0156db2397d4332210 diff --git a/metadata/md5-cache/dev-ruby/bacon-1.2.0-r4 b/metadata/md5-cache/dev-ruby/bacon-1.2.0-r4 index c8c322b872c4..bc23d706dae5 100644 --- a/metadata/md5-cache/dev-ruby/bacon-1.2.0-r4 +++ b/metadata/md5-cache/dev-ruby/bacon-1.2.0-r4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bacon-1.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a106c850c825dfbd11c54956f867eef6 diff --git a/metadata/md5-cache/dev-ruby/barby-0.6.8 b/metadata/md5-cache/dev-ruby/barby-0.6.8 index e7fa442c7699..44e1ad1f7981 100644 --- a/metadata/md5-cache/dev-ruby/barby-0.6.8 +++ b/metadata/md5-cache/dev-ruby/barby-0.6.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) prawn? ( test ) SLOT=0 SRC_URI=https://github.com/toretore/barby/archive/v0.6.8.tar.gz -> barby-0.6.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0ca5aa1890a31535de486d464744cb6e diff --git a/metadata/md5-cache/dev-ruby/base32-0.3.4 b/metadata/md5-cache/dev-ruby/base32-0.3.4 index 1b6eff2c08ad..4325130317a3 100644 --- a/metadata/md5-cache/dev-ruby/base32-0.3.4 +++ b/metadata/md5-cache/dev-ruby/base32-0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/base32-0.3.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c2ad98d96169e9dd8fe48a448e1a8086 diff --git a/metadata/md5-cache/dev-ruby/base32-0.3.4-r1 b/metadata/md5-cache/dev-ruby/base32-0.3.4-r1 index 9e7a5ff47fbb..e228eea1d7b9 100644 --- a/metadata/md5-cache/dev-ruby/base32-0.3.4-r1 +++ b/metadata/md5-cache/dev-ruby/base32-0.3.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/base32-0.3.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b53d7eb7280f67f74f71fccc9d735418 diff --git a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16 b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16 index 6381b023daa6..ce7f6efd02bd 100644 --- a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16 +++ b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bcrypt-3.1.16.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cb2c00c52c7f765a05f7aa1c37b957f2 diff --git a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16-r1 b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16-r1 index 035c90dc214e..f8f695854da2 100644 --- a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16-r1 +++ b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bcrypt-3.1.16.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a44b942d381778a683d5b025cf644f6b diff --git a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16-r2 b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16-r2 index 67d352738181..3d3f779840e4 100644 --- a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16-r2 +++ b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.16-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bcrypt-3.1.16.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7a1fe2b1a5c846edf5d6bfe65740ea81 diff --git a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.17 b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.17 index 10d849246044..7cfaed727372 100644 --- a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.17 +++ b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.17 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bcrypt-3.1.17.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=92258831e960e11a8e22c8cb6fc1e16e diff --git a/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.1.0-r1 b/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.1.0-r1 index 06ddbbf438ac..12532b4198eb 100644 --- a/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/bcrypt_pbkdf-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3e44c8bf197978b0c82252b7b9b6a37a diff --git a/metadata/md5-cache/dev-ruby/benchmark-ips-2.10.0 b/metadata/md5-cache/dev-ruby/benchmark-ips-2.10.0 index 3e71b0a6fc6e..5bf58feea320 100644 --- a/metadata/md5-cache/dev-ruby/benchmark-ips-2.10.0 +++ b/metadata/md5-cache/dev-ruby/benchmark-ips-2.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/evanphx/benchmark-ips/archive/v2.10.0.tar.gz -> benchmark-ips-2.10.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=04b7a88576a31a5beae8462cd8e40230 diff --git a/metadata/md5-cache/dev-ruby/benchmark-ips-2.9.2 b/metadata/md5-cache/dev-ruby/benchmark-ips-2.9.2 index e778e84d155e..65b05885723a 100644 --- a/metadata/md5-cache/dev-ruby/benchmark-ips-2.9.2 +++ b/metadata/md5-cache/dev-ruby/benchmark-ips-2.9.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/benchmark-ips-2.9.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ca1a5a6afd6dd5d56fa60f823f1679bf diff --git a/metadata/md5-cache/dev-ruby/best_in_place-3.1.1 b/metadata/md5-cache/dev-ruby/best_in_place-3.1.1 index 67b3b4e14971..1975a38158bf 100644 --- a/metadata/md5-cache/dev-ruby/best_in_place-3.1.1 +++ b/metadata/md5-cache/dev-ruby/best_in_place-3.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/best_in_place-3.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=0b8a87fc7deedaadeed23215137bdf52 diff --git a/metadata/md5-cache/dev-ruby/bindata-2.4.10 b/metadata/md5-cache/dev-ruby/bindata-2.4.10 index 5f626b0c4c32..2b4744e5e0c9 100644 --- a/metadata/md5-cache/dev-ruby/bindata-2.4.10 +++ b/metadata/md5-cache/dev-ruby/bindata-2.4.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bindata-2.4.10.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=21f7c40d87a0bed9d38c5d7a4237c1a4 diff --git a/metadata/md5-cache/dev-ruby/bindex-0.8.1-r1 b/metadata/md5-cache/dev-ruby/bindex-0.8.1-r1 index 0745344e303e..4bb8d34ac48f 100644 --- a/metadata/md5-cache/dev-ruby/bindex-0.8.1-r1 +++ b/metadata/md5-cache/dev-ruby/bindex-0.8.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bindex-0.8.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=433c12a37971feabf5802e1f298131d8 diff --git a/metadata/md5-cache/dev-ruby/binding_of_caller-0.8.0 b/metadata/md5-cache/dev-ruby/binding_of_caller-0.8.0 index 11251f2f1d86..674fbfc50cf1 100644 --- a/metadata/md5-cache/dev-ruby/binding_of_caller-0.8.0 +++ b/metadata/md5-cache/dev-ruby/binding_of_caller-0.8.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/binding_of_caller-0.8.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6a021ba52947a797906d593feee4b375 diff --git a/metadata/md5-cache/dev-ruby/binding_of_caller-1.0.0 b/metadata/md5-cache/dev-ruby/binding_of_caller-1.0.0 index 2ee4b64aed4d..9bfd5e7f7442 100644 --- a/metadata/md5-cache/dev-ruby/binding_of_caller-1.0.0 +++ b/metadata/md5-cache/dev-ruby/binding_of_caller-1.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/banister/binding_of_caller/archive/v1.0.0.tar.gz -> binding_of_caller-1.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4c447bb2908bfd9cb2964af2bea3040a diff --git a/metadata/md5-cache/dev-ruby/binding_of_caller-1.0.0-r1 b/metadata/md5-cache/dev-ruby/binding_of_caller-1.0.0-r1 index 4cfbb49e9360..5707d23573f5 100644 --- a/metadata/md5-cache/dev-ruby/binding_of_caller-1.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/binding_of_caller-1.0.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/banister/binding_of_caller/archive/v1.0.0.tar.gz -> binding_of_caller-1.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d55eb4e3260031446c3a822a589a5f15 diff --git a/metadata/md5-cache/dev-ruby/bit-struct-0.16 b/metadata/md5-cache/dev-ruby/bit-struct-0.16 index 26d4f7ffd19a..a33babf87507 100644 --- a/metadata/md5-cache/dev-ruby/bit-struct-0.16 +++ b/metadata/md5-cache/dev-ruby/bit-struct-0.16 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bit-struct-0.16.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f2f38651d88302f3c7429b91143c905a diff --git a/metadata/md5-cache/dev-ruby/bit-struct-0.17 b/metadata/md5-cache/dev-ruby/bit-struct-0.17 index 1006d8f62a5c..79ec9b63773f 100644 --- a/metadata/md5-cache/dev-ruby/bit-struct-0.17 +++ b/metadata/md5-cache/dev-ruby/bit-struct-0.17 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bit-struct-0.17.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a17ca17abc713fbdf65e37418783f3b8 diff --git a/metadata/md5-cache/dev-ruby/blankslate-3.1.3-r1 b/metadata/md5-cache/dev-ruby/blankslate-3.1.3-r1 index 7eb9cba4a995..3b15bfaa1e0c 100644 --- a/metadata/md5-cache/dev-ruby/blankslate-3.1.3-r1 +++ b/metadata/md5-cache/dev-ruby/blankslate-3.1.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/blankslate-3.1.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=82eb522c4e8d4750be1f66a386f84494 diff --git a/metadata/md5-cache/dev-ruby/blinkstick-1.0.1_p20150901 b/metadata/md5-cache/dev-ruby/blinkstick-1.0.1_p20150901 index 5a34946212d8..5fb0eeb7eac9 100644 --- a/metadata/md5-cache/dev-ruby/blinkstick-1.0.1_p20150901 +++ b/metadata/md5-cache/dev-ruby/blinkstick-1.0.1_p20150901 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/arvydas/blinkstick-ruby/archive/89e3f621132c2571d5f7c636b3962ff1b0a64564.tar.gz -> blinkstick-1.0.1_p20150901.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4e8c1a65a1c7b94447ee7b3f6f14cd35 diff --git a/metadata/md5-cache/dev-ruby/bogus-0.1.6 b/metadata/md5-cache/dev-ruby/bogus-0.1.6 index ca44e6e2ff57..4dea7afc65da 100644 --- a/metadata/md5-cache/dev-ruby/bogus-0.1.6 +++ b/metadata/md5-cache/dev-ruby/bogus-0.1.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bogus-0.1.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=59c595f2f353eb045efdb540dd6c9a3d diff --git a/metadata/md5-cache/dev-ruby/brass-1.2.1-r1 b/metadata/md5-cache/dev-ruby/brass-1.2.1-r1 index 54a3337ce086..274472cd665c 100644 --- a/metadata/md5-cache/dev-ruby/brass-1.2.1-r1 +++ b/metadata/md5-cache/dev-ruby/brass-1.2.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/brass-1.2.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=553c842c3b8fc5fd3228639eaa1a10f6 diff --git a/metadata/md5-cache/dev-ruby/brotli-0.4.0-r1 b/metadata/md5-cache/dev-ruby/brotli-0.4.0-r1 index 3155ee96e34a..8a634f6066ec 100644 --- a/metadata/md5-cache/dev-ruby/brotli-0.4.0-r1 +++ b/metadata/md5-cache/dev-ruby/brotli-0.4.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/miyucy/brotli/archive/v0.4.0.tar.gz -> brotli-0.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3099c1bd8897ebe47d506b94cc052cd4 diff --git a/metadata/md5-cache/dev-ruby/brotli-0.4.0-r2 b/metadata/md5-cache/dev-ruby/brotli-0.4.0-r2 index d6bdf37fea57..302e6ce47746 100644 --- a/metadata/md5-cache/dev-ruby/brotli-0.4.0-r2 +++ b/metadata/md5-cache/dev-ruby/brotli-0.4.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/miyucy/brotli/archive/v0.4.0.tar.gz -> brotli-0.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1b373a1ea70539dc2583c423733ba063 diff --git a/metadata/md5-cache/dev-ruby/bsearch-1.5.0-r3 b/metadata/md5-cache/dev-ruby/bsearch-1.5.0-r3 index 3227c9565301..3ffcb49f972a 100644 --- a/metadata/md5-cache/dev-ruby/bsearch-1.5.0-r3 +++ b/metadata/md5-cache/dev-ruby/bsearch-1.5.0-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bsearch-1.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7d97485df9fafbab66275bbc8d902611 diff --git a/metadata/md5-cache/dev-ruby/bson-4.12.0 b/metadata/md5-cache/dev-ruby/bson-4.12.0 index 755b06d09232..49d1a267cf9a 100644 --- a/metadata/md5-cache/dev-ruby/bson-4.12.0 +++ b/metadata/md5-cache/dev-ruby/bson-4.12.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/mongodb/bson-ruby/archive/v4.12.0.tar.gz -> bson-4.12.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=abdd61a9a2a1333860f2db5fedea37a5 diff --git a/metadata/md5-cache/dev-ruby/buftok-0.2.0-r2 b/metadata/md5-cache/dev-ruby/buftok-0.2.0-r2 index 7026f4266840..dfb22f456366 100644 --- a/metadata/md5-cache/dev-ruby/buftok-0.2.0-r2 +++ b/metadata/md5-cache/dev-ruby/buftok-0.2.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/buftok-0.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4ff448d507e3736d41a1cfd18704a7e5 diff --git a/metadata/md5-cache/dev-ruby/buftok-0.3.0 b/metadata/md5-cache/dev-ruby/buftok-0.3.0 index 3798572bc103..a81c75d05644 100644 --- a/metadata/md5-cache/dev-ruby/buftok-0.3.0 +++ b/metadata/md5-cache/dev-ruby/buftok-0.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/sferik/buftok/archive/v0.3.0.tar.gz -> buftok-0.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=43f7405165ebc6a3c43252ecf62e284b diff --git a/metadata/md5-cache/dev-ruby/builder-3.2.4 b/metadata/md5-cache/dev-ruby/builder-3.2.4 index e2bfc9bcade5..652be02858c4 100644 --- a/metadata/md5-cache/dev-ruby/builder-3.2.4 +++ b/metadata/md5-cache/dev-ruby/builder-3.2.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3.2 SRC_URI=https://rubygems.org/gems/builder-3.2.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d3063ed78578972e78c45e8fe776bace diff --git a/metadata/md5-cache/dev-ruby/builder-3.2.4-r1 b/metadata/md5-cache/dev-ruby/builder-3.2.4-r1 index be2a262bba0f..758f92cf899e 100644 --- a/metadata/md5-cache/dev-ruby/builder-3.2.4-r1 +++ b/metadata/md5-cache/dev-ruby/builder-3.2.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=3.2 SRC_URI=https://rubygems.org/gems/builder-3.2.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3ebec62022550e49160c8da0005b3ab1 diff --git a/metadata/md5-cache/dev-ruby/bundler-2.1.4 b/metadata/md5-cache/dev-ruby/bundler-2.1.4 index bca853efcbf0..e0c5ae224e0c 100644 --- a/metadata/md5-cache/dev-ruby/bundler-2.1.4 +++ b/metadata/md5-cache/dev-ruby/bundler-2.1.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bundler-2.1.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ed0691f5beb053e0ceec368550b02e99 diff --git a/metadata/md5-cache/dev-ruby/bundler-2.2.18 b/metadata/md5-cache/dev-ruby/bundler-2.2.18 index ff8b9a80362f..285da27132b9 100644 --- a/metadata/md5-cache/dev-ruby/bundler-2.2.18 +++ b/metadata/md5-cache/dev-ruby/bundler-2.2.18 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bundler-2.2.18.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b744f9146e12cf32f88ad918ee35af9b diff --git a/metadata/md5-cache/dev-ruby/bundler-2.2.24 b/metadata/md5-cache/dev-ruby/bundler-2.2.24 index e1219b2ca20f..692543aabfae 100644 --- a/metadata/md5-cache/dev-ruby/bundler-2.2.24 +++ b/metadata/md5-cache/dev-ruby/bundler-2.2.24 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bundler-2.2.24.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc6d88928b859de1a74a9e6b034360a7 diff --git a/metadata/md5-cache/dev-ruby/bundler-2.2.25 b/metadata/md5-cache/dev-ruby/bundler-2.2.25 index 3e9afbe9b641..b66ec812a192 100644 --- a/metadata/md5-cache/dev-ruby/bundler-2.2.25 +++ b/metadata/md5-cache/dev-ruby/bundler-2.2.25 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bundler-2.2.25.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc6d88928b859de1a74a9e6b034360a7 diff --git a/metadata/md5-cache/dev-ruby/bundler-2.2.29 b/metadata/md5-cache/dev-ruby/bundler-2.2.29 index a2ac2b54351b..c033b3d2ebe0 100644 --- a/metadata/md5-cache/dev-ruby/bundler-2.2.29 +++ b/metadata/md5-cache/dev-ruby/bundler-2.2.29 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bundler-2.2.29.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc6d88928b859de1a74a9e6b034360a7 diff --git a/metadata/md5-cache/dev-ruby/bundler-2.2.31 b/metadata/md5-cache/dev-ruby/bundler-2.2.31 index 541789613248..814cb8d0fb45 100644 --- a/metadata/md5-cache/dev-ruby/bundler-2.2.31 +++ b/metadata/md5-cache/dev-ruby/bundler-2.2.31 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bundler-2.2.31.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc6d88928b859de1a74a9e6b034360a7 diff --git a/metadata/md5-cache/dev-ruby/bundler-2.2.33 b/metadata/md5-cache/dev-ruby/bundler-2.2.33 index a616c60fa7c9..e89547f936b2 100644 --- a/metadata/md5-cache/dev-ruby/bundler-2.2.33 +++ b/metadata/md5-cache/dev-ruby/bundler-2.2.33 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bundler-2.2.33.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=11e43a50e3c16f5f43da4c3a5529babd diff --git a/metadata/md5-cache/dev-ruby/bundler-2.3.8 b/metadata/md5-cache/dev-ruby/bundler-2.3.8 index 6592716b28d9..4205c74cca3f 100644 --- a/metadata/md5-cache/dev-ruby/bundler-2.3.8 +++ b/metadata/md5-cache/dev-ruby/bundler-2.3.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bundler-2.3.8.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fa676643715f1cfccfb680d97a63352c diff --git a/metadata/md5-cache/dev-ruby/bundler-audit-0.8.0 b/metadata/md5-cache/dev-ruby/bundler-audit-0.8.0 index c3baa3ba0f89..8439c93bddc3 100644 --- a/metadata/md5-cache/dev-ruby/bundler-audit-0.8.0 +++ b/metadata/md5-cache/dev-ruby/bundler-audit-0.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/bundler-audit-0.8.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=049305a657a468961c284607c6b87ade diff --git a/metadata/md5-cache/dev-ruby/bundler-audit-0.9.0.1 b/metadata/md5-cache/dev-ruby/bundler-audit-0.9.0.1 index 5427ed0ad9b9..1e10430aafd1 100644 --- a/metadata/md5-cache/dev-ruby/bundler-audit-0.9.0.1 +++ b/metadata/md5-cache/dev-ruby/bundler-audit-0.9.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bundler-audit-0.9.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bbe7252eddae4622000fb12155130a80 diff --git a/metadata/md5-cache/dev-ruby/bunny-2.17.0 b/metadata/md5-cache/dev-ruby/bunny-2.17.0 index 968eb25af34a..b21e04abe6bc 100644 --- a/metadata/md5-cache/dev-ruby/bunny-2.17.0 +++ b/metadata/md5-cache/dev-ruby/bunny-2.17.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bunny-2.17.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=592a6e5085246a75237cc06fbae15048 diff --git a/metadata/md5-cache/dev-ruby/bunny-2.19.0 b/metadata/md5-cache/dev-ruby/bunny-2.19.0 index a4906c0c100f..9fba986a41bd 100644 --- a/metadata/md5-cache/dev-ruby/bunny-2.19.0 +++ b/metadata/md5-cache/dev-ruby/bunny-2.19.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-amqp/bunny/archive/2.19.0.tar.gz -> bunny-2.19.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b15c420e09fc180f75ce3c56b3445b56 diff --git a/metadata/md5-cache/dev-ruby/c21e-1.2.1 b/metadata/md5-cache/dev-ruby/c21e-1.2.1 index d35fd45757ed..d945da147efc 100644 --- a/metadata/md5-cache/dev-ruby/c21e-1.2.1 +++ b/metadata/md5-cache/dev-ruby/c21e-1.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/c21e-1.2.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9717be0a0a6702534e6caa56c45b5061 diff --git a/metadata/md5-cache/dev-ruby/c21e-2.0.0 b/metadata/md5-cache/dev-ruby/c21e-2.0.0 index e772bb186f01..358e5dd80f6f 100644 --- a/metadata/md5-cache/dev-ruby/c21e-2.0.0 +++ b/metadata/md5-cache/dev-ruby/c21e-2.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/c21e-2.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0077cde892ca93615f6f62c100cc2d0a diff --git a/metadata/md5-cache/dev-ruby/capistrano-2.15.5-r3 b/metadata/md5-cache/dev-ruby/capistrano-2.15.5-r3 index c8d27f754d77..70cd56455833 100644 --- a/metadata/md5-cache/dev-ruby/capistrano-2.15.5-r3 +++ b/metadata/md5-cache/dev-ruby/capistrano-2.15.5-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/capistrano-2.15.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7ef59e2e06f2c172b9db01405afc85c4 diff --git a/metadata/md5-cache/dev-ruby/capistrano-3.16.0 b/metadata/md5-cache/dev-ruby/capistrano-3.16.0 index 096282947cfa..4aeb19477985 100644 --- a/metadata/md5-cache/dev-ruby/capistrano-3.16.0 +++ b/metadata/md5-cache/dev-ruby/capistrano-3.16.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/capistrano-3.16.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7514fdb6dc49300e69eb520d68e09a97 diff --git a/metadata/md5-cache/dev-ruby/capybara-3.35.3 b/metadata/md5-cache/dev-ruby/capybara-3.35.3 index 81450188083b..68f811e76523 100644 --- a/metadata/md5-cache/dev-ruby/capybara-3.35.3 +++ b/metadata/md5-cache/dev-ruby/capybara-3.35.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/capybara-3.35.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=99b4d745bb1022b9bd2a0e33e932ee5e diff --git a/metadata/md5-cache/dev-ruby/capybara-3.36.0 b/metadata/md5-cache/dev-ruby/capybara-3.36.0 index 091a2b0fb03d..46d054b14aca 100644 --- a/metadata/md5-cache/dev-ruby/capybara-3.36.0 +++ b/metadata/md5-cache/dev-ruby/capybara-3.36.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/capybara-3.36.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=fbfe13e31b239f50563dbbe05a8e8d64 diff --git a/metadata/md5-cache/dev-ruby/certificate_authority-1.0.0 b/metadata/md5-cache/dev-ruby/certificate_authority-1.0.0 index 03f771743bef..ecbcbacf8849 100644 --- a/metadata/md5-cache/dev-ruby/certificate_authority-1.0.0 +++ b/metadata/md5-cache/dev-ruby/certificate_authority-1.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/cchandler/certificate_authority/archive/v1.0.0.tar.gz -> certificate_authority-1.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=be0ea14226b463da3de9fd4b1a1f2114 diff --git a/metadata/md5-cache/dev-ruby/certified-1.0.0 b/metadata/md5-cache/dev-ruby/certified-1.0.0 index acc9dbc8a5b7..7b5d6002272f 100644 --- a/metadata/md5-cache/dev-ruby/certified-1.0.0 +++ b/metadata/md5-cache/dev-ruby/certified-1.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/certified-1.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d663a75cc7195a9315608c3bcd6da354 diff --git a/metadata/md5-cache/dev-ruby/charlock_holmes-0.7.7-r1 b/metadata/md5-cache/dev-ruby/charlock_holmes-0.7.7-r1 index ee75cb55b157..4dc04bf81fd6 100644 --- a/metadata/md5-cache/dev-ruby/charlock_holmes-0.7.7-r1 +++ b/metadata/md5-cache/dev-ruby/charlock_holmes-0.7.7-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/brianmario/charlock_holmes/archive/v0.7.7.tar.gz -> charlock_holmes-0.7.7.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=45dda7f6ff420055023ce423d396da00 diff --git a/metadata/md5-cache/dev-ruby/childlabor-0.0.3-r2 b/metadata/md5-cache/dev-ruby/childlabor-0.0.3-r2 index 056564fe8e2e..aca2627e4838 100644 --- a/metadata/md5-cache/dev-ruby/childlabor-0.0.3-r2 +++ b/metadata/md5-cache/dev-ruby/childlabor-0.0.3-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/carllerche/childlabor/archive/6518b939dddbad20c7f05aa075d76e3ca6e70447.tar.gz -> childlabor-0.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=48ff63f2beeb0f7bc2f4733e6626edbc diff --git a/metadata/md5-cache/dev-ruby/childprocess-3.0.0 b/metadata/md5-cache/dev-ruby/childprocess-3.0.0 index fd8c17ef2dcc..711a02252cc6 100644 --- a/metadata/md5-cache/dev-ruby/childprocess-3.0.0 +++ b/metadata/md5-cache/dev-ruby/childprocess-3.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/childprocess-3.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d079a96b9bd825c31cd4ece7afc3d3ea diff --git a/metadata/md5-cache/dev-ruby/childprocess-4.0.0 b/metadata/md5-cache/dev-ruby/childprocess-4.0.0 index ae0e533d47a8..742e20e00fce 100644 --- a/metadata/md5-cache/dev-ruby/childprocess-4.0.0 +++ b/metadata/md5-cache/dev-ruby/childprocess-4.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/childprocess-4.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4b2511c89818a146ce84aa9c27b359ee diff --git a/metadata/md5-cache/dev-ruby/childprocess-4.1.0 b/metadata/md5-cache/dev-ruby/childprocess-4.1.0 index 529aa5db1994..1f54761c060e 100644 --- a/metadata/md5-cache/dev-ruby/childprocess-4.1.0 +++ b/metadata/md5-cache/dev-ruby/childprocess-4.1.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Solution for controlling external programs running in the background EAPI=7 HOMEPAGE=https://github.com/jarib/childprocess -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/childprocess-4.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=2888671f94e40534c7874ca45b806191 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=fa0cf8629c08b9878e5b5301a67e9ca3 diff --git a/metadata/md5-cache/dev-ruby/chronic-0.10.2-r1 b/metadata/md5-cache/dev-ruby/chronic-0.10.2-r1 index 9b098c28ca11..b2f7b04078e4 100644 --- a/metadata/md5-cache/dev-ruby/chronic-0.10.2-r1 +++ b/metadata/md5-cache/dev-ruby/chronic-0.10.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/chronic-0.10.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c3e989dca5b8981f06de95d74c4d413d diff --git a/metadata/md5-cache/dev-ruby/chunky_png-1.3.14 b/metadata/md5-cache/dev-ruby/chunky_png-1.3.14 index 51548bd72d00..837088619e53 100644 --- a/metadata/md5-cache/dev-ruby/chunky_png-1.3.14 +++ b/metadata/md5-cache/dev-ruby/chunky_png-1.3.14 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/chunky_png-1.3.14.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=95febf380b3039bcfdc60bb639689acc diff --git a/metadata/md5-cache/dev-ruby/chunky_png-1.3.15 b/metadata/md5-cache/dev-ruby/chunky_png-1.3.15 index 8edb28a3142f..dc94a3e03120 100644 --- a/metadata/md5-cache/dev-ruby/chunky_png-1.3.15 +++ b/metadata/md5-cache/dev-ruby/chunky_png-1.3.15 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/chunky_png-1.3.15.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=95febf380b3039bcfdc60bb639689acc diff --git a/metadata/md5-cache/dev-ruby/chunky_png-1.4.0 b/metadata/md5-cache/dev-ruby/chunky_png-1.4.0 index 25c74f636dcf..5172d54d181d 100644 --- a/metadata/md5-cache/dev-ruby/chunky_png-1.4.0 +++ b/metadata/md5-cache/dev-ruby/chunky_png-1.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/chunky_png-1.4.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d1e0ca7ab7fcd96eb88ebed32cddd37a diff --git a/metadata/md5-cache/dev-ruby/cinch-2.3.4 b/metadata/md5-cache/dev-ruby/cinch-2.3.4 index 5daf1e8e5427..7f1c1863a0a9 100644 --- a/metadata/md5-cache/dev-ruby/cinch-2.3.4 +++ b/metadata/md5-cache/dev-ruby/cinch-2.3.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cinch-2.3.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=61484bc5941103f2c3927e13a9460347 diff --git a/metadata/md5-cache/dev-ruby/classifier-reborn-2.2.0 b/metadata/md5-cache/dev-ruby/classifier-reborn-2.2.0 index 3d62f3422006..7988dee10815 100644 --- a/metadata/md5-cache/dev-ruby/classifier-reborn-2.2.0 +++ b/metadata/md5-cache/dev-ruby/classifier-reborn-2.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jekyll/classifier-reborn/archive/v2.2.0.tar.gz -> classifier-reborn-2.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d0b44f34e45109e87ace7ed1ef7438f8 diff --git a/metadata/md5-cache/dev-ruby/climate_control-0.2.0 b/metadata/md5-cache/dev-ruby/climate_control-0.2.0 index e6dd7c3348a3..189fd6a0fe77 100644 --- a/metadata/md5-cache/dev-ruby/climate_control-0.2.0 +++ b/metadata/md5-cache/dev-ruby/climate_control-0.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/climate_control-0.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0fee330e349709e77ec8f16c9d84ff05 diff --git a/metadata/md5-cache/dev-ruby/cliver-0.3.2-r1 b/metadata/md5-cache/dev-ruby/cliver-0.3.2-r1 index d83c43506963..8e8ad8b7bce3 100644 --- a/metadata/md5-cache/dev-ruby/cliver-0.3.2-r1 +++ b/metadata/md5-cache/dev-ruby/cliver-0.3.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/yaauie/cliver/archive/3d72e99af19c273a3f88adcd4b96c4b65b1b6d4b.tar.gz -> cliver-0.3.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=deaf7451e52527f028ed57d7ba61b8c9 diff --git a/metadata/md5-cache/dev-ruby/cmdparse-3.0.7 b/metadata/md5-cache/dev-ruby/cmdparse-3.0.7 index 8a76282b184c..155094214081 100644 --- a/metadata/md5-cache/dev-ruby/cmdparse-3.0.7 +++ b/metadata/md5-cache/dev-ruby/cmdparse-3.0.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/cmdparse-3.0.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=665cc636b8945097714b47fe8237ed54 diff --git a/metadata/md5-cache/dev-ruby/cmdparse-3.0.7-r1 b/metadata/md5-cache/dev-ruby/cmdparse-3.0.7-r1 index 32ab6fcea172..d1fced1d05e0 100644 --- a/metadata/md5-cache/dev-ruby/cmdparse-3.0.7-r1 +++ b/metadata/md5-cache/dev-ruby/cmdparse-3.0.7-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/cmdparse-3.0.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c447a1f32e61b83f302700a8f0a4bc45 diff --git a/metadata/md5-cache/dev-ruby/coderay-1.1.2 b/metadata/md5-cache/dev-ruby/coderay-1.1.2 index 289e34254200..f3092f383142 100644 --- a/metadata/md5-cache/dev-ruby/coderay-1.1.2 +++ b/metadata/md5-cache/dev-ruby/coderay-1.1.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rubychan/coderay/archive/v1.1.2.tar.gz -> coderay-1.1.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=480c8b0df3d3f53635db0a1f1caa03b2 diff --git a/metadata/md5-cache/dev-ruby/coderay-1.1.3-r1 b/metadata/md5-cache/dev-ruby/coderay-1.1.3-r1 index 0ba479c82d11..6ac7285a936a 100644 --- a/metadata/md5-cache/dev-ruby/coderay-1.1.3-r1 +++ b/metadata/md5-cache/dev-ruby/coderay-1.1.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rubychan/coderay/archive/v1.1.3.tar.gz -> coderay-1.1.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4494e3f5fd666bfd58272c428b6e7721 diff --git a/metadata/md5-cache/dev-ruby/coderay-1.1.3-r2 b/metadata/md5-cache/dev-ruby/coderay-1.1.3-r2 index 3a4a4a7834cf..19e84c7e4869 100644 --- a/metadata/md5-cache/dev-ruby/coderay-1.1.3-r2 +++ b/metadata/md5-cache/dev-ruby/coderay-1.1.3-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rubychan/coderay/archive/v1.1.3.tar.gz -> coderay-1.1.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ba371421cd858bed5de018b6de06778e diff --git a/metadata/md5-cache/dev-ruby/coercible-1.0.0-r1 b/metadata/md5-cache/dev-ruby/coercible-1.0.0-r1 index cef5ed7e0d63..7d1b6c2b9503 100644 --- a/metadata/md5-cache/dev-ruby/coercible-1.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/coercible-1.0.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/coercible-1.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a2035b78fafe7e0d816164f4fba1c23e diff --git a/metadata/md5-cache/dev-ruby/coffee-rails-5.0.0-r1 b/metadata/md5-cache/dev-ruby/coffee-rails-5.0.0-r1 index 662fda767959..14b7045bdc9a 100644 --- a/metadata/md5-cache/dev-ruby/coffee-rails-5.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/coffee-rails-5.0.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.0 SRC_URI=https://github.com/rails/coffee-rails/archive/v5.0.0.tar.gz -> coffee-rails-5.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c732feb8b2181048576bd3bcc517c913 diff --git a/metadata/md5-cache/dev-ruby/coffee-script-2.4.1 b/metadata/md5-cache/dev-ruby/coffee-script-2.4.1 index 0ca32dcfebcd..e9e06b657676 100644 --- a/metadata/md5-cache/dev-ruby/coffee-script-2.4.1 +++ b/metadata/md5-cache/dev-ruby/coffee-script-2.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/coffee-script-2.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8cfaa006a1c99a6ed16c66b10eedaed6 diff --git a/metadata/md5-cache/dev-ruby/coffee-script-source-1.12.2-r1 b/metadata/md5-cache/dev-ruby/coffee-script-source-1.12.2-r1 index e7756804ec04..0632b302ab69 100644 --- a/metadata/md5-cache/dev-ruby/coffee-script-source-1.12.2-r1 +++ b/metadata/md5-cache/dev-ruby/coffee-script-source-1.12.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/coffee-script-source-1.12.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=90246645fba1f4db4bb2817085405f6d diff --git a/metadata/md5-cache/dev-ruby/color-1.8-r1 b/metadata/md5-cache/dev-ruby/color-1.8-r1 index 9a6271e1a81a..ee669981a6df 100644 --- a/metadata/md5-cache/dev-ruby/color-1.8-r1 +++ b/metadata/md5-cache/dev-ruby/color-1.8-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/halostatue/color/archive/v1.8.tar.gz -> color-1.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b4ce3eb6ee37d04cfabd89c83282dc4f diff --git a/metadata/md5-cache/dev-ruby/colorator-1.1.0-r1 b/metadata/md5-cache/dev-ruby/colorator-1.1.0-r1 index 158e3fccfab3..63d7693b6a13 100644 --- a/metadata/md5-cache/dev-ruby/colorator-1.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/colorator-1.1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/octopress/colorator/archive/v1.1.0.tar.gz -> colorator-1.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=154f10be5894d5f91015c3c628e7458e diff --git a/metadata/md5-cache/dev-ruby/colored-1.2-r1 b/metadata/md5-cache/dev-ruby/colored-1.2-r1 index 08d42a43051e..489068ebe4a5 100644 --- a/metadata/md5-cache/dev-ruby/colored-1.2-r1 +++ b/metadata/md5-cache/dev-ruby/colored-1.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/colored-1.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=27d4db0ec0bd95d825fa78343ad4f54b diff --git a/metadata/md5-cache/dev-ruby/colored2-3.1.2 b/metadata/md5-cache/dev-ruby/colored2-3.1.2 index a1370e8d084e..dca39fe12075 100644 --- a/metadata/md5-cache/dev-ruby/colored2-3.1.2 +++ b/metadata/md5-cache/dev-ruby/colored2-3.1.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/colored2-3.1.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ee7ccd2b7b3c1f4935ca038c38732f1f diff --git a/metadata/md5-cache/dev-ruby/colorize-0.8.1-r1 b/metadata/md5-cache/dev-ruby/colorize-0.8.1-r1 index 4ccc784595fc..121780b983e6 100644 --- a/metadata/md5-cache/dev-ruby/colorize-0.8.1-r1 +++ b/metadata/md5-cache/dev-ruby/colorize-0.8.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/colorize-0.8.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8c5e85a9f47b75358c0bfb4de5962a7e diff --git a/metadata/md5-cache/dev-ruby/columnize-0.9.0-r1 b/metadata/md5-cache/dev-ruby/columnize-0.9.0-r1 index 5adbb6ceff22..d4a659f224e7 100644 --- a/metadata/md5-cache/dev-ruby/columnize-0.9.0-r1 +++ b/metadata/md5-cache/dev-ruby/columnize-0.9.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/columnize-0.9.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=495fabdf70145aaed275dd5e7d6d727a diff --git a/metadata/md5-cache/dev-ruby/combustion-1.3.4 b/metadata/md5-cache/dev-ruby/combustion-1.3.4 index 60ad13f8e935..b5bacfe2835b 100644 --- a/metadata/md5-cache/dev-ruby/combustion-1.3.4 +++ b/metadata/md5-cache/dev-ruby/combustion-1.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/combustion-1.3.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=77394421606ccc6b3791b21a48ca8d39 diff --git a/metadata/md5-cache/dev-ruby/combustion-1.3.5 b/metadata/md5-cache/dev-ruby/combustion-1.3.5 index 54f1a28e0bd5..0a86ff990383 100644 --- a/metadata/md5-cache/dev-ruby/combustion-1.3.5 +++ b/metadata/md5-cache/dev-ruby/combustion-1.3.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/combustion-1.3.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=78ce9605e02e172c6b1c81909f438702 diff --git a/metadata/md5-cache/dev-ruby/commander-4.5.2 b/metadata/md5-cache/dev-ruby/commander-4.5.2 index e9cba77a51ab..c08a36b44401 100644 --- a/metadata/md5-cache/dev-ruby/commander-4.5.2 +++ b/metadata/md5-cache/dev-ruby/commander-4.5.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/commander-4.5.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=61e3875443a7d1268a2020cb5c171f7f diff --git a/metadata/md5-cache/dev-ruby/commander-4.6.0 b/metadata/md5-cache/dev-ruby/commander-4.6.0 index 2fe1d2a7da3c..c9f6043eb3c2 100644 --- a/metadata/md5-cache/dev-ruby/commander-4.6.0 +++ b/metadata/md5-cache/dev-ruby/commander-4.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/commander-4.6.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3c0b312de2b01b547bd1ee4490dcc347 diff --git a/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.10 b/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.10 index 7c6fdb67d7fb..7ccf1a0d7d13 100644 --- a/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.10 +++ b/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ruby-concurrency/concurrent-ruby/archive/v1.1.10.tar.gz -> concurrent-ruby-1.1.10.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8ec717b81a56e37fe15939ce46aeb839 diff --git a/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.9 b/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.9 index 6cd1cd392e38..c2b87e745983 100644 --- a/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.9 +++ b/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ruby-concurrency/concurrent-ruby/archive/v1.1.9.tar.gz -> concurrent-ruby-1.1.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d15a525f2f98a3066fbdd509d4e0c884 diff --git a/metadata/md5-cache/dev-ruby/connection_pool-2.2.5 b/metadata/md5-cache/dev-ruby/connection_pool-2.2.5 index 78d0395d45d5..d99e41844f93 100644 --- a/metadata/md5-cache/dev-ruby/connection_pool-2.2.5 +++ b/metadata/md5-cache/dev-ruby/connection_pool-2.2.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/connection_pool-2.2.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5d5d4aeec180d834552e6e9be8662bab diff --git a/metadata/md5-cache/dev-ruby/contracts-0.16.0 b/metadata/md5-cache/dev-ruby/contracts-0.16.0 index 0b170f1c2c9c..559a292e18b9 100644 --- a/metadata/md5-cache/dev-ruby/contracts-0.16.0 +++ b/metadata/md5-cache/dev-ruby/contracts-0.16.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/contracts-0.16.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cef2e60aee1a747a6d74cf22ebbe964b diff --git a/metadata/md5-cache/dev-ruby/contracts-0.16.1 b/metadata/md5-cache/dev-ruby/contracts-0.16.1 index 393c9ac41577..e071fe1e16c1 100644 --- a/metadata/md5-cache/dev-ruby/contracts-0.16.1 +++ b/metadata/md5-cache/dev-ruby/contracts-0.16.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/contracts-0.16.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e67396e860ad6147f30f157c9ac405dc diff --git a/metadata/md5-cache/dev-ruby/contracts-0.17 b/metadata/md5-cache/dev-ruby/contracts-0.17 index c52dcdf7ee85..9a03fa67497d 100644 --- a/metadata/md5-cache/dev-ruby/contracts-0.17 +++ b/metadata/md5-cache/dev-ruby/contracts-0.17 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0.17 SRC_URI=https://rubygems.org/gems/contracts-0.17.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=840fde2dd81a71073cd85e75fcae0829 diff --git a/metadata/md5-cache/dev-ruby/coolio-1.7.1-r1 b/metadata/md5-cache/dev-ruby/coolio-1.7.1-r1 index a071587ca917..4d5a4ff2a16d 100644 --- a/metadata/md5-cache/dev-ruby/coolio-1.7.1-r1 +++ b/metadata/md5-cache/dev-ruby/coolio-1.7.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cool.io-1.7.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a5bc2e5163cd7e1537e51cd444e867da diff --git a/metadata/md5-cache/dev-ruby/countdownlatch-1.0.0-r2 b/metadata/md5-cache/dev-ruby/countdownlatch-1.0.0-r2 index d024c4f258e4..9fe8150ac353 100644 --- a/metadata/md5-cache/dev-ruby/countdownlatch-1.0.0-r2 +++ b/metadata/md5-cache/dev-ruby/countdownlatch-1.0.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/countdownlatch-1.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=53bb8ba298af3437a56746224f5ff94a diff --git a/metadata/md5-cache/dev-ruby/crack-0.4.4 b/metadata/md5-cache/dev-ruby/crack-0.4.4 index f2996c8fb5d2..360382f61bcb 100644 --- a/metadata/md5-cache/dev-ruby/crack-0.4.4 +++ b/metadata/md5-cache/dev-ruby/crack-0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jnunemaker/crack/archive/v0.4.4.tar.gz -> crack-0.4.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=45a380078cc3b533b6dfa2ef78900da3 diff --git a/metadata/md5-cache/dev-ruby/crass-1.0.6 b/metadata/md5-cache/dev-ruby/crass-1.0.6 index 95a37349d7a7..1f73ad8f3df0 100644 --- a/metadata/md5-cache/dev-ruby/crass-1.0.6 +++ b/metadata/md5-cache/dev-ruby/crass-1.0.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rgrove/crass/archive/v1.0.6.tar.gz -> crass-1.0.6.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e282adb0525d5791b829a83ceb7a9730 diff --git a/metadata/md5-cache/dev-ruby/crass-1.0.6-r1 b/metadata/md5-cache/dev-ruby/crass-1.0.6-r1 index 5e6222ba9bc6..ce29e0d03e48 100644 --- a/metadata/md5-cache/dev-ruby/crass-1.0.6-r1 +++ b/metadata/md5-cache/dev-ruby/crass-1.0.6-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rgrove/crass/archive/v1.0.6.tar.gz -> crass-1.0.6.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e88a9abcee2d9ab06811baeb691f092d diff --git a/metadata/md5-cache/dev-ruby/creole-0.5.0-r1 b/metadata/md5-cache/dev-ruby/creole-0.5.0-r1 index 718554282bb6..b7b824b6f7d3 100644 --- a/metadata/md5-cache/dev-ruby/creole-0.5.0-r1 +++ b/metadata/md5-cache/dev-ruby/creole-0.5.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/minad/creole/archive/v0.5.0.tar.gz -> creole-0.5.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d27440a28ff07e4bf4825119976946f5 diff --git a/metadata/md5-cache/dev-ruby/cri-2.15.11 b/metadata/md5-cache/dev-ruby/cri-2.15.11 index edec08515cb3..cfb357b432db 100644 --- a/metadata/md5-cache/dev-ruby/cri-2.15.11 +++ b/metadata/md5-cache/dev-ruby/cri-2.15.11 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cri-2.15.11.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5883b85ef1c62a9ecfa83dfda164b0c6 diff --git a/metadata/md5-cache/dev-ruby/cri-2.15.11-r1 b/metadata/md5-cache/dev-ruby/cri-2.15.11-r1 index 6563e27734e9..76e729ca0e6b 100644 --- a/metadata/md5-cache/dev-ruby/cri-2.15.11-r1 +++ b/metadata/md5-cache/dev-ruby/cri-2.15.11-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cri-2.15.11.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0f290120eec35bee7d022fe2284e8763 diff --git a/metadata/md5-cache/dev-ruby/css_parser-1.10.0 b/metadata/md5-cache/dev-ruby/css_parser-1.10.0 index c629f2e1a3dd..3d879a0a48ce 100644 --- a/metadata/md5-cache/dev-ruby/css_parser-1.10.0 +++ b/metadata/md5-cache/dev-ruby/css_parser-1.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/premailer/css_parser/archive/v1.10.0.tar.gz -> css_parser-1.10.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a27a693fc987f6290f83b19104261a5e diff --git a/metadata/md5-cache/dev-ruby/css_parser-1.11.0 b/metadata/md5-cache/dev-ruby/css_parser-1.11.0 index 6f1bf8e576b3..de40817d2b60 100644 --- a/metadata/md5-cache/dev-ruby/css_parser-1.11.0 +++ b/metadata/md5-cache/dev-ruby/css_parser-1.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/premailer/css_parser/archive/v1.11.0.tar.gz -> css_parser-1.11.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a27a693fc987f6290f83b19104261a5e diff --git a/metadata/md5-cache/dev-ruby/css_parser-1.9.0 b/metadata/md5-cache/dev-ruby/css_parser-1.9.0 index 76f7733558d1..62701dee12c1 100644 --- a/metadata/md5-cache/dev-ruby/css_parser-1.9.0 +++ b/metadata/md5-cache/dev-ruby/css_parser-1.9.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/premailer/css_parser/archive/v1.9.0.tar.gz -> css_parser-1.9.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=28bc29f803016e341023e018e4873d36 diff --git a/metadata/md5-cache/dev-ruby/csv-3.2.2 b/metadata/md5-cache/dev-ruby/csv-3.2.2 index 9c38509de401..fd9f0988f252 100644 --- a/metadata/md5-cache/dev-ruby/csv-3.2.2 +++ b/metadata/md5-cache/dev-ruby/csv-3.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/ruby/csv/archive/v3.2.2.tar.gz -> csv-3.2.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=382e12238713bd759a34eedcff011c9e diff --git a/metadata/md5-cache/dev-ruby/csv-3.2.3 b/metadata/md5-cache/dev-ruby/csv-3.2.3 index 13ae5b4c9601..5e05d99136d7 100644 --- a/metadata/md5-cache/dev-ruby/csv-3.2.3 +++ b/metadata/md5-cache/dev-ruby/csv-3.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/ruby/csv/archive/v3.2.3.tar.gz -> csv-3.2.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0e34c1af33d2bcc500e048c95fecd406 diff --git a/metadata/md5-cache/dev-ruby/curb-0.9.11-r1 b/metadata/md5-cache/dev-ruby/curb-0.9.11-r1 index 2f0d3a827b69..25a4784d848e 100644 --- a/metadata/md5-cache/dev-ruby/curb-0.9.11-r1 +++ b/metadata/md5-cache/dev-ruby/curb-0.9.11-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/curb-0.9.11.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9921c5b018842e9b933c9c5af1c1fc18 diff --git a/metadata/md5-cache/dev-ruby/curses-1.4.2 b/metadata/md5-cache/dev-ruby/curses-1.4.2 index b456aac5a0b8..78bc2eb4e587 100644 --- a/metadata/md5-cache/dev-ruby/curses-1.4.2 +++ b/metadata/md5-cache/dev-ruby/curses-1.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/curses-1.4.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d9c505637f0b380b57557d6f7de89e3c diff --git a/metadata/md5-cache/dev-ruby/curses-1.4.3 b/metadata/md5-cache/dev-ruby/curses-1.4.3 index 46bf2e180c3a..543f750b46d0 100644 --- a/metadata/md5-cache/dev-ruby/curses-1.4.3 +++ b/metadata/md5-cache/dev-ruby/curses-1.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/curses-1.4.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3dd00288330f9f20d37056f18948d919 diff --git a/metadata/md5-cache/dev-ruby/curses-1.4.4 b/metadata/md5-cache/dev-ruby/curses-1.4.4 index 72339e13cb31..6fd2e1c31bfc 100644 --- a/metadata/md5-cache/dev-ruby/curses-1.4.4 +++ b/metadata/md5-cache/dev-ruby/curses-1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/curses-1.4.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3dd00288330f9f20d37056f18948d919 diff --git a/metadata/md5-cache/dev-ruby/daemon_controller-1.2.0-r2 b/metadata/md5-cache/dev-ruby/daemon_controller-1.2.0-r2 index 6cb0ce9da216..55ff5cf1280c 100644 --- a/metadata/md5-cache/dev-ruby/daemon_controller-1.2.0-r2 +++ b/metadata/md5-cache/dev-ruby/daemon_controller-1.2.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/daemon_controller-1.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bce736046883a0af1be10c0b626f82a9 diff --git a/metadata/md5-cache/dev-ruby/daemons-1.3.1 b/metadata/md5-cache/dev-ruby/daemons-1.3.1 index 96fd47b384fa..4d2ba45ebf84 100644 --- a/metadata/md5-cache/dev-ruby/daemons-1.3.1 +++ b/metadata/md5-cache/dev-ruby/daemons-1.3.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/thuehlinger/daemons/archive/v1.3.1.tar.gz -> daemons-1.3.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9fdc7239f69e4108f1a153f607c9645b diff --git a/metadata/md5-cache/dev-ruby/daemons-1.4.0 b/metadata/md5-cache/dev-ruby/daemons-1.4.0 index 15760384b75a..139a455f97bd 100644 --- a/metadata/md5-cache/dev-ruby/daemons-1.4.0 +++ b/metadata/md5-cache/dev-ruby/daemons-1.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/thuehlinger/daemons/archive/v1.4.0.tar.gz -> daemons-1.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7d3f9a57569fe967ee35d4ec8363ba18 diff --git a/metadata/md5-cache/dev-ruby/daemons-1.4.1 b/metadata/md5-cache/dev-ruby/daemons-1.4.1 index b563e0b2d866..177aae48cdef 100644 --- a/metadata/md5-cache/dev-ruby/daemons-1.4.1 +++ b/metadata/md5-cache/dev-ruby/daemons-1.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/thuehlinger/daemons/archive/v1.4.1.tar.gz -> daemons-1.4.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b16f681110a36ef918e1642cbc0e933a diff --git a/metadata/md5-cache/dev-ruby/dalli-2.7.11 b/metadata/md5-cache/dev-ruby/dalli-2.7.11 index 22b0408b2ce3..71f77bf122b0 100644 --- a/metadata/md5-cache/dev-ruby/dalli-2.7.11 +++ b/metadata/md5-cache/dev-ruby/dalli-2.7.11 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/petergoldstein/dalli/archive/v2.7.11.tar.gz -> dalli-2.7.11.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f9e895b7d1a219527a8c9222bc63100c diff --git a/metadata/md5-cache/dev-ruby/dalli-3.0.3 b/metadata/md5-cache/dev-ruby/dalli-3.0.3 index 814de991f2a9..c62db0d7dd94 100644 --- a/metadata/md5-cache/dev-ruby/dalli-3.0.3 +++ b/metadata/md5-cache/dev-ruby/dalli-3.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/petergoldstein/dalli/archive/v3.0.3.tar.gz -> dalli-3.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a4c7fc8ae80ea6941131a27a4ef6bac6 diff --git a/metadata/md5-cache/dev-ruby/dalli-3.2.1 b/metadata/md5-cache/dev-ruby/dalli-3.2.1 index a228e978eb55..f3ec16e45bd3 100644 --- a/metadata/md5-cache/dev-ruby/dalli-3.2.1 +++ b/metadata/md5-cache/dev-ruby/dalli-3.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/petergoldstein/dalli/archive/v3.2.1.tar.gz -> dalli-3.2.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9fc964007c5270fef32eb0a7da4c259e diff --git a/metadata/md5-cache/dev-ruby/database_cleaner-1.7.0 b/metadata/md5-cache/dev-ruby/database_cleaner-1.7.0 index 4b671ea638da..e1fc152d16d3 100644 --- a/metadata/md5-cache/dev-ruby/database_cleaner-1.7.0 +++ b/metadata/md5-cache/dev-ruby/database_cleaner-1.7.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/database_cleaner-1.7.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d48ca7bb15aae4dd66f9b59e09e80a37 diff --git a/metadata/md5-cache/dev-ruby/database_cleaner-2.0.1 b/metadata/md5-cache/dev-ruby/database_cleaner-2.0.1 index 131c9d5c6e38..ed9cbaaf1d11 100644 --- a/metadata/md5-cache/dev-ruby/database_cleaner-2.0.1 +++ b/metadata/md5-cache/dev-ruby/database_cleaner-2.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/database_cleaner-2.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=067d4810ce00cbf2ec3bca8dce81cc95 diff --git a/metadata/md5-cache/dev-ruby/database_cleaner-active_record-2.0.1 b/metadata/md5-cache/dev-ruby/database_cleaner-active_record-2.0.1 index 96ca14a205ac..550983f8ebcc 100644 --- a/metadata/md5-cache/dev-ruby/database_cleaner-active_record-2.0.1 +++ b/metadata/md5-cache/dev-ruby/database_cleaner-active_record-2.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2.0 SRC_URI=https://rubygems.org/gems/database_cleaner-active_record-2.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e0b4d7645afa6e5c1e6354b6c930ad4a diff --git a/metadata/md5-cache/dev-ruby/database_cleaner-core-2.0.1 b/metadata/md5-cache/dev-ruby/database_cleaner-core-2.0.1 index c9db07db4c0f..c8990b22d722 100644 --- a/metadata/md5-cache/dev-ruby/database_cleaner-core-2.0.1 +++ b/metadata/md5-cache/dev-ruby/database_cleaner-core-2.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=2.0 SRC_URI=https://rubygems.org/gems/database_cleaner-core-2.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=19314e48f0b3667f4c731434508a0a72 diff --git a/metadata/md5-cache/dev-ruby/date-3.2.2 b/metadata/md5-cache/dev-ruby/date-3.2.2 index 83a2672d9085..5796b8418ba2 100644 --- a/metadata/md5-cache/dev-ruby/date-3.2.2 +++ b/metadata/md5-cache/dev-ruby/date-3.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/date/archive/v3.2.2.tar.gz -> date-3.2.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f0d430d7ebe5f5256c7b8d2e604e5139 diff --git a/metadata/md5-cache/dev-ruby/date_validator-0.10.0 b/metadata/md5-cache/dev-ruby/date_validator-0.10.0 index b796c6358191..d1385bed8f41 100644 --- a/metadata/md5-cache/dev-ruby/date_validator-0.10.0 +++ b/metadata/md5-cache/dev-ruby/date_validator-0.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/date_validator-0.10.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=68cba8c4fd461444138d70599abde451 diff --git a/metadata/md5-cache/dev-ruby/date_validator-0.11.0 b/metadata/md5-cache/dev-ruby/date_validator-0.11.0 index bcc21866f7d2..82cd29e7153c 100644 --- a/metadata/md5-cache/dev-ruby/date_validator-0.11.0 +++ b/metadata/md5-cache/dev-ruby/date_validator-0.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/date_validator-0.11.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=68cba8c4fd461444138d70599abde451 diff --git a/metadata/md5-cache/dev-ruby/date_validator-0.12.0 b/metadata/md5-cache/dev-ruby/date_validator-0.12.0 index 3d1166386150..cba8f70a06e3 100644 --- a/metadata/md5-cache/dev-ruby/date_validator-0.12.0 +++ b/metadata/md5-cache/dev-ruby/date_validator-0.12.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/date_validator-0.12.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f82f941509399776334be34a422b4c11 diff --git a/metadata/md5-cache/dev-ruby/dbf-4.1.3 b/metadata/md5-cache/dev-ruby/dbf-4.1.3 index db6fbfc2cde1..1a6f6758f24b 100644 --- a/metadata/md5-cache/dev-ruby/dbf-4.1.3 +++ b/metadata/md5-cache/dev-ruby/dbf-4.1.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dbf-4.1.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=080ae00d4914a2acca9d9fcfac739908 diff --git a/metadata/md5-cache/dev-ruby/dbf-4.1.6 b/metadata/md5-cache/dev-ruby/dbf-4.1.6 index 84ab5339f40f..9fc98354a189 100644 --- a/metadata/md5-cache/dev-ruby/dbf-4.1.6 +++ b/metadata/md5-cache/dev-ruby/dbf-4.1.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dbf-4.1.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=48ddc4c7a70cb7627bf350b6ca20a219 diff --git a/metadata/md5-cache/dev-ruby/dbf-4.2.0 b/metadata/md5-cache/dev-ruby/dbf-4.2.0 index 7bffbb292853..678bf04493b2 100644 --- a/metadata/md5-cache/dev-ruby/dbf-4.2.0 +++ b/metadata/md5-cache/dev-ruby/dbf-4.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dbf-4.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=48ddc4c7a70cb7627bf350b6ca20a219 diff --git a/metadata/md5-cache/dev-ruby/ddmemoize-1.0.0 b/metadata/md5-cache/dev-ruby/ddmemoize-1.0.0 index 375743c24e69..293b30dcbd6b 100644 --- a/metadata/md5-cache/dev-ruby/ddmemoize-1.0.0 +++ b/metadata/md5-cache/dev-ruby/ddmemoize-1.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/ddmemoize-1.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8783045fa6ca7e561b94ecf2baae54df diff --git a/metadata/md5-cache/dev-ruby/ddmetrics-1.0.1-r1 b/metadata/md5-cache/dev-ruby/ddmetrics-1.0.1-r1 index 77147ed15ed1..0d4cbec91362 100644 --- a/metadata/md5-cache/dev-ruby/ddmetrics-1.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/ddmetrics-1.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/ddmetrics-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8eaad5d3848a7bcc04efd3f50e055646 diff --git a/metadata/md5-cache/dev-ruby/ddplugin-1.0.3 b/metadata/md5-cache/dev-ruby/ddplugin-1.0.3 index 1b42eecb413c..533d50966657 100644 --- a/metadata/md5-cache/dev-ruby/ddplugin-1.0.3 +++ b/metadata/md5-cache/dev-ruby/ddplugin-1.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/ddplugin-1.0.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a31d24ca92a3a4d7fbc0958fbd442b66 diff --git a/metadata/md5-cache/dev-ruby/debug_inspector-1.1.0 b/metadata/md5-cache/dev-ruby/debug_inspector-1.1.0 index 87ef1d2ff4bc..12851538c67d 100644 --- a/metadata/md5-cache/dev-ruby/debug_inspector-1.1.0 +++ b/metadata/md5-cache/dev-ruby/debug_inspector-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/banister/debug_inspector/archive/v1.1.0.tar.gz -> debug_inspector-1.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d71c549db6ac7e136e91a3f0e30d96bb diff --git a/metadata/md5-cache/dev-ruby/deep_merge-1.2.1 b/metadata/md5-cache/dev-ruby/deep_merge-1.2.1 index fd6c7b7fcb90..c393fec1b3dc 100644 --- a/metadata/md5-cache/dev-ruby/deep_merge-1.2.1 +++ b/metadata/md5-cache/dev-ruby/deep_merge-1.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/deep_merge-1.2.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0d8271629af08a5304a79ba8c44953e5 diff --git a/metadata/md5-cache/dev-ruby/deep_merge-1.2.2 b/metadata/md5-cache/dev-ruby/deep_merge-1.2.2 index ad7d1aa1f413..dd3c7550c7e7 100644 --- a/metadata/md5-cache/dev-ruby/deep_merge-1.2.2 +++ b/metadata/md5-cache/dev-ruby/deep_merge-1.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/deep_merge-1.2.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8fa3c06658e1ba543c0df3c8bc6f5c19 diff --git a/metadata/md5-cache/dev-ruby/delayer-1.2.1 b/metadata/md5-cache/dev-ruby/delayer-1.2.1 index 6c2e0b773609..c92074b959b3 100644 --- a/metadata/md5-cache/dev-ruby/delayer-1.2.1 +++ b/metadata/md5-cache/dev-ruby/delayer-1.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/delayer-1.2.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cef54d2a66ee55c0867f492b7eea9ca6 diff --git a/metadata/md5-cache/dev-ruby/delayer-deferred-2.2.0 b/metadata/md5-cache/dev-ruby/delayer-deferred-2.2.0 index 4c32479f69cd..ae0a7abd18a7 100644 --- a/metadata/md5-cache/dev-ruby/delayer-deferred-2.2.0 +++ b/metadata/md5-cache/dev-ruby/delayer-deferred-2.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/delayer-deferred-2.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ffea7bc0a421434cdb5dca8d8e63c575 diff --git a/metadata/md5-cache/dev-ruby/dependor-1.0.1 b/metadata/md5-cache/dev-ruby/dependor-1.0.1 index be14b91a0e36..b1815d334126 100644 --- a/metadata/md5-cache/dev-ruby/dependor-1.0.1 +++ b/metadata/md5-cache/dev-ruby/dependor-1.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dependor-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c71826dca46919183ddecda494de50ea diff --git a/metadata/md5-cache/dev-ruby/dependor-1.0.1-r1 b/metadata/md5-cache/dev-ruby/dependor-1.0.1-r1 index 48a754a39984..6c69c14a5ca2 100644 --- a/metadata/md5-cache/dev-ruby/dependor-1.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/dependor-1.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dependor-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=92e8156892c14b5b9ec41380bfa3ce04 diff --git a/metadata/md5-cache/dev-ruby/deprecated-3.0.1-r3 b/metadata/md5-cache/dev-ruby/deprecated-3.0.1-r3 index 0e7059c7f72a..68d2011a798b 100644 --- a/metadata/md5-cache/dev-ruby/deprecated-3.0.1-r3 +++ b/metadata/md5-cache/dev-ruby/deprecated-3.0.1-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/deprecated-3.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=850bf2fe5f36c9093da9b318253796f8 diff --git a/metadata/md5-cache/dev-ruby/descendants_tracker-0.0.4-r1 b/metadata/md5-cache/dev-ruby/descendants_tracker-0.0.4-r1 index 8ab6a214e96d..a1db39ae0eea 100644 --- a/metadata/md5-cache/dev-ruby/descendants_tracker-0.0.4-r1 +++ b/metadata/md5-cache/dev-ruby/descendants_tracker-0.0.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/descendants_tracker-0.0.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ff2d4a5d6163984f02296f8b6b7f50bf diff --git a/metadata/md5-cache/dev-ruby/did_you_mean-1.4.0 b/metadata/md5-cache/dev-ruby/did_you_mean-1.4.0 index 36531154e2c6..b6ed5765e2f1 100644 --- a/metadata/md5-cache/dev-ruby/did_you_mean-1.4.0 +++ b/metadata/md5-cache/dev-ruby/did_you_mean-1.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2.6 SRC_URI=https://rubygems.org/gems/did_you_mean-1.4.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7edf2a7b0bc9892b662ce4d5a7cf5a38 diff --git a/metadata/md5-cache/dev-ruby/did_you_mean-1.5.0 b/metadata/md5-cache/dev-ruby/did_you_mean-1.5.0 index d58311301a77..8ae05a0f453b 100644 --- a/metadata/md5-cache/dev-ruby/did_you_mean-1.5.0 +++ b/metadata/md5-cache/dev-ruby/did_you_mean-1.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2.6 SRC_URI=https://rubygems.org/gems/did_you_mean-1.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0e6c91511500f95d5fa082a9af47e450 diff --git a/metadata/md5-cache/dev-ruby/did_you_mean-1.6.1 b/metadata/md5-cache/dev-ruby/did_you_mean-1.6.1 index 55062b295d0f..6989bbe439b2 100644 --- a/metadata/md5-cache/dev-ruby/did_you_mean-1.6.1 +++ b/metadata/md5-cache/dev-ruby/did_you_mean-1.6.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2.6 SRC_URI=https://rubygems.org/gems/did_you_mean-1.6.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8baef07b6e165423040f5680d0d97107 diff --git a/metadata/md5-cache/dev-ruby/diff-lcs-1.4.4 b/metadata/md5-cache/dev-ruby/diff-lcs-1.4.4 index 4a7a134ad991..980c4c686655 100644 --- a/metadata/md5-cache/dev-ruby/diff-lcs-1.4.4 +++ b/metadata/md5-cache/dev-ruby/diff-lcs-1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/diff-lcs-1.4.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9aaa6a6f33a81959b1a66cca1f98ac90 diff --git a/metadata/md5-cache/dev-ruby/diff-lcs-1.5.0 b/metadata/md5-cache/dev-ruby/diff-lcs-1.5.0 index 5bd6eb995af5..b8d67136a3c4 100644 --- a/metadata/md5-cache/dev-ruby/diff-lcs-1.5.0 +++ b/metadata/md5-cache/dev-ruby/diff-lcs-1.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/diff-lcs-1.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f144cba0b0dde751d6a107637419aeb8 diff --git a/metadata/md5-cache/dev-ruby/digest-3.1.0 b/metadata/md5-cache/dev-ruby/digest-3.1.0 index 2d0064a5a231..e85517ae1bae 100644 --- a/metadata/md5-cache/dev-ruby/digest-3.1.0 +++ b/metadata/md5-cache/dev-ruby/digest-3.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/digest/archive/v3.1.0.tar.gz -> digest-3.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0502147edc2792e239f559b2308e29ea diff --git a/metadata/md5-cache/dev-ruby/diva-1.0.2-r2 b/metadata/md5-cache/dev-ruby/diva-1.0.2-r2 index 09c2f3a774e9..a33328a8b112 100644 --- a/metadata/md5-cache/dev-ruby/diva-1.0.2-r2 +++ b/metadata/md5-cache/dev-ruby/diva-1.0.2-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/toshia/diva/archive/v1.0.2.tar.gz -> diva-1.0.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=91a34befa138a9b727e75cbfd31e20de diff --git a/metadata/md5-cache/dev-ruby/diva-1.1.0 b/metadata/md5-cache/dev-ruby/diva-1.1.0 index 75f63e5119d1..eaf251090aa3 100644 --- a/metadata/md5-cache/dev-ruby/diva-1.1.0 +++ b/metadata/md5-cache/dev-ruby/diva-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/toshia/diva/archive/v1.1.0.tar.gz -> diva-1.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8dd814b29a0afeeb8b7a64df9fee908d diff --git a/metadata/md5-cache/dev-ruby/dnsruby-1.61.3 b/metadata/md5-cache/dev-ruby/dnsruby-1.61.3 index 3fc33107a804..0749abba9d7b 100644 --- a/metadata/md5-cache/dev-ruby/dnsruby-1.61.3 +++ b/metadata/md5-cache/dev-ruby/dnsruby-1.61.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dnsruby-1.61.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=11f04cf514c8ed91c69e7fb2e7fe57eb diff --git a/metadata/md5-cache/dev-ruby/dnsruby-1.61.7 b/metadata/md5-cache/dev-ruby/dnsruby-1.61.7 index cfc4fd20582f..579b37b0cb69 100644 --- a/metadata/md5-cache/dev-ruby/dnsruby-1.61.7 +++ b/metadata/md5-cache/dev-ruby/dnsruby-1.61.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dnsruby-1.61.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ba2968124a4177e939d7651d7d2ea3a4 diff --git a/metadata/md5-cache/dev-ruby/dnsruby-1.61.9 b/metadata/md5-cache/dev-ruby/dnsruby-1.61.9 index f69781267bc8..4fc126027530 100644 --- a/metadata/md5-cache/dev-ruby/dnsruby-1.61.9 +++ b/metadata/md5-cache/dev-ruby/dnsruby-1.61.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dnsruby-1.61.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9b6637f330f32ab7015a727868ebdc4b diff --git a/metadata/md5-cache/dev-ruby/docile-1.3.5 b/metadata/md5-cache/dev-ruby/docile-1.3.5 index 2027f65b0de1..e979eef1ae4e 100644 --- a/metadata/md5-cache/dev-ruby/docile-1.3.5 +++ b/metadata/md5-cache/dev-ruby/docile-1.3.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ms-ati/docile/archive/v1.3.5.tar.gz -> docile-1.3.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2bac9ff3f31ed63678a18338b541a49d diff --git a/metadata/md5-cache/dev-ruby/docile-1.4.0 b/metadata/md5-cache/dev-ruby/docile-1.4.0 index 7fad53519c6b..f52e58e1cc46 100644 --- a/metadata/md5-cache/dev-ruby/docile-1.4.0 +++ b/metadata/md5-cache/dev-ruby/docile-1.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ms-ati/docile/archive/v1.4.0.tar.gz -> docile-1.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=85156ba958fb24b1094560a8a2013d3e diff --git a/metadata/md5-cache/dev-ruby/domain_name-0.5.20190701 b/metadata/md5-cache/dev-ruby/domain_name-0.5.20190701 index 2b4d938c1ee8..c5738210a0be 100644 --- a/metadata/md5-cache/dev-ruby/domain_name-0.5.20190701 +++ b/metadata/md5-cache/dev-ruby/domain_name-0.5.20190701 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/domain_name-0.5.20190701.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=595c8f4e99af9302ed6c382ed8795eac diff --git a/metadata/md5-cache/dev-ruby/dotenv-2.7.6 b/metadata/md5-cache/dev-ruby/dotenv-2.7.6 index 0f74a7255e63..eb7cf72b005a 100644 --- a/metadata/md5-cache/dev-ruby/dotenv-2.7.6 +++ b/metadata/md5-cache/dev-ruby/dotenv-2.7.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/bkeepers/dotenv/archive/v2.7.6.tar.gz -> dotenv-2.7.6.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3b17b66ce54a1d774e2a47e8a9fe83d9 diff --git a/metadata/md5-cache/dev-ruby/duktape-rb-2.3.0.0-r3 b/metadata/md5-cache/dev-ruby/duktape-rb-2.3.0.0-r3 index a4e692f902f0..1e04cf68d7dd 100644 --- a/metadata/md5-cache/dev-ruby/duktape-rb-2.3.0.0-r3 +++ b/metadata/md5-cache/dev-ruby/duktape-rb-2.3.0.0-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/judofyr/duktape.rb/archive/v2.3.0.0.tar.gz -> duktape-rb-2.3.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5a78c25017189c1e825a82baaa7951c8 diff --git a/metadata/md5-cache/dev-ruby/dust-0.1.7-r3 b/metadata/md5-cache/dev-ruby/dust-0.1.7-r3 index 52be60808117..edb123e671ba 100644 --- a/metadata/md5-cache/dev-ruby/dust-0.1.7-r3 +++ b/metadata/md5-cache/dev-ruby/dust-0.1.7-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dust-0.1.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2a920c7a41d0982ec6c28104fafbabf1 diff --git a/metadata/md5-cache/dev-ruby/ecma-re-validator-0.4.0 b/metadata/md5-cache/dev-ruby/ecma-re-validator-0.4.0 index a56723293ccf..5bf5da3107a8 100644 --- a/metadata/md5-cache/dev-ruby/ecma-re-validator-0.4.0 +++ b/metadata/md5-cache/dev-ruby/ecma-re-validator-0.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ecma-re-validator-0.4.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e15884d77ad9206ccc6e481ce5fb7d21 diff --git a/metadata/md5-cache/dev-ruby/ed25519-1.2.4 b/metadata/md5-cache/dev-ruby/ed25519-1.2.4 index 68fc91e6156e..62cbff6c8a3f 100644 --- a/metadata/md5-cache/dev-ruby/ed25519-1.2.4 +++ b/metadata/md5-cache/dev-ruby/ed25519-1.2.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/crypto-rb/ed25519/archive/v1.2.4.tar.gz -> ed25519-1.2.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8f1ccf290bfdd64e3cada52efe7efc28 diff --git a/metadata/md5-cache/dev-ruby/ed25519-1.2.4-r1 b/metadata/md5-cache/dev-ruby/ed25519-1.2.4-r1 index 8039977016c3..9d72de7f8946 100644 --- a/metadata/md5-cache/dev-ruby/ed25519-1.2.4-r1 +++ b/metadata/md5-cache/dev-ruby/ed25519-1.2.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/crypto-rb/ed25519/archive/v1.2.4.tar.gz -> ed25519-1.2.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=575acdfb003ccda8ce6aebe0c36ba630 diff --git a/metadata/md5-cache/dev-ruby/ed25519-1.3.0 b/metadata/md5-cache/dev-ruby/ed25519-1.3.0 index e45b8d1b957d..a1b9edc2d87a 100644 --- a/metadata/md5-cache/dev-ruby/ed25519-1.3.0 +++ b/metadata/md5-cache/dev-ruby/ed25519-1.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/crypto-rb/ed25519/archive/v1.3.0.tar.gz -> ed25519-1.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=62b48d59314af931d1d4ac53d9f273c9 diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-6.8.1 b/metadata/md5-cache/dev-ruby/elasticsearch-6.8.1 index b16ca2a8649e..9ccdf796440b 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-6.8.1 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-6.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=6 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.1.tar.gz -> elasticsearch-ruby-6.8.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3cf858fde80a3a04cceff394e7a76a8a diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-6.8.3 b/metadata/md5-cache/dev-ruby/elasticsearch-6.8.3 index 4f69413d0e23..73b2f9b7f381 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-6.8.3 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-6.8.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=6.8.3 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.3.tar.gz -> elasticsearch-ruby-6.8.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=87c889ac73f63727b92711132344f9b3 diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.1 b/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.1 index 228916cbe5c6..f604a6e6d4d9 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.1 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.1.tar.gz -> elasticsearch-ruby-6.8.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=494cea2922d3dd0eedc82f89313ff677 diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.3 b/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.3 index 670011025e38..968bfd51047f 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.3 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.8.3 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.3.tar.gz -> elasticsearch-ruby-6.8.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4b2a4d01afcd155931d5c7803b9d05e4 diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-extensions-0.0.33 b/metadata/md5-cache/dev-ruby/elasticsearch-extensions-0.0.33 index 6a3da12610ee..ff9c3954d748 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-extensions-0.0.33 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-extensions-0.0.33 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v0.0.33.tar.gz -> elasticsearch-ruby-0.0.33.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f86323843b07077b6a69f5e4ab73ec96 diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.1 b/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.1 index ba538f9768e8..5195f1346f48 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.1 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.1.tar.gz -> elasticsearch-ruby-6.8.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=15babb90f9d2e9c1689c3963ffb84fab diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.3 b/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.3 index f857dacef585..2803d4c0871f 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.3 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.8.3 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.3.tar.gz -> elasticsearch-ruby-6.8.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=af5fe2c4434c1f03d49c2f0d8f28d8c6 diff --git a/metadata/md5-cache/dev-ruby/em-websocket-0.5.2 b/metadata/md5-cache/dev-ruby/em-websocket-0.5.2 index 2a3412eaac78..6cb4feaf923e 100644 --- a/metadata/md5-cache/dev-ruby/em-websocket-0.5.2 +++ b/metadata/md5-cache/dev-ruby/em-websocket-0.5.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/igrigorik/em-websocket/archive/v0.5.2.tar.gz -> em-websocket-0.5.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=814ff0279a62ddd81155e0af67277668 diff --git a/metadata/md5-cache/dev-ruby/em-websocket-0.5.3 b/metadata/md5-cache/dev-ruby/em-websocket-0.5.3 index b9fa03214758..804ff83fa609 100644 --- a/metadata/md5-cache/dev-ruby/em-websocket-0.5.3 +++ b/metadata/md5-cache/dev-ruby/em-websocket-0.5.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/igrigorik/em-websocket/archive/v0.5.3.tar.gz -> em-websocket-0.5.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ce9e4717a91bf26daa1c4cb8077159b0 diff --git a/metadata/md5-cache/dev-ruby/equalizer-0.0.11-r1 b/metadata/md5-cache/dev-ruby/equalizer-0.0.11-r1 index fb73802875e4..df6d3f759eab 100644 --- a/metadata/md5-cache/dev-ruby/equalizer-0.0.11-r1 +++ b/metadata/md5-cache/dev-ruby/equalizer-0.0.11-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/equalizer-0.0.11.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3ac342634f37d60acf59794b8b1e8874 diff --git a/metadata/md5-cache/dev-ruby/equatable-0.6.1 b/metadata/md5-cache/dev-ruby/equatable-0.6.1 index ee6dbb0ad417..9a5d1240302c 100644 --- a/metadata/md5-cache/dev-ruby/equatable-0.6.1 +++ b/metadata/md5-cache/dev-ruby/equatable-0.6.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/equatable-0.6.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2cb0e50fb6c328f032dde864fc236b11 diff --git a/metadata/md5-cache/dev-ruby/equatable-0.7.0 b/metadata/md5-cache/dev-ruby/equatable-0.7.0 index 9049960d8ce0..c05a7a026610 100644 --- a/metadata/md5-cache/dev-ruby/equatable-0.7.0 +++ b/metadata/md5-cache/dev-ruby/equatable-0.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/equatable/archive/v0.7.0.tar.gz -> equatable-0.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=36862f51856a9fe91e61d53b31358d3d diff --git a/metadata/md5-cache/dev-ruby/erubi-1.10.0 b/metadata/md5-cache/dev-ruby/erubi-1.10.0 index 2f80207ec79c..387ea1eb9bab 100644 --- a/metadata/md5-cache/dev-ruby/erubi-1.10.0 +++ b/metadata/md5-cache/dev-ruby/erubi-1.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jeremyevans/erubi/archive/1.10.0.tar.gz -> erubi-1.10.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=64b804a7dacfc7bb4797742058cc9df1 diff --git a/metadata/md5-cache/dev-ruby/erubi-1.10.0-r1 b/metadata/md5-cache/dev-ruby/erubi-1.10.0-r1 index 2e25d2bbc995..6e1311aeafbb 100644 --- a/metadata/md5-cache/dev-ruby/erubi-1.10.0-r1 +++ b/metadata/md5-cache/dev-ruby/erubi-1.10.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jeremyevans/erubi/archive/1.10.0.tar.gz -> erubi-1.10.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f512243715d4901e7f210d14595af570 diff --git a/metadata/md5-cache/dev-ruby/erubi-1.9.0 b/metadata/md5-cache/dev-ruby/erubi-1.9.0 index 52ccb90c8170..c5befe2996df 100644 --- a/metadata/md5-cache/dev-ruby/erubi-1.9.0 +++ b/metadata/md5-cache/dev-ruby/erubi-1.9.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/erubi-1.9.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=75743b64965b7260268242389d214801 diff --git a/metadata/md5-cache/dev-ruby/erubis-2.7.0-r3 b/metadata/md5-cache/dev-ruby/erubis-2.7.0-r3 index 0106c445ad1c..e6589b31b8c0 100644 --- a/metadata/md5-cache/dev-ruby/erubis-2.7.0-r3 +++ b/metadata/md5-cache/dev-ruby/erubis-2.7.0-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/erubis-2.7.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=34fb868e78986552a24718636b37f733 diff --git a/metadata/md5-cache/dev-ruby/erubis-2.7.0-r4 b/metadata/md5-cache/dev-ruby/erubis-2.7.0-r4 index 5c3d470907d9..e9b4b3f8841b 100644 --- a/metadata/md5-cache/dev-ruby/erubis-2.7.0-r4 +++ b/metadata/md5-cache/dev-ruby/erubis-2.7.0-r4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=test !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/erubis-2.7.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5c97ed461ef047a868716e45b4067c3a diff --git a/metadata/md5-cache/dev-ruby/ethon-0.14.0 b/metadata/md5-cache/dev-ruby/ethon-0.14.0 index 52af549b0fbc..d6a7b0ce829b 100644 --- a/metadata/md5-cache/dev-ruby/ethon-0.14.0 +++ b/metadata/md5-cache/dev-ruby/ethon-0.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ethon-0.14.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=afb5ed0f7549b6f42e60055f89fd2f56 diff --git a/metadata/md5-cache/dev-ruby/ethon-0.15.0 b/metadata/md5-cache/dev-ruby/ethon-0.15.0 index 60de7453f4ef..2128a644370f 100644 --- a/metadata/md5-cache/dev-ruby/ethon-0.15.0 +++ b/metadata/md5-cache/dev-ruby/ethon-0.15.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/ffi-1.15.0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.15.0[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/sinatra[ruby_targets_ruby26(-)] dev-ruby/mime-types[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/sinatra[ruby_targets_ruby27(-)] dev-ruby/mime-types[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/ffi-1.15.0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.15.0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/ffi-1.15.0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/sinatra[ruby_targets_ruby26(-)] dev-ruby/mime-types[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/sinatra[ruby_targets_ruby27(-)] dev-ruby/mime-types[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/sinatra[ruby_targets_ruby30(-)] dev-ruby/mime-types[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) DESCRIPTION=Very lightweight libcurl wrapper EAPI=8 HOMEPAGE=https://github.com/typhoeus/ethon -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 test test KEYWORDS=~amd64 ~arm ~x86 LICENSE=MIT -RDEPEND=net-misc/curl ruby_targets_ruby26? ( >=dev-ruby/ffi-1.15.0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.15.0[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) +RDEPEND=net-misc/curl ruby_targets_ruby26? ( >=dev-ruby/ffi-1.15.0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.15.0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/ffi-1.15.0[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ethon-0.15.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=4e01fc59d3b95c69a8def22cd644896a +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=bdfb1581adffbcdd8ce36c380f76b0b3 diff --git a/metadata/md5-cache/dev-ruby/evented-spec-0.9.0-r1 b/metadata/md5-cache/dev-ruby/evented-spec-0.9.0-r1 index ffc65e3804c1..4ba315f261de 100644 --- a/metadata/md5-cache/dev-ruby/evented-spec-0.9.0-r1 +++ b/metadata/md5-cache/dev-ruby/evented-spec-0.9.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/evented-spec-0.9.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=13b2ccfbce0976da877b1fe63201ca97 diff --git a/metadata/md5-cache/dev-ruby/eventmachine-1.2.7-r1 b/metadata/md5-cache/dev-ruby/eventmachine-1.2.7-r1 index 189fd0be4b43..98c1ba4a76e6 100644 --- a/metadata/md5-cache/dev-ruby/eventmachine-1.2.7-r1 +++ b/metadata/md5-cache/dev-ruby/eventmachine-1.2.7-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/eventmachine/eventmachine/archive/v1.2.7.tar.gz -> eventmachine-1.2.7.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7048f85bdbf8e71ea44f51f4c1558d9d diff --git a/metadata/md5-cache/dev-ruby/eventmachine-1.2.7-r3 b/metadata/md5-cache/dev-ruby/eventmachine-1.2.7-r3 index ca0393fab285..8a830ecc52b4 100644 --- a/metadata/md5-cache/dev-ruby/eventmachine-1.2.7-r3 +++ b/metadata/md5-cache/dev-ruby/eventmachine-1.2.7-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/eventmachine/eventmachine/archive/v1.2.7.tar.gz -> eventmachine-1.2.7.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-ruby/eventmachine/eventmachine-1.2.7-openssl-patches.tar.bz2 -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6091b76b81443a0a89e1e2b3be4e1cd5 diff --git a/metadata/md5-cache/dev-ruby/excon-0.92.1 b/metadata/md5-cache/dev-ruby/excon-0.92.1 index abb68decd4e1..748425ab1958 100644 --- a/metadata/md5-cache/dev-ruby/excon-0.92.1 +++ b/metadata/md5-cache/dev-ruby/excon-0.92.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/excon/excon/archive/v0.92.1.tar.gz -> excon-0.92.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=310492d827dce957408d2c87d0854b39 diff --git a/metadata/md5-cache/dev-ruby/excon-0.92.2 b/metadata/md5-cache/dev-ruby/excon-0.92.2 index 156ae1d8e0ce..78c933113a61 100644 --- a/metadata/md5-cache/dev-ruby/excon-0.92.2 +++ b/metadata/md5-cache/dev-ruby/excon-0.92.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/excon/excon/archive/v0.92.2.tar.gz -> excon-0.92.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=87af6c296e1c49574ae88e784bc38410 diff --git a/metadata/md5-cache/dev-ruby/execjs-2.8.1 b/metadata/md5-cache/dev-ruby/execjs-2.8.1 index 8001b735b080..04f57ed3f826 100644 --- a/metadata/md5-cache/dev-ruby/execjs-2.8.1 +++ b/metadata/md5-cache/dev-ruby/execjs-2.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rails/execjs/archive/v2.8.1.tar.gz -> execjs-2.8.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=19330c990ef3dddcf0c0b2ff3216fada diff --git a/metadata/md5-cache/dev-ruby/exifr-1.3.8 b/metadata/md5-cache/dev-ruby/exifr-1.3.8 index bed577e939f5..18f111851a6d 100644 --- a/metadata/md5-cache/dev-ruby/exifr-1.3.8 +++ b/metadata/md5-cache/dev-ruby/exifr-1.3.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/remvee/exifr/archive/release-1.3.8.tar.gz -> exifr-1.3.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=df089115027dabce4e259e850c9281ad diff --git a/metadata/md5-cache/dev-ruby/exifr-1.3.9 b/metadata/md5-cache/dev-ruby/exifr-1.3.9 index a6b1bc97ac18..e0017646eade 100644 --- a/metadata/md5-cache/dev-ruby/exifr-1.3.9 +++ b/metadata/md5-cache/dev-ruby/exifr-1.3.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/remvee/exifr/archive/release-1.3.9.tar.gz -> exifr-1.3.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=df089115027dabce4e259e850c9281ad diff --git a/metadata/md5-cache/dev-ruby/facter-3.14.21 b/metadata/md5-cache/dev-ruby/facter-3.14.21 index b10c28e86fd7..45ddf923dd06 100644 --- a/metadata/md5-cache/dev-ruby/facter-3.14.21 +++ b/metadata/md5-cache/dev-ruby/facter-3.14.21 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/puppetlabs/facter/archive/3.14.21.tar.gz -> facter-3.14.21.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=20f954fa8c15c284bb4c700a51e18a77 diff --git a/metadata/md5-cache/dev-ruby/facter-3.14.23 b/metadata/md5-cache/dev-ruby/facter-3.14.23 index a721abaf1826..22735e13315e 100644 --- a/metadata/md5-cache/dev-ruby/facter-3.14.23 +++ b/metadata/md5-cache/dev-ruby/facter-3.14.23 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/puppetlabs/facter/archive/3.14.23.tar.gz -> facter-3.14.23.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=7ec23a42cd48b5ff103d2be891e4f9b8 diff --git a/metadata/md5-cache/dev-ruby/fakefs-1.2.3 b/metadata/md5-cache/dev-ruby/fakefs-1.2.3 index 447a8a583791..ce79089f5443 100644 --- a/metadata/md5-cache/dev-ruby/fakefs-1.2.3 +++ b/metadata/md5-cache/dev-ruby/fakefs-1.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/defunkt/fakefs/archive/v1.2.3.tar.gz -> fakefs-1.2.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4b478919c26197a0becf3e27c7a61a84 diff --git a/metadata/md5-cache/dev-ruby/fakefs-1.3.2 b/metadata/md5-cache/dev-ruby/fakefs-1.3.2 index 46d08aec1c5e..bc45a5ed5338 100644 --- a/metadata/md5-cache/dev-ruby/fakefs-1.3.2 +++ b/metadata/md5-cache/dev-ruby/fakefs-1.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/defunkt/fakefs/archive/v1.3.2.tar.gz -> fakefs-1.3.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ef72c9f7969a91eba4287553c774de51 diff --git a/metadata/md5-cache/dev-ruby/faker-2.16.0 b/metadata/md5-cache/dev-ruby/faker-2.16.0 index a3cf1de4165f..b9fcee432fe6 100644 --- a/metadata/md5-cache/dev-ruby/faker-2.16.0 +++ b/metadata/md5-cache/dev-ruby/faker-2.16.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/stympy/faker/archive/v2.16.0.tar.gz -> faker-2.16.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4e6ef36a3a872889155711db6bf5157e diff --git a/metadata/md5-cache/dev-ruby/faker-2.17.0 b/metadata/md5-cache/dev-ruby/faker-2.17.0 index be76358270a0..39650291d0c7 100644 --- a/metadata/md5-cache/dev-ruby/faker-2.17.0 +++ b/metadata/md5-cache/dev-ruby/faker-2.17.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/stympy/faker/archive/v2.17.0.tar.gz -> faker-2.17.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4e6ef36a3a872889155711db6bf5157e diff --git a/metadata/md5-cache/dev-ruby/faker-2.19.0 b/metadata/md5-cache/dev-ruby/faker-2.19.0 index 91dc27bdb27e..0d217d18f98f 100644 --- a/metadata/md5-cache/dev-ruby/faker-2.19.0 +++ b/metadata/md5-cache/dev-ruby/faker-2.19.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/stympy/faker/archive/v2.19.0.tar.gz -> faker-2.19.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1ddb41ebf41b0188c591c0fd30c13b0a diff --git a/metadata/md5-cache/dev-ruby/faraday-0.17.3 b/metadata/md5-cache/dev-ruby/faraday-0.17.3 index fa1fcb253d7a..e98285e646df 100644 --- a/metadata/md5-cache/dev-ruby/faraday-0.17.3 +++ b/metadata/md5-cache/dev-ruby/faraday-0.17.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/lostisland/faraday/archive/v0.17.3.tar.gz -> faraday-0.17.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3761d51ab1e70a1413da2be8fd3493ef diff --git a/metadata/md5-cache/dev-ruby/faraday-1.2.0 b/metadata/md5-cache/dev-ruby/faraday-1.2.0 index 624307eabf90..dc2a8b1bddb4 100644 --- a/metadata/md5-cache/dev-ruby/faraday-1.2.0 +++ b/metadata/md5-cache/dev-ruby/faraday-1.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/lostisland/faraday/archive/v1.2.0.tar.gz -> faraday-1.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7b42fbbfba211e254524964a7305d695 diff --git a/metadata/md5-cache/dev-ruby/faraday_middleware-0.14.0 b/metadata/md5-cache/dev-ruby/faraday_middleware-0.14.0 index ac328946e27e..e73e46994776 100644 --- a/metadata/md5-cache/dev-ruby/faraday_middleware-0.14.0 +++ b/metadata/md5-cache/dev-ruby/faraday_middleware-0.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/lostisland/faraday_middleware/archive/v0.14.0.tar.gz -> faraday_middleware-0.14.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=15dedaf40c188fa5c806ac8f0cb1c599 diff --git a/metadata/md5-cache/dev-ruby/faraday_middleware-1.0.0 b/metadata/md5-cache/dev-ruby/faraday_middleware-1.0.0 index 9571a220601c..542f8467cec4 100644 --- a/metadata/md5-cache/dev-ruby/faraday_middleware-1.0.0 +++ b/metadata/md5-cache/dev-ruby/faraday_middleware-1.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/lostisland/faraday_middleware/archive/v1.0.0.tar.gz -> faraday_middleware-1.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ee10dd012dab7900a13b91d8d576c810 diff --git a/metadata/md5-cache/dev-ruby/faraday_middleware-1.1.0 b/metadata/md5-cache/dev-ruby/faraday_middleware-1.1.0 index dae5fce5c3ca..ca40a2e5d881 100644 --- a/metadata/md5-cache/dev-ruby/faraday_middleware-1.1.0 +++ b/metadata/md5-cache/dev-ruby/faraday_middleware-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/lostisland/faraday_middleware/archive/v1.1.0.tar.gz -> faraday_middleware-1.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2d6d3f2322501f045957ab60296acf2b diff --git a/metadata/md5-cache/dev-ruby/faraday_middleware-multi_json-0.0.6-r2 b/metadata/md5-cache/dev-ruby/faraday_middleware-multi_json-0.0.6-r2 index 5d5760a171d8..c897de24e31c 100644 --- a/metadata/md5-cache/dev-ruby/faraday_middleware-multi_json-0.0.6-r2 +++ b/metadata/md5-cache/dev-ruby/faraday_middleware-multi_json-0.0.6-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/denro/faraday_middleware-multi_json/archive/v0.0.6.tar.gz -> faraday_middleware-multi_json-0.0.6.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=712557625ce91aa282d69fc45cd3c062 diff --git a/metadata/md5-cache/dev-ruby/fast-stemmer-1.0.2-r3 b/metadata/md5-cache/dev-ruby/fast-stemmer-1.0.2-r3 index 0fff4468bce1..abe43f045dbe 100644 --- a/metadata/md5-cache/dev-ruby/fast-stemmer-1.0.2-r3 +++ b/metadata/md5-cache/dev-ruby/fast-stemmer-1.0.2-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fast-stemmer-1.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7d3ef4d0dffdade42c23b27c4cc96089 diff --git a/metadata/md5-cache/dev-ruby/fast_gettext-1.8.0 b/metadata/md5-cache/dev-ruby/fast_gettext-1.8.0 index f83fb9894ba8..4e7e288eec8d 100644 --- a/metadata/md5-cache/dev-ruby/fast_gettext-1.8.0 +++ b/metadata/md5-cache/dev-ruby/fast_gettext-1.8.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/grosser/fast_gettext/archive/v1.8.0.tar.gz -> fast_gettext-1.8.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4679d1cb37250770c154a47f5564bb17 diff --git a/metadata/md5-cache/dev-ruby/fast_gettext-2.0.3 b/metadata/md5-cache/dev-ruby/fast_gettext-2.0.3 index 151fb8aac0a3..40f742b10789 100644 --- a/metadata/md5-cache/dev-ruby/fast_gettext-2.0.3 +++ b/metadata/md5-cache/dev-ruby/fast_gettext-2.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/grosser/fast_gettext/archive/v2.0.3.tar.gz -> fast_gettext-2.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=67a0b44b5cf2b014016c2b25af2d6316 diff --git a/metadata/md5-cache/dev-ruby/fast_gettext-2.1.0 b/metadata/md5-cache/dev-ruby/fast_gettext-2.1.0 index 7d6eaeb221e1..57c19b0b4bb5 100644 --- a/metadata/md5-cache/dev-ruby/fast_gettext-2.1.0 +++ b/metadata/md5-cache/dev-ruby/fast_gettext-2.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/grosser/fast_gettext/archive/v2.1.0.tar.gz -> fast_gettext-2.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=08aadeeaa68171a7973662ab089b2663 diff --git a/metadata/md5-cache/dev-ruby/fast_gettext-2.2.0 b/metadata/md5-cache/dev-ruby/fast_gettext-2.2.0 index 036b6719d452..60ba50b7561b 100644 --- a/metadata/md5-cache/dev-ruby/fast_gettext-2.2.0 +++ b/metadata/md5-cache/dev-ruby/fast_gettext-2.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/grosser/fast_gettext/archive/v2.2.0.tar.gz -> fast_gettext-2.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6722e1131215e1becbc2ebb327f93dc3 diff --git a/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r3 b/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r3 index e15c7549f9ae..59381cdcda9a 100644 --- a/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r3 +++ b/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fast_xs-0.8.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=03b636dd419ee711b5d36ec5694711e4 diff --git a/metadata/md5-cache/dev-ruby/fattr-2.4.0 b/metadata/md5-cache/dev-ruby/fattr-2.4.0 index 31d0ffa9da6f..daabac5f71ab 100644 --- a/metadata/md5-cache/dev-ruby/fattr-2.4.0 +++ b/metadata/md5-cache/dev-ruby/fattr-2.4.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fattr-2.4.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f377f598b40dbe738be4baf16093dc07 diff --git a/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r2 b/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r2 index b9dc0209c500..c70855b902bc 100644 --- a/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r2 +++ b/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fcgi-0.9.2.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=028b21e707aa61830b3f75c44a73f7e6 diff --git a/metadata/md5-cache/dev-ruby/ferret-0.11.8.7-r1 b/metadata/md5-cache/dev-ruby/ferret-0.11.8.7-r1 index e0929377b517..031b8d37b129 100644 --- a/metadata/md5-cache/dev-ruby/ferret-0.11.8.7-r1 +++ b/metadata/md5-cache/dev-ruby/ferret-0.11.8.7-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ferret-0.11.8.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=171a23c0389fd8012084bc8894abb526 diff --git a/metadata/md5-cache/dev-ruby/ffaker-2.17.0 b/metadata/md5-cache/dev-ruby/ffaker-2.17.0 index 479d52bc3d59..759e6be01d7b 100644 --- a/metadata/md5-cache/dev-ruby/ffaker-2.17.0 +++ b/metadata/md5-cache/dev-ruby/ffaker-2.17.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ffaker-2.17.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=435213dbf69946621bef414744831344 diff --git a/metadata/md5-cache/dev-ruby/ffaker-2.18.0 b/metadata/md5-cache/dev-ruby/ffaker-2.18.0 index c0a2a6c158a7..af192eb4c102 100644 --- a/metadata/md5-cache/dev-ruby/ffaker-2.18.0 +++ b/metadata/md5-cache/dev-ruby/ffaker-2.18.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ffaker-2.18.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=850315d19eaebf04876ba2aec50c572c diff --git a/metadata/md5-cache/dev-ruby/ffaker-2.19.0 b/metadata/md5-cache/dev-ruby/ffaker-2.19.0 index d02d00f1024f..7e8a6e7bf0b4 100644 --- a/metadata/md5-cache/dev-ruby/ffaker-2.19.0 +++ b/metadata/md5-cache/dev-ruby/ffaker-2.19.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ffaker-2.19.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0dbb345876586e8bf39ca63c05980d3c diff --git a/metadata/md5-cache/dev-ruby/ffaker-2.20.0 b/metadata/md5-cache/dev-ruby/ffaker-2.20.0 index fdc4f6baac2d..d3822afb13fe 100644 --- a/metadata/md5-cache/dev-ruby/ffaker-2.20.0 +++ b/metadata/md5-cache/dev-ruby/ffaker-2.20.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ffaker-2.20.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0dbb345876586e8bf39ca63c05980d3c diff --git a/metadata/md5-cache/dev-ruby/ffaker-2.21.0 b/metadata/md5-cache/dev-ruby/ffaker-2.21.0 index d47d86c28b7f..1c618124faa3 100644 --- a/metadata/md5-cache/dev-ruby/ffaker-2.21.0 +++ b/metadata/md5-cache/dev-ruby/ffaker-2.21.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ffaker-2.21.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bfb706d8486a84b82658273613ec4c42 diff --git a/metadata/md5-cache/dev-ruby/ffi-1.14.2-r1 b/metadata/md5-cache/dev-ruby/ffi-1.14.2-r1 index cdd7c2b0021c..30716b421b92 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.14.2-r1 +++ b/metadata/md5-cache/dev-ruby/ffi-1.14.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/1.14.2.tar.gz -> ffi-git-1.14.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0ca56685a78b63369c6c54615dd71c21 diff --git a/metadata/md5-cache/dev-ruby/ffi-1.15.5 b/metadata/md5-cache/dev-ruby/ffi-1.15.5 index 3b5a41d92216..38a2b0d475f7 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.15.5 +++ b/metadata/md5-cache/dev-ruby/ffi-1.15.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/v1.15.5.tar.gz -> ffi-git-1.15.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=309d3986baea4dec0c8fa55688a7e613 diff --git a/metadata/md5-cache/dev-ruby/ffi-compiler-1.0.1-r1 b/metadata/md5-cache/dev-ruby/ffi-compiler-1.0.1-r1 index ff3067e779bd..39d43cefc46c 100644 --- a/metadata/md5-cache/dev-ruby/ffi-compiler-1.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/ffi-compiler-1.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ffi-compiler-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6f1095735660470e000ddfffe8529056 diff --git a/metadata/md5-cache/dev-ruby/file-tail-1.2.0-r1 b/metadata/md5-cache/dev-ruby/file-tail-1.2.0-r1 index 8c7f8f744ec4..3c41cf828211 100644 --- a/metadata/md5-cache/dev-ruby/file-tail-1.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/file-tail-1.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/file-tail-1.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=464bd7391d7f59c2208cbb7c8bf87cd0 diff --git a/metadata/md5-cache/dev-ruby/filesize-0.2.0 b/metadata/md5-cache/dev-ruby/filesize-0.2.0 index e06bd6ebbae9..25f72abe9bbc 100644 --- a/metadata/md5-cache/dev-ruby/filesize-0.2.0 +++ b/metadata/md5-cache/dev-ruby/filesize-0.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0.2.0 SRC_URI=https://rubygems.org/gems/filesize-0.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0eb7537b5a59abdca88f4acf024ade0d diff --git a/metadata/md5-cache/dev-ruby/filigree-0.4.1 b/metadata/md5-cache/dev-ruby/filigree-0.4.1 index ded4d7657a3c..45dbc8c11009 100644 --- a/metadata/md5-cache/dev-ruby/filigree-0.4.1 +++ b/metadata/md5-cache/dev-ruby/filigree-0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/filigree-0.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=362f5cb75b173246d5dac8a75a84e61a diff --git a/metadata/md5-cache/dev-ruby/fivemat-1.3.7 b/metadata/md5-cache/dev-ruby/fivemat-1.3.7 index 2b215f57401d..1aaf6c48b6df 100644 --- a/metadata/md5-cache/dev-ruby/fivemat-1.3.7 +++ b/metadata/md5-cache/dev-ruby/fivemat-1.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fivemat-1.3.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=509c0fcb29819cac1fb98d615ed1e729 diff --git a/metadata/md5-cache/dev-ruby/flexmock-2.3.6-r1 b/metadata/md5-cache/dev-ruby/flexmock-2.3.6-r1 index a1d51688f30c..a12bc5220b4a 100644 --- a/metadata/md5-cache/dev-ruby/flexmock-2.3.6-r1 +++ b/metadata/md5-cache/dev-ruby/flexmock-2.3.6-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/doudou/flexmock/archive/v2.3.6.tar.gz -> flexmock-2.3.6.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9b1c046d11f7162d2add36a2cc61a953 diff --git a/metadata/md5-cache/dev-ruby/flickraw-0.9.10 b/metadata/md5-cache/dev-ruby/flickraw-0.9.10 index ceec65798a8b..149b5e9ba233 100644 --- a/metadata/md5-cache/dev-ruby/flickraw-0.9.10 +++ b/metadata/md5-cache/dev-ruby/flickraw-0.9.10 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/flickraw-0.9.10.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bf8d75c6dbb49f4bdf7eea0241aec3d2 diff --git a/metadata/md5-cache/dev-ruby/flog-4.6.4 b/metadata/md5-cache/dev-ruby/flog-4.6.4 index 0c0a134065e1..53aa998370ad 100644 --- a/metadata/md5-cache/dev-ruby/flog-4.6.4 +++ b/metadata/md5-cache/dev-ruby/flog-4.6.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/flog-4.6.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c7b7dd6a5f47b62118e2fcb51ae55b3d diff --git a/metadata/md5-cache/dev-ruby/flog-4.6.5 b/metadata/md5-cache/dev-ruby/flog-4.6.5 index 90f076483934..87d7fbd397a9 100644 --- a/metadata/md5-cache/dev-ruby/flog-4.6.5 +++ b/metadata/md5-cache/dev-ruby/flog-4.6.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/flog-4.6.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8055c9d79aa0c03a06ce872996d5b563 diff --git a/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.7 b/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.7 index 17a61a69f20a..32e559dc3b6a 100644 --- a/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.7 +++ b/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/font-awesome-rails-4.7.0.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=930085b37f698871d4889ca3c3e96ba2 diff --git a/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.8 b/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.8 index 963138b2300d..c9b1e0dac148 100644 --- a/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.8 +++ b/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/font-awesome-rails-4.7.0.8.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fd7b955a3381b3940577dbe9899536ce diff --git a/metadata/md5-cache/dev-ruby/forgery-0.8.1 b/metadata/md5-cache/dev-ruby/forgery-0.8.1 index 747f01e5fa05..1485e774f2dd 100644 --- a/metadata/md5-cache/dev-ruby/forgery-0.8.1 +++ b/metadata/md5-cache/dev-ruby/forgery-0.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/forgery-0.8.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=497e6b787229f8504015a71bd1446e9a diff --git a/metadata/md5-cache/dev-ruby/forwardable-extended-2.6.0-r2 b/metadata/md5-cache/dev-ruby/forwardable-extended-2.6.0-r2 index 78eb77ffbf64..53e9758bddad 100644 --- a/metadata/md5-cache/dev-ruby/forwardable-extended-2.6.0-r2 +++ b/metadata/md5-cache/dev-ruby/forwardable-extended-2.6.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/envygeeks/forwardable-extended/archive/v2.6.0.tar.gz -> forwardable-extended-2.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=92ff19d45e9780f359b1578143bcb7cd diff --git a/metadata/md5-cache/dev-ruby/fuubar-2.5.0-r1 b/metadata/md5-cache/dev-ruby/fuubar-2.5.0-r1 index b29681b70049..a19466fefb88 100644 --- a/metadata/md5-cache/dev-ruby/fuubar-2.5.0-r1 +++ b/metadata/md5-cache/dev-ruby/fuubar-2.5.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/thekompanee/fuubar/archive/releases/v2.5.0.tar.gz -> fuubar-2.5.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8288528bf6168ce97e8bad4645f4a7aa diff --git a/metadata/md5-cache/dev-ruby/fuubar-2.5.1 b/metadata/md5-cache/dev-ruby/fuubar-2.5.1 index 48929efd2478..704b427eeae4 100644 --- a/metadata/md5-cache/dev-ruby/fuubar-2.5.1 +++ b/metadata/md5-cache/dev-ruby/fuubar-2.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/thekompanee/fuubar/archive/releases/v2.5.1.tar.gz -> fuubar-2.5.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=668eecdf83b935c8d733bef0380b81db diff --git a/metadata/md5-cache/dev-ruby/gettext-setup-0.34-r2 b/metadata/md5-cache/dev-ruby/gettext-setup-0.34-r2 index 4a4a4f262c06..ef2146349277 100644 --- a/metadata/md5-cache/dev-ruby/gettext-setup-0.34-r2 +++ b/metadata/md5-cache/dev-ruby/gettext-setup-0.34-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/puppetlabs/gettext-setup-gem/archive/0.34.tar.gz -> gettext-setup-0.34.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ea52303533e16fb28255127e28fc0cd4 diff --git a/metadata/md5-cache/dev-ruby/gettext_i18n_rails-1.8.1 b/metadata/md5-cache/dev-ruby/gettext_i18n_rails-1.8.1 index bbdc7ccdedd8..8b4d0615d401 100644 --- a/metadata/md5-cache/dev-ruby/gettext_i18n_rails-1.8.1 +++ b/metadata/md5-cache/dev-ruby/gettext_i18n_rails-1.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/grosser/gettext_i18n_rails/archive/v1.8.1.tar.gz -> gettext_i18n_rails-1.8.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=165b0b43bad1f4a7de779d3ff65cc6f3 diff --git a/metadata/md5-cache/dev-ruby/gh-0.18.0 b/metadata/md5-cache/dev-ruby/gh-0.18.0 index 4b041f6fcffb..638773c950e1 100644 --- a/metadata/md5-cache/dev-ruby/gh-0.18.0 +++ b/metadata/md5-cache/dev-ruby/gh-0.18.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/travis-ci/gh/archive/v0.18.0.tar.gz -> gh-0.18.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7fef9882a67d8a80c93dea0456621775 diff --git a/metadata/md5-cache/dev-ruby/gherkin-5.1.0 b/metadata/md5-cache/dev-ruby/gherkin-5.1.0 index d1389fc86e9c..fd2683753122 100644 --- a/metadata/md5-cache/dev-ruby/gherkin-5.1.0 +++ b/metadata/md5-cache/dev-ruby/gherkin-5.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/gherkin-5.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=aff42f87036d8fc9e77e99f5fed5f0da diff --git a/metadata/md5-cache/dev-ruby/gist-6.0.0 b/metadata/md5-cache/dev-ruby/gist-6.0.0 index bb5844ff8da8..771dee326e9d 100644 --- a/metadata/md5-cache/dev-ruby/gist-6.0.0 +++ b/metadata/md5-cache/dev-ruby/gist-6.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/gist-6.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=643ca19d31a6047355265d1f9db0a802 diff --git a/metadata/md5-cache/dev-ruby/git-1.10.0 b/metadata/md5-cache/dev-ruby/git-1.10.0 index f56ae99111d1..162f53ab172e 100644 --- a/metadata/md5-cache/dev-ruby/git-1.10.0 +++ b/metadata/md5-cache/dev-ruby/git-1.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/schacon/ruby-git/archive/v1.10.0.tar.gz -> git-1.10.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fc0e8f2316d7a718aa230aab159f44d1 diff --git a/metadata/md5-cache/dev-ruby/git-1.10.2 b/metadata/md5-cache/dev-ruby/git-1.10.2 index 43a22f50af02..cbfd5de420ad 100644 --- a/metadata/md5-cache/dev-ruby/git-1.10.2 +++ b/metadata/md5-cache/dev-ruby/git-1.10.2 @@ -5,12 +5,12 @@ DESCRIPTION=Library for using Git in Ruby EAPI=8 HOMEPAGE=https://github.com/schacon/ruby-git IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~ppc ~ppc64 ~x86 LICENSE=MIT RDEPEND=>=dev-vcs/git-1.6.0.0 ruby_targets_ruby26? ( >=dev-ruby/rchardet-1.8:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/rchardet-1.8:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/rchardet-1.8:1[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/schacon/ruby-git/archive/v1.10.2.tar.gz -> git-1.10.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=7998a16af5b4d6249eda5b13aec65b4b +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=4de49bddcb7e4f0345a88780c5bbaca8 diff --git a/metadata/md5-cache/dev-ruby/git-1.11.0 b/metadata/md5-cache/dev-ruby/git-1.11.0 new file mode 100644 index 000000000000..38c1e96331d4 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/git-1.11.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/rchardet-1.8:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/rchardet-1.8:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/rchardet-1.8:1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/rchardet-1.8:1[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/bundler[ruby_targets_ruby26(-)] dev-ruby/minitar[ruby_targets_ruby26(-)] dev-ruby/test-unit:2[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-ruby/minitar[ruby_targets_ruby27(-)] dev-ruby/test-unit:2[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/bundler[ruby_targets_ruby30(-)] dev-ruby/minitar[ruby_targets_ruby30(-)] dev-ruby/test-unit:2[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/bundler[ruby_targets_ruby31(-)] dev-ruby/minitar[ruby_targets_ruby31(-)] dev-ruby/test-unit:2[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( >=dev-vcs/git-1.6.0.0 app-arch/tar ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DESCRIPTION=Library for using Git in Ruby +EAPI=8 +HOMEPAGE=https://github.com/schacon/ruby-git +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-vcs/git-1.6.0.0 ruby_targets_ruby26? ( >=dev-ruby/rchardet-1.8:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/rchardet-1.8:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/rchardet-1.8:1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/rchardet-1.8:1[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/schacon/ruby-git/archive/v1.11.0.tar.gz -> git-1.11.0.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=72bebc00f79bf1a881cf045e0b82adc9 diff --git a/metadata/md5-cache/dev-ruby/git-1.9.1 b/metadata/md5-cache/dev-ruby/git-1.9.1 index b5f503163b15..c38b2d4eade8 100644 --- a/metadata/md5-cache/dev-ruby/git-1.9.1 +++ b/metadata/md5-cache/dev-ruby/git-1.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/schacon/ruby-git/archive/v1.9.1.tar.gz -> git-1.9.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=90691c5b224565517da8f9b5a8dc114d diff --git a/metadata/md5-cache/dev-ruby/globalid-0.4.2-r2 b/metadata/md5-cache/dev-ruby/globalid-0.4.2-r2 index dd9d8c11a264..679c48422005 100644 --- a/metadata/md5-cache/dev-ruby/globalid-0.4.2-r2 +++ b/metadata/md5-cache/dev-ruby/globalid-0.4.2-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rails/globalid/archive/v0.4.2.tar.gz -> globalid-0.4.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dab3745abc0af58a9b4275fb6b95f2b9 diff --git a/metadata/md5-cache/dev-ruby/globalid-0.5.1 b/metadata/md5-cache/dev-ruby/globalid-0.5.1 index fda301310f44..063720801b70 100644 --- a/metadata/md5-cache/dev-ruby/globalid-0.5.1 +++ b/metadata/md5-cache/dev-ruby/globalid-0.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rails/globalid/archive/v0.5.1.tar.gz -> globalid-0.5.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=acc1b5e3a0b07f00cfc2ea8edffc4366 diff --git a/metadata/md5-cache/dev-ruby/globalid-0.5.2 b/metadata/md5-cache/dev-ruby/globalid-0.5.2 index a2f62f738e5e..1a2bfe1a901a 100644 --- a/metadata/md5-cache/dev-ruby/globalid-0.5.2 +++ b/metadata/md5-cache/dev-ruby/globalid-0.5.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rails/globalid/archive/v0.5.2.tar.gz -> globalid-0.5.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=acc1b5e3a0b07f00cfc2ea8edffc4366 diff --git a/metadata/md5-cache/dev-ruby/globalid-0.6.0 b/metadata/md5-cache/dev-ruby/globalid-0.6.0 index a595ecafb7b2..154a59e960d4 100644 --- a/metadata/md5-cache/dev-ruby/globalid-0.6.0 +++ b/metadata/md5-cache/dev-ruby/globalid-0.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rails/globalid/archive/v0.6.0.tar.gz -> globalid-0.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=acc1b5e3a0b07f00cfc2ea8edffc4366 diff --git a/metadata/md5-cache/dev-ruby/globalid-1.0.0 b/metadata/md5-cache/dev-ruby/globalid-1.0.0 index 19121f47c485..e8fde74416d7 100644 --- a/metadata/md5-cache/dev-ruby/globalid-1.0.0 +++ b/metadata/md5-cache/dev-ruby/globalid-1.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rails/globalid/archive/v1.0.0.tar.gz -> globalid-1.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=acc1b5e3a0b07f00cfc2ea8edffc4366 diff --git a/metadata/md5-cache/dev-ruby/globalid-1.0.0-r1 b/metadata/md5-cache/dev-ruby/globalid-1.0.0-r1 index 4e99cedbeb3f..2d86aa55416d 100644 --- a/metadata/md5-cache/dev-ruby/globalid-1.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/globalid-1.0.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rails/globalid/archive/v1.0.0.tar.gz -> globalid-1.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1255bde636bff50c3f5bb480eb3b4da8 diff --git a/metadata/md5-cache/dev-ruby/gnuplot-2.6.2-r3 b/metadata/md5-cache/dev-ruby/gnuplot-2.6.2-r3 index 330df9c073c6..b32e204735b8 100644 --- a/metadata/md5-cache/dev-ruby/gnuplot-2.6.2-r3 +++ b/metadata/md5-cache/dev-ruby/gnuplot-2.6.2-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/gnuplot-2.6.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ae9e95f62527583039785c7146e67c89 diff --git a/metadata/md5-cache/dev-ruby/google-protobuf-3.14.0 b/metadata/md5-cache/dev-ruby/google-protobuf-3.14.0 index c5cf8841a25f..8575dcdd3d17 100644 --- a/metadata/md5-cache/dev-ruby/google-protobuf-3.14.0 +++ b/metadata/md5-cache/dev-ruby/google-protobuf-3.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.14.0.tar.gz -> google-protobuf-3.14.0-ruby.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f495d8b4807204618d2a02873b95d8b8 diff --git a/metadata/md5-cache/dev-ruby/google-protobuf-3.19.3 b/metadata/md5-cache/dev-ruby/google-protobuf-3.19.3 index 3d66a00899f4..360e33caf193 100644 --- a/metadata/md5-cache/dev-ruby/google-protobuf-3.19.3 +++ b/metadata/md5-cache/dev-ruby/google-protobuf-3.19.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.19.3.tar.gz -> google-protobuf-3.19.3-ruby.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=55f5a5c5f165b76682228f3baf7243ca diff --git a/metadata/md5-cache/dev-ruby/gpgme-2.0.20-r2 b/metadata/md5-cache/dev-ruby/gpgme-2.0.20-r2 index cba40489ba9f..9ce7fb616c9a 100644 --- a/metadata/md5-cache/dev-ruby/gpgme-2.0.20-r2 +++ b/metadata/md5-cache/dev-ruby/gpgme-2.0.20-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) || ( ruby_targets_ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ueno/ruby-gpgme/archive/v2.0.20.tar.gz -> ruby-gpgme-2.0.20.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=fb5a526b102e96a042dd48d42f3f58b4 diff --git a/metadata/md5-cache/dev-ruby/gpgme-2.0.20-r3 b/metadata/md5-cache/dev-ruby/gpgme-2.0.20-r3 index b3c35465fbf2..24a7f06cc30c 100644 --- a/metadata/md5-cache/dev-ruby/gpgme-2.0.20-r3 +++ b/metadata/md5-cache/dev-ruby/gpgme-2.0.20-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ueno/ruby-gpgme/archive/v2.0.20.tar.gz -> ruby-gpgme-2.0.20.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5c99336805a11ac32b879d1e6cc0caab diff --git a/metadata/md5-cache/dev-ruby/gruff-0.14.0 b/metadata/md5-cache/dev-ruby/gruff-0.14.0 index 4d34217b8fea..b5354df4fe99 100644 --- a/metadata/md5-cache/dev-ruby/gruff-0.14.0 +++ b/metadata/md5-cache/dev-ruby/gruff-0.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/topfunky/gruff/archive/v0.14.0.tar.gz -> gruff-0.14.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=05fda139f6ce51876d62390649023847 diff --git a/metadata/md5-cache/dev-ruby/gruff-0.15.0 b/metadata/md5-cache/dev-ruby/gruff-0.15.0 new file mode 100644 index 000000000000..8d707bae776e --- /dev/null +++ b/metadata/md5-cache/dev-ruby/gruff-0.15.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby26? ( dev-ruby/histogram[ruby_targets_ruby26(-)] >=dev-ruby/rmagick-4.2:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/histogram[ruby_targets_ruby27(-)] >=dev-ruby/rmagick-4.2:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/histogram[ruby_targets_ruby30(-)] >=dev-ruby/rmagick-4.2:*[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/test-unit[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/test-unit[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/test-unit[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( media-gfx/imagemagick[jpeg,png,truetype,webp] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DESCRIPTION=Beautiful graphs for one or multiple datasets +EAPI=8 +HOMEPAGE=https://github.com/topfunky/gruff +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=media-gfx/imagemagick[truetype] ruby_targets_ruby26? ( dev-ruby/histogram[ruby_targets_ruby26(-)] >=dev-ruby/rmagick-4.2:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/histogram[ruby_targets_ruby27(-)] >=dev-ruby/rmagick-4.2:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/histogram[ruby_targets_ruby30(-)] >=dev-ruby/rmagick-4.2:*[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/topfunky/gruff/archive/v0.15.0.tar.gz -> gruff-0.15.0.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=fb2c6600668711d598175896f15e9864 diff --git a/metadata/md5-cache/dev-ruby/haml-5.2.2 b/metadata/md5-cache/dev-ruby/haml-5.2.2 index a4646d6c218a..033e525072af 100644 --- a/metadata/md5-cache/dev-ruby/haml-5.2.2 +++ b/metadata/md5-cache/dev-ruby/haml-5.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/haml/haml/archive/v5.2.2.tar.gz -> haml-5.2.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5681d8a33f55c1b7a6c9ba89908037d4 diff --git a/metadata/md5-cache/dev-ruby/haml-rails-2.0.1 b/metadata/md5-cache/dev-ruby/haml-rails-2.0.1 index 82c49befc34f..6ad648a76918 100644 --- a/metadata/md5-cache/dev-ruby/haml-rails-2.0.1 +++ b/metadata/md5-cache/dev-ruby/haml-rails-2.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/haml-rails-2.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c2e3b092acd0eb86fef6e5ced378ce10 diff --git a/metadata/md5-cache/dev-ruby/hamster-3.0.0-r2 b/metadata/md5-cache/dev-ruby/hamster-3.0.0-r2 index c560c4e668de..22df6ebed098 100644 --- a/metadata/md5-cache/dev-ruby/hamster-3.0.0-r2 +++ b/metadata/md5-cache/dev-ruby/hamster-3.0.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hamster-3.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=47cbfdf6c5ea2371af6a9352bbe52529 diff --git a/metadata/md5-cache/dev-ruby/hashdiff-1.0.1 b/metadata/md5-cache/dev-ruby/hashdiff-1.0.1 index defddaf2fe5a..9e030778a9eb 100644 --- a/metadata/md5-cache/dev-ruby/hashdiff-1.0.1 +++ b/metadata/md5-cache/dev-ruby/hashdiff-1.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hashdiff-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9001082b6b42099ec4902e0cfb54f56e diff --git a/metadata/md5-cache/dev-ruby/hashery-2.1.2-r1 b/metadata/md5-cache/dev-ruby/hashery-2.1.2-r1 index e94d8d84ba2c..7a226991ffab 100644 --- a/metadata/md5-cache/dev-ruby/hashery-2.1.2-r1 +++ b/metadata/md5-cache/dev-ruby/hashery-2.1.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hashery-2.1.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f515ea88037bbd20d7ef8180c90e10ae diff --git a/metadata/md5-cache/dev-ruby/hashicorp-checkpoint-0.1.5-r1 b/metadata/md5-cache/dev-ruby/hashicorp-checkpoint-0.1.5-r1 index ab7e3a74fa66..f4b6c66c0105 100644 --- a/metadata/md5-cache/dev-ruby/hashicorp-checkpoint-0.1.5-r1 +++ b/metadata/md5-cache/dev-ruby/hashicorp-checkpoint-0.1.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/hashicorp-checkpoint-0.1.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8d7f13eb2465ba7a3b6ccbc0fbb2eff9 diff --git a/metadata/md5-cache/dev-ruby/hashie-3.6.0 b/metadata/md5-cache/dev-ruby/hashie-3.6.0 index 171695a1e1a0..4255c09c48a4 100644 --- a/metadata/md5-cache/dev-ruby/hashie-3.6.0 +++ b/metadata/md5-cache/dev-ruby/hashie-3.6.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/hashie-3.6.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dad64ab32a92fd91ed5a7e46983f0d44 diff --git a/metadata/md5-cache/dev-ruby/hashie-4.1.0-r1 b/metadata/md5-cache/dev-ruby/hashie-4.1.0-r1 index 1248cab25d2a..9de4d861f9bb 100644 --- a/metadata/md5-cache/dev-ruby/hashie-4.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/hashie-4.1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/intridea/hashie/archive/v4.1.0.tar.gz -> hashie-4.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2cba4f0722cfbbc1d7f02a26d5f34f41 diff --git a/metadata/md5-cache/dev-ruby/hashie-5.0.0 b/metadata/md5-cache/dev-ruby/hashie-5.0.0 index aad5e0f47ef6..e50b78e92b44 100644 --- a/metadata/md5-cache/dev-ruby/hashie-5.0.0 +++ b/metadata/md5-cache/dev-ruby/hashie-5.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/intridea/hashie/archive/v5.0.0.tar.gz -> hashie-5.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=612ab3a0e0b533e7181ccc87412d1332 diff --git a/metadata/md5-cache/dev-ruby/hashr-2.0.1-r1 b/metadata/md5-cache/dev-ruby/hashr-2.0.1-r1 index f15e677f686b..3478900dbe2b 100644 --- a/metadata/md5-cache/dev-ruby/hashr-2.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/hashr-2.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hashr-2.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=51be2ac52157951e2d293948a0309b74 diff --git a/metadata/md5-cache/dev-ruby/heredoc_unindent-1.2.0-r1 b/metadata/md5-cache/dev-ruby/heredoc_unindent-1.2.0-r1 index 264e05459a83..de855d8f12ef 100644 --- a/metadata/md5-cache/dev-ruby/heredoc_unindent-1.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/heredoc_unindent-1.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/heredoc_unindent-1.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1653631711a2159665551ee33e1eee2a diff --git a/metadata/md5-cache/dev-ruby/hiera-3.6.0 b/metadata/md5-cache/dev-ruby/hiera-3.6.0 index 0628a4427859..4ff17be3c72a 100644 --- a/metadata/md5-cache/dev-ruby/hiera-3.6.0 +++ b/metadata/md5-cache/dev-ruby/hiera-3.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hiera-3.6.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f0fe4b59bee92a8ddf3fcc511d0a666a diff --git a/metadata/md5-cache/dev-ruby/hiera-3.7.0 b/metadata/md5-cache/dev-ruby/hiera-3.7.0 index 6ae67ee24be0..8edabd001014 100644 --- a/metadata/md5-cache/dev-ruby/hiera-3.7.0 +++ b/metadata/md5-cache/dev-ruby/hiera-3.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hiera-3.7.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1065aeb9fc98c081759e2782b673ee7f diff --git a/metadata/md5-cache/dev-ruby/hiera-3.8.0 b/metadata/md5-cache/dev-ruby/hiera-3.8.0 index fbab3995d3dd..0b1fb5fe0176 100644 --- a/metadata/md5-cache/dev-ruby/hiera-3.8.0 +++ b/metadata/md5-cache/dev-ruby/hiera-3.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hiera-3.8.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=27e02dcb24471742dfa9db8b6ea6adb0 diff --git a/metadata/md5-cache/dev-ruby/hiera-eyaml-3.1.1 b/metadata/md5-cache/dev-ruby/hiera-eyaml-3.1.1 index 42a6fd7ccd58..6b91a047fbd9 100644 --- a/metadata/md5-cache/dev-ruby/hiera-eyaml-3.1.1 +++ b/metadata/md5-cache/dev-ruby/hiera-eyaml-3.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/TomPoulton/hiera-eyaml/archive/v3.1.1.tar.gz -> hiera-eyaml-3.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e6cea6e67ae1b58e80a5e24f6b247ce9 diff --git a/metadata/md5-cache/dev-ruby/hiera-eyaml-3.2.2 b/metadata/md5-cache/dev-ruby/hiera-eyaml-3.2.2 index 552971e5eeb1..bd5e8a39756c 100644 --- a/metadata/md5-cache/dev-ruby/hiera-eyaml-3.2.2 +++ b/metadata/md5-cache/dev-ruby/hiera-eyaml-3.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/TomPoulton/hiera-eyaml/archive/v3.2.2.tar.gz -> hiera-eyaml-3.2.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6d497c622e559177fe0a63ed4eaeee74 diff --git a/metadata/md5-cache/dev-ruby/hiera-eyaml-gpg-0.7.4 b/metadata/md5-cache/dev-ruby/hiera-eyaml-gpg-0.7.4 index 598a4402ad27..894d85cc1c30 100644 --- a/metadata/md5-cache/dev-ruby/hiera-eyaml-gpg-0.7.4 +++ b/metadata/md5-cache/dev-ruby/hiera-eyaml-gpg-0.7.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hiera-eyaml-gpg-0.7.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=96bac9d74e0c46558ca895ca9722023b diff --git a/metadata/md5-cache/dev-ruby/hiera-eyaml-plaintext-0.6-r2 b/metadata/md5-cache/dev-ruby/hiera-eyaml-plaintext-0.6-r2 index b07200593fe2..54b501a64b03 100644 --- a/metadata/md5-cache/dev-ruby/hiera-eyaml-plaintext-0.6-r2 +++ b/metadata/md5-cache/dev-ruby/hiera-eyaml-plaintext-0.6-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hiera-eyaml-plaintext-0.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a145e69c63155c734c9dbc80ce555c01 diff --git a/metadata/md5-cache/dev-ruby/highline-2.0.3 b/metadata/md5-cache/dev-ruby/highline-2.0.3 index c4e85ba0365a..87833308fbdd 100644 --- a/metadata/md5-cache/dev-ruby/highline-2.0.3 +++ b/metadata/md5-cache/dev-ruby/highline-2.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/JEG2/highline/archive/v2.0.3.tar.gz -> highline-2.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fc4ba5496eabdc9ae1e140a52f5d2e10 diff --git a/metadata/md5-cache/dev-ruby/hipchat-1.6.0 b/metadata/md5-cache/dev-ruby/hipchat-1.6.0 index 771c50220088..89d757e644b9 100644 --- a/metadata/md5-cache/dev-ruby/hipchat-1.6.0 +++ b/metadata/md5-cache/dev-ruby/hipchat-1.6.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/hipchat/hipchat-rb/archive/v1.6.0.tar.gz -> hipchat-1.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=89fdc656c756246e03ce9f424dd3b054 diff --git a/metadata/md5-cache/dev-ruby/hiredis-0.6.3-r1 b/metadata/md5-cache/dev-ruby/hiredis-0.6.3-r1 index 9fe7934bf212..65f59bec6b66 100644 --- a/metadata/md5-cache/dev-ruby/hiredis-0.6.3-r1 +++ b/metadata/md5-cache/dev-ruby/hiredis-0.6.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/redis/hiredis-rb/archive/v0.6.3.tar.gz -> hiredis-rb-0.6.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4d1f75601845bc05e5f1fa1bde2a29de diff --git a/metadata/md5-cache/dev-ruby/histogram-0.2.4.1 b/metadata/md5-cache/dev-ruby/histogram-0.2.4.1 index fa0c924edab2..84075a639e97 100644 --- a/metadata/md5-cache/dev-ruby/histogram-0.2.4.1 +++ b/metadata/md5-cache/dev-ruby/histogram-0.2.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/histogram-0.2.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=addc6f09d26fb1d75f064a937132f60a diff --git a/metadata/md5-cache/dev-ruby/hitimes-2.0.0 b/metadata/md5-cache/dev-ruby/hitimes-2.0.0 index 45fea58c9f4a..3cfba7fe716b 100644 --- a/metadata/md5-cache/dev-ruby/hitimes-2.0.0 +++ b/metadata/md5-cache/dev-ruby/hitimes-2.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hitimes-2.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1490cf35f4933085e182d815cef7dc4f diff --git a/metadata/md5-cache/dev-ruby/hocon-1.3.1 b/metadata/md5-cache/dev-ruby/hocon-1.3.1 index 9d27306dba27..a4b2a12403d2 100644 --- a/metadata/md5-cache/dev-ruby/hocon-1.3.1 +++ b/metadata/md5-cache/dev-ruby/hocon-1.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/puppetlabs/ruby-hocon/archive/1.3.1.tar.gz -> hocon-1.3.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=433e52181c665d2c1c549d13a61660cd diff --git a/metadata/md5-cache/dev-ruby/hocon-1.3.1-r1 b/metadata/md5-cache/dev-ruby/hocon-1.3.1-r1 index 27e54d508688..db4ad0593a3a 100644 --- a/metadata/md5-cache/dev-ruby/hocon-1.3.1-r1 +++ b/metadata/md5-cache/dev-ruby/hocon-1.3.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/puppetlabs/ruby-hocon/archive/1.3.1.tar.gz -> hocon-1.3.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e913078ae567c4f28f92a491bdab7c0b diff --git a/metadata/md5-cache/dev-ruby/hoe-3.21.0 b/metadata/md5-cache/dev-ruby/hoe-3.21.0 index 6092e21088f7..e071cecee5a9 100644 --- a/metadata/md5-cache/dev-ruby/hoe-3.21.0 +++ b/metadata/md5-cache/dev-ruby/hoe-3.21.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hoe-3.21.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d8c7bea2c5d9bcb94785e01c0a53c47f diff --git a/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r6 b/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r6 index dcfdc03a2ae3..b7706ae267c1 100644 --- a/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r6 +++ b/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hpricot-0.8.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c8e2e76c15c05daf33656458a921f4a8 diff --git a/metadata/md5-cache/dev-ruby/html2haml-2.2.0-r1 b/metadata/md5-cache/dev-ruby/html2haml-2.2.0-r1 index 6b912ef17689..f35041bbd719 100644 --- a/metadata/md5-cache/dev-ruby/html2haml-2.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/html2haml-2.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/html2haml-2.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6089907745ea644e38443a0798bb3e5f diff --git a/metadata/md5-cache/dev-ruby/htmlentities-4.3.4-r1 b/metadata/md5-cache/dev-ruby/htmlentities-4.3.4-r1 index 6c9ad4f0ad97..a195260feafb 100644 --- a/metadata/md5-cache/dev-ruby/htmlentities-4.3.4-r1 +++ b/metadata/md5-cache/dev-ruby/htmlentities-4.3.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/htmlentities-4.3.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=58e9743df97d94c37cd0d5dac52fc0ba diff --git a/metadata/md5-cache/dev-ruby/http-4.1.1 b/metadata/md5-cache/dev-ruby/http-4.1.1 index 5040c311bee1..8501e1f359e7 100644 --- a/metadata/md5-cache/dev-ruby/http-4.1.1 +++ b/metadata/md5-cache/dev-ruby/http-4.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/http-4.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ca1207ca6dea6cfd88ee2045e832ff81 diff --git a/metadata/md5-cache/dev-ruby/http-4.4.1 b/metadata/md5-cache/dev-ruby/http-4.4.1 index c5344e958fe1..fd7f8b2ab76c 100644 --- a/metadata/md5-cache/dev-ruby/http-4.4.1 +++ b/metadata/md5-cache/dev-ruby/http-4.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/http-4.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7e13c89db8792ddd970e4e906efa9af2 diff --git a/metadata/md5-cache/dev-ruby/http-accept-1.7.0 b/metadata/md5-cache/dev-ruby/http-accept-1.7.0 index 62bb94e439af..82fcc90a3cf7 100644 --- a/metadata/md5-cache/dev-ruby/http-accept-1.7.0 +++ b/metadata/md5-cache/dev-ruby/http-accept-1.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/socketry/http-accept/archive/v1.7.0.tar.gz -> http-accept-1.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=84c0c82bb9957de694b8c9f6ed89c8dc diff --git a/metadata/md5-cache/dev-ruby/http-accept-2.1.1 b/metadata/md5-cache/dev-ruby/http-accept-2.1.1 index 80265586c71a..b937d5de0abf 100644 --- a/metadata/md5-cache/dev-ruby/http-accept-2.1.1 +++ b/metadata/md5-cache/dev-ruby/http-accept-2.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/socketry/http-accept/archive/v2.1.1.tar.gz -> http-accept-2.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=55b02e53c406e248497f6dea7b2275d4 diff --git a/metadata/md5-cache/dev-ruby/http-cookie-1.0.4 b/metadata/md5-cache/dev-ruby/http-cookie-1.0.4 index 1dc0cf3cff5b..33d9a2ebb57b 100644 --- a/metadata/md5-cache/dev-ruby/http-cookie-1.0.4 +++ b/metadata/md5-cache/dev-ruby/http-cookie-1.0.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/http-cookie-1.0.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c4dfc36d80db7bdfa6eb9dadbdca430e diff --git a/metadata/md5-cache/dev-ruby/http-form_data-2.2.0 b/metadata/md5-cache/dev-ruby/http-form_data-2.2.0 index c3dd509b4fd4..8051230332e9 100644 --- a/metadata/md5-cache/dev-ruby/http-form_data-2.2.0 +++ b/metadata/md5-cache/dev-ruby/http-form_data-2.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/http-form_data-2.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e11f29a7fb1f32216d84d0d9d9cbbf64 diff --git a/metadata/md5-cache/dev-ruby/http-form_data-2.3.0 b/metadata/md5-cache/dev-ruby/http-form_data-2.3.0 index 4376474d206b..b5d504be3d54 100644 --- a/metadata/md5-cache/dev-ruby/http-form_data-2.3.0 +++ b/metadata/md5-cache/dev-ruby/http-form_data-2.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/http-form_data-2.3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0f2c83f47b1bb99f7cbb3b833f961a4c diff --git a/metadata/md5-cache/dev-ruby/http-parser-1.2.3 b/metadata/md5-cache/dev-ruby/http-parser-1.2.3 index 7dd328131fc5..988861fe03de 100644 --- a/metadata/md5-cache/dev-ruby/http-parser-1.2.3 +++ b/metadata/md5-cache/dev-ruby/http-parser-1.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/http-parser-1.2.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=68cd04b60bfd693e074fd28dfbff31a6 diff --git a/metadata/md5-cache/dev-ruby/http-parser-1.2.3-r1 b/metadata/md5-cache/dev-ruby/http-parser-1.2.3-r1 index c2a653c2b0a3..f3d2d3186b35 100644 --- a/metadata/md5-cache/dev-ruby/http-parser-1.2.3-r1 +++ b/metadata/md5-cache/dev-ruby/http-parser-1.2.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/http-parser-1.2.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=03971b8b137b40afbe996eb8851708db diff --git a/metadata/md5-cache/dev-ruby/http_parser_rb-0.6.0-r2 b/metadata/md5-cache/dev-ruby/http_parser_rb-0.6.0-r2 index 5a90fe3f6515..8e34b5514c50 100644 --- a/metadata/md5-cache/dev-ruby/http_parser_rb-0.6.0-r2 +++ b/metadata/md5-cache/dev-ruby/http_parser_rb-0.6.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/http_parser.rb-0.6.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ac025d16b05c7d18536c08ba3100f443 diff --git a/metadata/md5-cache/dev-ruby/httparty-0.18.1 b/metadata/md5-cache/dev-ruby/httparty-0.18.1 index 9a9c59cdc5cd..952e6a753d5a 100644 --- a/metadata/md5-cache/dev-ruby/httparty-0.18.1 +++ b/metadata/md5-cache/dev-ruby/httparty-0.18.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jnunemaker/httparty/archive/v0.18.1.tar.gz -> httparty-0.18.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c9c6e4a56ffd9388c2253356c633f267 diff --git a/metadata/md5-cache/dev-ruby/httparty-0.19.0 b/metadata/md5-cache/dev-ruby/httparty-0.19.0 index 3ff4b18c0fcc..bf3f521fb9da 100644 --- a/metadata/md5-cache/dev-ruby/httparty-0.19.0 +++ b/metadata/md5-cache/dev-ruby/httparty-0.19.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jnunemaker/httparty/archive/v0.19.0.tar.gz -> httparty-0.19.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7137544445b2e6563905b85dc7fe0fdb diff --git a/metadata/md5-cache/dev-ruby/httparty-0.20.0 b/metadata/md5-cache/dev-ruby/httparty-0.20.0 index e764d39acf76..bf3d20be1d5d 100644 --- a/metadata/md5-cache/dev-ruby/httparty-0.20.0 +++ b/metadata/md5-cache/dev-ruby/httparty-0.20.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jnunemaker/httparty/archive/v0.20.0.tar.gz -> httparty-0.20.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7137544445b2e6563905b85dc7fe0fdb diff --git a/metadata/md5-cache/dev-ruby/httpauth-0.2.1-r1 b/metadata/md5-cache/dev-ruby/httpauth-0.2.1-r1 index b418e559eec4..fa5dd8499aab 100644 --- a/metadata/md5-cache/dev-ruby/httpauth-0.2.1-r1 +++ b/metadata/md5-cache/dev-ruby/httpauth-0.2.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/Manfred/HTTPauth/archive/v0.2.1.tar.gz -> httpauth-0.2.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e80bcfbf99614593adbc38afdaaccec7 diff --git a/metadata/md5-cache/dev-ruby/httpclient-2.8.3-r2 b/metadata/md5-cache/dev-ruby/httpclient-2.8.3-r2 index 68829ef0a01a..65661f2522e7 100644 --- a/metadata/md5-cache/dev-ruby/httpclient-2.8.3-r2 +++ b/metadata/md5-cache/dev-ruby/httpclient-2.8.3-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nahi/httpclient/archive/v2.8.3.tar.gz -> httpclient-2.8.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e641dfbe7367c12bb254241611a34fdf diff --git a/metadata/md5-cache/dev-ruby/i18n-1.10.0 b/metadata/md5-cache/dev-ruby/i18n-1.10.0 index 93b6034ff7ac..cfb134f81da5 100644 --- a/metadata/md5-cache/dev-ruby/i18n-1.10.0 +++ b/metadata/md5-cache/dev-ruby/i18n-1.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/svenfuchs/i18n/archive/v1.10.0.tar.gz -> i18n-1.10.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ae0a2de6f0addb1ad71fe64b999fbfda diff --git a/metadata/md5-cache/dev-ruby/i18n-1.8.10 b/metadata/md5-cache/dev-ruby/i18n-1.8.10 index c16d1225e58f..88ca7d02ad62 100644 --- a/metadata/md5-cache/dev-ruby/i18n-1.8.10 +++ b/metadata/md5-cache/dev-ruby/i18n-1.8.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/svenfuchs/i18n/archive/v1.8.10.tar.gz -> i18n-1.8.10.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f55beda10f1744e52c0a1b4249a83bce diff --git a/metadata/md5-cache/dev-ruby/i18n-1.8.11 b/metadata/md5-cache/dev-ruby/i18n-1.8.11 index 0f71bfb337ed..a95335806714 100644 --- a/metadata/md5-cache/dev-ruby/i18n-1.8.11 +++ b/metadata/md5-cache/dev-ruby/i18n-1.8.11 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/svenfuchs/i18n/archive/v1.8.11.tar.gz -> i18n-1.8.11.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=86868518b8c67f9a395ec15b80a03111 diff --git a/metadata/md5-cache/dev-ruby/i18n-1.8.9 b/metadata/md5-cache/dev-ruby/i18n-1.8.9 index 49479ca691af..216a67eaa39e 100644 --- a/metadata/md5-cache/dev-ruby/i18n-1.8.9 +++ b/metadata/md5-cache/dev-ruby/i18n-1.8.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/svenfuchs/i18n/archive/v1.8.9.tar.gz -> i18n-1.8.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dd0c9ab7783dfa69f2f8d9b3774d9f67 diff --git a/metadata/md5-cache/dev-ruby/i18n-1.9.1 b/metadata/md5-cache/dev-ruby/i18n-1.9.1 index b30dbf7e721c..7fb518081f01 100644 --- a/metadata/md5-cache/dev-ruby/i18n-1.9.1 +++ b/metadata/md5-cache/dev-ruby/i18n-1.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/svenfuchs/i18n/archive/v1.9.1.tar.gz -> i18n-1.9.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=30474d11f91e43df9622f4f623d5e4eb diff --git a/metadata/md5-cache/dev-ruby/ice_nine-0.11.2-r1 b/metadata/md5-cache/dev-ruby/ice_nine-0.11.2-r1 index 0597c6f0662d..bc4514b296e0 100644 --- a/metadata/md5-cache/dev-ruby/ice_nine-0.11.2-r1 +++ b/metadata/md5-cache/dev-ruby/ice_nine-0.11.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/ice_nine-0.11.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=17e1bd42bba981a51475a86580908612 diff --git a/metadata/md5-cache/dev-ruby/idn-ruby-0.1.2 b/metadata/md5-cache/dev-ruby/idn-ruby-0.1.2 index 04908c7088c4..56a5a1a5b0f2 100644 --- a/metadata/md5-cache/dev-ruby/idn-ruby-0.1.2 +++ b/metadata/md5-cache/dev-ruby/idn-ruby-0.1.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/idn-ruby-0.1.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=671665ae4de18e07707d856059e4784d diff --git a/metadata/md5-cache/dev-ruby/idn-ruby-0.1.4 b/metadata/md5-cache/dev-ruby/idn-ruby-0.1.4 index e0394dff4e27..c8c94ab65219 100644 --- a/metadata/md5-cache/dev-ruby/idn-ruby-0.1.4 +++ b/metadata/md5-cache/dev-ruby/idn-ruby-0.1.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/idn-ruby-0.1.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3a242850661130d49d475bcce2e3682a diff --git a/metadata/md5-cache/dev-ruby/image_processing-1.12.2 b/metadata/md5-cache/dev-ruby/image_processing-1.12.2 index ce4501f8040e..b379ec88e71e 100644 --- a/metadata/md5-cache/dev-ruby/image_processing-1.12.2 +++ b/metadata/md5-cache/dev-ruby/image_processing-1.12.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/janko/image_processing/archive/v1.12.2.tar.gz -> image_processing-1.12.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=13a37c1e6fc831ba4b614ca0a87467a5 diff --git a/metadata/md5-cache/dev-ruby/imagesize-0.1.1_p20100902-r2 b/metadata/md5-cache/dev-ruby/imagesize-0.1.1_p20100902-r2 index 2b56ece3ccb4..e085772530dd 100644 --- a/metadata/md5-cache/dev-ruby/imagesize-0.1.1_p20100902-r2 +++ b/metadata/md5-cache/dev-ruby/imagesize-0.1.1_p20100902-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/mattheworiordan/imagesize/archive/bd5be2afb088beba3f0d863cef4eac7db56ca804.tar.gz -> imagesize-0.1.1_p20100902.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7f9109f275eb2976cd5076738e5b0d68 diff --git a/metadata/md5-cache/dev-ruby/inflecto-0.0.2 b/metadata/md5-cache/dev-ruby/inflecto-0.0.2 index 3b74905d9fc8..a39a44a58044 100644 --- a/metadata/md5-cache/dev-ruby/inflecto-0.0.2 +++ b/metadata/md5-cache/dev-ruby/inflecto-0.0.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/inflecto-0.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=17c6b5077748e025e8c7c8fe743c8c74 diff --git a/metadata/md5-cache/dev-ruby/inflecto-0.0.2-r1 b/metadata/md5-cache/dev-ruby/inflecto-0.0.2-r1 index 2bad0b1228d6..be0e55c1a54f 100644 --- a/metadata/md5-cache/dev-ruby/inflecto-0.0.2-r1 +++ b/metadata/md5-cache/dev-ruby/inflecto-0.0.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/inflecto-0.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=989a6c81b937702609776ea850f04c25 diff --git a/metadata/md5-cache/dev-ruby/instance_storage-1.0.0-r1 b/metadata/md5-cache/dev-ruby/instance_storage-1.0.0-r1 index 9187941c6ca5..c91051c99b77 100644 --- a/metadata/md5-cache/dev-ruby/instance_storage-1.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/instance_storage-1.0.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/instance_storage-1.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ac25c52417723dea140f2281e54efd3f diff --git a/metadata/md5-cache/dev-ruby/instance_storage-2.0.0 b/metadata/md5-cache/dev-ruby/instance_storage-2.0.0 index badd84ffda27..9da94efba5a5 100644 --- a/metadata/md5-cache/dev-ruby/instance_storage-2.0.0 +++ b/metadata/md5-cache/dev-ruby/instance_storage-2.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/instance_storage-2.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=aada695271470825fbaaaf1420aa6d07 diff --git a/metadata/md5-cache/dev-ruby/instantiator-0.0.7-r1 b/metadata/md5-cache/dev-ruby/instantiator-0.0.7-r1 index 493d787e77f2..610fdb88f78f 100644 --- a/metadata/md5-cache/dev-ruby/instantiator-0.0.7-r1 +++ b/metadata/md5-cache/dev-ruby/instantiator-0.0.7-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/instantiator-0.0.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=52ececfb137b4663bc283f6dffa650d7 diff --git a/metadata/md5-cache/dev-ruby/introspection-0.0.4-r1 b/metadata/md5-cache/dev-ruby/introspection-0.0.4-r1 index 55d4ac961946..b325d3c637aa 100644 --- a/metadata/md5-cache/dev-ruby/introspection-0.0.4-r1 +++ b/metadata/md5-cache/dev-ruby/introspection-0.0.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/introspection-0.0.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=da7b6ba7c4d363cebaf3bce1ba53a6b1 diff --git a/metadata/md5-cache/dev-ruby/io-wait-0.2.1 b/metadata/md5-cache/dev-ruby/io-wait-0.2.1 index 0ea7eae4d821..2bedd66a4efa 100644 --- a/metadata/md5-cache/dev-ruby/io-wait-0.2.1 +++ b/metadata/md5-cache/dev-ruby/io-wait-0.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/io-wait/archive/v0.2.1.tar.gz -> io-wait-0.2.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=85e5aafcb270c4d74cad4471c84c70e2 diff --git a/metadata/md5-cache/dev-ruby/iobuffer-1.1.2-r4 b/metadata/md5-cache/dev-ruby/iobuffer-1.1.2-r4 index 80d20952baf8..8bb96a2d9cf7 100644 --- a/metadata/md5-cache/dev-ruby/iobuffer-1.1.2-r4 +++ b/metadata/md5-cache/dev-ruby/iobuffer-1.1.2-r4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/tarcieri/iobuffer/tarball/v1.1.2 -> iobuffer-git-1.1.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5349034afd92e9b952ea9fc6880ab7b0 diff --git a/metadata/md5-cache/dev-ruby/itextomml-1.6.0 b/metadata/md5-cache/dev-ruby/itextomml-1.6.0 index 9cc556da60ec..4c51450424b4 100644 --- a/metadata/md5-cache/dev-ruby/itextomml-1.6.0 +++ b/metadata/md5-cache/dev-ruby/itextomml-1.6.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/itextomml-1.6.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ecd729cd1a5ec4d8a7e6ccf8ecb7be3c diff --git a/metadata/md5-cache/dev-ruby/itextomml-1.6.1 b/metadata/md5-cache/dev-ruby/itextomml-1.6.1 index 06efc5ab840c..473ddb917bc8 100644 --- a/metadata/md5-cache/dev-ruby/itextomml-1.6.1 +++ b/metadata/md5-cache/dev-ruby/itextomml-1.6.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/itextomml-1.6.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=053372e9b1752431f1ff09d89a2e6a8f diff --git a/metadata/md5-cache/dev-ruby/jbuilder-2.10.1 b/metadata/md5-cache/dev-ruby/jbuilder-2.10.1 index 43c6f81bf711..1b7cbb823d2e 100644 --- a/metadata/md5-cache/dev-ruby/jbuilder-2.10.1 +++ b/metadata/md5-cache/dev-ruby/jbuilder-2.10.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/jbuilder-2.10.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=da6795dfcf466dd24692528babe91ceb diff --git a/metadata/md5-cache/dev-ruby/jbuilder-2.11.2 b/metadata/md5-cache/dev-ruby/jbuilder-2.11.2 index 188f21c94363..954edc47b246 100644 --- a/metadata/md5-cache/dev-ruby/jbuilder-2.11.2 +++ b/metadata/md5-cache/dev-ruby/jbuilder-2.11.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/jbuilder-2.11.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6ee682fd2dc46f7ee378f40fdcd365d1 diff --git a/metadata/md5-cache/dev-ruby/jbuilder-2.11.5 b/metadata/md5-cache/dev-ruby/jbuilder-2.11.5 index 0a28cbd41e4e..67bc7648ef8b 100644 --- a/metadata/md5-cache/dev-ruby/jbuilder-2.11.5 +++ b/metadata/md5-cache/dev-ruby/jbuilder-2.11.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/jbuilder-2.11.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=62d6ca66b3865bf969e5f1a303dbe216 diff --git a/metadata/md5-cache/dev-ruby/jmespath-1.4.0 b/metadata/md5-cache/dev-ruby/jmespath-1.4.0 index 3d2f4c92482b..1e46d869d6b2 100644 --- a/metadata/md5-cache/dev-ruby/jmespath-1.4.0 +++ b/metadata/md5-cache/dev-ruby/jmespath-1.4.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/jmespath/jmespath.rb/archive/v1.4.0.tar.gz -> jmespath-1.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fae365f01212cb59201ace230dcfc3e1 diff --git a/metadata/md5-cache/dev-ruby/jmespath-1.5.0 b/metadata/md5-cache/dev-ruby/jmespath-1.5.0 index 747159d78396..01f6691b38e8 100644 --- a/metadata/md5-cache/dev-ruby/jmespath-1.5.0 +++ b/metadata/md5-cache/dev-ruby/jmespath-1.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/jmespath/jmespath.rb/archive/v1.5.0.tar.gz -> jmespath-1.5.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f40b34e10ceaf97e123de511739548ca diff --git a/metadata/md5-cache/dev-ruby/jmespath-1.6.0 b/metadata/md5-cache/dev-ruby/jmespath-1.6.0 index 5afce5db7f0a..bd3c6b0efa32 100644 --- a/metadata/md5-cache/dev-ruby/jmespath-1.6.0 +++ b/metadata/md5-cache/dev-ruby/jmespath-1.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/jmespath/jmespath.rb/archive/v1.6.0.tar.gz -> jmespath-1.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f40b34e10ceaf97e123de511739548ca diff --git a/metadata/md5-cache/dev-ruby/jmespath-1.6.1 b/metadata/md5-cache/dev-ruby/jmespath-1.6.1 index ed553ec69ac5..9b1e2212d6cf 100644 --- a/metadata/md5-cache/dev-ruby/jmespath-1.6.1 +++ b/metadata/md5-cache/dev-ruby/jmespath-1.6.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/jmespath/jmespath.rb/archive/v1.6.1.tar.gz -> jmespath-1.6.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f40b34e10ceaf97e123de511739548ca diff --git a/metadata/md5-cache/dev-ruby/jquery-rails-4.4.0 b/metadata/md5-cache/dev-ruby/jquery-rails-4.4.0 index 1bd54106d1f6..f636af3749bd 100644 --- a/metadata/md5-cache/dev-ruby/jquery-rails-4.4.0 +++ b/metadata/md5-cache/dev-ruby/jquery-rails-4.4.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/jquery-rails-4.4.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a6426ebd830fd36cc2e69aafd6b72d0b diff --git a/metadata/md5-cache/dev-ruby/jquery-ui-rails-6.0.1-r1 b/metadata/md5-cache/dev-ruby/jquery-ui-rails-6.0.1-r1 index 737219c3d5d7..7393fbb69d12 100644 --- a/metadata/md5-cache/dev-ruby/jquery-ui-rails-6.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/jquery-ui-rails-6.0.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/jquery-ui-rails-6.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=421f88884e5aaa5f1f41f0bda0d94503 diff --git a/metadata/md5-cache/dev-ruby/jsobfu-0.4.2 b/metadata/md5-cache/dev-ruby/jsobfu-0.4.2 index ceafd5cb577e..2d2c046994ba 100644 --- a/metadata/md5-cache/dev-ruby/jsobfu-0.4.2 +++ b/metadata/md5-cache/dev-ruby/jsobfu-0.4.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0.4.2 SRC_URI=https://rubygems.org/gems/jsobfu-0.4.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d26a2bef7fc0c8b4c636a98c7e53f883 diff --git a/metadata/md5-cache/dev-ruby/json-2.5.1-r1 b/metadata/md5-cache/dev-ruby/json-2.5.1-r1 index dc8ebb29cb0d..1d67fecef65c 100644 --- a/metadata/md5-cache/dev-ruby/json-2.5.1-r1 +++ b/metadata/md5-cache/dev-ruby/json-2.5.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/flori/json/archive/v2.5.1.tar.gz -> json-2.5.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1b56458d8777098a8b6b836c68c7994e diff --git a/metadata/md5-cache/dev-ruby/json-2.6.1 b/metadata/md5-cache/dev-ruby/json-2.6.1 index ee8d11179bcb..5b0731f997c9 100644 --- a/metadata/md5-cache/dev-ruby/json-2.6.1 +++ b/metadata/md5-cache/dev-ruby/json-2.6.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/flori/json/archive/v2.6.1.tar.gz -> json-2.6.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d25a5430fc8e49ce9ab882fd7d065321 diff --git a/metadata/md5-cache/dev-ruby/json_schema-0.20.8 b/metadata/md5-cache/dev-ruby/json_schema-0.20.8 index 84956ac8b34d..8f2374196537 100644 --- a/metadata/md5-cache/dev-ruby/json_schema-0.20.8 +++ b/metadata/md5-cache/dev-ruby/json_schema-0.20.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/brandur/json_schema/archive/v0.20.8.tar.gz -> json_schema-0.20.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0f0b658a6f8baf2aeefc6df7c3e5afc0 diff --git a/metadata/md5-cache/dev-ruby/json_schema-0.20.9 b/metadata/md5-cache/dev-ruby/json_schema-0.20.9 index 66eb44f23e43..1b93ea7a4bf5 100644 --- a/metadata/md5-cache/dev-ruby/json_schema-0.20.9 +++ b/metadata/md5-cache/dev-ruby/json_schema-0.20.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/brandur/json_schema/archive/v0.20.9.tar.gz -> json_schema-0.20.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=19f1b498088c61ab4cd3d42b65e4c625 diff --git a/metadata/md5-cache/dev-ruby/jwt-2.2.3 b/metadata/md5-cache/dev-ruby/jwt-2.2.3 index 883a5a56acc6..3b11713bb613 100644 --- a/metadata/md5-cache/dev-ruby/jwt-2.2.3 +++ b/metadata/md5-cache/dev-ruby/jwt-2.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jwt/ruby-jwt/archive/v2.2.3.tar.gz -> jwt-2.2.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b769bfb940bf040c19bb02b01e002a96 diff --git a/metadata/md5-cache/dev-ruby/jwt-2.3.0 b/metadata/md5-cache/dev-ruby/jwt-2.3.0 index dbe3851e943c..776528398949 100644 --- a/metadata/md5-cache/dev-ruby/jwt-2.3.0 +++ b/metadata/md5-cache/dev-ruby/jwt-2.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jwt/ruby-jwt/archive/v2.3.0.tar.gz -> jwt-2.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4b6f4d1d25e9f9129aeaab07d2326a2c diff --git a/metadata/md5-cache/dev-ruby/kirbybase-2.6.1-r3 b/metadata/md5-cache/dev-ruby/kirbybase-2.6.1-r3 index be9df4d3c4e1..11b2b1837e2b 100644 --- a/metadata/md5-cache/dev-ruby/kirbybase-2.6.1-r3 +++ b/metadata/md5-cache/dev-ruby/kirbybase-2.6.1-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/KirbyBase-2.6.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0fe5240ec99f1067402ee1ca6cb83268 diff --git a/metadata/md5-cache/dev-ruby/kissfft-0.0.2-r1 b/metadata/md5-cache/dev-ruby/kissfft-0.0.2-r1 index a2fca09dc843..b73745f7e46b 100644 --- a/metadata/md5-cache/dev-ruby/kissfft-0.0.2-r1 +++ b/metadata/md5-cache/dev-ruby/kissfft-0.0.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/kissfft-0.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=988971fefa10258a364e67d3ec4d3722 diff --git a/metadata/md5-cache/dev-ruby/kpeg-1.1.0-r1 b/metadata/md5-cache/dev-ruby/kpeg-1.1.0-r1 index 4b9d98af8798..344d059351b0 100644 --- a/metadata/md5-cache/dev-ruby/kpeg-1.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/kpeg-1.1.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/kpeg-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9a994fb0c3df901cf2a9407ae9d1deb5 diff --git a/metadata/md5-cache/dev-ruby/kpeg-1.2.0 b/metadata/md5-cache/dev-ruby/kpeg-1.2.0 index 8f0b80bd02a3..6605f4426ffe 100644 --- a/metadata/md5-cache/dev-ruby/kpeg-1.2.0 +++ b/metadata/md5-cache/dev-ruby/kpeg-1.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/kpeg-1.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fc8ea8c182048d3b492446bab422b026 diff --git a/metadata/md5-cache/dev-ruby/kpeg-1.3.0 b/metadata/md5-cache/dev-ruby/kpeg-1.3.0 index 813f39414227..659e92b170ea 100644 --- a/metadata/md5-cache/dev-ruby/kpeg-1.3.0 +++ b/metadata/md5-cache/dev-ruby/kpeg-1.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/kpeg-1.3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fc8ea8c182048d3b492446bab422b026 diff --git a/metadata/md5-cache/dev-ruby/kpeg-1.3.1 b/metadata/md5-cache/dev-ruby/kpeg-1.3.1 index 910edd7ce2fa..2f1421df6a8a 100644 --- a/metadata/md5-cache/dev-ruby/kpeg-1.3.1 +++ b/metadata/md5-cache/dev-ruby/kpeg-1.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/kpeg-1.3.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=74867f95f956be3152955315da4c4890 diff --git a/metadata/md5-cache/dev-ruby/kramdown-2.3.1-r1 b/metadata/md5-cache/dev-ruby/kramdown-2.3.1-r1 index bfd73d42d5e3..c9655f595acf 100644 --- a/metadata/md5-cache/dev-ruby/kramdown-2.3.1-r1 +++ b/metadata/md5-cache/dev-ruby/kramdown-2.3.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/kramdown-2.3.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4cca4f64f6125574fcc9ad986298d690 diff --git a/metadata/md5-cache/dev-ruby/kramdown-2.3.2 b/metadata/md5-cache/dev-ruby/kramdown-2.3.2 index 0b7af7ef46d1..fa1039a1bcc6 100644 --- a/metadata/md5-cache/dev-ruby/kramdown-2.3.2 +++ b/metadata/md5-cache/dev-ruby/kramdown-2.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/kramdown-2.3.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e8895ebe424ab85b14dc09c7e470dcb7 diff --git a/metadata/md5-cache/dev-ruby/kramdown-parser-gfm-1.1.0 b/metadata/md5-cache/dev-ruby/kramdown-parser-gfm-1.1.0 index e2182b02ba43..1452c5e719f4 100644 --- a/metadata/md5-cache/dev-ruby/kramdown-parser-gfm-1.1.0 +++ b/metadata/md5-cache/dev-ruby/kramdown-parser-gfm-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/kramdown-parser-gfm-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=207e8284c07618b166a0b03f673b4461 diff --git a/metadata/md5-cache/dev-ruby/kramdown-syntax-coderay-1.0.1 b/metadata/md5-cache/dev-ruby/kramdown-syntax-coderay-1.0.1 index 8515111c2114..7d5956fc2f10 100644 --- a/metadata/md5-cache/dev-ruby/kramdown-syntax-coderay-1.0.1 +++ b/metadata/md5-cache/dev-ruby/kramdown-syntax-coderay-1.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/kramdown-syntax-coderay-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e5cca2d3ee6a5192416ea51fc66e7984 diff --git a/metadata/md5-cache/dev-ruby/launchy-2.5.0 b/metadata/md5-cache/dev-ruby/launchy-2.5.0 index 68a57643dbf3..e8b524fbead1 100644 --- a/metadata/md5-cache/dev-ruby/launchy-2.5.0 +++ b/metadata/md5-cache/dev-ruby/launchy-2.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/launchy-2.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dfc43a73d5cdda063515759e1f6021f8 diff --git a/metadata/md5-cache/dev-ruby/lemon-0.9.1-r1 b/metadata/md5-cache/dev-ruby/lemon-0.9.1-r1 index 16f2329fb0ad..b3a3fc37a273 100644 --- a/metadata/md5-cache/dev-ruby/lemon-0.9.1-r1 +++ b/metadata/md5-cache/dev-ruby/lemon-0.9.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/lemon-0.9.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=136f869afdb5c970dc83c3c805bc5317 diff --git a/metadata/md5-cache/dev-ruby/letter_opener-1.8.0 b/metadata/md5-cache/dev-ruby/letter_opener-1.8.0 index f3232a90dbd0..b95998fc6d7b 100644 --- a/metadata/md5-cache/dev-ruby/letter_opener-1.8.0 +++ b/metadata/md5-cache/dev-ruby/letter_opener-1.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ryanb/letter_opener/archive/v1.8.0.tar.gz -> letter_opener-1.8.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0a911ec913c1262e7a97ee5f9719c60c diff --git a/metadata/md5-cache/dev-ruby/letter_opener-1.8.1 b/metadata/md5-cache/dev-ruby/letter_opener-1.8.1 index 6e52261b1d25..520fefa79d69 100644 --- a/metadata/md5-cache/dev-ruby/letter_opener-1.8.1 +++ b/metadata/md5-cache/dev-ruby/letter_opener-1.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ryanb/letter_opener/archive/v1.8.1.tar.gz -> letter_opener-1.8.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0a911ec913c1262e7a97ee5f9719c60c diff --git a/metadata/md5-cache/dev-ruby/levenshtein-0.2.2-r3 b/metadata/md5-cache/dev-ruby/levenshtein-0.2.2-r3 index cb192455c3c1..1268c8ddc4c6 100644 --- a/metadata/md5-cache/dev-ruby/levenshtein-0.2.2-r3 +++ b/metadata/md5-cache/dev-ruby/levenshtein-0.2.2-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/levenshtein-0.2.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9634489faa97b47d0f935a8c1c33f653 diff --git a/metadata/md5-cache/dev-ruby/libusb-0.6.4 b/metadata/md5-cache/dev-ruby/libusb-0.6.4 index c1e422fd78c3..0fee9b777589 100644 --- a/metadata/md5-cache/dev-ruby/libusb-0.6.4 +++ b/metadata/md5-cache/dev-ruby/libusb-0.6.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/libusb-0.6.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a44a6859389286cab399044e36d3731d diff --git a/metadata/md5-cache/dev-ruby/liquid-4.0.3 b/metadata/md5-cache/dev-ruby/liquid-4.0.3 index 7548c65ce8e7..cae1e70a7ddd 100644 --- a/metadata/md5-cache/dev-ruby/liquid-4.0.3 +++ b/metadata/md5-cache/dev-ruby/liquid-4.0.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/Shopify/liquid/archive/v4.0.3.tar.gz -> liquid-4.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e01726feae7fe36c60cadd5bc2947df1 diff --git a/metadata/md5-cache/dev-ruby/liquid-5.0.1 b/metadata/md5-cache/dev-ruby/liquid-5.0.1 index 09db85b443ea..89dc12e5a85a 100644 --- a/metadata/md5-cache/dev-ruby/liquid-5.0.1 +++ b/metadata/md5-cache/dev-ruby/liquid-5.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/Shopify/liquid/archive/v5.0.1.tar.gz -> liquid-5.0.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8439b1563be269eaf398bac553e9b4be diff --git a/metadata/md5-cache/dev-ruby/liquid-5.1.0 b/metadata/md5-cache/dev-ruby/liquid-5.1.0 index 469dee1f55ec..3420ce24579f 100644 --- a/metadata/md5-cache/dev-ruby/liquid-5.1.0 +++ b/metadata/md5-cache/dev-ruby/liquid-5.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/Shopify/liquid/archive/v5.1.0.tar.gz -> liquid-5.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8d9d73ccaf7e07ccfe46867da8f43edc diff --git a/metadata/md5-cache/dev-ruby/liquid-5.2.0 b/metadata/md5-cache/dev-ruby/liquid-5.2.0 index 18bcd064d5b5..14848e2900cb 100644 --- a/metadata/md5-cache/dev-ruby/liquid-5.2.0 +++ b/metadata/md5-cache/dev-ruby/liquid-5.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/Shopify/liquid/archive/v5.2.0.tar.gz -> liquid-5.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e809a8bfbdb2a55d073ce54a72bd0f4c diff --git a/metadata/md5-cache/dev-ruby/liquid-5.3.0 b/metadata/md5-cache/dev-ruby/liquid-5.3.0 index ab72d41b49ab..c02cce175592 100644 --- a/metadata/md5-cache/dev-ruby/liquid-5.3.0 +++ b/metadata/md5-cache/dev-ruby/liquid-5.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/Shopify/liquid/archive/v5.3.0.tar.gz -> liquid-5.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e809a8bfbdb2a55d073ce54a72bd0f4c diff --git a/metadata/md5-cache/dev-ruby/liquid-c-4.0.0-r1 b/metadata/md5-cache/dev-ruby/liquid-c-4.0.0-r1 index b790f13c2e62..79275032582c 100644 --- a/metadata/md5-cache/dev-ruby/liquid-c-4.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/liquid-c-4.0.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/liquid-c-4.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c47a72f1f40e8bea02b822b53756dc45 diff --git a/metadata/md5-cache/dev-ruby/liquid-c-4.1.0 b/metadata/md5-cache/dev-ruby/liquid-c-4.1.0 index b645cdc48345..384bcb8bc0e6 100644 --- a/metadata/md5-cache/dev-ruby/liquid-c-4.1.0 +++ b/metadata/md5-cache/dev-ruby/liquid-c-4.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/liquid-c-4.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=86f6fda7692879ce6e026cb3f9177093 diff --git a/metadata/md5-cache/dev-ruby/listen-1.3.1-r4 b/metadata/md5-cache/dev-ruby/listen-1.3.1-r4 index 970da64895e4..dc798c4022a5 100644 --- a/metadata/md5-cache/dev-ruby/listen-1.3.1-r4 +++ b/metadata/md5-cache/dev-ruby/listen-1.3.1-r4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/guard/listen/archive/v1.3.1.tar.gz -> listen-1.3.1-git.tgz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=f4fdd719348670776c1009cedc9791a6 diff --git a/metadata/md5-cache/dev-ruby/listen-3.5.1 b/metadata/md5-cache/dev-ruby/listen-3.5.1 index 8f5ed6824501..3237a910aa05 100644 --- a/metadata/md5-cache/dev-ruby/listen-3.5.1 +++ b/metadata/md5-cache/dev-ruby/listen-3.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/guard/listen/archive/v3.5.1.tar.gz -> listen-3.5.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=461543c32d0739b0dd3aa19eb2b92739 diff --git a/metadata/md5-cache/dev-ruby/listen-3.6.0 b/metadata/md5-cache/dev-ruby/listen-3.6.0 index b97e8d79aa8b..c808bb10ae23 100644 --- a/metadata/md5-cache/dev-ruby/listen-3.6.0 +++ b/metadata/md5-cache/dev-ruby/listen-3.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/guard/listen/archive/v3.6.0.tar.gz -> listen-3.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3a7c928e6e73b500c0f2e131b11e0a33 diff --git a/metadata/md5-cache/dev-ruby/listen-3.7.0 b/metadata/md5-cache/dev-ruby/listen-3.7.0 index 6916f9cce188..d9e137b64f39 100644 --- a/metadata/md5-cache/dev-ruby/listen-3.7.0 +++ b/metadata/md5-cache/dev-ruby/listen-3.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/guard/listen/archive/v3.7.0.tar.gz -> listen-3.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3b1df5a94de0957286533be422f763ec diff --git a/metadata/md5-cache/dev-ruby/listen-3.7.1 b/metadata/md5-cache/dev-ruby/listen-3.7.1 index c7c446b55ed0..dc0f3a6d60d8 100644 --- a/metadata/md5-cache/dev-ruby/listen-3.7.1 +++ b/metadata/md5-cache/dev-ruby/listen-3.7.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/guard/listen/archive/v3.7.1.tar.gz -> listen-3.7.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6fa35acd347c4d7fc489356f70dc6f76 diff --git a/metadata/md5-cache/dev-ruby/little-plugger-1.1.4-r1 b/metadata/md5-cache/dev-ruby/little-plugger-1.1.4-r1 index c6a675eee41c..9711128ce340 100644 --- a/metadata/md5-cache/dev-ruby/little-plugger-1.1.4-r1 +++ b/metadata/md5-cache/dev-ruby/little-plugger-1.1.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/little-plugger-1.1.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=51e557bb7cec2fdade4b524030cda1aa diff --git a/metadata/md5-cache/dev-ruby/locale-2.1.3 b/metadata/md5-cache/dev-ruby/locale-2.1.3 index 6a1ee4d6e37d..feb9b65ef672 100644 --- a/metadata/md5-cache/dev-ruby/locale-2.1.3 +++ b/metadata/md5-cache/dev-ruby/locale-2.1.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gettext/locale/archive/2.1.3.tar.gz -> locale-2.1.3-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dc26bcbba7213124706a2e46013120f0 diff --git a/metadata/md5-cache/dev-ruby/localhost-1.1.9 b/metadata/md5-cache/dev-ruby/localhost-1.1.9 index 13aa7030c154..57335771ddc2 100644 --- a/metadata/md5-cache/dev-ruby/localhost-1.1.9 +++ b/metadata/md5-cache/dev-ruby/localhost-1.1.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=test !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/socketry/localhost/archive/v1.1.9.tar.gz -> localhost-1.1.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=31c2b9ca46e8cc41c9cbbab57e8f802e diff --git a/metadata/md5-cache/dev-ruby/lockfile-2.1.3-r1 b/metadata/md5-cache/dev-ruby/lockfile-2.1.3-r1 index 979962f430e7..1904c3d6b4bc 100644 --- a/metadata/md5-cache/dev-ruby/lockfile-2.1.3-r1 +++ b/metadata/md5-cache/dev-ruby/lockfile-2.1.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/lockfile-2.1.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=612ee3bb7e2cbfb37d5342177c4d8bc6 diff --git a/metadata/md5-cache/dev-ruby/log4r-1.1.10-r3 b/metadata/md5-cache/dev-ruby/log4r-1.1.10-r3 index 2ac86b53ef93..81257400c15b 100644 --- a/metadata/md5-cache/dev-ruby/log4r-1.1.10-r3 +++ b/metadata/md5-cache/dev-ruby/log4r-1.1.10-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/log4r-1.1.10.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fd460ce96bb25f20307202c440d86a60 diff --git a/metadata/md5-cache/dev-ruby/log_buddy-0.7.0-r1 b/metadata/md5-cache/dev-ruby/log_buddy-0.7.0-r1 index ed3c9fc8e191..eb5880c59e3f 100644 --- a/metadata/md5-cache/dev-ruby/log_buddy-0.7.0-r1 +++ b/metadata/md5-cache/dev-ruby/log_buddy-0.7.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/log_buddy-0.7.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8b8832ea4bf566106543f873e415ec32 diff --git a/metadata/md5-cache/dev-ruby/logue-1.0.18 b/metadata/md5-cache/dev-ruby/logue-1.0.18 index da83e21460a4..f9722ac8c7e1 100644 --- a/metadata/md5-cache/dev-ruby/logue-1.0.18 +++ b/metadata/md5-cache/dev-ruby/logue-1.0.18 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jpace/logue/archive/v1.0.18.tar.gz -> logue-git-1.0.18.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ab8bba23e27ba825f943545b32815084 diff --git a/metadata/md5-cache/dev-ruby/loofah-2.12.0 b/metadata/md5-cache/dev-ruby/loofah-2.12.0 index d45143154e9d..e5d81d3f04fa 100644 --- a/metadata/md5-cache/dev-ruby/loofah-2.12.0 +++ b/metadata/md5-cache/dev-ruby/loofah-2.12.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/flavorjones/loofah/archive/v2.12.0.tar.gz -> loofah-2.12.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc58a9a206ee26047ff3db1d97182d2e diff --git a/metadata/md5-cache/dev-ruby/loofah-2.14.0 b/metadata/md5-cache/dev-ruby/loofah-2.14.0 index 00bf6c4c2a98..23b1956107ea 100644 --- a/metadata/md5-cache/dev-ruby/loofah-2.14.0 +++ b/metadata/md5-cache/dev-ruby/loofah-2.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/flavorjones/loofah/archive/v2.14.0.tar.gz -> loofah-2.14.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e416cd2c303eb4a1861992b6ca8f98ed diff --git a/metadata/md5-cache/dev-ruby/loofah-2.15.0 b/metadata/md5-cache/dev-ruby/loofah-2.15.0 index 0d52e55b7915..e46080a93291 100644 --- a/metadata/md5-cache/dev-ruby/loofah-2.15.0 +++ b/metadata/md5-cache/dev-ruby/loofah-2.15.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/flavorjones/loofah/archive/v2.15.0.tar.gz -> loofah-2.15.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e416cd2c303eb4a1861992b6ca8f98ed diff --git a/metadata/md5-cache/dev-ruby/loquacious-1.9.1-r3 b/metadata/md5-cache/dev-ruby/loquacious-1.9.1-r3 index 9be541a0947d..754fcba05a8b 100644 --- a/metadata/md5-cache/dev-ruby/loquacious-1.9.1-r3 +++ b/metadata/md5-cache/dev-ruby/loquacious-1.9.1-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/loquacious-1.9.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7c998626f77cf6876833a1fdd0cbb4d9 diff --git a/metadata/md5-cache/dev-ruby/lumberjack-1.2.7 b/metadata/md5-cache/dev-ruby/lumberjack-1.2.7 index 6d091cf8e74f..e3397a0adea7 100644 --- a/metadata/md5-cache/dev-ruby/lumberjack-1.2.7 +++ b/metadata/md5-cache/dev-ruby/lumberjack-1.2.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/bdurand/lumberjack/archive/v1.2.7.tar.gz -> lumberjack-1.2.7.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=129d96678de518eacad1d3697f371a3f diff --git a/metadata/md5-cache/dev-ruby/lumberjack-1.2.8 b/metadata/md5-cache/dev-ruby/lumberjack-1.2.8 index a20a5a937a77..710df4fdf746 100644 --- a/metadata/md5-cache/dev-ruby/lumberjack-1.2.8 +++ b/metadata/md5-cache/dev-ruby/lumberjack-1.2.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/bdurand/lumberjack/archive/v1.2.8.tar.gz -> lumberjack-1.2.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6a3b48093fd020b92ee9b517db6ebe9b diff --git a/metadata/md5-cache/dev-ruby/mab-0.0.3-r2 b/metadata/md5-cache/dev-ruby/mab-0.0.3-r2 index a8da29181083..d5b46057b9e6 100644 --- a/metadata/md5-cache/dev-ruby/mab-0.0.3-r2 +++ b/metadata/md5-cache/dev-ruby/mab-0.0.3-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mab-0.0.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=32c1b7ee42d0378da34d94b3744367a4 diff --git a/metadata/md5-cache/dev-ruby/magic-0.2.9-r1 b/metadata/md5-cache/dev-ruby/magic-0.2.9-r1 index 091661c5e874..2d461027f3fb 100644 --- a/metadata/md5-cache/dev-ruby/magic-0.2.9-r1 +++ b/metadata/md5-cache/dev-ruby/magic-0.2.9-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/qoobaa/magic/archive/v0.2.9.tar.gz -> magic-0.2.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5399893bc074ed83750255693e616a25 diff --git a/metadata/md5-cache/dev-ruby/mail-2.7.1 b/metadata/md5-cache/dev-ruby/mail-2.7.1 index 4b0ca8623554..c8fada52cbfc 100644 --- a/metadata/md5-cache/dev-ruby/mail-2.7.1 +++ b/metadata/md5-cache/dev-ruby/mail-2.7.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2.7 SRC_URI=https://github.com/mikel/mail/archive/2.7.1.tar.gz -> mail-2.7.1-git.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2f5a8322ec61694be316c6510d4488ba diff --git a/metadata/md5-cache/dev-ruby/mail-2.7.1-r1 b/metadata/md5-cache/dev-ruby/mail-2.7.1-r1 index 63e02fd54037..35e6c446db0e 100644 --- a/metadata/md5-cache/dev-ruby/mail-2.7.1-r1 +++ b/metadata/md5-cache/dev-ruby/mail-2.7.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2.7 SRC_URI=https://github.com/mikel/mail/archive/2.7.1.tar.gz -> mail-2.7.1-git.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fc6b145f2794e7b4f5a05fdd360d69bc diff --git a/metadata/md5-cache/dev-ruby/maildir-2.2.3 b/metadata/md5-cache/dev-ruby/maildir-2.2.3 index 2617a3519be4..b1e16d47d36d 100644 --- a/metadata/md5-cache/dev-ruby/maildir-2.2.3 +++ b/metadata/md5-cache/dev-ruby/maildir-2.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/maildir-2.2.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4d3d43843b826bed2f28dc0f88476b41 diff --git a/metadata/md5-cache/dev-ruby/marcel-0.3.3-r1 b/metadata/md5-cache/dev-ruby/marcel-0.3.3-r1 index 7d1cdae4510c..cdde395829cb 100644 --- a/metadata/md5-cache/dev-ruby/marcel-0.3.3-r1 +++ b/metadata/md5-cache/dev-ruby/marcel-0.3.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/basecamp/marcel/archive/v0.3.3.tar.gz -> marcel-0.3.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=db1c803eab2af9ea6eec9740dcd42cb3 diff --git a/metadata/md5-cache/dev-ruby/marcel-1.0.0 b/metadata/md5-cache/dev-ruby/marcel-1.0.0 index 24a4e90f41d2..27ac0454c1b6 100644 --- a/metadata/md5-cache/dev-ruby/marcel-1.0.0 +++ b/metadata/md5-cache/dev-ruby/marcel-1.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://github.com/basecamp/marcel/archive/v1.0.0.tar.gz -> marcel-1.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5fde6866282a4bbf21eec61b1237c73c diff --git a/metadata/md5-cache/dev-ruby/marcel-1.0.1 b/metadata/md5-cache/dev-ruby/marcel-1.0.1 index 4d800d0651ca..fc047abc17b0 100644 --- a/metadata/md5-cache/dev-ruby/marcel-1.0.1 +++ b/metadata/md5-cache/dev-ruby/marcel-1.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://github.com/basecamp/marcel/archive/v1.0.1.tar.gz -> marcel-1.0.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5fde6866282a4bbf21eec61b1237c73c diff --git a/metadata/md5-cache/dev-ruby/marcel-1.0.2 b/metadata/md5-cache/dev-ruby/marcel-1.0.2 index 6e67f06b48a5..ea69068fbb08 100644 --- a/metadata/md5-cache/dev-ruby/marcel-1.0.2 +++ b/metadata/md5-cache/dev-ruby/marcel-1.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://github.com/basecamp/marcel/archive/v1.0.2.tar.gz -> marcel-1.0.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d7f01a5d71b32bae2060bb85cf238062 diff --git a/metadata/md5-cache/dev-ruby/maruku-0.7.3-r1 b/metadata/md5-cache/dev-ruby/maruku-0.7.3-r1 index ebac2b6cfe42..2073791dba6d 100644 --- a/metadata/md5-cache/dev-ruby/maruku-0.7.3-r1 +++ b/metadata/md5-cache/dev-ruby/maruku-0.7.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/maruku-0.7.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=191d08b161444222042ca021c5cdfeb7 diff --git a/metadata/md5-cache/dev-ruby/mash-0.1.1-r3 b/metadata/md5-cache/dev-ruby/mash-0.1.1-r3 index 8c22e44bb635..977e805d367d 100644 --- a/metadata/md5-cache/dev-ruby/mash-0.1.1-r3 +++ b/metadata/md5-cache/dev-ruby/mash-0.1.1-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mash-0.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=825878f2995579ab2de1382ce0a41c05 diff --git a/metadata/md5-cache/dev-ruby/matrix-0.4.2 b/metadata/md5-cache/dev-ruby/matrix-0.4.2 index 3e56f0b5cedc..ba18d8a8b726 100644 --- a/metadata/md5-cache/dev-ruby/matrix-0.4.2 +++ b/metadata/md5-cache/dev-ruby/matrix-0.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/matrix/archive/v0.4.2.tar.gz -> matrix-0.4.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1fbf3d29bbb7caddc2b0d7598ddea149 diff --git a/metadata/md5-cache/dev-ruby/maxitest-3.7.0 b/metadata/md5-cache/dev-ruby/maxitest-3.7.0 index fb69d0c84783..525179531264 100644 --- a/metadata/md5-cache/dev-ruby/maxitest-3.7.0 +++ b/metadata/md5-cache/dev-ruby/maxitest-3.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/grosser/maxitest/archive/v3.7.0.tar.gz -> maxitest-3.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c566a087fdfca0f369a6a0cdc14ecdf7 diff --git a/metadata/md5-cache/dev-ruby/mecab-ruby-0.996-r1 b/metadata/md5-cache/dev-ruby/mecab-ruby-0.996-r1 index 2e355ec73c3b..88c4d3286c22 100644 --- a/metadata/md5-cache/dev-ruby/mecab-ruby-0.996-r1 +++ b/metadata/md5-cache/dev-ruby/mecab-ruby-0.996-r1 @@ -10,5 +10,5 @@ RDEPEND=~app-text/mecab-0.996 ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_ta REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) SLOT=0 SRC_URI=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/mecab/mecab-ruby-0.996.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=54d81a019187cd360f863fcd21491383 diff --git a/metadata/md5-cache/dev-ruby/mechanize-2.8.3 b/metadata/md5-cache/dev-ruby/mechanize-2.8.3 index 55383b7f251c..99300b701ac1 100644 --- a/metadata/md5-cache/dev-ruby/mechanize-2.8.3 +++ b/metadata/md5-cache/dev-ruby/mechanize-2.8.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mechanize-2.8.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=25cbe988d1c755cbffacb69cf242d7d8 diff --git a/metadata/md5-cache/dev-ruby/mechanize-2.8.4 b/metadata/md5-cache/dev-ruby/mechanize-2.8.4 index 75ab38f173ed..e9fa1d56dddd 100644 --- a/metadata/md5-cache/dev-ruby/mechanize-2.8.4 +++ b/metadata/md5-cache/dev-ruby/mechanize-2.8.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mechanize-2.8.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5889eb1a6553eaee075ceb828d6f6b68 diff --git a/metadata/md5-cache/dev-ruby/memo_wise-1.6.0 b/metadata/md5-cache/dev-ruby/memo_wise-1.6.0 index 9f3375508c9c..1105a9e71bdf 100644 --- a/metadata/md5-cache/dev-ruby/memo_wise-1.6.0 +++ b/metadata/md5-cache/dev-ruby/memo_wise-1.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/panorama-ed/memo_wise/archive/v1.6.0.tar.gz -> memo_wise-1.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cfa49604500c9e7350ddb1bb41343e24 diff --git a/metadata/md5-cache/dev-ruby/memo_wise-1.7.0 b/metadata/md5-cache/dev-ruby/memo_wise-1.7.0 index cc65df076f96..1aafd59da819 100644 --- a/metadata/md5-cache/dev-ruby/memo_wise-1.7.0 +++ b/metadata/md5-cache/dev-ruby/memo_wise-1.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/panorama-ed/memo_wise/archive/v1.7.0.tar.gz -> memo_wise-1.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e8423d5973e9e1be9f388ff9df553a6a diff --git a/metadata/md5-cache/dev-ruby/memoist-0.16.2 b/metadata/md5-cache/dev-ruby/memoist-0.16.2 index 8724594a5ddd..7ab99406c4bb 100644 --- a/metadata/md5-cache/dev-ruby/memoist-0.16.2 +++ b/metadata/md5-cache/dev-ruby/memoist-0.16.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/memoist-0.16.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=97e4d329fadbf248a88441653a1cfe36 diff --git a/metadata/md5-cache/dev-ruby/memoizable-0.4.2-r1 b/metadata/md5-cache/dev-ruby/memoizable-0.4.2-r1 index 28330de86150..7878f5d620a0 100644 --- a/metadata/md5-cache/dev-ruby/memoizable-0.4.2-r1 +++ b/metadata/md5-cache/dev-ruby/memoizable-0.4.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/memoizable-0.4.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6b3d16b50206864180b7525f2ac031d6 diff --git a/metadata/md5-cache/dev-ruby/memoize-1.3.1-r2 b/metadata/md5-cache/dev-ruby/memoize-1.3.1-r2 index d3fa5d56ac0a..02aff78ffa32 100644 --- a/metadata/md5-cache/dev-ruby/memoize-1.3.1-r2 +++ b/metadata/md5-cache/dev-ruby/memoize-1.3.1-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/memoize-1.3.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=06831f07edf07790c681d3c909321b45 diff --git a/metadata/md5-cache/dev-ruby/mercenary-0.4.0 b/metadata/md5-cache/dev-ruby/mercenary-0.4.0 index f6d1c387b302..cb743bdff4d0 100644 --- a/metadata/md5-cache/dev-ruby/mercenary-0.4.0 +++ b/metadata/md5-cache/dev-ruby/mercenary-0.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mercenary-0.4.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=17594eed5549b7450b5944245e90bcf5 diff --git a/metadata/md5-cache/dev-ruby/metaclass-0.0.4-r1 b/metadata/md5-cache/dev-ruby/metaclass-0.0.4-r1 index 205d336c88c3..7f00c39f19e2 100644 --- a/metadata/md5-cache/dev-ruby/metaclass-0.0.4-r1 +++ b/metadata/md5-cache/dev-ruby/metaclass-0.0.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/floehopper/metaclass/archive/v0.0.4.tar.gz -> metaclass-0.0.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7efe596069b4c82020c806c4d0da62e6 diff --git a/metadata/md5-cache/dev-ruby/metaclass-0.0.4-r2 b/metadata/md5-cache/dev-ruby/metaclass-0.0.4-r2 index 7e9965015934..538b1ffb9791 100644 --- a/metadata/md5-cache/dev-ruby/metaclass-0.0.4-r2 +++ b/metadata/md5-cache/dev-ruby/metaclass-0.0.4-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/floehopper/metaclass/archive/v0.0.4.tar.gz -> metaclass-0.0.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=90867ac25595c0308ef95422cd217d44 diff --git a/metadata/md5-cache/dev-ruby/metasm-1.0.4-r1 b/metadata/md5-cache/dev-ruby/metasm-1.0.4-r1 index 870f287ddbb0..0ad66ca82fe3 100644 --- a/metadata/md5-cache/dev-ruby/metasm-1.0.4-r1 +++ b/metadata/md5-cache/dev-ruby/metasm-1.0.4-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/metasm-1.0.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ccec6317c70a91247ec2ab0d177ff635 diff --git a/metadata/md5-cache/dev-ruby/metasm-1.0.5-r1 b/metadata/md5-cache/dev-ruby/metasm-1.0.5-r1 index 0d9865d93634..8fa1d37149e4 100644 --- a/metadata/md5-cache/dev-ruby/metasm-1.0.5-r1 +++ b/metadata/md5-cache/dev-ruby/metasm-1.0.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/metasm-1.0.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7b91ba44c210a107534f74c368502311 diff --git a/metadata/md5-cache/dev-ruby/method_source-1.0.0 b/metadata/md5-cache/dev-ruby/method_source-1.0.0 index 29829747e4a7..84cb0982350b 100644 --- a/metadata/md5-cache/dev-ruby/method_source-1.0.0 +++ b/metadata/md5-cache/dev-ruby/method_source-1.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/method_source-1.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=be8e299b46a9612f1b53d54c2e0917ff diff --git a/metadata/md5-cache/dev-ruby/middleware-0.1.0 b/metadata/md5-cache/dev-ruby/middleware-0.1.0 index cce68780c94d..eb2f832c9733 100644 --- a/metadata/md5-cache/dev-ruby/middleware-0.1.0 +++ b/metadata/md5-cache/dev-ruby/middleware-0.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/middleware-0.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6c30229099a8531216a65c99848d525d diff --git a/metadata/md5-cache/dev-ruby/mime-types-2.99.3 b/metadata/md5-cache/dev-ruby/mime-types-2.99.3 index dfb792108520..00e2ebe1c4a7 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-2.99.3 +++ b/metadata/md5-cache/dev-ruby/mime-types-2.99.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/mime-types-2.99.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=28d0e131e92b0f38f94634ae995825e2 diff --git a/metadata/md5-cache/dev-ruby/mime-types-3.3.1 b/metadata/md5-cache/dev-ruby/mime-types-3.3.1 index 651446446c95..ff15405080fb 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-3.3.1 +++ b/metadata/md5-cache/dev-ruby/mime-types-3.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/mime-types-3.3.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=112c4916486725082f63221c54e2cf53 diff --git a/metadata/md5-cache/dev-ruby/mime-types-3.4.1 b/metadata/md5-cache/dev-ruby/mime-types-3.4.1 index 0655b30cdd61..cf6243f38f6d 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-3.4.1 +++ b/metadata/md5-cache/dev-ruby/mime-types-3.4.1 @@ -5,12 +5,12 @@ DESCRIPTION=Provides a mailcap-like MIME Content-Type lookup for Ruby EAPI=8 HOMEPAGE=https://github.com/mime-types/ruby-mime-types IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/mime-types-data-3.2015:3[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/mime-types-data-3.2015:3[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/mime-types-data-3.2015:3[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/mime-types-3.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=bf667610b91aa4dc7d3663eb4fb171db +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=21527bccfa254026e07485cbd20aa852 diff --git a/metadata/md5-cache/dev-ruby/mime-types-data-3.2021.0901 b/metadata/md5-cache/dev-ruby/mime-types-data-3.2021.0901 index 9992d9f42ae8..13299107b292 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-data-3.2021.0901 +++ b/metadata/md5-cache/dev-ruby/mime-types-data-3.2021.0901 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/mime-types-data-3.2021.0901.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=30414d68a2c3f987671317ee29407cb8 diff --git a/metadata/md5-cache/dev-ruby/mime-types-data-3.2021.1115 b/metadata/md5-cache/dev-ruby/mime-types-data-3.2021.1115 index 2b08e1ccb083..bd3920d2c9f2 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-data-3.2021.1115 +++ b/metadata/md5-cache/dev-ruby/mime-types-data-3.2021.1115 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/mime-types-data-3.2021.1115.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=39cfb4522caadf9b4c18e9a36b5720e1 diff --git a/metadata/md5-cache/dev-ruby/mime-types-data-3.2022.0105 b/metadata/md5-cache/dev-ruby/mime-types-data-3.2022.0105 index 8021ee687edd..62a51087f61c 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-data-3.2022.0105 +++ b/metadata/md5-cache/dev-ruby/mime-types-data-3.2022.0105 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Registry for information about MIME media type definitions EAPI=8 HOMEPAGE=https://github.com/mime-types/mime-types-data -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/mime-types-data-3.2022.0105.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=4dd5be0a84d85242600002b012bdf312 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=4c413fd5ee4e104066c9bcddbfc41685 diff --git a/metadata/md5-cache/dev-ruby/mimemagic-0.3.10 b/metadata/md5-cache/dev-ruby/mimemagic-0.3.10 index 8e54848f2ff7..572b94997da7 100644 --- a/metadata/md5-cache/dev-ruby/mimemagic-0.3.10 +++ b/metadata/md5-cache/dev-ruby/mimemagic-0.3.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/mimemagicrb/mimemagic/archive/v0.3.10.tar.gz -> mimemagic-0.3.10.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d8cea8b455708e85d72d76868c1a59e7 diff --git a/metadata/md5-cache/dev-ruby/mimemagic-0.3.10-r1 b/metadata/md5-cache/dev-ruby/mimemagic-0.3.10-r1 index b8064ffe361d..f9eddaec69b4 100644 --- a/metadata/md5-cache/dev-ruby/mimemagic-0.3.10-r1 +++ b/metadata/md5-cache/dev-ruby/mimemagic-0.3.10-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/mimemagicrb/mimemagic/archive/v0.3.10.tar.gz -> mimemagic-0.3.10.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8bb639fca2e58d986d8b04f1ee58cf0f diff --git a/metadata/md5-cache/dev-ruby/mimemagic-0.4.3 b/metadata/md5-cache/dev-ruby/mimemagic-0.4.3 index f8be3e11b875..61f653e815a3 100644 --- a/metadata/md5-cache/dev-ruby/mimemagic-0.4.3 +++ b/metadata/md5-cache/dev-ruby/mimemagic-0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0.4 SRC_URI=https://github.com/mimemagicrb/mimemagic/archive/v0.4.3.tar.gz -> mimemagic-0.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=efcbca3c854049164e3949ccf3ced057 diff --git a/metadata/md5-cache/dev-ruby/mimemagic-0.4.3-r1 b/metadata/md5-cache/dev-ruby/mimemagic-0.4.3-r1 index 50cd78a41399..62f166e89534 100644 --- a/metadata/md5-cache/dev-ruby/mimemagic-0.4.3-r1 +++ b/metadata/md5-cache/dev-ruby/mimemagic-0.4.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0.4 SRC_URI=https://github.com/mimemagicrb/mimemagic/archive/v0.4.3.tar.gz -> mimemagic-0.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=45e0ed3cd6dc968e4580860d0b0cfd6f diff --git a/metadata/md5-cache/dev-ruby/mini_magick-4.11.0 b/metadata/md5-cache/dev-ruby/mini_magick-4.11.0 index 114ab28dff78..41c6869ecfac 100644 --- a/metadata/md5-cache/dev-ruby/mini_magick-4.11.0 +++ b/metadata/md5-cache/dev-ruby/mini_magick-4.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/minimagick/minimagick/archive/v4.11.0.tar.gz -> mini_magick-4.11.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9dca8e57070ca9fbb4e4a79c4b3aafb7 diff --git a/metadata/md5-cache/dev-ruby/mini_magick-4.11.0-r1 b/metadata/md5-cache/dev-ruby/mini_magick-4.11.0-r1 index c595988813c9..cb97301744c3 100644 --- a/metadata/md5-cache/dev-ruby/mini_magick-4.11.0-r1 +++ b/metadata/md5-cache/dev-ruby/mini_magick-4.11.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/minimagick/minimagick/archive/v4.11.0.tar.gz -> mini_magick-4.11.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=19016933f1d8027ab6fb5d11c5107a0a diff --git a/metadata/md5-cache/dev-ruby/mini_mime-1.0.3 b/metadata/md5-cache/dev-ruby/mini_mime-1.0.3 index 1d8e4cd406f1..7b7c662bbbb4 100644 --- a/metadata/md5-cache/dev-ruby/mini_mime-1.0.3 +++ b/metadata/md5-cache/dev-ruby/mini_mime-1.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/discourse/mini_mime/archive/v1.0.3.tar.gz -> mini_mime-1.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fc8267fc90625e5f91550b2fb0eb3b7c diff --git a/metadata/md5-cache/dev-ruby/mini_mime-1.1.1 b/metadata/md5-cache/dev-ruby/mini_mime-1.1.1 index 69ffec07f3b9..892ab9487eac 100644 --- a/metadata/md5-cache/dev-ruby/mini_mime-1.1.1 +++ b/metadata/md5-cache/dev-ruby/mini_mime-1.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/discourse/mini_mime/archive/v1.1.1.tar.gz -> mini_mime-1.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8c385e14ab7693b86ba291183347c080 diff --git a/metadata/md5-cache/dev-ruby/mini_mime-1.1.2 b/metadata/md5-cache/dev-ruby/mini_mime-1.1.2 index 0c4963bc8bb0..f45100fb8797 100644 --- a/metadata/md5-cache/dev-ruby/mini_mime-1.1.2 +++ b/metadata/md5-cache/dev-ruby/mini_mime-1.1.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/discourse/mini_mime/archive/v1.1.2.tar.gz -> mini_mime-1.1.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=63b1d773c97207f1adcecfaee1469c82 diff --git a/metadata/md5-cache/dev-ruby/mini_portile2-2.6.1 b/metadata/md5-cache/dev-ruby/mini_portile2-2.6.1 index f9073f7138d4..72050098bdbc 100644 --- a/metadata/md5-cache/dev-ruby/mini_portile2-2.6.1 +++ b/metadata/md5-cache/dev-ruby/mini_portile2-2.6.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2.6 SRC_URI=https://rubygems.org/gems/mini_portile2-2.6.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=013b69b95bf66e06b59f42a55dcc009f diff --git a/metadata/md5-cache/dev-ruby/mini_portile2-2.7.1 b/metadata/md5-cache/dev-ruby/mini_portile2-2.7.1 index a2ed213b0cee..e8a5430b6e83 100644 --- a/metadata/md5-cache/dev-ruby/mini_portile2-2.7.1 +++ b/metadata/md5-cache/dev-ruby/mini_portile2-2.7.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2.7 SRC_URI=https://rubygems.org/gems/mini_portile2-2.7.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=18776e09ecb607afdd6a5cec2b781752 diff --git a/metadata/md5-cache/dev-ruby/mini_portile2-2.8.0 b/metadata/md5-cache/dev-ruby/mini_portile2-2.8.0 index e9ee7bdb756f..c682db06e15a 100644 --- a/metadata/md5-cache/dev-ruby/mini_portile2-2.8.0 +++ b/metadata/md5-cache/dev-ruby/mini_portile2-2.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2.8 SRC_URI=https://rubygems.org/gems/mini_portile2-2.8.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9c40a7f45ae9fcfedd5d2e0b80df997d diff --git a/metadata/md5-cache/dev-ruby/minispec-metadata-3.3.1 b/metadata/md5-cache/dev-ruby/minispec-metadata-3.3.1 index f4e3a62fe2ed..b0cf089badb3 100644 --- a/metadata/md5-cache/dev-ruby/minispec-metadata-3.3.1 +++ b/metadata/md5-cache/dev-ruby/minispec-metadata-3.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/minispec-metadata-3.3.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b425c9445875f6649831ed561d61d2a6 diff --git a/metadata/md5-cache/dev-ruby/minispec-metadata-3.3.1-r1 b/metadata/md5-cache/dev-ruby/minispec-metadata-3.3.1-r1 index b437a2865951..9ad2a334a245 100644 --- a/metadata/md5-cache/dev-ruby/minispec-metadata-3.3.1-r1 +++ b/metadata/md5-cache/dev-ruby/minispec-metadata-3.3.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/minispec-metadata-3.3.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=125a5af35f0cd98b598afb74b4f68b41 diff --git a/metadata/md5-cache/dev-ruby/minitar-0.9 b/metadata/md5-cache/dev-ruby/minitar-0.9 index 178881a74b75..d4fd4b696007 100644 --- a/metadata/md5-cache/dev-ruby/minitar-0.9 +++ b/metadata/md5-cache/dev-ruby/minitar-0.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/halostatue/minitar/archive/v0.9.tar.gz -> minitar-0.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=69099d02fef7f53f67f1f23f07c7f5d3 diff --git a/metadata/md5-cache/dev-ruby/minitar-0.9-r1 b/metadata/md5-cache/dev-ruby/minitar-0.9-r1 index 5f530d19e244..dcc28764f1df 100644 --- a/metadata/md5-cache/dev-ruby/minitar-0.9-r1 +++ b/metadata/md5-cache/dev-ruby/minitar-0.9-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/halostatue/minitar/archive/v0.9.tar.gz -> minitar-0.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f793f7d539775ba88ecd22a4c6165664 diff --git a/metadata/md5-cache/dev-ruby/minitest-5.13.0 b/metadata/md5-cache/dev-ruby/minitest-5.13.0 index b2a1a0931257..ab8753de0136 100644 --- a/metadata/md5-cache/dev-ruby/minitest-5.13.0 +++ b/metadata/md5-cache/dev-ruby/minitest-5.13.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/minitest-5.13.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8124596b9eab8ef82e16e1e87916dff4 diff --git a/metadata/md5-cache/dev-ruby/minitest-5.14.3 b/metadata/md5-cache/dev-ruby/minitest-5.14.3 index 11a4533ef607..2af4403b79ae 100644 --- a/metadata/md5-cache/dev-ruby/minitest-5.14.3 +++ b/metadata/md5-cache/dev-ruby/minitest-5.14.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/minitest-5.14.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=405bdcf2b1bb6ce8de0727ec06b535dc diff --git a/metadata/md5-cache/dev-ruby/minitest-5.14.4 b/metadata/md5-cache/dev-ruby/minitest-5.14.4 index 479cfa6af167..84c0aa63d23c 100644 --- a/metadata/md5-cache/dev-ruby/minitest-5.14.4 +++ b/metadata/md5-cache/dev-ruby/minitest-5.14.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/minitest-5.14.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=17a583cbc9ee96e05d5ed3ebdab42869 diff --git a/metadata/md5-cache/dev-ruby/minitest-5.15.0 b/metadata/md5-cache/dev-ruby/minitest-5.15.0 index 79aaa742aefd..65a07a66c1ed 100644 --- a/metadata/md5-cache/dev-ruby/minitest-5.15.0 +++ b/metadata/md5-cache/dev-ruby/minitest-5.15.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/minitest-5.15.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4b29f63890b4cda97aa7df46b3061ca5 diff --git a/metadata/md5-cache/dev-ruby/minitest-around-0.5.0 b/metadata/md5-cache/dev-ruby/minitest-around-0.5.0 deleted file mode 100644 index 8db5cb42bae2..000000000000 --- a/metadata/md5-cache/dev-ruby/minitest-around-0.5.0 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby26? ( dev-ruby/minitest:5[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/minitest:5[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/bundler[ruby_targets_ruby26(-)] dev-util/cucumber[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-util/cucumber[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) -DESCRIPTION=Alternative for setup/teardown dance -EAPI=6 -HOMEPAGE=https://github.com/splattael/minitest-around -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-ruby/minitest:5[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/minitest:5[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://rubygems.org/gems/minitest-around-0.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b92312c15786eb42aa4dbb7ca89cd2dd diff --git a/metadata/md5-cache/dev-ruby/minitest-around-0.5.0-r1 b/metadata/md5-cache/dev-ruby/minitest-around-0.5.0-r1 index c9ed774cab80..6e3babeab2ac 100644 --- a/metadata/md5-cache/dev-ruby/minitest-around-0.5.0-r1 +++ b/metadata/md5-cache/dev-ruby/minitest-around-0.5.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/minitest-around-0.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=10f046b7f078a45f7e966eb7fb98ba6c diff --git a/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0 b/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0 index b62a52cf03f3..193ee653e350 100644 --- a/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0 +++ b/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/minitest-bonus-assertions-3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=48040033cc64bce051d482fccf05f12e diff --git a/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0-r1 b/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0-r1 index 5f13c6d2a2b5..5a774808e71f 100644 --- a/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0-r1 +++ b/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/minitest-bonus-assertions-3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc7caf9363cd693c5ff21dc5b6571b80 diff --git a/metadata/md5-cache/dev-ruby/minitest-global_expectations-1.0.1 b/metadata/md5-cache/dev-ruby/minitest-global_expectations-1.0.1 index 1212dc569dd3..6f3d0493d200 100644 --- a/metadata/md5-cache/dev-ruby/minitest-global_expectations-1.0.1 +++ b/metadata/md5-cache/dev-ruby/minitest-global_expectations-1.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/minitest-global_expectations-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f8ce45a5cf4e253a3a869e50d5dfef8d diff --git a/metadata/md5-cache/dev-ruby/minitest-global_expectations-1.0.1-r1 b/metadata/md5-cache/dev-ruby/minitest-global_expectations-1.0.1-r1 index b1c64ed5129f..6c9d0f020310 100644 --- a/metadata/md5-cache/dev-ruby/minitest-global_expectations-1.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/minitest-global_expectations-1.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/minitest-global_expectations-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ace23e1973188a1e356368b87f3a1762 diff --git a/metadata/md5-cache/dev-ruby/minitest-hooks-1.5.0 b/metadata/md5-cache/dev-ruby/minitest-hooks-1.5.0 index 838264a12314..7f1f7645def6 100644 --- a/metadata/md5-cache/dev-ruby/minitest-hooks-1.5.0 +++ b/metadata/md5-cache/dev-ruby/minitest-hooks-1.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/minitest-hooks-1.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=874bf270348612e37f14544617b252a9 diff --git a/metadata/md5-cache/dev-ruby/minitest-power_assert-0.3.1 b/metadata/md5-cache/dev-ruby/minitest-power_assert-0.3.1 index 831d00ec5541..1a610a79d844 100644 --- a/metadata/md5-cache/dev-ruby/minitest-power_assert-0.3.1 +++ b/metadata/md5-cache/dev-ruby/minitest-power_assert-0.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/minitest-power_assert-0.3.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=82ba683678359ab47c58203b27865d00 diff --git a/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1-r1 b/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1-r1 index b2ac4c7d3a2f..165e8279f3a5 100644 --- a/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1-r1 +++ b/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1-r1 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Pretty-print hashes and arrays before diffing them in MiniTest EAPI=7 HOMEPAGE=https://github.com/adammck/minitest-pretty_diff -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/minitest-pretty_diff-0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=026826f5f8b3d72ba4ca808ea3382fb1 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=80e4a34a10325a2511e93e80d762cc31 diff --git a/metadata/md5-cache/dev-ruby/mixlib-shellout-3.0.9 b/metadata/md5-cache/dev-ruby/mixlib-shellout-3.0.9 index f02e0717ab8e..831d8949300a 100644 --- a/metadata/md5-cache/dev-ruby/mixlib-shellout-3.0.9 +++ b/metadata/md5-cache/dev-ruby/mixlib-shellout-3.0.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/opscode/mixlib-shellout/archive/v3.0.9.tar.gz -> mixlib-shellout-3.0.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=930c298477ed3f4b4cbccff575d3d1a8 diff --git a/metadata/md5-cache/dev-ruby/mocha-0.14.0-r1 b/metadata/md5-cache/dev-ruby/mocha-0.14.0-r1 index fe5ff43ac758..238df0104c9d 100644 --- a/metadata/md5-cache/dev-ruby/mocha-0.14.0-r1 +++ b/metadata/md5-cache/dev-ruby/mocha-0.14.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0.14 SRC_URI=https://rubygems.org/gems/mocha-0.14.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2199b241b92f9aef177117522bf8dbb5 diff --git a/metadata/md5-cache/dev-ruby/mocha-1.13.0 b/metadata/md5-cache/dev-ruby/mocha-1.13.0 index 53ea2104eaf8..6f23d2eeb4b5 100644 --- a/metadata/md5-cache/dev-ruby/mocha-1.13.0 +++ b/metadata/md5-cache/dev-ruby/mocha-1.13.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://github.com/freerange/mocha/archive/v1.13.0.tar.gz -> mocha-1.13.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0e154fd9494bd0c76ff86e7496f08eb9 diff --git a/metadata/md5-cache/dev-ruby/moneta-1.3.0 b/metadata/md5-cache/dev-ruby/moneta-1.3.0 index b86cfb42d068..4374fc0a2acd 100644 --- a/metadata/md5-cache/dev-ruby/moneta-1.3.0 +++ b/metadata/md5-cache/dev-ruby/moneta-1.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/minad/moneta/archive/v1.3.0.tar.gz -> moneta-1.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6b05e0c59c9e5c50e67f97fb21960761 diff --git a/metadata/md5-cache/dev-ruby/moneta-1.4.0 b/metadata/md5-cache/dev-ruby/moneta-1.4.0 index d0036bbe9915..8f13f8f68a75 100644 --- a/metadata/md5-cache/dev-ruby/moneta-1.4.0 +++ b/metadata/md5-cache/dev-ruby/moneta-1.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/minad/moneta/archive/v1.4.0.tar.gz -> moneta-1.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6b05e0c59c9e5c50e67f97fb21960761 diff --git a/metadata/md5-cache/dev-ruby/moneta-1.4.1 b/metadata/md5-cache/dev-ruby/moneta-1.4.1 index 1685fa204a84..a33462297adf 100644 --- a/metadata/md5-cache/dev-ruby/moneta-1.4.1 +++ b/metadata/md5-cache/dev-ruby/moneta-1.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/minad/moneta/archive/v1.4.1.tar.gz -> moneta-1.4.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=77821d333160d60c002e87eacb05f929 diff --git a/metadata/md5-cache/dev-ruby/mqtt-0.5.0 b/metadata/md5-cache/dev-ruby/mqtt-0.5.0 index 26a0ad2a34a2..de37e197e053 100644 --- a/metadata/md5-cache/dev-ruby/mqtt-0.5.0 +++ b/metadata/md5-cache/dev-ruby/mqtt-0.5.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/njh/ruby-mqtt/archive/v0.5.0.tar.gz -> mqtt-0.5.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ebdd4c1bf06228ee8c0a1b0f57aec687 diff --git a/metadata/md5-cache/dev-ruby/msgpack-1.4.3 b/metadata/md5-cache/dev-ruby/msgpack-1.4.3 index e7036c48180d..b691c0d32c65 100644 --- a/metadata/md5-cache/dev-ruby/msgpack-1.4.3 +++ b/metadata/md5-cache/dev-ruby/msgpack-1.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/msgpack-1.4.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ecc2b3a3177f8059ff8faad38d44178b diff --git a/metadata/md5-cache/dev-ruby/msgpack-1.4.4 b/metadata/md5-cache/dev-ruby/msgpack-1.4.4 index 0734f0d61cd8..b9fa5f515865 100644 --- a/metadata/md5-cache/dev-ruby/msgpack-1.4.4 +++ b/metadata/md5-cache/dev-ruby/msgpack-1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/msgpack-1.4.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ecc2b3a3177f8059ff8faad38d44178b diff --git a/metadata/md5-cache/dev-ruby/msgpack-1.4.5 b/metadata/md5-cache/dev-ruby/msgpack-1.4.5 index 8fbd483f9af9..2dbbcdc08615 100644 --- a/metadata/md5-cache/dev-ruby/msgpack-1.4.5 +++ b/metadata/md5-cache/dev-ruby/msgpack-1.4.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/msgpack-1.4.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=79481dcd179e9a1ff8fd338ea4355496 diff --git a/metadata/md5-cache/dev-ruby/msgpack-1.5.1 b/metadata/md5-cache/dev-ruby/msgpack-1.5.1 index 0abece1bf8b8..62fbd7e34502 100644 --- a/metadata/md5-cache/dev-ruby/msgpack-1.5.1 +++ b/metadata/md5-cache/dev-ruby/msgpack-1.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/msgpack-1.5.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b387caf2d359eebd47cee8d609700c54 diff --git a/metadata/md5-cache/dev-ruby/multi_json-1.14.1 b/metadata/md5-cache/dev-ruby/multi_json-1.14.1 index b318753c324d..8ff7d1832da0 100644 --- a/metadata/md5-cache/dev-ruby/multi_json-1.14.1 +++ b/metadata/md5-cache/dev-ruby/multi_json-1.14.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/intridea/multi_json/archive/v1.14.1.tar.gz -> multi_json-1.14.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7d69b69aa313fe02b40f7eb04b921a3d diff --git a/metadata/md5-cache/dev-ruby/multi_json-1.15.0 b/metadata/md5-cache/dev-ruby/multi_json-1.15.0 index d94235d5f71a..54fa2cd5057c 100644 --- a/metadata/md5-cache/dev-ruby/multi_json-1.15.0 +++ b/metadata/md5-cache/dev-ruby/multi_json-1.15.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/intridea/multi_json/archive/v1.15.0.tar.gz -> multi_json-1.15.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8fdf5b702cab1e1aeb2a8ff474f7c1e1 diff --git a/metadata/md5-cache/dev-ruby/multi_test-0.1.2-r1 b/metadata/md5-cache/dev-ruby/multi_test-0.1.2-r1 index 9e547589e4f4..fe537fbb27f5 100644 --- a/metadata/md5-cache/dev-ruby/multi_test-0.1.2-r1 +++ b/metadata/md5-cache/dev-ruby/multi_test-0.1.2-r1 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=A uniform interface for Ruby testing libraries EAPI=7 HOMEPAGE=https://cucumber.io/ -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/multi_test-0.1.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=415558b95c1948f2e1addeeba37bf8cd +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=5eb9784539bf59de110a3aa23763e3ec diff --git a/metadata/md5-cache/dev-ruby/multi_xml-0.6.0-r1 b/metadata/md5-cache/dev-ruby/multi_xml-0.6.0-r1 index cf49eb8ae429..76b570f469d7 100644 --- a/metadata/md5-cache/dev-ruby/multi_xml-0.6.0-r1 +++ b/metadata/md5-cache/dev-ruby/multi_xml-0.6.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/sferik/multi_xml/archive/v0.6.0.tar.gz -> multi_xml-0.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8ac9ac39ee4b6900e2ac52472728a134 diff --git a/metadata/md5-cache/dev-ruby/multi_xml-0.6.0-r2 b/metadata/md5-cache/dev-ruby/multi_xml-0.6.0-r2 index 2df50af851a6..ae716912bb98 100644 --- a/metadata/md5-cache/dev-ruby/multi_xml-0.6.0-r2 +++ b/metadata/md5-cache/dev-ruby/multi_xml-0.6.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/sferik/multi_xml/archive/v0.6.0.tar.gz -> multi_xml-0.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=74ce59a9ce522d224f696a463db30867 diff --git a/metadata/md5-cache/dev-ruby/multipart-post-2.1.1 b/metadata/md5-cache/dev-ruby/multipart-post-2.1.1 index 2842ace66d3e..35448fac48e1 100644 --- a/metadata/md5-cache/dev-ruby/multipart-post-2.1.1 +++ b/metadata/md5-cache/dev-ruby/multipart-post-2.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/multipart-post-2.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=aef71f88657a959ba3b2ca3ee1c78e7f diff --git a/metadata/md5-cache/dev-ruby/mustache-1.1.1 b/metadata/md5-cache/dev-ruby/mustache-1.1.1 index df6b052523ea..ce03e517142f 100644 --- a/metadata/md5-cache/dev-ruby/mustache-1.1.1 +++ b/metadata/md5-cache/dev-ruby/mustache-1.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mustache-1.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d17f53ba25c840665f9a7a2e2874b1c4 diff --git a/metadata/md5-cache/dev-ruby/mustermann-1.1.1 b/metadata/md5-cache/dev-ruby/mustermann-1.1.1 index 140dbb33a3a6..4f00fe75eeca 100644 --- a/metadata/md5-cache/dev-ruby/mustermann-1.1.1 +++ b/metadata/md5-cache/dev-ruby/mustermann-1.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/mustermann-1.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1e08ac7f6243ad83bc1c723f697b2ab1 diff --git a/metadata/md5-cache/dev-ruby/mysql2-0.5.3-r1 b/metadata/md5-cache/dev-ruby/mysql2-0.5.3-r1 index 1d0de217e174..be323c3cde0f 100644 --- a/metadata/md5-cache/dev-ruby/mysql2-0.5.3-r1 +++ b/metadata/md5-cache/dev-ruby/mysql2-0.5.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( mariadb mysql ) || ( ruby_targets_ruby26 ruby_targets_ruby27 r RESTRICT=!test? ( test ) SLOT=0.5 SRC_URI=https://rubygems.org/gems/mysql2-0.5.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2ee1cda08464110842bace043b79133c diff --git a/metadata/md5-cache/dev-ruby/mysql2-0.5.3.20210920 b/metadata/md5-cache/dev-ruby/mysql2-0.5.3.20210920 index 612565391131..980b9abcd657 100644 --- a/metadata/md5-cache/dev-ruby/mysql2-0.5.3.20210920 +++ b/metadata/md5-cache/dev-ruby/mysql2-0.5.3.20210920 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( mariadb mysql ) || ( ruby_targets_ruby26 ruby_targets_ruby27 r RESTRICT=!test? ( test ) SLOT=0.5 SRC_URI=https://github.com/brianmario/mysql2/archive/6652da20010ddfbbe6bceb8e41666d05e512346c.tar.gz -> mysql2-0.5.3.20210920.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0e1057e2dd1985c448d302df6f7cdb9f diff --git a/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r2 b/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r2 index 84bc51ba7b69..77ba764e5d24 100644 --- a/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r2 +++ b/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/nagios_analyzer-0.0.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=99a682e2169289503e1a3802c313e292 diff --git a/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1-r1 b/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1-r1 index 874bf9df872e..1d74c86cd4dd 100644 --- a/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1-r1 +++ b/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/nanotest-0.9.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=94ffe63f1d3ff5b87ba970bc4d5575a3 diff --git a/metadata/md5-cache/dev-ruby/narray-0.6.1.2-r1 b/metadata/md5-cache/dev-ruby/narray-0.6.1.2-r1 index 15edbd01c219..b44b7a643a37 100644 --- a/metadata/md5-cache/dev-ruby/narray-0.6.1.2-r1 +++ b/metadata/md5-cache/dev-ruby/narray-0.6.1.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/masa16/narray/archive/0.6.1.2.tar.gz -> narray-0.6.1.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a6e7a5cd4eb7da82fc490628f76e1107 diff --git a/metadata/md5-cache/dev-ruby/narray-0.6.1.2-r2 b/metadata/md5-cache/dev-ruby/narray-0.6.1.2-r2 index c8f27b35b86d..d2678e0a1350 100644 --- a/metadata/md5-cache/dev-ruby/narray-0.6.1.2-r2 +++ b/metadata/md5-cache/dev-ruby/narray-0.6.1.2-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/masa16/narray/archive/0.6.1.2.tar.gz -> narray-0.6.1.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4146c5332b425f9a3f7a672e65ff2a9a diff --git a/metadata/md5-cache/dev-ruby/naught-1.1.0-r1 b/metadata/md5-cache/dev-ruby/naught-1.1.0-r1 index 38b95a98f430..119c1f0eea83 100644 --- a/metadata/md5-cache/dev-ruby/naught-1.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/naught-1.1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/naught-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cc000101127415d0b31c439cce00b311 diff --git a/metadata/md5-cache/dev-ruby/necromancer-0.5.1 b/metadata/md5-cache/dev-ruby/necromancer-0.5.1 index a4c6c72bcb6f..0a19711b625f 100644 --- a/metadata/md5-cache/dev-ruby/necromancer-0.5.1 +++ b/metadata/md5-cache/dev-ruby/necromancer-0.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/necromancer-0.5.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1365ed1f8149a96ef7b2b3675e2f5223 diff --git a/metadata/md5-cache/dev-ruby/necromancer-0.7.0 b/metadata/md5-cache/dev-ruby/necromancer-0.7.0 index 90b3d4729b59..4e038386e004 100644 --- a/metadata/md5-cache/dev-ruby/necromancer-0.7.0 +++ b/metadata/md5-cache/dev-ruby/necromancer-0.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/necromancer/archive/v0.7.0.tar.gz -> necromancer-0.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=969125575321f0b35b32bd3702f4a009 diff --git a/metadata/md5-cache/dev-ruby/nenv-0.3.0-r1 b/metadata/md5-cache/dev-ruby/nenv-0.3.0-r1 index 63fef714a13d..81488e36f829 100644 --- a/metadata/md5-cache/dev-ruby/nenv-0.3.0-r1 +++ b/metadata/md5-cache/dev-ruby/nenv-0.3.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/e2/nenv/archive/v0.3.0.tar.gz -> nenv-0.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4b3dd754b15d5717eef765ada471a8b9 diff --git a/metadata/md5-cache/dev-ruby/neovim-ruby-client-0.8.1-r1 b/metadata/md5-cache/dev-ruby/neovim-ruby-client-0.8.1-r1 index 7cd74e4995db..a31cf0f111c8 100644 --- a/metadata/md5-cache/dev-ruby/neovim-ruby-client-0.8.1-r1 +++ b/metadata/md5-cache/dev-ruby/neovim-ruby-client-0.8.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/neovim-0.8.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b5a33a9356267b812a7a9ea9f9fe327d diff --git a/metadata/md5-cache/dev-ruby/net-ftp-0.1.3 b/metadata/md5-cache/dev-ruby/net-ftp-0.1.3 index 68b13831efc0..22066625cd4b 100644 --- a/metadata/md5-cache/dev-ruby/net-ftp-0.1.3 +++ b/metadata/md5-cache/dev-ruby/net-ftp-0.1.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/net-ftp/archive/v0.1.3.tar.gz -> net-ftp-0.1.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=44f596769546ee99cbc1619781c59ee9 diff --git a/metadata/md5-cache/dev-ruby/net-http-digest_auth-1.4.1-r1 b/metadata/md5-cache/dev-ruby/net-http-digest_auth-1.4.1-r1 index 7fbf29529376..3c9996b5bf89 100644 --- a/metadata/md5-cache/dev-ruby/net-http-digest_auth-1.4.1-r1 +++ b/metadata/md5-cache/dev-ruby/net-http-digest_auth-1.4.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/net-http-digest_auth-1.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fd706a3cd80c154674ba44173d3f615c diff --git a/metadata/md5-cache/dev-ruby/net-http-persistent-3.1.0 b/metadata/md5-cache/dev-ruby/net-http-persistent-3.1.0 index 8194fa8f2915..9ffc79572f8f 100644 --- a/metadata/md5-cache/dev-ruby/net-http-persistent-3.1.0 +++ b/metadata/md5-cache/dev-ruby/net-http-persistent-3.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/net-http-persistent-3.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2d4823acda6f39b2a3bac8340d7acefc diff --git a/metadata/md5-cache/dev-ruby/net-http-persistent-4.0.1 b/metadata/md5-cache/dev-ruby/net-http-persistent-4.0.1 index c1adf240ed6b..a40445416d97 100644 --- a/metadata/md5-cache/dev-ruby/net-http-persistent-4.0.1 +++ b/metadata/md5-cache/dev-ruby/net-http-persistent-4.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/net-http-persistent-4.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b981f78994353509c4f729f5588d6be6 diff --git a/metadata/md5-cache/dev-ruby/net-http-pipeline-1.0.1-r1 b/metadata/md5-cache/dev-ruby/net-http-pipeline-1.0.1-r1 index 89bb3cf20a65..f676f30477f6 100644 --- a/metadata/md5-cache/dev-ruby/net-http-pipeline-1.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/net-http-pipeline-1.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/net-http-pipeline-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a89caf9981fe57fb018748073e04f7aa diff --git a/metadata/md5-cache/dev-ruby/net-imap-0.2.3 b/metadata/md5-cache/dev-ruby/net-imap-0.2.3 index eff9d9636aae..20b217e48e94 100644 --- a/metadata/md5-cache/dev-ruby/net-imap-0.2.3 +++ b/metadata/md5-cache/dev-ruby/net-imap-0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/net-imap/archive/v0.2.3.tar.gz -> net-imap-0.2.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f4aa22faaafe28e7e2339cdf10e5a8d7 diff --git a/metadata/md5-cache/dev-ruby/net-pop-0.1.1 b/metadata/md5-cache/dev-ruby/net-pop-0.1.1 index fcbd78a9a1af..b50d5000d190 100644 --- a/metadata/md5-cache/dev-ruby/net-pop-0.1.1 +++ b/metadata/md5-cache/dev-ruby/net-pop-0.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/net-pop/archive/v0.1.1.tar.gz -> net-pop-0.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0a0bc970e2125136c25926faca586ceb diff --git a/metadata/md5-cache/dev-ruby/net-protocol-0.1.2 b/metadata/md5-cache/dev-ruby/net-protocol-0.1.2 index 3ca00907d436..d3b9dcba28d7 100644 --- a/metadata/md5-cache/dev-ruby/net-protocol-0.1.2 +++ b/metadata/md5-cache/dev-ruby/net-protocol-0.1.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/net-protocol/archive/v0.1.2.tar.gz -> net-protocol-0.1.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cd7031a52cfb1f51cfd04c3b26789935 diff --git a/metadata/md5-cache/dev-ruby/net-protocol-0.1.3 b/metadata/md5-cache/dev-ruby/net-protocol-0.1.3 index 277605d1adde..c35b28b0ac6e 100644 --- a/metadata/md5-cache/dev-ruby/net-protocol-0.1.3 +++ b/metadata/md5-cache/dev-ruby/net-protocol-0.1.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/net-protocol/archive/v0.1.3.tar.gz -> net-protocol-0.1.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=58ab95f03d247cc0ea7f7e567caf024b diff --git a/metadata/md5-cache/dev-ruby/net-scp-3.0.0 b/metadata/md5-cache/dev-ruby/net-scp-3.0.0 index 3fc953f70de3..c72d13bccc8f 100644 --- a/metadata/md5-cache/dev-ruby/net-scp-3.0.0 +++ b/metadata/md5-cache/dev-ruby/net-scp-3.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=2 SRC_URI=https://github.com/net-ssh/net-scp/archive/v3.0.0.tar.gz -> net-scp-3.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=56345fcf3f4861864b88dc697d312ff5 diff --git a/metadata/md5-cache/dev-ruby/net-sftp-3.0.0 b/metadata/md5-cache/dev-ruby/net-sftp-3.0.0 index 2be47d2e02e1..44978672a9a5 100644 --- a/metadata/md5-cache/dev-ruby/net-sftp-3.0.0 +++ b/metadata/md5-cache/dev-ruby/net-sftp-3.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/net-ssh/net-sftp/archive/v3.0.0.tar.gz -> net-sftp-3.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f204728753df33bee8d85f861e23cdeb diff --git a/metadata/md5-cache/dev-ruby/net-smtp-0.3.1 b/metadata/md5-cache/dev-ruby/net-smtp-0.3.1 index f4929956c886..a4bb9172dd5f 100644 --- a/metadata/md5-cache/dev-ruby/net-smtp-0.3.1 +++ b/metadata/md5-cache/dev-ruby/net-smtp-0.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/net-smtp/archive/v0.3.1.tar.gz -> net-smtp-0.3.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a794093bff3da21e2eaa886d308dcf4f diff --git a/metadata/md5-cache/dev-ruby/net-ssh-5.2.0 b/metadata/md5-cache/dev-ruby/net-ssh-5.2.0 index a9f717a9119a..383808b143a2 100644 --- a/metadata/md5-cache/dev-ruby/net-ssh-5.2.0 +++ b/metadata/md5-cache/dev-ruby/net-ssh-5.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/net-ssh/net-ssh/archive/v5.2.0.tar.gz -> net-ssh-git-5.2.0.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ed002f949b3e4b262a06ca0b637ed7a4 diff --git a/metadata/md5-cache/dev-ruby/net-ssh-6.1.0-r1 b/metadata/md5-cache/dev-ruby/net-ssh-6.1.0-r1 index 34a8a4ea9dca..81feb9e0fdec 100644 --- a/metadata/md5-cache/dev-ruby/net-ssh-6.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/net-ssh-6.1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://github.com/net-ssh/net-ssh/archive/v6.1.0.tar.gz -> net-ssh-git-6.1.0.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e71e07afcf5a6a3549410b87b7520d51 diff --git a/metadata/md5-cache/dev-ruby/net-ssh-6.1.0-r2 b/metadata/md5-cache/dev-ruby/net-ssh-6.1.0-r2 index 7cafc957079e..2fba20d8fba2 100644 --- a/metadata/md5-cache/dev-ruby/net-ssh-6.1.0-r2 +++ b/metadata/md5-cache/dev-ruby/net-ssh-6.1.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://github.com/net-ssh/net-ssh/archive/v6.1.0.tar.gz -> net-ssh-git-6.1.0.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=873976b4b912e83c27cfef623b43667d diff --git a/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0-r1 b/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0-r1 index 7b6a10c122de..d94cc52c0440 100644 --- a/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2.0 SRC_URI=https://github.com/net-ssh/net-ssh-gateway/archive/2.0.0.tar.gz -> net-ssh-gateway-2.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f64d107d68d034a5056167c070da0538 diff --git a/metadata/md5-cache/dev-ruby/net-telnet-0.2.0 b/metadata/md5-cache/dev-ruby/net-telnet-0.2.0 index 9a05d523d7c6..088fba06b109 100644 --- a/metadata/md5-cache/dev-ruby/net-telnet-0.2.0 +++ b/metadata/md5-cache/dev-ruby/net-telnet-0.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ruby/net-telnet/archive/v0.2.0.tar.gz -> net-telnet-0.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0b143fd426b27eb310539b49449aae28 diff --git a/metadata/md5-cache/dev-ruby/net-telnet-0.2.0-r1 b/metadata/md5-cache/dev-ruby/net-telnet-0.2.0-r1 index fdf45965fc88..224898c4507b 100644 --- a/metadata/md5-cache/dev-ruby/net-telnet-0.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/net-telnet-0.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ruby/net-telnet/archive/v0.2.0.tar.gz -> net-telnet-0.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d6f8d6eacd00f6b5e284813e20e45d67 diff --git a/metadata/md5-cache/dev-ruby/netrc-0.11.0-r1 b/metadata/md5-cache/dev-ruby/netrc-0.11.0-r1 index 521f22b23978..8560037a9d24 100644 --- a/metadata/md5-cache/dev-ruby/netrc-0.11.0-r1 +++ b/metadata/md5-cache/dev-ruby/netrc-0.11.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/netrc-0.11.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d6a50a2443cba1bae6ff90379fc1c3f0 diff --git a/metadata/md5-cache/dev-ruby/network_interface-0.0.2 b/metadata/md5-cache/dev-ruby/network_interface-0.0.2 index 59eafedfa731..628d86130f34 100644 --- a/metadata/md5-cache/dev-ruby/network_interface-0.0.2 +++ b/metadata/md5-cache/dev-ruby/network_interface-0.0.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/network_interface-0.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=83fa0e9cd3dee0ad2d390e681a92a236 diff --git a/metadata/md5-cache/dev-ruby/network_interface-0.0.2-r1 b/metadata/md5-cache/dev-ruby/network_interface-0.0.2-r1 index 974585751dd8..033322d99b27 100644 --- a/metadata/md5-cache/dev-ruby/network_interface-0.0.2-r1 +++ b/metadata/md5-cache/dev-ruby/network_interface-0.0.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/network_interface-0.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=660e04e1d392362c72143f1856b23718 diff --git a/metadata/md5-cache/dev-ruby/niceogiri-1.1.2-r1 b/metadata/md5-cache/dev-ruby/niceogiri-1.1.2-r1 index 7d49a84db32d..fc74d7ca408b 100644 --- a/metadata/md5-cache/dev-ruby/niceogiri-1.1.2-r1 +++ b/metadata/md5-cache/dev-ruby/niceogiri-1.1.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/niceogiri-1.1.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=546550c8b983b5ec366a9434c1e7856b diff --git a/metadata/md5-cache/dev-ruby/nio4r-2.5.4 b/metadata/md5-cache/dev-ruby/nio4r-2.5.4 index 6cc948eca2d7..e953439fd30e 100644 --- a/metadata/md5-cache/dev-ruby/nio4r-2.5.4 +++ b/metadata/md5-cache/dev-ruby/nio4r-2.5.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/nio4r-2.5.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=daf0fd8829a69b5f9c177203bc3cf002 diff --git a/metadata/md5-cache/dev-ruby/nio4r-2.5.8 b/metadata/md5-cache/dev-ruby/nio4r-2.5.8 index add25bb7822a..ce19799c12e1 100644 --- a/metadata/md5-cache/dev-ruby/nio4r-2.5.8 +++ b/metadata/md5-cache/dev-ruby/nio4r-2.5.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/nio4r-2.5.8.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9373e0a583f5943bbe6836d0ef7a6871 diff --git a/metadata/md5-cache/dev-ruby/nokogiri-1.12.5 b/metadata/md5-cache/dev-ruby/nokogiri-1.12.5 index 00ea09d9d42a..afd9cf629294 100644 --- a/metadata/md5-cache/dev-ruby/nokogiri-1.12.5 +++ b/metadata/md5-cache/dev-ruby/nokogiri-1.12.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/sparklemotion/nokogiri/archive/v1.12.5.tar.gz -> nokogiri-1.12.5-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=66645e8ffe43bc143a6ea0daba75acda diff --git a/metadata/md5-cache/dev-ruby/nokogiri-1.13.3 b/metadata/md5-cache/dev-ruby/nokogiri-1.13.3 index 3757656fff80..4b686a3db503 100644 --- a/metadata/md5-cache/dev-ruby/nokogiri-1.13.3 +++ b/metadata/md5-cache/dev-ruby/nokogiri-1.13.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/sparklemotion/nokogiri/archive/v1.13.3.tar.gz -> nokogiri-1.13.3-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e6a26e76aab93f1f267f99033b2ab82a diff --git a/metadata/md5-cache/dev-ruby/nokogiri-1.13.4 b/metadata/md5-cache/dev-ruby/nokogiri-1.13.4 index 1ca76c9b94bb..f10b15a931a6 100644 --- a/metadata/md5-cache/dev-ruby/nokogiri-1.13.4 +++ b/metadata/md5-cache/dev-ruby/nokogiri-1.13.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/sparklemotion/nokogiri/archive/v1.13.4.tar.gz -> nokogiri-1.13.4-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=02035fc389063d984e51f7010ff53f84 diff --git a/metadata/md5-cache/dev-ruby/nokogiri-diff-0.2.0-r3 b/metadata/md5-cache/dev-ruby/nokogiri-diff-0.2.0-r3 index cbac5750e4ea..af71babe3ed8 100644 --- a/metadata/md5-cache/dev-ruby/nokogiri-diff-0.2.0-r3 +++ b/metadata/md5-cache/dev-ruby/nokogiri-diff-0.2.0-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/nokogiri-diff-0.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0f1ba53c3de904f7d2d856007518ea9d diff --git a/metadata/md5-cache/dev-ruby/nokogumbo-2.0.5-r1 b/metadata/md5-cache/dev-ruby/nokogumbo-2.0.5-r1 index e31df796a2a7..59ecd79a68d3 100644 --- a/metadata/md5-cache/dev-ruby/nokogumbo-2.0.5-r1 +++ b/metadata/md5-cache/dev-ruby/nokogumbo-2.0.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rubys/nokogumbo/archive/v2.0.5.tar.gz -> nokogumbo-2.0.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=af490ee2cf5e9d1bd24978cb15a223f7 diff --git a/metadata/md5-cache/dev-ruby/nokogumbo-2.0.5-r2 b/metadata/md5-cache/dev-ruby/nokogumbo-2.0.5-r2 index 3912868ec174..a7b362311a2c 100644 --- a/metadata/md5-cache/dev-ruby/nokogumbo-2.0.5-r2 +++ b/metadata/md5-cache/dev-ruby/nokogumbo-2.0.5-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rubys/nokogumbo/archive/v2.0.5.tar.gz -> nokogumbo-2.0.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=12f199c43b2506263038f30e1f68306e diff --git a/metadata/md5-cache/dev-ruby/ntlm-http-0.1.1-r3 b/metadata/md5-cache/dev-ruby/ntlm-http-0.1.1-r3 index 74c9937e6fe0..c4ca300d6bbf 100644 --- a/metadata/md5-cache/dev-ruby/ntlm-http-0.1.1-r3 +++ b/metadata/md5-cache/dev-ruby/ntlm-http-0.1.1-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ntlm-http-0.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a0b8d0a2cd90c11876b401afe369e1ce diff --git a/metadata/md5-cache/dev-ruby/oauth-0.5.6 b/metadata/md5-cache/dev-ruby/oauth-0.5.6 index ffc3d86d5ce1..66b49b5e1a35 100644 --- a/metadata/md5-cache/dev-ruby/oauth-0.5.6 +++ b/metadata/md5-cache/dev-ruby/oauth-0.5.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/oauth-xx/oauth-ruby/archive/v0.5.6.tar.gz -> oauth-0.5.6.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=31d7c582a1f1e1983af8ec447d604c7c diff --git a/metadata/md5-cache/dev-ruby/oauth-0.5.7 b/metadata/md5-cache/dev-ruby/oauth-0.5.7 index 46102017ee3f..03ac342ad5d8 100644 --- a/metadata/md5-cache/dev-ruby/oauth-0.5.7 +++ b/metadata/md5-cache/dev-ruby/oauth-0.5.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/oauth-xx/oauth-ruby/archive/v0.5.7.tar.gz -> oauth-0.5.7.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=db8c271532cae62b480cef2328a4872b diff --git a/metadata/md5-cache/dev-ruby/oauth-0.5.8 b/metadata/md5-cache/dev-ruby/oauth-0.5.8 index 13d3a081c6db..b9c584bd2d6b 100644 --- a/metadata/md5-cache/dev-ruby/oauth-0.5.8 +++ b/metadata/md5-cache/dev-ruby/oauth-0.5.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/oauth-xx/oauth-ruby/archive/v0.5.8.tar.gz -> oauth-0.5.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3f1c753c044edba57b4fe17d7362eaae diff --git a/metadata/md5-cache/dev-ruby/oauth2-1.4.4 b/metadata/md5-cache/dev-ruby/oauth2-1.4.4 index a68e8916b029..c7951c0bdf4a 100644 --- a/metadata/md5-cache/dev-ruby/oauth2-1.4.4 +++ b/metadata/md5-cache/dev-ruby/oauth2-1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/intridea/oauth2/archive/v1.4.4.tar.gz -> oauth2-1.4.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=eee1046d6d1e2c1444b3ed287a8d377b diff --git a/metadata/md5-cache/dev-ruby/oauth2-1.4.7 b/metadata/md5-cache/dev-ruby/oauth2-1.4.7 index dee8d7fa87c6..138c31bc99c7 100644 --- a/metadata/md5-cache/dev-ruby/oauth2-1.4.7 +++ b/metadata/md5-cache/dev-ruby/oauth2-1.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/intridea/oauth2/archive/v1.4.7.tar.gz -> oauth2-1.4.7.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=227c2d5647e4aeca5d329e179966598e diff --git a/metadata/md5-cache/dev-ruby/octokit-4.20.0 b/metadata/md5-cache/dev-ruby/octokit-4.20.0 index f99678c11c5f..3c7304fcb460 100644 --- a/metadata/md5-cache/dev-ruby/octokit-4.20.0 +++ b/metadata/md5-cache/dev-ruby/octokit-4.20.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/octokit/octokit.rb/archive/v4.20.0.tar.gz -> octokit-4.20.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e59d650b160a11a9a441984838cd684d diff --git a/metadata/md5-cache/dev-ruby/octokit-4.21.0 b/metadata/md5-cache/dev-ruby/octokit-4.21.0 index cbb9ba0f8d2d..2a614a2bf1b7 100644 --- a/metadata/md5-cache/dev-ruby/octokit-4.21.0 +++ b/metadata/md5-cache/dev-ruby/octokit-4.21.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/octokit/octokit.rb/archive/v4.21.0.tar.gz -> octokit-4.21.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e59d650b160a11a9a441984838cd684d diff --git a/metadata/md5-cache/dev-ruby/octokit-4.22.0 b/metadata/md5-cache/dev-ruby/octokit-4.22.0 index 9a7d54838229..22d0356b9670 100644 --- a/metadata/md5-cache/dev-ruby/octokit-4.22.0 +++ b/metadata/md5-cache/dev-ruby/octokit-4.22.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/octokit/octokit.rb/archive/v4.22.0.tar.gz -> octokit-4.22.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e599b229908130177e8d93a5c2b5328a diff --git a/metadata/md5-cache/dev-ruby/omniauth-2.0.4 b/metadata/md5-cache/dev-ruby/omniauth-2.0.4 index 3decf50f359a..bfdf5106fbef 100644 --- a/metadata/md5-cache/dev-ruby/omniauth-2.0.4 +++ b/metadata/md5-cache/dev-ruby/omniauth-2.0.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/intridea/omniauth/archive/v2.0.4.tar.gz -> omniauth-2.0.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a8921c61d2e19844ad67e24c8f05c04b diff --git a/metadata/md5-cache/dev-ruby/omniauth-2.1.0 b/metadata/md5-cache/dev-ruby/omniauth-2.1.0 index 34927d379cdd..244be89cdf03 100644 --- a/metadata/md5-cache/dev-ruby/omniauth-2.1.0 +++ b/metadata/md5-cache/dev-ruby/omniauth-2.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/intridea/omniauth/archive/v2.1.0.tar.gz -> omniauth-2.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc23fd3d1dc7e50fdab520fa59454c7d diff --git a/metadata/md5-cache/dev-ruby/open4-1.3.4-r1 b/metadata/md5-cache/dev-ruby/open4-1.3.4-r1 index 513489dd1171..2a416c2724ba 100644 --- a/metadata/md5-cache/dev-ruby/open4-1.3.4-r1 +++ b/metadata/md5-cache/dev-ruby/open4-1.3.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/open4-1.3.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=acb35cb2e1c8a75b774f2cc30dcf242e diff --git a/metadata/md5-cache/dev-ruby/openssl-ccm-1.2.2 b/metadata/md5-cache/dev-ruby/openssl-ccm-1.2.2 index 7f683aba9db2..2a10ad73f86b 100644 --- a/metadata/md5-cache/dev-ruby/openssl-ccm-1.2.2 +++ b/metadata/md5-cache/dev-ruby/openssl-ccm-1.2.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.2.2 SRC_URI=https://rubygems.org/gems/openssl-ccm-1.2.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e7a4e7a44cae6ae17f6d681d3961543f diff --git a/metadata/md5-cache/dev-ruby/optimist-3.0.1 b/metadata/md5-cache/dev-ruby/optimist-3.0.1 index 4efa61d681d5..1b647d6bc890 100644 --- a/metadata/md5-cache/dev-ruby/optimist-3.0.1 +++ b/metadata/md5-cache/dev-ruby/optimist-3.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/optimist-3.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=39c69206bda9bdfb30a1ba4d0b7a5732 diff --git a/metadata/md5-cache/dev-ruby/optionable-0.2.0-r1 b/metadata/md5-cache/dev-ruby/optionable-0.2.0-r1 index d007f8c0f9ea..466a4825179f 100644 --- a/metadata/md5-cache/dev-ruby/optionable-0.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/optionable-0.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/optionable-0.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=983d529da4dbc1f1305e59946c526bb8 diff --git a/metadata/md5-cache/dev-ruby/org-ruby-0.9.12-r1 b/metadata/md5-cache/dev-ruby/org-ruby-0.9.12-r1 index 01deed06511b..d076664792b2 100644 --- a/metadata/md5-cache/dev-ruby/org-ruby-0.9.12-r1 +++ b/metadata/md5-cache/dev-ruby/org-ruby-0.9.12-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/wallyqs/org-ruby/archive/version-0.9.12.tar.gz -> org-ruby-0.9.12.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=41669c1c5a392aa25762cc8c07d3b771 diff --git a/metadata/md5-cache/dev-ruby/origin-2.3.1 b/metadata/md5-cache/dev-ruby/origin-2.3.1 index 8eba0ecab10c..4d96d3c7b619 100644 --- a/metadata/md5-cache/dev-ruby/origin-2.3.1 +++ b/metadata/md5-cache/dev-ruby/origin-2.3.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/mongoid/origin/archive/v2.3.1.tar.gz -> origin-2.3.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cd0e62a71b4f6f0c57089e49eff29da7 diff --git a/metadata/md5-cache/dev-ruby/ox-2.14.10 b/metadata/md5-cache/dev-ruby/ox-2.14.10 index 42a5bddafa45..58ec9de0dfb3 100644 --- a/metadata/md5-cache/dev-ruby/ox-2.14.10 +++ b/metadata/md5-cache/dev-ruby/ox-2.14.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ohler55/ox/archive/v2.14.10.tar.gz -> ox-2.14.10.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=44af274c7a83f30602b109056963393a diff --git a/metadata/md5-cache/dev-ruby/ox-2.14.11 b/metadata/md5-cache/dev-ruby/ox-2.14.11 index 57db2a9e13df..d1b3027c276b 100644 --- a/metadata/md5-cache/dev-ruby/ox-2.14.11 +++ b/metadata/md5-cache/dev-ruby/ox-2.14.11 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ohler55/ox/archive/v2.14.11.tar.gz -> ox-2.14.11.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=44af274c7a83f30602b109056963393a diff --git a/metadata/md5-cache/dev-ruby/ox-2.14.8 b/metadata/md5-cache/dev-ruby/ox-2.14.8 index 44b0837398c1..3717430ab923 100644 --- a/metadata/md5-cache/dev-ruby/ox-2.14.8 +++ b/metadata/md5-cache/dev-ruby/ox-2.14.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ohler55/ox/archive/v2.14.8.tar.gz -> ox-2.14.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9020d6248986fb82a03ba82d739164d6 diff --git a/metadata/md5-cache/dev-ruby/ox-2.14.9 b/metadata/md5-cache/dev-ruby/ox-2.14.9 index 33fd60e2fa96..afe446f15ad0 100644 --- a/metadata/md5-cache/dev-ruby/ox-2.14.9 +++ b/metadata/md5-cache/dev-ruby/ox-2.14.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ohler55/ox/archive/v2.14.9.tar.gz -> ox-2.14.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c1d8bd011479d0ccd60413c925ece3ef diff --git a/metadata/md5-cache/dev-ruby/packetfu-1.1.13 b/metadata/md5-cache/dev-ruby/packetfu-1.1.13 index b12e2551eaac..196e0728baaf 100644 --- a/metadata/md5-cache/dev-ruby/packetfu-1.1.13 +++ b/metadata/md5-cache/dev-ruby/packetfu-1.1.13 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.1.13 SRC_URI=https://rubygems.org/gems/packetfu-1.1.13.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=79ccdf5be14d8957f5d904881ce031dc diff --git a/metadata/md5-cache/dev-ruby/paint-2.2.0 b/metadata/md5-cache/dev-ruby/paint-2.2.0 index aa94ac95fb61..3bdb9a955d14 100644 --- a/metadata/md5-cache/dev-ruby/paint-2.2.0 +++ b/metadata/md5-cache/dev-ruby/paint-2.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/janlelis/paint/archive/v2.2.0.tar.gz -> paint-2.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=106bf803e12fdf3a6fc344c44aa99782 diff --git a/metadata/md5-cache/dev-ruby/paint-2.2.1 b/metadata/md5-cache/dev-ruby/paint-2.2.1 index db5c967543a0..625ab60e4a10 100644 --- a/metadata/md5-cache/dev-ruby/paint-2.2.1 +++ b/metadata/md5-cache/dev-ruby/paint-2.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/janlelis/paint/archive/v2.2.1.tar.gz -> paint-2.2.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=374da28f9f0d7c72733bdc4a09b0697c diff --git a/metadata/md5-cache/dev-ruby/parallel-1.21.0 b/metadata/md5-cache/dev-ruby/parallel-1.21.0 index eb2d8b4e405f..0b9cf4482ee5 100644 --- a/metadata/md5-cache/dev-ruby/parallel-1.21.0 +++ b/metadata/md5-cache/dev-ruby/parallel-1.21.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/grosser/parallel/archive/v1.21.0.tar.gz -> parallel-1.21.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=015163bcb322ddf39d5519b4530c80d8 diff --git a/metadata/md5-cache/dev-ruby/parallel-1.22.0 b/metadata/md5-cache/dev-ruby/parallel-1.22.0 index d3b708522817..6e58b7f227e9 100644 --- a/metadata/md5-cache/dev-ruby/parallel-1.22.0 +++ b/metadata/md5-cache/dev-ruby/parallel-1.22.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/grosser/parallel/archive/v1.22.0.tar.gz -> parallel-1.22.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=015163bcb322ddf39d5519b4530c80d8 diff --git a/metadata/md5-cache/dev-ruby/parallel-1.22.1 b/metadata/md5-cache/dev-ruby/parallel-1.22.1 index 76255b017e76..8cae207bd3bf 100644 --- a/metadata/md5-cache/dev-ruby/parallel-1.22.1 +++ b/metadata/md5-cache/dev-ruby/parallel-1.22.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/grosser/parallel/archive/v1.22.1.tar.gz -> parallel-1.22.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=70c02c21abff2c1249c0e7bacca3e277 diff --git a/metadata/md5-cache/dev-ruby/paramesan-0.1.1 b/metadata/md5-cache/dev-ruby/paramesan-0.1.1 index 4ba9cca44ad6..5f5905d264ed 100644 --- a/metadata/md5-cache/dev-ruby/paramesan-0.1.1 +++ b/metadata/md5-cache/dev-ruby/paramesan-0.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jpace/paramesan/archive/v0.1.1.tar.gz -> paramesan-0.1.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4082f55aca0133f24586924aecfc11ca diff --git a/metadata/md5-cache/dev-ruby/paramesan-1.0.1 b/metadata/md5-cache/dev-ruby/paramesan-1.0.1 index 784c04e9259a..3ebe6982380d 100644 --- a/metadata/md5-cache/dev-ruby/paramesan-1.0.1 +++ b/metadata/md5-cache/dev-ruby/paramesan-1.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/jpace/paramesan/archive/v1.0.1.tar.gz -> paramesan-1.0.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=eb1c3b74530dc318685479a20bfceba5 diff --git a/metadata/md5-cache/dev-ruby/paramesan-1.0.1-r1 b/metadata/md5-cache/dev-ruby/paramesan-1.0.1-r1 index 06d1eaab7d05..ce8f078c8428 100644 --- a/metadata/md5-cache/dev-ruby/paramesan-1.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/paramesan-1.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/jpace/paramesan/archive/v1.0.1.tar.gz -> paramesan-1.0.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4813e5af95324157fdcb85d23cded044 diff --git a/metadata/md5-cache/dev-ruby/parser-2.7.2.0-r1 b/metadata/md5-cache/dev-ruby/parser-2.7.2.0-r1 index 4acc089e3a3f..8354ec2ba4f6 100644 --- a/metadata/md5-cache/dev-ruby/parser-2.7.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/parser-2.7.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whitequark/parser/archive/v2.7.2.0.tar.gz -> parser-2.7.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c2c637fb3c8788602d77d5a331d5bf7e diff --git a/metadata/md5-cache/dev-ruby/parser-3.0.3.2 b/metadata/md5-cache/dev-ruby/parser-3.0.3.2 index 4740286352ee..3fbaa82b834b 100644 --- a/metadata/md5-cache/dev-ruby/parser-3.0.3.2 +++ b/metadata/md5-cache/dev-ruby/parser-3.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whitequark/parser/archive/v3.0.3.2.tar.gz -> parser-3.0.3.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=72757fe3b62df79dc9647be16b0f63aa diff --git a/metadata/md5-cache/dev-ruby/parser-3.1.0.0 b/metadata/md5-cache/dev-ruby/parser-3.1.0.0 index e85686e13030..70728b9b8323 100644 --- a/metadata/md5-cache/dev-ruby/parser-3.1.0.0 +++ b/metadata/md5-cache/dev-ruby/parser-3.1.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whitequark/parser/archive/v3.1.0.0.tar.gz -> parser-3.1.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=07b62ee773ddbae378bf6c1cd982c7b2 diff --git a/metadata/md5-cache/dev-ruby/parser-3.1.1.0 b/metadata/md5-cache/dev-ruby/parser-3.1.1.0 index fc64dc3383f3..a3f0ae136b32 100644 --- a/metadata/md5-cache/dev-ruby/parser-3.1.1.0 +++ b/metadata/md5-cache/dev-ruby/parser-3.1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whitequark/parser/archive/v3.1.1.0.tar.gz -> parser-3.1.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=07b62ee773ddbae378bf6c1cd982c7b2 diff --git a/metadata/md5-cache/dev-ruby/parser-3.1.2.0 b/metadata/md5-cache/dev-ruby/parser-3.1.2.0 index c0e4f1c92625..feb8be259355 100644 --- a/metadata/md5-cache/dev-ruby/parser-3.1.2.0 +++ b/metadata/md5-cache/dev-ruby/parser-3.1.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whitequark/parser/archive/v3.1.2.0.tar.gz -> parser-3.1.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=07b62ee773ddbae378bf6c1cd982c7b2 diff --git a/metadata/md5-cache/dev-ruby/pastel-0.7.4 b/metadata/md5-cache/dev-ruby/pastel-0.7.4 deleted file mode 100644 index 5f9dc31847d3..000000000000 --- a/metadata/md5-cache/dev-ruby/pastel-0.7.4 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/equatable-0.6:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/equatable-0.6:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( 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_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=Terminal strings styling with intuitive and clean API -EAPI=7 -HOMEPAGE=https://github.com/piotrmurach/pastel -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/equatable-0.6:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/equatable-0.6:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/piotrmurach/pastel/archive/v0.7.4.tar.gz -> pastel-0.7.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=319c804270e12852fd66cda52fc67e69 diff --git a/metadata/md5-cache/dev-ruby/pastel-0.8.0 b/metadata/md5-cache/dev-ruby/pastel-0.8.0 index 19649e015346..53a5d072e02e 100644 --- a/metadata/md5-cache/dev-ruby/pastel-0.8.0 +++ b/metadata/md5-cache/dev-ruby/pastel-0.8.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Terminal strings styling with intuitive and clean API EAPI=7 HOMEPAGE=https://github.com/piotrmurach/pastel -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/tty-color-0.5:0[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/pastel/archive/v0.8.0.tar.gz -> pastel-0.8.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=aaca4f1918f4bdce6197f1757af1e319 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=a7c8f86ecf64dc6643bd1af57ffe04e7 diff --git a/metadata/md5-cache/dev-ruby/path_expander-1.1.0 b/metadata/md5-cache/dev-ruby/path_expander-1.1.0 index 635bddeb5556..3702922353e3 100644 --- a/metadata/md5-cache/dev-ruby/path_expander-1.1.0 +++ b/metadata/md5-cache/dev-ruby/path_expander-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/path_expander-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3ab5ccb7bf9c9ed9f2de854d681b41fb diff --git a/metadata/md5-cache/dev-ruby/pathutil-0.16.2 b/metadata/md5-cache/dev-ruby/pathutil-0.16.2 index b436303cff56..0fff7d659944 100644 --- a/metadata/md5-cache/dev-ruby/pathutil-0.16.2 +++ b/metadata/md5-cache/dev-ruby/pathutil-0.16.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/envygeeks/pathutil/archive/v0.16.2.tar.gz -> pathutil-0.16.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2773ee4d8a0940af16e09e628959d21b diff --git a/metadata/md5-cache/dev-ruby/patron-0.13.3-r1 b/metadata/md5-cache/dev-ruby/patron-0.13.3-r1 index d520d88c779a..8f6465401eeb 100644 --- a/metadata/md5-cache/dev-ruby/patron-0.13.3-r1 +++ b/metadata/md5-cache/dev-ruby/patron-0.13.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/patron-0.13.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=635f123be43cf1914dab4cde1e75e2c9 diff --git a/metadata/md5-cache/dev-ruby/pcaprub-0.13.1 b/metadata/md5-cache/dev-ruby/pcaprub-0.13.1 index cc0c9e4a8104..33be52d7bbf0 100644 --- a/metadata/md5-cache/dev-ruby/pcaprub-0.13.1 +++ b/metadata/md5-cache/dev-ruby/pcaprub-0.13.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=0.13 SRC_URI=https://rubygems.org/gems/pcaprub-0.13.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f422acf74dd9f7222ab9888e78686c1f diff --git a/metadata/md5-cache/dev-ruby/pdf-core-0.9.0 b/metadata/md5-cache/dev-ruby/pdf-core-0.9.0 index 084b4b4ee570..e83fd368ae79 100644 --- a/metadata/md5-cache/dev-ruby/pdf-core-0.9.0 +++ b/metadata/md5-cache/dev-ruby/pdf-core-0.9.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/prawnpdf/pdf-core/archive/0.9.0.tar.gz -> pdf-core-0.9.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c27f69939dfb64ddff1714f8c9f8c0dd diff --git a/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0 b/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0 index ea0b38cdac80..11906b793b33 100644 --- a/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0 +++ b/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pdf-inspector-1.3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1f888e9c449b0483a08c0cb3e8689c97 diff --git a/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0-r1 b/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0-r1 index 844aadd9cff0..f6c6acc1d13e 100644 --- a/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0-r1 +++ b/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pdf-inspector-1.3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1ad0ef391c82570dfb10e20db81d40f9 diff --git a/metadata/md5-cache/dev-ruby/pdf-reader-1.4.1-r4 b/metadata/md5-cache/dev-ruby/pdf-reader-1.4.1-r4 index b939655e33c8..a7f35b14f879 100644 --- a/metadata/md5-cache/dev-ruby/pdf-reader-1.4.1-r4 +++ b/metadata/md5-cache/dev-ruby/pdf-reader-1.4.1-r4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/yob/pdf-reader/archive/v1.4.1.tar.gz -> pdf-reader-1.4.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5a2731e2698075d9c388bcddec78f28d diff --git a/metadata/md5-cache/dev-ruby/pdf-reader-2.5.0 b/metadata/md5-cache/dev-ruby/pdf-reader-2.5.0 index 8a43f1adae1a..a02a910fd7aa 100644 --- a/metadata/md5-cache/dev-ruby/pdf-reader-2.5.0 +++ b/metadata/md5-cache/dev-ruby/pdf-reader-2.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/yob/pdf-reader/archive/v2.5.0.tar.gz -> pdf-reader-2.5.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=20981dea294875314a22178d0a517f6e diff --git a/metadata/md5-cache/dev-ruby/pdf-reader-2.6.0 b/metadata/md5-cache/dev-ruby/pdf-reader-2.6.0 index 06743ed1e761..326f71b28f8e 100644 --- a/metadata/md5-cache/dev-ruby/pdf-reader-2.6.0 +++ b/metadata/md5-cache/dev-ruby/pdf-reader-2.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/yob/pdf-reader/archive/v2.6.0.tar.gz -> pdf-reader-2.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8d486462ee283085c53cb9ee85eff79e diff --git a/metadata/md5-cache/dev-ruby/pdf-reader-2.8.0 b/metadata/md5-cache/dev-ruby/pdf-reader-2.8.0 index 11a7ed53f6b3..ce97c9c38bc9 100644 --- a/metadata/md5-cache/dev-ruby/pdf-reader-2.8.0 +++ b/metadata/md5-cache/dev-ruby/pdf-reader-2.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/yob/pdf-reader/archive/v2.8.0.tar.gz -> pdf-reader-2.8.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a0188a2b694b2ee4b888ec569baa92c6 diff --git a/metadata/md5-cache/dev-ruby/pdf-reader-2.9.0 b/metadata/md5-cache/dev-ruby/pdf-reader-2.9.0 index e70f8e876491..790adbbfdbc1 100644 --- a/metadata/md5-cache/dev-ruby/pdf-reader-2.9.0 +++ b/metadata/md5-cache/dev-ruby/pdf-reader-2.9.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/yob/pdf-reader/archive/v2.9.0.tar.gz -> pdf-reader-2.9.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a0188a2b694b2ee4b888ec569baa92c6 diff --git a/metadata/md5-cache/dev-ruby/pdf-reader-2.9.1 b/metadata/md5-cache/dev-ruby/pdf-reader-2.9.1 index 0aeb4dc10bec..bcbcd203f918 100644 --- a/metadata/md5-cache/dev-ruby/pdf-reader-2.9.1 +++ b/metadata/md5-cache/dev-ruby/pdf-reader-2.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/yob/pdf-reader/archive/v2.9.1.tar.gz -> pdf-reader-2.9.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a0188a2b694b2ee4b888ec569baa92c6 diff --git a/metadata/md5-cache/dev-ruby/permutation-0.1.8-r2 b/metadata/md5-cache/dev-ruby/permutation-0.1.8-r2 index 08197473ef44..e0d6f7347329 100644 --- a/metadata/md5-cache/dev-ruby/permutation-0.1.8-r2 +++ b/metadata/md5-cache/dev-ruby/permutation-0.1.8-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/permutation-0.1.8.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cbade3f89c88dde105a218c78ad8db9c diff --git a/metadata/md5-cache/dev-ruby/pg-1.2.2 b/metadata/md5-cache/dev-ruby/pg-1.2.2 index 07985b1c3ce2..006c6144bca8 100644 --- a/metadata/md5-cache/dev-ruby/pg-1.2.2 +++ b/metadata/md5-cache/dev-ruby/pg-1.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/pg-1.2.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=83cc29a34cfc7ab5e94ffade28ef5aa8 diff --git a/metadata/md5-cache/dev-ruby/pg-1.2.3 b/metadata/md5-cache/dev-ruby/pg-1.2.3 index 9ca6c42071e3..fa96687a1a34 100644 --- a/metadata/md5-cache/dev-ruby/pg-1.2.3 +++ b/metadata/md5-cache/dev-ruby/pg-1.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/pg-1.2.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b9f0aa102465aa0bd766cd77f06ec644 diff --git a/metadata/md5-cache/dev-ruby/pg_array_parser-0.0.9-r3 b/metadata/md5-cache/dev-ruby/pg_array_parser-0.0.9-r3 index 03c772d63107..f57bf333d9b3 100644 --- a/metadata/md5-cache/dev-ruby/pg_array_parser-0.0.9-r3 +++ b/metadata/md5-cache/dev-ruby/pg_array_parser-0.0.9-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0.0.9 SRC_URI=https://rubygems.org/gems/pg_array_parser-0.0.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b5f8d7e150b383a367ad1e87869810cb diff --git a/metadata/md5-cache/dev-ruby/pkg-config-1.4.1 b/metadata/md5-cache/dev-ruby/pkg-config-1.4.1 index d7c189fdde96..c9941bac5e34 100644 --- a/metadata/md5-cache/dev-ruby/pkg-config-1.4.1 +++ b/metadata/md5-cache/dev-ruby/pkg-config-1.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pkg-config-1.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e0d9da3d651b6bf4a60aebbc0d034e3c diff --git a/metadata/md5-cache/dev-ruby/pkg-config-1.4.2 b/metadata/md5-cache/dev-ruby/pkg-config-1.4.2 index ad084c470b2a..0ffc2e7c444c 100644 --- a/metadata/md5-cache/dev-ruby/pkg-config-1.4.2 +++ b/metadata/md5-cache/dev-ruby/pkg-config-1.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pkg-config-1.4.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fb634a7018b03dd48d886cb853b88fba diff --git a/metadata/md5-cache/dev-ruby/pkg-config-1.4.3 b/metadata/md5-cache/dev-ruby/pkg-config-1.4.3 index 44aab4c6478b..aa5fc5acf5ee 100644 --- a/metadata/md5-cache/dev-ruby/pkg-config-1.4.3 +++ b/metadata/md5-cache/dev-ruby/pkg-config-1.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pkg-config-1.4.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=56c94707896826f4945ee0c8fe45353b diff --git a/metadata/md5-cache/dev-ruby/pkg-config-1.4.4 b/metadata/md5-cache/dev-ruby/pkg-config-1.4.4 index c300276809b1..2b7313e402fe 100644 --- a/metadata/md5-cache/dev-ruby/pkg-config-1.4.4 +++ b/metadata/md5-cache/dev-ruby/pkg-config-1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pkg-config-1.4.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=596a96a4fc449ea49fc5a8ad6e029f65 diff --git a/metadata/md5-cache/dev-ruby/pkg-config-1.4.5 b/metadata/md5-cache/dev-ruby/pkg-config-1.4.5 index 4a1697381f82..d7bfd1446ba6 100644 --- a/metadata/md5-cache/dev-ruby/pkg-config-1.4.5 +++ b/metadata/md5-cache/dev-ruby/pkg-config-1.4.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pkg-config-1.4.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=596a96a4fc449ea49fc5a8ad6e029f65 diff --git a/metadata/md5-cache/dev-ruby/pkg-config-1.4.6 b/metadata/md5-cache/dev-ruby/pkg-config-1.4.6 index ac8868e978b5..ce2697857591 100644 --- a/metadata/md5-cache/dev-ruby/pkg-config-1.4.6 +++ b/metadata/md5-cache/dev-ruby/pkg-config-1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pkg-config-1.4.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=30423886b6c87d83bc93239a6dde327e diff --git a/metadata/md5-cache/dev-ruby/plist-3.5.0 b/metadata/md5-cache/dev-ruby/plist-3.5.0 index 327530bc36aa..2b2e202de43e 100644 --- a/metadata/md5-cache/dev-ruby/plist-3.5.0 +++ b/metadata/md5-cache/dev-ruby/plist-3.5.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/patsplat/plist/archive/v3.5.0.tar.gz -> plist-3.5.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=540b53a3521c8fd03d480750ec1e0cda diff --git a/metadata/md5-cache/dev-ruby/plist-3.6.0 b/metadata/md5-cache/dev-ruby/plist-3.6.0 index 31c16d9af9e5..e45a47e521ca 100644 --- a/metadata/md5-cache/dev-ruby/plist-3.6.0 +++ b/metadata/md5-cache/dev-ruby/plist-3.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/patsplat/plist/archive/v3.6.0.tar.gz -> plist-3.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5de5113e4a77d668f04b242b348c0d8e diff --git a/metadata/md5-cache/dev-ruby/pluggaloid-1.5.0 b/metadata/md5-cache/dev-ruby/pluggaloid-1.5.0 index 14d4bcd011e0..d7014b79f311 100644 --- a/metadata/md5-cache/dev-ruby/pluggaloid-1.5.0 +++ b/metadata/md5-cache/dev-ruby/pluggaloid-1.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pluggaloid-1.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=810ff5a9aa3e2ca75270afe7560f8954 diff --git a/metadata/md5-cache/dev-ruby/pluggaloid-1.7.0 b/metadata/md5-cache/dev-ruby/pluggaloid-1.7.0 index 87a6fed3d273..7dad222d92c2 100644 --- a/metadata/md5-cache/dev-ruby/pluggaloid-1.7.0 +++ b/metadata/md5-cache/dev-ruby/pluggaloid-1.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pluggaloid-1.7.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fb0580b299306d5b0e169028ae3fb56a diff --git a/metadata/md5-cache/dev-ruby/podcast-0.0.4-r3 b/metadata/md5-cache/dev-ruby/podcast-0.0.4-r3 index 8450cf9730a8..2d4f8e88da52 100644 --- a/metadata/md5-cache/dev-ruby/podcast-0.0.4-r3 +++ b/metadata/md5-cache/dev-ruby/podcast-0.0.4-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/podcast-0.0.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=af9e1ab5fb66fbaaadb3564eeb6db8a7 diff --git a/metadata/md5-cache/dev-ruby/polyglot-0.3.5-r1 b/metadata/md5-cache/dev-ruby/polyglot-0.3.5-r1 index 456ae3f3f930..2c9a0472cda6 100644 --- a/metadata/md5-cache/dev-ruby/polyglot-0.3.5-r1 +++ b/metadata/md5-cache/dev-ruby/polyglot-0.3.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/polyglot-0.3.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0c772e1b641e31636089a0538231ca61 diff --git a/metadata/md5-cache/dev-ruby/posix-spawn-0.3.15-r1 b/metadata/md5-cache/dev-ruby/posix-spawn-0.3.15-r1 index ebb29ff6b684..59e65a099712 100644 --- a/metadata/md5-cache/dev-ruby/posix-spawn-0.3.15-r1 +++ b/metadata/md5-cache/dev-ruby/posix-spawn-0.3.15-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/posix-spawn-0.3.15.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d4ca3d27486d8b50d965c8b10d70837c diff --git a/metadata/md5-cache/dev-ruby/power_assert-1.1.7 b/metadata/md5-cache/dev-ruby/power_assert-1.1.7 index 9c8d7cacdbd6..88140e0ccd8e 100644 --- a/metadata/md5-cache/dev-ruby/power_assert-1.1.7 +++ b/metadata/md5-cache/dev-ruby/power_assert-1.1.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/k-tsj/power_assert/archive/v1.1.7.tar.gz -> power_assert-1.1.7.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b01c7376d047a656c1f9f137fdf2b8c7 diff --git a/metadata/md5-cache/dev-ruby/power_assert-1.2.0 b/metadata/md5-cache/dev-ruby/power_assert-1.2.0 index 813d7f35a7d3..273cd9905e02 100644 --- a/metadata/md5-cache/dev-ruby/power_assert-1.2.0 +++ b/metadata/md5-cache/dev-ruby/power_assert-1.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/power_assert/archive/v1.2.0.tar.gz -> power_assert-1.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=307cba43edef1687661822595092456a diff --git a/metadata/md5-cache/dev-ruby/power_assert-2.0.0 b/metadata/md5-cache/dev-ruby/power_assert-2.0.0 index e28c7d9e7411..dc521225daa0 100644 --- a/metadata/md5-cache/dev-ruby/power_assert-2.0.0 +++ b/metadata/md5-cache/dev-ruby/power_assert-2.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/power_assert/archive/v2.0.0.tar.gz -> power_assert-2.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=202b4d3644cd1db5af8af0040e8b4c6f diff --git a/metadata/md5-cache/dev-ruby/power_assert-2.0.1 b/metadata/md5-cache/dev-ruby/power_assert-2.0.1 index dcd850061c1e..f3636bf4effa 100644 --- a/metadata/md5-cache/dev-ruby/power_assert-2.0.1 +++ b/metadata/md5-cache/dev-ruby/power_assert-2.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/power_assert/archive/v2.0.1.tar.gz -> power_assert-2.0.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=23b08acfc7269484bf48e711c5d9df0e diff --git a/metadata/md5-cache/dev-ruby/prawn-2.4.0 b/metadata/md5-cache/dev-ruby/prawn-2.4.0 index 5e86087dfe27..c453045d7fe0 100644 --- a/metadata/md5-cache/dev-ruby/prawn-2.4.0 +++ b/metadata/md5-cache/dev-ruby/prawn-2.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/prawnpdf/prawn/archive/2.4.0.tar.gz -> prawn-2.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1ff5868f9682bbf2776b9e767bcbf43d diff --git a/metadata/md5-cache/dev-ruby/prawn-table-0.2.2-r2 b/metadata/md5-cache/dev-ruby/prawn-table-0.2.2-r2 index a56c867dd962..b2f98f9425e3 100644 --- a/metadata/md5-cache/dev-ruby/prawn-table-0.2.2-r2 +++ b/metadata/md5-cache/dev-ruby/prawn-table-0.2.2-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/prawn-table-0.2.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=314f452c698e7b84fee33199908905bc diff --git a/metadata/md5-cache/dev-ruby/propshaft-0.6.1 b/metadata/md5-cache/dev-ruby/propshaft-0.6.1 index 8c22ef4a5738..0ea36e547c68 100644 --- a/metadata/md5-cache/dev-ruby/propshaft-0.6.1 +++ b/metadata/md5-cache/dev-ruby/propshaft-0.6.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rails/propshaft/archive/v0.6.1.tar.gz -> propshaft-0.6.1-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ccf16070c5ea39308831ffae3de373b9 diff --git a/metadata/md5-cache/dev-ruby/propshaft-0.6.4 b/metadata/md5-cache/dev-ruby/propshaft-0.6.4 index 30cc34d794c4..677afeb7e873 100644 --- a/metadata/md5-cache/dev-ruby/propshaft-0.6.4 +++ b/metadata/md5-cache/dev-ruby/propshaft-0.6.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rails/propshaft/archive/v0.6.4.tar.gz -> propshaft-0.6.4-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=41001285a092b743f992b956a2491747 diff --git a/metadata/md5-cache/dev-ruby/pry-0.13.1 b/metadata/md5-cache/dev-ruby/pry-0.13.1 index 0fa277173750..b05c5cff7d1a 100644 --- a/metadata/md5-cache/dev-ruby/pry-0.13.1 +++ b/metadata/md5-cache/dev-ruby/pry-0.13.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=ruby19 SRC_URI=https://github.com/pry/pry/archive/v0.13.1.tar.gz -> pry-0.13.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8242c00fad9d949991d23da3a7a7b735 diff --git a/metadata/md5-cache/dev-ruby/pry-0.14.0 b/metadata/md5-cache/dev-ruby/pry-0.14.0 index 5c078902382f..340e8729a89d 100644 --- a/metadata/md5-cache/dev-ruby/pry-0.14.0 +++ b/metadata/md5-cache/dev-ruby/pry-0.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=ruby19 SRC_URI=https://github.com/pry/pry/archive/v0.14.0.tar.gz -> pry-0.14.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d7b60def875cc7e201efc562d8050c86 diff --git a/metadata/md5-cache/dev-ruby/pry-0.14.1 b/metadata/md5-cache/dev-ruby/pry-0.14.1 index 4a47c6d315f6..e7024301ae4d 100644 --- a/metadata/md5-cache/dev-ruby/pry-0.14.1 +++ b/metadata/md5-cache/dev-ruby/pry-0.14.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=ruby19 SRC_URI=https://github.com/pry/pry/archive/v0.14.1.tar.gz -> pry-0.14.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=08ee07c7e0a19c9939de70b193e0edb5 diff --git a/metadata/md5-cache/dev-ruby/psych-4.0.3 b/metadata/md5-cache/dev-ruby/psych-4.0.3 index 6b96ea0386bd..9ee307dacf8f 100644 --- a/metadata/md5-cache/dev-ruby/psych-4.0.3 +++ b/metadata/md5-cache/dev-ruby/psych-4.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/psych-4.0.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1a50fa39f5bc184d183996c491d730cc diff --git a/metadata/md5-cache/dev-ruby/public_suffix-3.1.1 b/metadata/md5-cache/dev-ruby/public_suffix-3.1.1 index ad6678807c60..ce3c5515fc12 100644 --- a/metadata/md5-cache/dev-ruby/public_suffix-3.1.1 +++ b/metadata/md5-cache/dev-ruby/public_suffix-3.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/public_suffix-3.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c0255de1017037823ce09499ef81da56 diff --git a/metadata/md5-cache/dev-ruby/public_suffix-4.0.6 b/metadata/md5-cache/dev-ruby/public_suffix-4.0.6 index 1d2aedad40ab..ea9f244c1ca0 100644 --- a/metadata/md5-cache/dev-ruby/public_suffix-4.0.6 +++ b/metadata/md5-cache/dev-ruby/public_suffix-4.0.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/public_suffix-4.0.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e6a25df683e7cea574d0f70bd043889c diff --git a/metadata/md5-cache/dev-ruby/public_suffix-4.0.7 b/metadata/md5-cache/dev-ruby/public_suffix-4.0.7 index 84df7dc84e27..3cfb15afa6de 100644 --- a/metadata/md5-cache/dev-ruby/public_suffix-4.0.7 +++ b/metadata/md5-cache/dev-ruby/public_suffix-4.0.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/public_suffix-4.0.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3fe8ddca98a764e9edd8fe707b9818ef diff --git a/metadata/md5-cache/dev-ruby/pundit-2.1.0 b/metadata/md5-cache/dev-ruby/pundit-2.1.0 index bf335cdccd56..7cd5c7828bfc 100644 --- a/metadata/md5-cache/dev-ruby/pundit-2.1.0 +++ b/metadata/md5-cache/dev-ruby/pundit-2.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/pundit-2.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=71e8c7845ce69c470e19d143ab85f037 diff --git a/metadata/md5-cache/dev-ruby/pundit-2.1.1 b/metadata/md5-cache/dev-ruby/pundit-2.1.1 index 994ee276e0f7..e29c8f286df5 100644 --- a/metadata/md5-cache/dev-ruby/pundit-2.1.1 +++ b/metadata/md5-cache/dev-ruby/pundit-2.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/pundit-2.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7cce9495ac2aa6fb1c324e43f3a8669a diff --git a/metadata/md5-cache/dev-ruby/pundit-2.2.0 b/metadata/md5-cache/dev-ruby/pundit-2.2.0 index 906a06ab7786..8bfb246197d5 100644 --- a/metadata/md5-cache/dev-ruby/pundit-2.2.0 +++ b/metadata/md5-cache/dev-ruby/pundit-2.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/pundit-2.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a7c19bf4f8a0633b00066863b1b493f7 diff --git a/metadata/md5-cache/dev-ruby/puppet_forge-2.3.4 b/metadata/md5-cache/dev-ruby/puppet_forge-2.3.4 index 4f32ae411b2a..d93005b59ba4 100644 --- a/metadata/md5-cache/dev-ruby/puppet_forge-2.3.4 +++ b/metadata/md5-cache/dev-ruby/puppet_forge-2.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/puppet_forge-2.3.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6561d89db28219445d210f486f5f2f52 diff --git a/metadata/md5-cache/dev-ruby/pusher-client-0.6.2-r1 b/metadata/md5-cache/dev-ruby/pusher-client-0.6.2-r1 index 87f0d8ca93fc..16ede3ba7ec3 100644 --- a/metadata/md5-cache/dev-ruby/pusher-client-0.6.2-r1 +++ b/metadata/md5-cache/dev-ruby/pusher-client-0.6.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pusher-client-0.6.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=76b5e738b805c7c340ef299f364e8537 diff --git a/metadata/md5-cache/dev-ruby/qed-2.9.2-r1 b/metadata/md5-cache/dev-ruby/qed-2.9.2-r1 index a6254e4a2f7c..7a523b11d6b7 100644 --- a/metadata/md5-cache/dev-ruby/qed-2.9.2-r1 +++ b/metadata/md5-cache/dev-ruby/qed-2.9.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/qed-2.9.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=25cfd84ac9f71b4a74847ae9689932d1 diff --git a/metadata/md5-cache/dev-ruby/racc-1.4.16-r1 b/metadata/md5-cache/dev-ruby/racc-1.4.16-r1 index d7f9421f1791..e18e8114b36e 100644 --- a/metadata/md5-cache/dev-ruby/racc-1.4.16-r1 +++ b/metadata/md5-cache/dev-ruby/racc-1.4.16-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/tenderlove/racc/archive/v1.4.16.tar.gz -> racc-1.4.16.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=14be7494d9823bf822fd579325929e03 diff --git a/metadata/md5-cache/dev-ruby/racc-1.5.2 b/metadata/md5-cache/dev-ruby/racc-1.5.2 index 75bd2f676fa9..475cdfde815c 100644 --- a/metadata/md5-cache/dev-ruby/racc-1.5.2 +++ b/metadata/md5-cache/dev-ruby/racc-1.5.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/tenderlove/racc/archive/v1.5.2.tar.gz -> racc-1.5.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fdea1ac0499fdeec74f75f5035c2e639 diff --git a/metadata/md5-cache/dev-ruby/racc-1.5.2-r1 b/metadata/md5-cache/dev-ruby/racc-1.5.2-r1 index 09df0be8d2d6..0844fc4d8faf 100644 --- a/metadata/md5-cache/dev-ruby/racc-1.5.2-r1 +++ b/metadata/md5-cache/dev-ruby/racc-1.5.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/tenderlove/racc/archive/v1.5.2.tar.gz -> racc-1.5.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=363789ebaffbba84012876325523b01a diff --git a/metadata/md5-cache/dev-ruby/racc-1.5.2-r2 b/metadata/md5-cache/dev-ruby/racc-1.5.2-r2 index 0091d6c76427..df0d562c4c11 100644 --- a/metadata/md5-cache/dev-ruby/racc-1.5.2-r2 +++ b/metadata/md5-cache/dev-ruby/racc-1.5.2-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/tenderlove/racc/archive/v1.5.2.tar.gz -> racc-1.5.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=35b6b650c99caf9e62dad799ea21d220 diff --git a/metadata/md5-cache/dev-ruby/rack-2.2.3 b/metadata/md5-cache/dev-ruby/rack-2.2.3 index fa18dbc07882..45fb46c43596 100644 --- a/metadata/md5-cache/dev-ruby/rack-2.2.3 +++ b/metadata/md5-cache/dev-ruby/rack-2.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2.2 SRC_URI=https://github.com/rack/rack/archive/2.2.3.tar.gz -> rack-2.2.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d022dcca369658cf084e8e856f956879 diff --git a/metadata/md5-cache/dev-ruby/rack-attack-6.5.0 b/metadata/md5-cache/dev-ruby/rack-attack-6.5.0 index 008ba443956b..211bfa5a9ba3 100644 --- a/metadata/md5-cache/dev-ruby/rack-attack-6.5.0 +++ b/metadata/md5-cache/dev-ruby/rack-attack-6.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/rack-attack-6.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f3288639980cca4aa562899451b9c404 diff --git a/metadata/md5-cache/dev-ruby/rack-attack-6.6.0 b/metadata/md5-cache/dev-ruby/rack-attack-6.6.0 index 6d3f570c67b3..c782a7aef8fc 100644 --- a/metadata/md5-cache/dev-ruby/rack-attack-6.6.0 +++ b/metadata/md5-cache/dev-ruby/rack-attack-6.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/rack-attack-6.6.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8c46c189f581fb09c4ca11b9b357397f diff --git a/metadata/md5-cache/dev-ruby/rack-attack-6.6.1 b/metadata/md5-cache/dev-ruby/rack-attack-6.6.1 index 8553b7a9a272..da8bc9bc424b 100644 --- a/metadata/md5-cache/dev-ruby/rack-attack-6.6.1 +++ b/metadata/md5-cache/dev-ruby/rack-attack-6.6.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/rack-attack-6.6.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ae746cd1ee96cf3f545f5aaf8a492770 diff --git a/metadata/md5-cache/dev-ruby/rack-cache-1.12.1 b/metadata/md5-cache/dev-ruby/rack-cache-1.12.1 index 450258072e92..f54063fcefff 100644 --- a/metadata/md5-cache/dev-ruby/rack-cache-1.12.1 +++ b/metadata/md5-cache/dev-ruby/rack-cache-1.12.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.2 SRC_URI=https://github.com/rtomayko/rack-cache/archive/v1.12.1.tar.gz -> rack-cache-1.12.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7387153f3776c13a697b5b47f7f0474e diff --git a/metadata/md5-cache/dev-ruby/rack-cache-1.13.0 b/metadata/md5-cache/dev-ruby/rack-cache-1.13.0 index 20b42b694c32..e0bc57169472 100644 --- a/metadata/md5-cache/dev-ruby/rack-cache-1.13.0 +++ b/metadata/md5-cache/dev-ruby/rack-cache-1.13.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.2 SRC_URI=https://github.com/rtomayko/rack-cache/archive/v1.13.0.tar.gz -> rack-cache-1.13.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7ca01682309d337073803ac31d0fe736 diff --git a/metadata/md5-cache/dev-ruby/rack-openid-1.4.2-r1 b/metadata/md5-cache/dev-ruby/rack-openid-1.4.2-r1 index db5da0ffb93a..0f1fa4d15da2 100644 --- a/metadata/md5-cache/dev-ruby/rack-openid-1.4.2-r1 +++ b/metadata/md5-cache/dev-ruby/rack-openid-1.4.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/grosser/rack-openid/archive/v1.4.2.tar.gz -> rack-openid-1.4.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9779bdb1011cf774e6179b3a3d73be4a diff --git a/metadata/md5-cache/dev-ruby/rack-protection-2.1.0 b/metadata/md5-cache/dev-ruby/rack-protection-2.1.0 index ec48c35bc653..ceb783d8e18a 100644 --- a/metadata/md5-cache/dev-ruby/rack-protection-2.1.0 +++ b/metadata/md5-cache/dev-ruby/rack-protection-2.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rack-protection-2.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f0f303eea10614ab6f331da77452d51b diff --git a/metadata/md5-cache/dev-ruby/rack-protection-2.2.0 b/metadata/md5-cache/dev-ruby/rack-protection-2.2.0 index caeef8ec24d5..5c7af6a7ddd2 100644 --- a/metadata/md5-cache/dev-ruby/rack-protection-2.2.0 +++ b/metadata/md5-cache/dev-ruby/rack-protection-2.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rack-protection-2.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=74d7f2bd4d8aa391ea44f420e79c712b diff --git a/metadata/md5-cache/dev-ruby/rack-test-1.1.0 b/metadata/md5-cache/dev-ruby/rack-test-1.1.0 index 3234ed9178c9..79af745206e7 100644 --- a/metadata/md5-cache/dev-ruby/rack-test-1.1.0 +++ b/metadata/md5-cache/dev-ruby/rack-test-1.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://github.com/rack-test/rack-test/archive/v1.1.0.tar.gz -> rack-test-1.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d8d855c9f881c0faf65be552d8e314bb diff --git a/metadata/md5-cache/dev-ruby/rack-test-1.1.0-r1 b/metadata/md5-cache/dev-ruby/rack-test-1.1.0-r1 index 81299bcdf7f7..3bdd16364da8 100644 --- a/metadata/md5-cache/dev-ruby/rack-test-1.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/rack-test-1.1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://github.com/rack-test/rack-test/archive/v1.1.0.tar.gz -> rack-test-1.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c70804523aa846dd51959a1846571012 diff --git a/metadata/md5-cache/dev-ruby/radius-0.7.5 b/metadata/md5-cache/dev-ruby/radius-0.7.5 index 8e5304a7c1f5..0943f499b32d 100644 --- a/metadata/md5-cache/dev-ruby/radius-0.7.5 +++ b/metadata/md5-cache/dev-ruby/radius-0.7.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/radius-0.7.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b98375ff88d47a7df9723b75818184e4 diff --git a/metadata/md5-cache/dev-ruby/radius-0.7.5-r1 b/metadata/md5-cache/dev-ruby/radius-0.7.5-r1 index 9898bd29ed9b..1b7a72bffa44 100644 --- a/metadata/md5-cache/dev-ruby/radius-0.7.5-r1 +++ b/metadata/md5-cache/dev-ruby/radius-0.7.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/radius-0.7.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=570746d066a13e4e177b29cf058b834b diff --git a/metadata/md5-cache/dev-ruby/rails-5.2.6 b/metadata/md5-cache/dev-ruby/rails-5.2.6 index 27c21d9cb4f2..bb7111a7a0a4 100644 --- a/metadata/md5-cache/dev-ruby/rails-5.2.6 +++ b/metadata/md5-cache/dev-ruby/rails-5.2.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://rubygems.org/gems/rails-5.2.6.gem -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=26507be0ed860ab012244a6277c60b8c diff --git a/metadata/md5-cache/dev-ruby/rails-5.2.6.2 b/metadata/md5-cache/dev-ruby/rails-5.2.6.2 index 6eaf8e51df95..2d1689c560b2 100644 --- a/metadata/md5-cache/dev-ruby/rails-5.2.6.2 +++ b/metadata/md5-cache/dev-ruby/rails-5.2.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://rubygems.org/gems/rails-5.2.6.2.gem -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b7206d08f9a5522b17d8a941ce1b41a4 diff --git a/metadata/md5-cache/dev-ruby/rails-5.2.7 b/metadata/md5-cache/dev-ruby/rails-5.2.7 index b174c0e4fec3..e5e12f023e07 100644 --- a/metadata/md5-cache/dev-ruby/rails-5.2.7 +++ b/metadata/md5-cache/dev-ruby/rails-5.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://rubygems.org/gems/rails-5.2.7.gem -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b7206d08f9a5522b17d8a941ce1b41a4 diff --git a/metadata/md5-cache/dev-ruby/rails-6.0.4.1 b/metadata/md5-cache/dev-ruby/rails-6.0.4.1 index 7066ce7aa5f2..bc4695bc0778 100644 --- a/metadata/md5-cache/dev-ruby/rails-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/rails-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://rubygems.org/gems/rails-6.0.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=95937fe4dc37cea372215d03a326b8e7 diff --git a/metadata/md5-cache/dev-ruby/rails-6.0.4.3 b/metadata/md5-cache/dev-ruby/rails-6.0.4.3 index 26aa3c7c5bb2..82a976d41b33 100644 --- a/metadata/md5-cache/dev-ruby/rails-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/rails-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://rubygems.org/gems/rails-6.0.4.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b4406b7cb94c9820deaefd0a955b4926 diff --git a/metadata/md5-cache/dev-ruby/rails-6.0.4.4 b/metadata/md5-cache/dev-ruby/rails-6.0.4.4 index d656f9505e2c..acdc9d1f7295 100644 --- a/metadata/md5-cache/dev-ruby/rails-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/rails-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://rubygems.org/gems/rails-6.0.4.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b4406b7cb94c9820deaefd0a955b4926 diff --git a/metadata/md5-cache/dev-ruby/rails-6.0.4.6 b/metadata/md5-cache/dev-ruby/rails-6.0.4.6 index 087c1db6cc0b..d525530ca4ec 100644 --- a/metadata/md5-cache/dev-ruby/rails-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/rails-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://rubygems.org/gems/rails-6.0.4.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=59231c0a48c52d6dd4add66b5eb9af54 diff --git a/metadata/md5-cache/dev-ruby/rails-6.0.4.7 b/metadata/md5-cache/dev-ruby/rails-6.0.4.7 index f4713d74411d..df64ec6c70f4 100644 --- a/metadata/md5-cache/dev-ruby/rails-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/rails-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://rubygems.org/gems/rails-6.0.4.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=59231c0a48c52d6dd4add66b5eb9af54 diff --git a/metadata/md5-cache/dev-ruby/rails-6.1.4.4 b/metadata/md5-cache/dev-ruby/rails-6.1.4.4 index ade055381a6e..2be4e2f91685 100644 --- a/metadata/md5-cache/dev-ruby/rails-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/rails-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://rubygems.org/gems/rails-6.1.4.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ba367d4ce32c53ed75dfb9cd10d889d2 diff --git a/metadata/md5-cache/dev-ruby/rails-6.1.4.6 b/metadata/md5-cache/dev-ruby/rails-6.1.4.6 index 095a04c0179a..5fde7cac4edf 100644 --- a/metadata/md5-cache/dev-ruby/rails-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/rails-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://rubygems.org/gems/rails-6.1.4.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5902852f39c12e03ef304e53332b240c diff --git a/metadata/md5-cache/dev-ruby/rails-6.1.5 b/metadata/md5-cache/dev-ruby/rails-6.1.5 index c78c49810342..2cd608d5e0d9 100644 --- a/metadata/md5-cache/dev-ruby/rails-6.1.5 +++ b/metadata/md5-cache/dev-ruby/rails-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://rubygems.org/gems/rails-6.1.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5902852f39c12e03ef304e53332b240c diff --git a/metadata/md5-cache/dev-ruby/rails-7.0.2.2 b/metadata/md5-cache/dev-ruby/rails-7.0.2.2 index 2c79d06e9fa4..ffa5486ff50f 100644 --- a/metadata/md5-cache/dev-ruby/rails-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/rails-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://rubygems.org/gems/rails-7.0.2.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=97b4fd4728f9dc59bac87b519f987e05 diff --git a/metadata/md5-cache/dev-ruby/rails-7.0.2.3 b/metadata/md5-cache/dev-ruby/rails-7.0.2.3 index 936588f54861..038aa590ae6c 100644 --- a/metadata/md5-cache/dev-ruby/rails-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/rails-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://rubygems.org/gems/rails-7.0.2.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fd76ced42db48daaa65c3b242f784729 diff --git a/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3-r1 b/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3-r1 index b9ef75b159e4..105d62bee659 100644 --- a/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3-r1 +++ b/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rails-dom-testing-2.0.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c1653992ed8dd6a0ca1f1561afb9d10a diff --git a/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3-r2 b/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3-r2 index f5ca1825df3f..e3d6543401a2 100644 --- a/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3-r2 +++ b/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rails-dom-testing-2.0.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=25b348964656835e162a0e10e05c3850 diff --git a/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.3.0-r1 b/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.3.0-r1 index 373eb97b6c6f..33061438b592 100644 --- a/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.3.0-r1 +++ b/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.3.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rails-html-sanitizer-1.3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4ac02ad66afde058e6fb617d815e93db diff --git a/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.4.1 b/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.4.1 index c84e2fc2d3e5..b721165f2813 100644 --- a/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.4.1 +++ b/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rails-html-sanitizer-1.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ca4c76cbb73d41b1905d8944235b6d66 diff --git a/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.4.2 b/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.4.2 index 12222748800a..fce72597fd8d 100644 --- a/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.4.2 +++ b/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rails-html-sanitizer-1.4.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=397206886921a2fbfebd47a4a8a7014a diff --git a/metadata/md5-cache/dev-ruby/railties-5.2.6 b/metadata/md5-cache/dev-ruby/railties-5.2.6 index 962dad55a559..00b2cc888715 100644 --- a/metadata/md5-cache/dev-ruby/railties-5.2.6 +++ b/metadata/md5-cache/dev-ruby/railties-5.2.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.tar.gz -> rails-5.2.6.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=991ceb81e76cfda862f6795c6bf6a582 diff --git a/metadata/md5-cache/dev-ruby/railties-5.2.6.2 b/metadata/md5-cache/dev-ruby/railties-5.2.6.2 index 02d9dcfce03e..5d48a7856204 100644 --- a/metadata/md5-cache/dev-ruby/railties-5.2.6.2 +++ b/metadata/md5-cache/dev-ruby/railties-5.2.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.6.2.tar.gz -> rails-5.2.6.2.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0806ef91bd2948180f456ad1d2c70f1f diff --git a/metadata/md5-cache/dev-ruby/railties-5.2.7 b/metadata/md5-cache/dev-ruby/railties-5.2.7 index 57eff37de45a..603a250298a7 100644 --- a/metadata/md5-cache/dev-ruby/railties-5.2.7 +++ b/metadata/md5-cache/dev-ruby/railties-5.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.7.tar.gz -> rails-5.2.7.tgz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0806ef91bd2948180f456ad1d2c70f1f diff --git a/metadata/md5-cache/dev-ruby/railties-6.0.4.1 b/metadata/md5-cache/dev-ruby/railties-6.0.4.1 index df288c50b2b4..0dc338bdf544 100644 --- a/metadata/md5-cache/dev-ruby/railties-6.0.4.1 +++ b/metadata/md5-cache/dev-ruby/railties-6.0.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.1.tar.gz -> rails-6.0.4.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2132a9b0b9431ee11a145094d6566275 diff --git a/metadata/md5-cache/dev-ruby/railties-6.0.4.3 b/metadata/md5-cache/dev-ruby/railties-6.0.4.3 index 8c25c1db2476..bafcc647cea5 100644 --- a/metadata/md5-cache/dev-ruby/railties-6.0.4.3 +++ b/metadata/md5-cache/dev-ruby/railties-6.0.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.3.tar.gz -> rails-6.0.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9c878c0d8e2b49831d1c6f1920467502 diff --git a/metadata/md5-cache/dev-ruby/railties-6.0.4.4 b/metadata/md5-cache/dev-ruby/railties-6.0.4.4 index d242e1770948..b810afead821 100644 --- a/metadata/md5-cache/dev-ruby/railties-6.0.4.4 +++ b/metadata/md5-cache/dev-ruby/railties-6.0.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.4.tar.gz -> rails-6.0.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=365c420ae3bb42ed1279e79baeefddd4 diff --git a/metadata/md5-cache/dev-ruby/railties-6.0.4.6 b/metadata/md5-cache/dev-ruby/railties-6.0.4.6 index 12b64b9c55c1..293a1ff93531 100644 --- a/metadata/md5-cache/dev-ruby/railties-6.0.4.6 +++ b/metadata/md5-cache/dev-ruby/railties-6.0.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.6.tar.gz -> rails-6.0.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc80cb2e3baa5708e24ef7d891818002 diff --git a/metadata/md5-cache/dev-ruby/railties-6.0.4.7 b/metadata/md5-cache/dev-ruby/railties-6.0.4.7 index 07cb879568eb..9e0151dd24dd 100644 --- a/metadata/md5-cache/dev-ruby/railties-6.0.4.7 +++ b/metadata/md5-cache/dev-ruby/railties-6.0.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.4.7.tar.gz -> rails-6.0.4.7.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc80cb2e3baa5708e24ef7d891818002 diff --git a/metadata/md5-cache/dev-ruby/railties-6.1.4.4 b/metadata/md5-cache/dev-ruby/railties-6.1.4.4 index f216102a5e0e..5f2cc50e641c 100644 --- a/metadata/md5-cache/dev-ruby/railties-6.1.4.4 +++ b/metadata/md5-cache/dev-ruby/railties-6.1.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.4.tar.gz -> rails-6.1.4.4.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3890350489349ae581121541a6d8e998 diff --git a/metadata/md5-cache/dev-ruby/railties-6.1.4.6 b/metadata/md5-cache/dev-ruby/railties-6.1.4.6 index 366eba2d4e00..e0aed05c1e81 100644 --- a/metadata/md5-cache/dev-ruby/railties-6.1.4.6 +++ b/metadata/md5-cache/dev-ruby/railties-6.1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.4.6.tar.gz -> rails-6.1.4.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=82142ed1c98c8dab8e9dd1b48f547f1a diff --git a/metadata/md5-cache/dev-ruby/railties-6.1.5 b/metadata/md5-cache/dev-ruby/railties-6.1.5 index 3aa22a827a02..159492bb3eef 100644 --- a/metadata/md5-cache/dev-ruby/railties-6.1.5 +++ b/metadata/md5-cache/dev-ruby/railties-6.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.1 SRC_URI=https://github.com/rails/rails/archive/v6.1.5.tar.gz -> rails-6.1.5.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=82142ed1c98c8dab8e9dd1b48f547f1a diff --git a/metadata/md5-cache/dev-ruby/railties-7.0.2.2 b/metadata/md5-cache/dev-ruby/railties-7.0.2.2 index d295a59d591b..495aec2ad438 100644 --- a/metadata/md5-cache/dev-ruby/railties-7.0.2.2 +++ b/metadata/md5-cache/dev-ruby/railties-7.0.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.2.tar.gz -> rails-7.0.2.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bbd80e4de3ed04a5308317fbd107fb5f diff --git a/metadata/md5-cache/dev-ruby/railties-7.0.2.3 b/metadata/md5-cache/dev-ruby/railties-7.0.2.3 index b52bfedeec18..c781bec7b1ae 100644 --- a/metadata/md5-cache/dev-ruby/railties-7.0.2.3 +++ b/metadata/md5-cache/dev-ruby/railties-7.0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=7.0 SRC_URI=https://github.com/rails/rails/archive/v7.0.2.3.tar.gz -> rails-7.0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=127e24521e3d4845bb8544c0f49ef8e8 diff --git a/metadata/md5-cache/dev-ruby/rainbow-3.0.0 b/metadata/md5-cache/dev-ruby/rainbow-3.0.0 index 2769b5f49827..24f1a2199baf 100644 --- a/metadata/md5-cache/dev-ruby/rainbow-3.0.0 +++ b/metadata/md5-cache/dev-ruby/rainbow-3.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/sickill/rainbow/archive/v3.0.0.tar.gz -> rainbow-git-3.0.0.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b2ed6ab41078bcb1cc281870c9d8fc7d diff --git a/metadata/md5-cache/dev-ruby/rainbow-3.1.1 b/metadata/md5-cache/dev-ruby/rainbow-3.1.1 index 3606b64a7f24..19792c6eee2d 100644 --- a/metadata/md5-cache/dev-ruby/rainbow-3.1.1 +++ b/metadata/md5-cache/dev-ruby/rainbow-3.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/sickill/rainbow/archive/v3.1.1.tar.gz -> rainbow-git-3.1.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b211376ebbbb70f9070ad1df1a6cebac diff --git a/metadata/md5-cache/dev-ruby/rake-13.0.3-r1 b/metadata/md5-cache/dev-ruby/rake-13.0.3-r1 index 9884d8ace8fe..dd1a2c869f08 100644 --- a/metadata/md5-cache/dev-ruby/rake-13.0.3-r1 +++ b/metadata/md5-cache/dev-ruby/rake-13.0.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rake/archive/v13.0.3.tar.gz -> rake-13.0.3.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c35578a5f46cdd37d953a0fc759f69a4 diff --git a/metadata/md5-cache/dev-ruby/rake-13.0.4 b/metadata/md5-cache/dev-ruby/rake-13.0.4 index a55805cba3ce..ec6e7d553e68 100644 --- a/metadata/md5-cache/dev-ruby/rake-13.0.4 +++ b/metadata/md5-cache/dev-ruby/rake-13.0.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rake/archive/v13.0.4.tar.gz -> rake-13.0.4.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f1f8dc5748b050b972f5456415f01792 diff --git a/metadata/md5-cache/dev-ruby/rake-13.0.6 b/metadata/md5-cache/dev-ruby/rake-13.0.6 index 6802fb935081..893b8fd074c6 100644 --- a/metadata/md5-cache/dev-ruby/rake-13.0.6 +++ b/metadata/md5-cache/dev-ruby/rake-13.0.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rake/archive/v13.0.6.tar.gz -> rake-13.0.6.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e5eaf48595aefb8600a6c6582211e3fa diff --git a/metadata/md5-cache/dev-ruby/rake-13.0.6-r1 b/metadata/md5-cache/dev-ruby/rake-13.0.6-r1 index d4e9e9095750..c507e93e6722 100644 --- a/metadata/md5-cache/dev-ruby/rake-13.0.6-r1 +++ b/metadata/md5-cache/dev-ruby/rake-13.0.6-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rake/archive/v13.0.6.tar.gz -> rake-13.0.6.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=19787bd2f8787b2ec594a38a894826e3 diff --git a/metadata/md5-cache/dev-ruby/rake-compiler-1.1.1 b/metadata/md5-cache/dev-ruby/rake-compiler-1.1.1 index f49950515a70..d0b2da92863c 100644 --- a/metadata/md5-cache/dev-ruby/rake-compiler-1.1.1 +++ b/metadata/md5-cache/dev-ruby/rake-compiler-1.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/luislavena/rake-compiler/archive/v1.1.1.tar.gz -> rake-compiler-1.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d7ccb16dc3a5618953172bd12ad3d122 diff --git a/metadata/md5-cache/dev-ruby/rake-compiler-1.1.3 b/metadata/md5-cache/dev-ruby/rake-compiler-1.1.3 index 8157a65d4aee..570ddc6fe0a4 100644 --- a/metadata/md5-cache/dev-ruby/rake-compiler-1.1.3 +++ b/metadata/md5-cache/dev-ruby/rake-compiler-1.1.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/luislavena/rake-compiler/archive/v1.1.3.tar.gz -> rake-compiler-1.1.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=31851b496f8eb76cda1254bc52782e40 diff --git a/metadata/md5-cache/dev-ruby/rake-compiler-1.1.9 b/metadata/md5-cache/dev-ruby/rake-compiler-1.1.9 index 8381238f7731..fbbf9862091b 100644 --- a/metadata/md5-cache/dev-ruby/rake-compiler-1.1.9 +++ b/metadata/md5-cache/dev-ruby/rake-compiler-1.1.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/luislavena/rake-compiler/archive/v1.1.9.tar.gz -> rake-compiler-1.1.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=14f3e9e1f6afc534f59e79f83d38eed2 diff --git a/metadata/md5-cache/dev-ruby/rake-remote_task-2.4.4 b/metadata/md5-cache/dev-ruby/rake-remote_task-2.4.4 index c138af856c61..57f890e57995 100644 --- a/metadata/md5-cache/dev-ruby/rake-remote_task-2.4.4 +++ b/metadata/md5-cache/dev-ruby/rake-remote_task-2.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rake-remote_task-2.4.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=be6a111f58bac513159dbcbefa1e1680 diff --git a/metadata/md5-cache/dev-ruby/rantly-2.0.0 b/metadata/md5-cache/dev-ruby/rantly-2.0.0 index c1c29cee2b9d..f6c3f1627de8 100644 --- a/metadata/md5-cache/dev-ruby/rantly-2.0.0 +++ b/metadata/md5-cache/dev-ruby/rantly-2.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rantly-2.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ea9302531945f56d0ad9961f2629e6d2 diff --git a/metadata/md5-cache/dev-ruby/rash_alt-0.4.12 b/metadata/md5-cache/dev-ruby/rash_alt-0.4.12 index 1cfd2c42dc72..a9ca1165f162 100644 --- a/metadata/md5-cache/dev-ruby/rash_alt-0.4.12 +++ b/metadata/md5-cache/dev-ruby/rash_alt-0.4.12 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rash_alt-0.4.12.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dfda74d6e76eca04235ca883a926d5e0 diff --git a/metadata/md5-cache/dev-ruby/rash_alt-0.4.9 b/metadata/md5-cache/dev-ruby/rash_alt-0.4.9 index b55e710a79e7..3de1de94afa8 100644 --- a/metadata/md5-cache/dev-ruby/rash_alt-0.4.9 +++ b/metadata/md5-cache/dev-ruby/rash_alt-0.4.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rash_alt-0.4.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9a88c69025438a92458ee35fa06aeea2 diff --git a/metadata/md5-cache/dev-ruby/rb-gsl-2.1.0.2-r1 b/metadata/md5-cache/dev-ruby/rb-gsl-2.1.0.2-r1 index 8b6414e7453b..074eaa0aa458 100644 --- a/metadata/md5-cache/dev-ruby/rb-gsl-2.1.0.2-r1 +++ b/metadata/md5-cache/dev-ruby/rb-gsl-2.1.0.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/gsl-2.1.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a683a6196d47d1a410a9d2617dfe0943 diff --git a/metadata/md5-cache/dev-ruby/rb-inotify-0.10.1 b/metadata/md5-cache/dev-ruby/rb-inotify-0.10.1 index e5cf163ae20e..401a4ba00b05 100644 --- a/metadata/md5-cache/dev-ruby/rb-inotify-0.10.1 +++ b/metadata/md5-cache/dev-ruby/rb-inotify-0.10.1 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( dev-ruby/ffi[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/ffi[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/ffi[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/concurrent-ruby[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/concurrent-ruby[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/concurrent-ruby[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( dev-ruby/ffi[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/ffi[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/ffi[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/ffi[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/concurrent-ruby[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/concurrent-ruby[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/concurrent-ruby[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/concurrent-ruby[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=A thorough inotify wrapper for Ruby using FFI EAPI=7 HOMEPAGE=https://github.com/nex3/rb-inotify -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-ruby/ffi[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/ffi[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/ffi[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-ruby/ffi[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/ffi[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/ffi[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/ffi[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rb-inotify-0.10.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=324a2206538ca37c77b449d240ba1358 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=cb2db610704d4e1e1ba9a6daa939e039 diff --git a/metadata/md5-cache/dev-ruby/rb-readline-0.5.5 b/metadata/md5-cache/dev-ruby/rb-readline-0.5.5 index 3d01dec66d09..15f7cf8ba86e 100644 --- a/metadata/md5-cache/dev-ruby/rb-readline-0.5.5 +++ b/metadata/md5-cache/dev-ruby/rb-readline-0.5.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rb-readline-0.5.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5482a3e5eb76907bb0eb1a1509715c50 diff --git a/metadata/md5-cache/dev-ruby/rbnacl-7.1.1 b/metadata/md5-cache/dev-ruby/rbnacl-7.1.1 index 1a6af2f03476..77f3ae37cbc5 100644 --- a/metadata/md5-cache/dev-ruby/rbnacl-7.1.1 +++ b/metadata/md5-cache/dev-ruby/rbnacl-7.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/rbnacl-7.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d7609a0196e0caeadd1422944389ab09 diff --git a/metadata/md5-cache/dev-ruby/rbpdf-1.20.1-r2 b/metadata/md5-cache/dev-ruby/rbpdf-1.20.1-r2 index 438661ef5fe6..b49edcbe12e1 100644 --- a/metadata/md5-cache/dev-ruby/rbpdf-1.20.1-r2 +++ b/metadata/md5-cache/dev-ruby/rbpdf-1.20.1-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/naitoh/rbpdf/archive/1.20.1.tar.gz -> rbpdf-1.20.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ecd4de46d6431e9908e2c2533d371c86 diff --git a/metadata/md5-cache/dev-ruby/rbpdf-font-1.19.1-r1 b/metadata/md5-cache/dev-ruby/rbpdf-font-1.19.1-r1 index beb237923f88..c6274bf033f1 100644 --- a/metadata/md5-cache/dev-ruby/rbpdf-font-1.19.1-r1 +++ b/metadata/md5-cache/dev-ruby/rbpdf-font-1.19.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rbpdf-font-1.19.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=101b918e177134a787610a09af68d633 diff --git a/metadata/md5-cache/dev-ruby/rbs-1.2.1 b/metadata/md5-cache/dev-ruby/rbs-1.2.1 index 02cc52f4ec31..ed9ee30d928b 100644 --- a/metadata/md5-cache/dev-ruby/rbs-1.2.1 +++ b/metadata/md5-cache/dev-ruby/rbs-1.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rbs/archive/v1.2.1.tar.gz -> rbs-1.2.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1ffb5b5f9b25e5603860afe1fcad16e1 diff --git a/metadata/md5-cache/dev-ruby/rbs-1.3.3 b/metadata/md5-cache/dev-ruby/rbs-1.3.3 index 16ae577ab1fc..964de309f3ea 100644 --- a/metadata/md5-cache/dev-ruby/rbs-1.3.3 +++ b/metadata/md5-cache/dev-ruby/rbs-1.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rbs/archive/v1.3.3.tar.gz -> rbs-1.3.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=447353b7f556bf98bd415bc3c350549a diff --git a/metadata/md5-cache/dev-ruby/rbs-1.5.1 b/metadata/md5-cache/dev-ruby/rbs-1.5.1 index 87fbc459a77b..51351e7ede3e 100644 --- a/metadata/md5-cache/dev-ruby/rbs-1.5.1 +++ b/metadata/md5-cache/dev-ruby/rbs-1.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rbs/archive/v1.5.1.tar.gz -> rbs-1.5.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=447353b7f556bf98bd415bc3c350549a diff --git a/metadata/md5-cache/dev-ruby/rbs-2.2.2 b/metadata/md5-cache/dev-ruby/rbs-2.2.2 index 36e1ca4d580b..f568c94b682d 100644 --- a/metadata/md5-cache/dev-ruby/rbs-2.2.2 +++ b/metadata/md5-cache/dev-ruby/rbs-2.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rbs/archive/v2.2.2.tar.gz -> rbs-2.2.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=17003591e9bda4f47b0837ae09925166 diff --git a/metadata/md5-cache/dev-ruby/rbs-2.3.1 b/metadata/md5-cache/dev-ruby/rbs-2.3.1 index 4f6219770859..c49ec68cc702 100644 --- a/metadata/md5-cache/dev-ruby/rbs-2.3.1 +++ b/metadata/md5-cache/dev-ruby/rbs-2.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rbs/archive/v2.3.1.tar.gz -> rbs-2.3.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=17003591e9bda4f47b0837ae09925166 diff --git a/metadata/md5-cache/dev-ruby/rbst-0.6.5 b/metadata/md5-cache/dev-ruby/rbst-0.6.5 index 784d881534e6..14e7180c584d 100644 --- a/metadata/md5-cache/dev-ruby/rbst-0.6.5 +++ b/metadata/md5-cache/dev-ruby/rbst-0.6.5 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/alphabetum/rbst/archive/0.6.5.tar.gz -> rbst-0.6.5.tar.gz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f4f9716f2fbaf8d535cccdba11724312 diff --git a/metadata/md5-cache/dev-ruby/rbtree-0.4.5 b/metadata/md5-cache/dev-ruby/rbtree-0.4.5 index 074cfb42080d..f1836ed05cdc 100644 --- a/metadata/md5-cache/dev-ruby/rbtree-0.4.5 +++ b/metadata/md5-cache/dev-ruby/rbtree-0.4.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rbtree-0.4.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=089a648cc02e902df19f9c1c548cd344 diff --git a/metadata/md5-cache/dev-ruby/rcairo-1.16.6 b/metadata/md5-cache/dev-ruby/rcairo-1.16.6 index 85cb06152d27..fb6b5c574d91 100644 --- a/metadata/md5-cache/dev-ruby/rcairo-1.16.6 +++ b/metadata/md5-cache/dev-ruby/rcairo-1.16.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cairo-1.16.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=57f63b12d7cf1649cdc6c577d25886e5 diff --git a/metadata/md5-cache/dev-ruby/rcairo-1.17.5 b/metadata/md5-cache/dev-ruby/rcairo-1.17.5 index 05f8cb6841fd..c590efef5e91 100644 --- a/metadata/md5-cache/dev-ruby/rcairo-1.17.5 +++ b/metadata/md5-cache/dev-ruby/rcairo-1.17.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cairo-1.17.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=998797d11bfb720bc70db2dc2bbd4d50 diff --git a/metadata/md5-cache/dev-ruby/rchardet-1.8.0 b/metadata/md5-cache/dev-ruby/rchardet-1.8.0 index d9ec8c90707b..be4479e53356 100644 --- a/metadata/md5-cache/dev-ruby/rchardet-1.8.0 +++ b/metadata/md5-cache/dev-ruby/rchardet-1.8.0 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Character encoding auto-detection in Ruby EAPI=7 HOMEPAGE=https://github.com/jmhodges/rchardet -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=amd64 ~ppc ~ppc64 ~x86 LICENSE=LGPL-2.1 -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/jmhodges/rchardet/archive/v1.8.0.tar.gz -> rchardet-1.8.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=192fe5c5d70f1723ece6879ac73eda3d +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=64a8662c738034c0db5d70351785a9f0 diff --git a/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.2-r1 b/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.2-r1 index e1720c3596b5..bc03b35323d6 100644 --- a/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.2-r1 +++ b/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rdiscount-2.2.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=75fa15fe82b7b24a61c388d34bc15885 diff --git a/metadata/md5-cache/dev-ruby/rdoc-6.3.2 b/metadata/md5-cache/dev-ruby/rdoc-6.3.2 index 4915dfe17ab1..b61de3ae9878 100644 --- a/metadata/md5-cache/dev-ruby/rdoc-6.3.2 +++ b/metadata/md5-cache/dev-ruby/rdoc-6.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rdoc/archive/v6.3.2.tar.gz -> rdoc-6.3.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=55cbf6962b3fde35118acbe47a1c077e diff --git a/metadata/md5-cache/dev-ruby/rdoc-6.3.3 b/metadata/md5-cache/dev-ruby/rdoc-6.3.3 index 3445f7272322..614d61aba08b 100644 --- a/metadata/md5-cache/dev-ruby/rdoc-6.3.3 +++ b/metadata/md5-cache/dev-ruby/rdoc-6.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rdoc/archive/v6.3.3.tar.gz -> rdoc-6.3.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=196ce9c2ddbd8aafb1528f55086cba0c diff --git a/metadata/md5-cache/dev-ruby/rdoc-6.3.3-r1 b/metadata/md5-cache/dev-ruby/rdoc-6.3.3-r1 index 3dae26028b9e..125719a08045 100644 --- a/metadata/md5-cache/dev-ruby/rdoc-6.3.3-r1 +++ b/metadata/md5-cache/dev-ruby/rdoc-6.3.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rdoc/archive/v6.3.3.tar.gz -> rdoc-6.3.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=50ea462811f9b4395735a2d75b7337d4 diff --git a/metadata/md5-cache/dev-ruby/rdoc-6.4.0 b/metadata/md5-cache/dev-ruby/rdoc-6.4.0 index 42771a7243d4..a69a0195b269 100644 --- a/metadata/md5-cache/dev-ruby/rdoc-6.4.0 +++ b/metadata/md5-cache/dev-ruby/rdoc-6.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rdoc/archive/v6.4.0.tar.gz -> rdoc-6.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3b109b33405965474be82e4e456b42e1 diff --git a/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r3 b/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r3 index 5ba232de2c8e..12748bca42d4 100644 --- a/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r3 +++ b/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rdtool-0.6.38.gem -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7581003a3c05a1871eed818c836da86e diff --git a/metadata/md5-cache/dev-ruby/recog-2.3.19 b/metadata/md5-cache/dev-ruby/recog-2.3.19 index 1e156209a349..ec08cc2635c1 100644 --- a/metadata/md5-cache/dev-ruby/recog-2.3.19 +++ b/metadata/md5-cache/dev-ruby/recog-2.3.19 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/recog-2.3.19.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1e45531ecfcd95bb12884b9f11d74e2b diff --git a/metadata/md5-cache/dev-ruby/recog-2.3.20 b/metadata/md5-cache/dev-ruby/recog-2.3.20 index 27c44af626b8..4c586c72ae77 100644 --- a/metadata/md5-cache/dev-ruby/recog-2.3.20 +++ b/metadata/md5-cache/dev-ruby/recog-2.3.20 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/recog-2.3.20.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1e45531ecfcd95bb12884b9f11d74e2b diff --git a/metadata/md5-cache/dev-ruby/red-colors-0.2.0 b/metadata/md5-cache/dev-ruby/red-colors-0.2.0 index 29bfa07e2f8e..265f2f658b16 100644 --- a/metadata/md5-cache/dev-ruby/red-colors-0.2.0 +++ b/metadata/md5-cache/dev-ruby/red-colors-0.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/red-colors-0.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cf90d4b9ed1d21fa941e2fdc93528e00 diff --git a/metadata/md5-cache/dev-ruby/red-colors-0.3.0 b/metadata/md5-cache/dev-ruby/red-colors-0.3.0 index e6d8ddf31740..bd067aa29813 100644 --- a/metadata/md5-cache/dev-ruby/red-colors-0.3.0 +++ b/metadata/md5-cache/dev-ruby/red-colors-0.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/red-colors-0.3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3b52a6fdcf018d62a023ba207d278f90 diff --git a/metadata/md5-cache/dev-ruby/red-colors-0.3.0-r1 b/metadata/md5-cache/dev-ruby/red-colors-0.3.0-r1 index 596d46b3bd60..3d9db4159b47 100644 --- a/metadata/md5-cache/dev-ruby/red-colors-0.3.0-r1 +++ b/metadata/md5-cache/dev-ruby/red-colors-0.3.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/red-colors-0.3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4dcb1a33c2edca7a136ccb11bb23eb72 diff --git a/metadata/md5-cache/dev-ruby/redcarpet-3.5.1 b/metadata/md5-cache/dev-ruby/redcarpet-3.5.1 index aef8a4e1ba8a..7348a51e747b 100644 --- a/metadata/md5-cache/dev-ruby/redcarpet-3.5.1 +++ b/metadata/md5-cache/dev-ruby/redcarpet-3.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/vmg/redcarpet/archive/v3.5.1.tar.gz -> redcarpet-3.5.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=685ef91dc949d6f361e1fa12943d0218 diff --git a/metadata/md5-cache/dev-ruby/redcarpet-3.5.1-r1 b/metadata/md5-cache/dev-ruby/redcarpet-3.5.1-r1 index 0fc3e24747e6..a6f48f4fee18 100644 --- a/metadata/md5-cache/dev-ruby/redcarpet-3.5.1-r1 +++ b/metadata/md5-cache/dev-ruby/redcarpet-3.5.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/vmg/redcarpet/archive/v3.5.1.tar.gz -> redcarpet-3.5.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4bb5867955c485a329c5a40807c9b873 diff --git a/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 b/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 index 9af14b4bfcee..5e423d214b07 100644 --- a/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 +++ b/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jgarber/redcloth/archive/v4.3.2.tar.gz -> RedCloth-4.3.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=d1169572f0755e3702ca3ed987bbb5f4 diff --git a/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r4 b/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r4 index 98f5da35ee09..c8adc74b2fb5 100644 --- a/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r4 +++ b/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jgarber/redcloth/archive/v4.3.2.tar.gz -> RedCloth-4.3.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b98efe79c00a4f87f8e813007e72d4d2 diff --git a/metadata/md5-cache/dev-ruby/redis-4.1.4 b/metadata/md5-cache/dev-ruby/redis-4.1.4 index 2a3d4adce62a..f2639c1c9c97 100644 --- a/metadata/md5-cache/dev-ruby/redis-4.1.4 +++ b/metadata/md5-cache/dev-ruby/redis-4.1.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/redis/redis-rb/archive/v4.1.4.tar.gz -> redis-rb-4.1.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3e8d9f37c34a6d3f3164c6136e23ea28 diff --git a/metadata/md5-cache/dev-ruby/ref-2.0.0-r1 b/metadata/md5-cache/dev-ruby/ref-2.0.0-r1 index 4558915adc10..ebfb7de9bf7e 100644 --- a/metadata/md5-cache/dev-ruby/ref-2.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/ref-2.0.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/ruby-concurrency/ref/archive/v2.0.0.tar.gz -> ref-2.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=797e16ca5b8ed00eb0bd5cf0aae6f4b6 diff --git a/metadata/md5-cache/dev-ruby/regexp_parser-0.5.0 b/metadata/md5-cache/dev-ruby/regexp_parser-0.5.0 index 9f809bf58082..c488ee97de25 100644 --- a/metadata/md5-cache/dev-ruby/regexp_parser-0.5.0 +++ b/metadata/md5-cache/dev-ruby/regexp_parser-0.5.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ammar/regexp_parser/archive/v0.5.0.tar.gz -> regexp_parser-0.5.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dccc4b490a8d7c3e0b163154cf4cc62c diff --git a/metadata/md5-cache/dev-ruby/regexp_parser-1.8.2 b/metadata/md5-cache/dev-ruby/regexp_parser-1.8.2 index e8d85a76216f..08effdd739ca 100644 --- a/metadata/md5-cache/dev-ruby/regexp_parser-1.8.2 +++ b/metadata/md5-cache/dev-ruby/regexp_parser-1.8.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ammar/regexp_parser/archive/v1.8.2.tar.gz -> regexp_parser-1.8.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=342dc666070c5a23881919a35e543d58 diff --git a/metadata/md5-cache/dev-ruby/regexp_parser-2.1.1-r1 b/metadata/md5-cache/dev-ruby/regexp_parser-2.1.1-r1 index 72eaf6567caa..000a2e700b21 100644 --- a/metadata/md5-cache/dev-ruby/regexp_parser-2.1.1-r1 +++ b/metadata/md5-cache/dev-ruby/regexp_parser-2.1.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/ammar/regexp_parser/archive/v2.1.1.tar.gz -> regexp_parser-2.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d4d0f1873566fab98e7c9c70ecfbcd92 diff --git a/metadata/md5-cache/dev-ruby/regexp_parser-2.2.1 b/metadata/md5-cache/dev-ruby/regexp_parser-2.2.1 index 3f278e1a70f8..a0a5ca7af6d5 100644 --- a/metadata/md5-cache/dev-ruby/regexp_parser-2.2.1 +++ b/metadata/md5-cache/dev-ruby/regexp_parser-2.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/ammar/regexp_parser/archive/v2.2.1.tar.gz -> regexp_parser-2.2.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=66416ae6d7d5a989ad61db4f529cdcc4 diff --git a/metadata/md5-cache/dev-ruby/regexp_parser-2.3.0 b/metadata/md5-cache/dev-ruby/regexp_parser-2.3.0 index 773b7539fdc8..f8e60d96b09c 100644 --- a/metadata/md5-cache/dev-ruby/regexp_parser-2.3.0 +++ b/metadata/md5-cache/dev-ruby/regexp_parser-2.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/ammar/regexp_parser/archive/v2.3.0.tar.gz -> regexp_parser-2.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c25082651af2e80d19cabbe2858eab8e diff --git a/metadata/md5-cache/dev-ruby/regexp_property_values-1.2.0 b/metadata/md5-cache/dev-ruby/regexp_property_values-1.2.0 index d78560603255..dba6a96c5a2e 100644 --- a/metadata/md5-cache/dev-ruby/regexp_property_values-1.2.0 +++ b/metadata/md5-cache/dev-ruby/regexp_property_values-1.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/janosch-x/regexp_property_values/archive/v1.2.0.tar.gz -> regexp_property_values-1.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c06ed112017072deaf3cb21a81bddd9e diff --git a/metadata/md5-cache/dev-ruby/regexp_property_values-1.3.0 b/metadata/md5-cache/dev-ruby/regexp_property_values-1.3.0 index 14061c733f1e..a8472aa4ee2d 100644 --- a/metadata/md5-cache/dev-ruby/regexp_property_values-1.3.0 +++ b/metadata/md5-cache/dev-ruby/regexp_property_values-1.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/janosch-x/regexp_property_values/archive/v1.3.0.tar.gz -> regexp_property_values-1.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=802092e76677438847d5b909fdfabe3e diff --git a/metadata/md5-cache/dev-ruby/request_store-1.5.0 b/metadata/md5-cache/dev-ruby/request_store-1.5.0 index 773a6193fc76..942099f2b9d7 100644 --- a/metadata/md5-cache/dev-ruby/request_store-1.5.0 +++ b/metadata/md5-cache/dev-ruby/request_store-1.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/request_store-1.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bcdd9622edcd12f133069d55de5a6d6d diff --git a/metadata/md5-cache/dev-ruby/request_store-1.5.1 b/metadata/md5-cache/dev-ruby/request_store-1.5.1 index 01091f7c3ac7..f33ca46e7cb8 100644 --- a/metadata/md5-cache/dev-ruby/request_store-1.5.1 +++ b/metadata/md5-cache/dev-ruby/request_store-1.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/request_store-1.5.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f8a1fa4ab3606a0ac8e847ddde9cca53 diff --git a/metadata/md5-cache/dev-ruby/rest-client-2.1.0 b/metadata/md5-cache/dev-ruby/rest-client-2.1.0 index 4ccee9f3a494..50f8eafc98a0 100644 --- a/metadata/md5-cache/dev-ruby/rest-client-2.1.0 +++ b/metadata/md5-cache/dev-ruby/rest-client-2.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rest-client-2.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b17c28aca1975321a2a947d25066d908 diff --git a/metadata/md5-cache/dev-ruby/rexical-1.0.7 b/metadata/md5-cache/dev-ruby/rexical-1.0.7 index 5176b3be0377..ff55311f24a5 100644 --- a/metadata/md5-cache/dev-ruby/rexical-1.0.7 +++ b/metadata/md5-cache/dev-ruby/rexical-1.0.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rexical-1.0.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ce3639c1afb20a4322d9dbdf2bd411ed diff --git a/metadata/md5-cache/dev-ruby/rexical-1.0.7-r1 b/metadata/md5-cache/dev-ruby/rexical-1.0.7-r1 index 6dc40c8df225..e0734c39312b 100644 --- a/metadata/md5-cache/dev-ruby/rexical-1.0.7-r1 +++ b/metadata/md5-cache/dev-ruby/rexical-1.0.7-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rexical-1.0.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=366b740c686acac06d7729d792570ffe diff --git a/metadata/md5-cache/dev-ruby/rexml-3.2.5 b/metadata/md5-cache/dev-ruby/rexml-3.2.5 index 85dd8dc70053..0ced034dd261 100644 --- a/metadata/md5-cache/dev-ruby/rexml-3.2.5 +++ b/metadata/md5-cache/dev-ruby/rexml-3.2.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/ruby/rexml/archive/v3.2.5.tar.gz -> rexml-3.2.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=61d450a66eb4a0f557c2ae6e8af24d65 diff --git a/metadata/md5-cache/dev-ruby/rexml-3.2.5-r1 b/metadata/md5-cache/dev-ruby/rexml-3.2.5-r1 index a6281a3190c2..b0f76913b771 100644 --- a/metadata/md5-cache/dev-ruby/rexml-3.2.5-r1 +++ b/metadata/md5-cache/dev-ruby/rexml-3.2.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/ruby/rexml/archive/v3.2.5.tar.gz -> rexml-3.2.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=21e4bb907d3f2be88495df552e9c2b66 diff --git a/metadata/md5-cache/dev-ruby/rinku-2.0.6-r1 b/metadata/md5-cache/dev-ruby/rinku-2.0.6-r1 index aaf43094277f..6c99189f816d 100644 --- a/metadata/md5-cache/dev-ruby/rinku-2.0.6-r1 +++ b/metadata/md5-cache/dev-ruby/rinku-2.0.6-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rinku-2.0.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6215098cd32190f1a5003afd5408c519 diff --git a/metadata/md5-cache/dev-ruby/ritex-1.0.1-r1 b/metadata/md5-cache/dev-ruby/ritex-1.0.1-r1 index 9a2edf3b687f..939ddd9e4974 100644 --- a/metadata/md5-cache/dev-ruby/ritex-1.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/ritex-1.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ritex-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ad41365b7565a6b69fe67e177e6089e5 diff --git a/metadata/md5-cache/dev-ruby/rjb-1.6.4-r1 b/metadata/md5-cache/dev-ruby/rjb-1.6.4-r1 index 347aeacf9e23..a0b5ade039ad 100644 --- a/metadata/md5-cache/dev-ruby/rjb-1.6.4-r1 +++ b/metadata/md5-cache/dev-ruby/rjb-1.6.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rjb-1.6.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=eaec1f06796d16aac9b8ec8e771f2bb7 diff --git a/metadata/md5-cache/dev-ruby/rjb-1.6.5 b/metadata/md5-cache/dev-ruby/rjb-1.6.5 index 80d846b99a9e..359b633bfea7 100644 --- a/metadata/md5-cache/dev-ruby/rjb-1.6.5 +++ b/metadata/md5-cache/dev-ruby/rjb-1.6.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rjb-1.6.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=59065b77c80789f02468eb3be7792d18 diff --git a/metadata/md5-cache/dev-ruby/rkelly-remix-0.0.7-r1 b/metadata/md5-cache/dev-ruby/rkelly-remix-0.0.7-r1 index 412cad354d74..6e551a06744b 100644 --- a/metadata/md5-cache/dev-ruby/rkelly-remix-0.0.7-r1 +++ b/metadata/md5-cache/dev-ruby/rkelly-remix-0.0.7-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rkelly-remix-0.0.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e2da2842fdcfdc8f7cc1f322bf209698 diff --git a/metadata/md5-cache/dev-ruby/rmagick-4.2.2 b/metadata/md5-cache/dev-ruby/rmagick-4.2.2 index 5811130c2548..6bdf152cd9f2 100644 --- a/metadata/md5-cache/dev-ruby/rmagick-4.2.2 +++ b/metadata/md5-cache/dev-ruby/rmagick-4.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/rmagick/rmagick/archive/RMagick_4-2-2.tar.gz -> rmagick-4.2.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2c6e01a7ebaeb74869cbfbf90a3973c5 diff --git a/metadata/md5-cache/dev-ruby/rmagick-4.2.3 b/metadata/md5-cache/dev-ruby/rmagick-4.2.3 index ca4150f476da..2e7121a01099 100644 --- a/metadata/md5-cache/dev-ruby/rmagick-4.2.3 +++ b/metadata/md5-cache/dev-ruby/rmagick-4.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/rmagick/rmagick/archive/RMagick_4-2-3.tar.gz -> rmagick-4.2.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f608e3c70215df16dd2c0bed3615f10b diff --git a/metadata/md5-cache/dev-ruby/rmagick-4.2.4 b/metadata/md5-cache/dev-ruby/rmagick-4.2.4 index 95d6829893e0..16c5fb02a739 100644 --- a/metadata/md5-cache/dev-ruby/rmagick-4.2.4 +++ b/metadata/md5-cache/dev-ruby/rmagick-4.2.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/rmagick/rmagick/archive/RMagick_4-2-4.tar.gz -> rmagick-4.2.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f608e3c70215df16dd2c0bed3615f10b diff --git a/metadata/md5-cache/dev-ruby/roadie-4.0.0 b/metadata/md5-cache/dev-ruby/roadie-4.0.0 index e4d324b842d7..490f7b449b5d 100644 --- a/metadata/md5-cache/dev-ruby/roadie-4.0.0 +++ b/metadata/md5-cache/dev-ruby/roadie-4.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/Mange/roadie/archive/v4.0.0.tar.gz -> roadie-4.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=73746b558edd2ce80565ce9b2b1519bf diff --git a/metadata/md5-cache/dev-ruby/roadie-5.0.0 b/metadata/md5-cache/dev-ruby/roadie-5.0.0 index 0d4e3cb52b82..bf324f68203d 100644 --- a/metadata/md5-cache/dev-ruby/roadie-5.0.0 +++ b/metadata/md5-cache/dev-ruby/roadie-5.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/Mange/roadie/archive/v5.0.0.tar.gz -> roadie-5.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a23d5bfd5e131f571871367340e73aa7 diff --git a/metadata/md5-cache/dev-ruby/roadie-rails-2.1.1 b/metadata/md5-cache/dev-ruby/roadie-rails-2.1.1 index 9f3da637dbc5..1fda3fe61f24 100644 --- a/metadata/md5-cache/dev-ruby/roadie-rails-2.1.1 +++ b/metadata/md5-cache/dev-ruby/roadie-rails-2.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/Mange/roadie-rails/archive/v2.1.1.tar.gz -> roadie-rails-2.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=71552077f581bc50fe933f86145608d5 diff --git a/metadata/md5-cache/dev-ruby/roadie-rails-2.2.0 b/metadata/md5-cache/dev-ruby/roadie-rails-2.2.0 index 2d502f8c3f7f..e0ad483822e2 100644 --- a/metadata/md5-cache/dev-ruby/roadie-rails-2.2.0 +++ b/metadata/md5-cache/dev-ruby/roadie-rails-2.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/Mange/roadie-rails/archive/v2.2.0.tar.gz -> roadie-rails-2.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3f83c4db2b4929d965432713e428eb6a diff --git a/metadata/md5-cache/dev-ruby/roadie-rails-2.3.0 b/metadata/md5-cache/dev-ruby/roadie-rails-2.3.0 index 2a30b9b7767b..9c672ce6f489 100644 --- a/metadata/md5-cache/dev-ruby/roadie-rails-2.3.0 +++ b/metadata/md5-cache/dev-ruby/roadie-rails-2.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/Mange/roadie-rails/archive/v2.3.0.tar.gz -> roadie-rails-2.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=affffa42a086f8c89d9768b93383848f diff --git a/metadata/md5-cache/dev-ruby/roadie-rails-3.0.0 b/metadata/md5-cache/dev-ruby/roadie-rails-3.0.0 index 109fd8de00e0..9aaa1bae0eb4 100644 --- a/metadata/md5-cache/dev-ruby/roadie-rails-3.0.0 +++ b/metadata/md5-cache/dev-ruby/roadie-rails-3.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/Mange/roadie-rails/archive/v3.0.0.tar.gz -> roadie-rails-3.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=00dfdae64045a956fc85e425453f9c09 diff --git a/metadata/md5-cache/dev-ruby/roadie-rails-3.0.0-r1 b/metadata/md5-cache/dev-ruby/roadie-rails-3.0.0-r1 new file mode 100644 index 000000000000..3fa5f8a3dd9f --- /dev/null +++ b/metadata/md5-cache/dev-ruby/roadie-rails-3.0.0-r1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby26? ( dev-ruby/roadie:5[ruby_targets_ruby26(-)] || ( dev-ruby/railties:7.0[ruby_targets_ruby26(-)] dev-ruby/railties:6.1[ruby_targets_ruby26(-)] dev-ruby/railties:6.0[ruby_targets_ruby26(-)] dev-ruby/railties:5.2[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( dev-ruby/roadie:5[ruby_targets_ruby27(-)] || ( dev-ruby/railties:7.0[ruby_targets_ruby27(-)] dev-ruby/railties:6.1[ruby_targets_ruby27(-)] dev-ruby/railties:6.0[ruby_targets_ruby27(-)] dev-ruby/railties:5.2[ruby_targets_ruby27(-)] ) ) ) ruby_targets_ruby26? ( test? ( dev-ruby/bundler[ruby_targets_ruby26(-)] || ( dev-ruby/rails:7.0[ruby_targets_ruby26(-)] dev-ruby/rails:6.1[ruby_targets_ruby26(-)] dev-ruby/rails:6.0[ruby_targets_ruby26(-)] dev-ruby/rails:5.2[ruby_targets_ruby26(-)] ) dev-ruby/rspec-rails[ruby_targets_ruby26(-)] dev-ruby/rspec-collection_matchers[ruby_targets_ruby26(-)] dev-ruby/sass-rails[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] || ( dev-ruby/rails:7.0[ruby_targets_ruby27(-)] dev-ruby/rails:6.1[ruby_targets_ruby27(-)] dev-ruby/rails:6.0[ruby_targets_ruby27(-)] dev-ruby/rails:5.2[ruby_targets_ruby27(-)] ) dev-ruby/rspec-rails[ruby_targets_ruby27(-)] dev-ruby/rspec-collection_matchers[ruby_targets_ruby27(-)] dev-ruby/sass-rails[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( doc? ( dev-ruby/yard[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/yard[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( 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_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DESCRIPTION=Hooks Roadie into your Rails application to help with email generation +EAPI=8 +HOMEPAGE=https://github.com/Mange/roadie-rails +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 doc test test +KEYWORDS=~amd64 +LICENSE=MIT +RDEPEND=ruby_targets_ruby26? ( dev-ruby/roadie:5[ruby_targets_ruby26(-)] || ( dev-ruby/railties:7.0[ruby_targets_ruby26(-)] dev-ruby/railties:6.1[ruby_targets_ruby26(-)] dev-ruby/railties:6.0[ruby_targets_ruby26(-)] dev-ruby/railties:5.2[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( dev-ruby/roadie:5[ruby_targets_ruby27(-)] || ( dev-ruby/railties:7.0[ruby_targets_ruby27(-)] dev-ruby/railties:6.1[ruby_targets_ruby27(-)] dev-ruby/railties:6.0[ruby_targets_ruby27(-)] dev-ruby/railties:5.2[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=3 +SRC_URI=https://github.com/Mange/roadie-rails/archive/v3.0.0.tar.gz -> roadie-rails-3.0.0.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=7964026fc1efbe2081fe2bbfcd1bab7c diff --git a/metadata/md5-cache/dev-ruby/robots-0.10.1-r2 b/metadata/md5-cache/dev-ruby/robots-0.10.1-r2 index ca92af8cc481..fa229fa61815 100644 --- a/metadata/md5-cache/dev-ruby/robots-0.10.1-r2 +++ b/metadata/md5-cache/dev-ruby/robots-0.10.1-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/robots-0.10.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f0c14e499642e7ad358da752adfbe330 diff --git a/metadata/md5-cache/dev-ruby/rotp-6.2.0 b/metadata/md5-cache/dev-ruby/rotp-6.2.0 index 7c832ea02d5d..7911dd7247dc 100644 --- a/metadata/md5-cache/dev-ruby/rotp-6.2.0 +++ b/metadata/md5-cache/dev-ruby/rotp-6.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/mdp/rotp/archive/refs/tags/v6.2.0.tar.gz -> rotp-6.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e8877f4d28b83aa430db10d606cc65f6 diff --git a/metadata/md5-cache/dev-ruby/rouge-3.26.0 b/metadata/md5-cache/dev-ruby/rouge-3.26.0 index e11a8c773225..7dd7464bcb9b 100644 --- a/metadata/md5-cache/dev-ruby/rouge-3.26.0 +++ b/metadata/md5-cache/dev-ruby/rouge-3.26.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jneen/rouge/archive/v3.26.0.tar.gz -> rouge-3.26.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ceb00bfec03a3474b452dae1a8c2f2b9 diff --git a/metadata/md5-cache/dev-ruby/rouge-3.26.1 b/metadata/md5-cache/dev-ruby/rouge-3.26.1 index 72e694c896e0..fcb434a469a4 100644 --- a/metadata/md5-cache/dev-ruby/rouge-3.26.1 +++ b/metadata/md5-cache/dev-ruby/rouge-3.26.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jneen/rouge/archive/v3.26.1.tar.gz -> rouge-3.26.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cecc3b4ce65b0ae66f836318871c055f diff --git a/metadata/md5-cache/dev-ruby/rouge-3.27.0 b/metadata/md5-cache/dev-ruby/rouge-3.27.0 index b8cc1898ab8d..b25b10652cf5 100644 --- a/metadata/md5-cache/dev-ruby/rouge-3.27.0 +++ b/metadata/md5-cache/dev-ruby/rouge-3.27.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jneen/rouge/archive/v3.27.0.tar.gz -> rouge-3.27.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=863625793dbcbcaeafe054c87e26ede4 diff --git a/metadata/md5-cache/dev-ruby/rouge-3.28.0 b/metadata/md5-cache/dev-ruby/rouge-3.28.0 index 33c43fdb2b34..964929a36d5f 100644 --- a/metadata/md5-cache/dev-ruby/rouge-3.28.0 +++ b/metadata/md5-cache/dev-ruby/rouge-3.28.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jneen/rouge/archive/v3.28.0.tar.gz -> rouge-3.28.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9e39669a72fe215b65836d52bf240835 diff --git a/metadata/md5-cache/dev-ruby/rqrcode-1.2.0 b/metadata/md5-cache/dev-ruby/rqrcode-1.2.0 index 753e803a093b..3413c447edbc 100644 --- a/metadata/md5-cache/dev-ruby/rqrcode-1.2.0 +++ b/metadata/md5-cache/dev-ruby/rqrcode-1.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whomwah/rqrcode/archive/v1.2.0.tar.gz -> rqrcode-1.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6c36d5951fced0a7deffe21eb4656be5 diff --git a/metadata/md5-cache/dev-ruby/rqrcode-2.0.0 b/metadata/md5-cache/dev-ruby/rqrcode-2.0.0 index e113f8145581..335371f4e3f0 100644 --- a/metadata/md5-cache/dev-ruby/rqrcode-2.0.0 +++ b/metadata/md5-cache/dev-ruby/rqrcode-2.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whomwah/rqrcode/archive/v2.0.0.tar.gz -> rqrcode-2.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d751c53c820ba1e6154a239d0dfb9f52 diff --git a/metadata/md5-cache/dev-ruby/rqrcode-2.1.0 b/metadata/md5-cache/dev-ruby/rqrcode-2.1.0 index e043f7153249..676f34eebb26 100644 --- a/metadata/md5-cache/dev-ruby/rqrcode-2.1.0 +++ b/metadata/md5-cache/dev-ruby/rqrcode-2.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whomwah/rqrcode/archive/v2.1.0.tar.gz -> rqrcode-2.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d5bd3e045dcd64f9f8316fc5221bdc6a diff --git a/metadata/md5-cache/dev-ruby/rqrcode-2.1.1 b/metadata/md5-cache/dev-ruby/rqrcode-2.1.1 index d2e0d0e9e6ea..8ed7199f90cd 100644 --- a/metadata/md5-cache/dev-ruby/rqrcode-2.1.1 +++ b/metadata/md5-cache/dev-ruby/rqrcode-2.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whomwah/rqrcode/archive/v2.1.1.tar.gz -> rqrcode-2.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=11569254c607e8479d157ac3334e5498 diff --git a/metadata/md5-cache/dev-ruby/rqrcode_core-0.2.0 b/metadata/md5-cache/dev-ruby/rqrcode_core-0.2.0 index cdf00a006e56..55b41f33ca3f 100644 --- a/metadata/md5-cache/dev-ruby/rqrcode_core-0.2.0 +++ b/metadata/md5-cache/dev-ruby/rqrcode_core-0.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whomwah/rqrcode_core/archive/v0.2.0.tar.gz -> rqrcode_core-0.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4b560259d92c32a6e258ee3a5d9dd4a2 diff --git a/metadata/md5-cache/dev-ruby/rqrcode_core-1.1.0 b/metadata/md5-cache/dev-ruby/rqrcode_core-1.1.0 index 7481be38e8c0..7af11999495e 100644 --- a/metadata/md5-cache/dev-ruby/rqrcode_core-1.1.0 +++ b/metadata/md5-cache/dev-ruby/rqrcode_core-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/whomwah/rqrcode_core/archive/v1.1.0.tar.gz -> rqrcode_core-1.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=712370465b1f5ba80ffa02146c9e11ea diff --git a/metadata/md5-cache/dev-ruby/rqrcode_core-1.2.0 b/metadata/md5-cache/dev-ruby/rqrcode_core-1.2.0 index fbd00823c959..bcb315b37cf4 100644 --- a/metadata/md5-cache/dev-ruby/rqrcode_core-1.2.0 +++ b/metadata/md5-cache/dev-ruby/rqrcode_core-1.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/whomwah/rqrcode_core/archive/v1.2.0.tar.gz -> rqrcode_core-1.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0215ffdd6a12975403f2efc40be42ccf diff --git a/metadata/md5-cache/dev-ruby/rr-1.2.1 b/metadata/md5-cache/dev-ruby/rr-1.2.1 index 8d432a44749b..723692a946fa 100644 --- a/metadata/md5-cache/dev-ruby/rr-1.2.1 +++ b/metadata/md5-cache/dev-ruby/rr-1.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rr/rr/archive/v1.2.1.tar.gz -> rr-1.2.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=199fdc91a6b385d693d1228db43f6cf3 diff --git a/metadata/md5-cache/dev-ruby/rr-3.0.9 b/metadata/md5-cache/dev-ruby/rr-3.0.9 index 22a40334f7a2..da95ed8914e9 100644 --- a/metadata/md5-cache/dev-ruby/rr-3.0.9 +++ b/metadata/md5-cache/dev-ruby/rr-3.0.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rr/rr/archive/v3.0.9.tar.gz -> rr-3.0.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6fd1d4f5c46c25171a14bb8a8c9e7744 diff --git a/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.7.2 b/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.7.2 index eb25f6520965..8cc551dbdcb0 100644 --- a/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.7.2 +++ b/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.7.2 @@ -12,5 +12,5 @@ REQUIRED_USE=test? ( graph ) || ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_t RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://oss.oetiker.ch/rrdtool/pub/rrdtool-1.7.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ae0b0cd9b6a0f724bed969630317b974 diff --git a/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.8.0 b/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.8.0 index 0679801163e3..4a6692738f02 100644 --- a/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.8.0 +++ b/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=test? ( graph ) || ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_t RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://oss.oetiker.ch/rrdtool/pub/rrdtool-1.8.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=adf0e5847e3468c6d69b4e4e52fe1925 diff --git a/metadata/md5-cache/dev-ruby/rspec-2.99.0 b/metadata/md5-cache/dev-ruby/rspec-2.99.0 index 177276be8fb1..0ec2975ea813 100644 --- a/metadata/md5-cache/dev-ruby/rspec-2.99.0 +++ b/metadata/md5-cache/dev-ruby/rspec-2.99.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rspec-2.99.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2b18a48a397d3e5f32e855e6f484713e diff --git a/metadata/md5-cache/dev-ruby/rspec-3.10.0 b/metadata/md5-cache/dev-ruby/rspec-3.10.0 index 796ed8dff400..78ecba4d1ff2 100644 --- a/metadata/md5-cache/dev-ruby/rspec-3.10.0 +++ b/metadata/md5-cache/dev-ruby/rspec-3.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/rspec-3.10.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=137bb00ef315c630e5a2322e3aa2a0e2 diff --git a/metadata/md5-cache/dev-ruby/rspec-3.11.0 b/metadata/md5-cache/dev-ruby/rspec-3.11.0 index b86d0de1e50c..6ae538f6abb3 100644 --- a/metadata/md5-cache/dev-ruby/rspec-3.11.0 +++ b/metadata/md5-cache/dev-ruby/rspec-3.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/rspec-3.11.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=22865f837a279bff29b4c0029bfae78b diff --git a/metadata/md5-cache/dev-ruby/rspec-3.9.0 b/metadata/md5-cache/dev-ruby/rspec-3.9.0 index 37fcbed00256..aa29b89ac3b5 100644 --- a/metadata/md5-cache/dev-ruby/rspec-3.9.0 +++ b/metadata/md5-cache/dev-ruby/rspec-3.9.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/rspec-3.9.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c3b3c5ecfa980884062d2442e2bf7be4 diff --git a/metadata/md5-cache/dev-ruby/rspec-collection_matchers-1.2.0 b/metadata/md5-cache/dev-ruby/rspec-collection_matchers-1.2.0 index 9c22729a7798..eb1e36844e88 100644 --- a/metadata/md5-cache/dev-ruby/rspec-collection_matchers-1.2.0 +++ b/metadata/md5-cache/dev-ruby/rspec-collection_matchers-1.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rspec-collection_matchers-1.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=eb1cee7f2e759fbf65e5ec66a55f4daf diff --git a/metadata/md5-cache/dev-ruby/rspec-core-2.99.2-r2 b/metadata/md5-cache/dev-ruby/rspec-core-2.99.2-r2 index 4d011028fe4f..6af71b900bdf 100644 --- a/metadata/md5-cache/dev-ruby/rspec-core-2.99.2-r2 +++ b/metadata/md5-cache/dev-ruby/rspec-core-2.99.2-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rspec/rspec-core/archive/v2.99.2.tar.gz -> rspec-core-2.99.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0ad08844c333f9655cd75015d6208b7e diff --git a/metadata/md5-cache/dev-ruby/rspec-core-3.10.1 b/metadata/md5-cache/dev-ruby/rspec-core-3.10.1 index 0740ae0580ec..6704538b6e81 100644 --- a/metadata/md5-cache/dev-ruby/rspec-core-3.10.1 +++ b/metadata/md5-cache/dev-ruby/rspec-core-3.10.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-core/archive/v3.10.1.tar.gz -> rspec-core-3.10.1-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=807f00c65b934180678c1dce850cb5ab diff --git a/metadata/md5-cache/dev-ruby/rspec-core-3.10.2 b/metadata/md5-cache/dev-ruby/rspec-core-3.10.2 index 99e6e9b3e39b..5a0599bd2730 100644 --- a/metadata/md5-cache/dev-ruby/rspec-core-3.10.2 +++ b/metadata/md5-cache/dev-ruby/rspec-core-3.10.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-core/archive/v3.10.2.tar.gz -> rspec-core-3.10.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b6797619d828eea36fc1f42a0f5c39fb diff --git a/metadata/md5-cache/dev-ruby/rspec-core-3.11.0 b/metadata/md5-cache/dev-ruby/rspec-core-3.11.0 index 0b44fc3b794c..d0dc6b4c125d 100644 --- a/metadata/md5-cache/dev-ruby/rspec-core-3.11.0 +++ b/metadata/md5-cache/dev-ruby/rspec-core-3.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-core/archive/v3.11.0.tar.gz -> rspec-core-3.11.0-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8cf613dcba7e0a0d288d9ad3711418a0 diff --git a/metadata/md5-cache/dev-ruby/rspec-core-3.9.3 b/metadata/md5-cache/dev-ruby/rspec-core-3.9.3 index dfed1b44c88c..3d9457cd1c7a 100644 --- a/metadata/md5-cache/dev-ruby/rspec-core-3.9.3 +++ b/metadata/md5-cache/dev-ruby/rspec-core-3.9.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-core/archive/v3.9.3.tar.gz -> rspec-core-3.9.3-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5eb8d1b54fcc35074856af7a48fcce6c diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-2.99.2 b/metadata/md5-cache/dev-ruby/rspec-expectations-2.99.2 index 9ab39edc1665..fc8c3536675c 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-2.99.2 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-2.99.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rspec/rspec-expectations/archive/v2.99.2.tar.gz -> rspec-expectations-2.99.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bc78c8d8f28df343f863fc9fb992cb8c diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.1 b/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.1 index 0ed22d6507f9..ca96ad62167d 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.1 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-expectations/archive/v3.10.1.tar.gz -> rspec-expectations-3.10.1-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=55fc1016d9bda076c9128805127c1364 diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.2 b/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.2 index f548d80da296..e6e484e0b1f1 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.2 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-expectations/archive/v3.10.2.tar.gz -> rspec-expectations-3.10.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a591d38d3ec412bcaeae88ddbfd0fa5a diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-3.11.0 b/metadata/md5-cache/dev-ruby/rspec-expectations-3.11.0 index b34fa1c09fac..e8addefc4c90 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-3.11.0 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-3.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-expectations/archive/v3.11.0.tar.gz -> rspec-expectations-3.11.0-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=97463a845f1ef17e89a537e2670c2d2e diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-3.9.4 b/metadata/md5-cache/dev-ruby/rspec-expectations-3.9.4 index 1261463fbefd..5b74dc53356e 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-3.9.4 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-3.9.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-expectations/archive/v3.9.4.tar.gz -> rspec-expectations-3.9.4-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bdf7ec72ac0340bf107150247566de0f diff --git a/metadata/md5-cache/dev-ruby/rspec-its-1.3.0-r1 b/metadata/md5-cache/dev-ruby/rspec-its-1.3.0-r1 index 06ce91130463..296c0be1e94d 100644 --- a/metadata/md5-cache/dev-ruby/rspec-its-1.3.0-r1 +++ b/metadata/md5-cache/dev-ruby/rspec-its-1.3.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rspec-its-1.3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0c7aa8bc7709b02045373573174c5034 diff --git a/metadata/md5-cache/dev-ruby/rspec-json_expectations-2.2.0 b/metadata/md5-cache/dev-ruby/rspec-json_expectations-2.2.0 index 020b5fe4cae9..9ac67ad74559 100644 --- a/metadata/md5-cache/dev-ruby/rspec-json_expectations-2.2.0 +++ b/metadata/md5-cache/dev-ruby/rspec-json_expectations-2.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rspec-json_expectations-2.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=934a31bbfe92d67d9c6a758391a6c11d diff --git a/metadata/md5-cache/dev-ruby/rspec-json_expectations-2.2.0-r1 b/metadata/md5-cache/dev-ruby/rspec-json_expectations-2.2.0-r1 index a313f14437f7..9fb9ab826482 100644 --- a/metadata/md5-cache/dev-ruby/rspec-json_expectations-2.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/rspec-json_expectations-2.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rspec-json_expectations-2.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=37773f423d8cd72e7c3449693cc43314 diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-2.99.2-r1 b/metadata/md5-cache/dev-ruby/rspec-mocks-2.99.2-r1 index 37bd89b47d3b..5f672eceb332 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-2.99.2-r1 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-2.99.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rspec/rspec-mocks/archive/v2.99.2.tar.gz -> rspec-mocks-2.99.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c66b1a307f74f670d9960ddf15903177 diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.2 b/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.2 index 4f58a2479059..ec2036ce502f 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.2 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-mocks/archive/v3.10.2.tar.gz -> rspec-mocks-3.10.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d510b95abeedf47cccb398e66a297893 diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.3 b/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.3 index de5210e2d4c4..f9588d4ba0f7 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.3 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-mocks/archive/v3.10.3.tar.gz -> rspec-mocks-3.10.3-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c9160a76dd10ec29915cd9064a47d8ff diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-3.11.0 b/metadata/md5-cache/dev-ruby/rspec-mocks-3.11.0 index 617b156997ff..e359b0ebcccd 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-3.11.0 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-3.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-mocks/archive/v3.11.0.tar.gz -> rspec-mocks-3.11.0-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5a8849f45903a007df13dd0f68ceac0c diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-3.11.1 b/metadata/md5-cache/dev-ruby/rspec-mocks-3.11.1 index 5650336970bb..bfc9cd2d8095 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-3.11.1 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-3.11.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-mocks/archive/v3.11.1.tar.gz -> rspec-mocks-3.11.1-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5a8849f45903a007df13dd0f68ceac0c diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-3.9.1 b/metadata/md5-cache/dev-ruby/rspec-mocks-3.9.1 index f3982443a83b..307155ab23f1 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-3.9.1 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-3.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-mocks/archive/v3.9.1.tar.gz -> rspec-mocks-3.9.1-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4d39f15043434bb269eb9750f05aee31 diff --git a/metadata/md5-cache/dev-ruby/rspec-rails-3.9.1 b/metadata/md5-cache/dev-ruby/rspec-rails-3.9.1 index 63654455f76a..96fe910154ba 100644 --- a/metadata/md5-cache/dev-ruby/rspec-rails-3.9.1 +++ b/metadata/md5-cache/dev-ruby/rspec-rails-3.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-rails/archive/v3.9.1.tar.gz -> rspec-rails-3.9.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e6fe0e6b3ba349479aec4da0c58cd611 diff --git a/metadata/md5-cache/dev-ruby/rspec-rails-4.1.2 b/metadata/md5-cache/dev-ruby/rspec-rails-4.1.2 index 76db5e0fe877..4ebcff4f7810 100644 --- a/metadata/md5-cache/dev-ruby/rspec-rails-4.1.2 +++ b/metadata/md5-cache/dev-ruby/rspec-rails-4.1.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/rspec/rspec-rails/archive/v4.1.2.tar.gz -> rspec-rails-4.1.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fb64696049e4f4768219a6ddea99c670 diff --git a/metadata/md5-cache/dev-ruby/rspec-rails-5.0.2 b/metadata/md5-cache/dev-ruby/rspec-rails-5.0.2 index 4d8513840987..4413b6e180d6 100644 --- a/metadata/md5-cache/dev-ruby/rspec-rails-5.0.2 +++ b/metadata/md5-cache/dev-ruby/rspec-rails-5.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/rspec/rspec-rails/archive/v5.0.2.tar.gz -> rspec-rails-5.0.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=862151d6887e7c00384f5aad8fda3f48 diff --git a/metadata/md5-cache/dev-ruby/rspec-rails-5.0.3 b/metadata/md5-cache/dev-ruby/rspec-rails-5.0.3 index 3d911f107540..a2a89d6352c7 100644 --- a/metadata/md5-cache/dev-ruby/rspec-rails-5.0.3 +++ b/metadata/md5-cache/dev-ruby/rspec-rails-5.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/rspec/rspec-rails/archive/v5.0.3.tar.gz -> rspec-rails-5.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=172e44ec0c07095f76308dac65cc9be4 diff --git a/metadata/md5-cache/dev-ruby/rspec-rails-5.1.1 b/metadata/md5-cache/dev-ruby/rspec-rails-5.1.1 index 022757682769..e68afbcbe173 100644 --- a/metadata/md5-cache/dev-ruby/rspec-rails-5.1.1 +++ b/metadata/md5-cache/dev-ruby/rspec-rails-5.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/rspec/rspec-rails/archive/v5.1.1.tar.gz -> rspec-rails-5.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b6f542e595e8419cee63189ec8aaa51f diff --git a/metadata/md5-cache/dev-ruby/rspec-retry-0.6.2 b/metadata/md5-cache/dev-ruby/rspec-retry-0.6.2 index d201de5820ff..e65c111bc3ee 100644 --- a/metadata/md5-cache/dev-ruby/rspec-retry-0.6.2 +++ b/metadata/md5-cache/dev-ruby/rspec-retry-0.6.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rspec-retry-0.6.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=125efda5f6f5f16fc36d57e07deb0623 diff --git a/metadata/md5-cache/dev-ruby/rspec-stubbed_env-1.0.0 b/metadata/md5-cache/dev-ruby/rspec-stubbed_env-1.0.0 index 0bdf939aa3f8..d61d3e3cf723 100644 --- a/metadata/md5-cache/dev-ruby/rspec-stubbed_env-1.0.0 +++ b/metadata/md5-cache/dev-ruby/rspec-stubbed_env-1.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rspec-stubbed_env-1.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=10813546523e609c3c0e1335c58da1be diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.10.2 b/metadata/md5-cache/dev-ruby/rspec-support-3.10.2 index ed5f25eb0692..acef47cf1752 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.10.2 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.10.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.10.2.tar.gz -> rspec-support-3.10.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dcc6b86ad3c80909dd819b0aaed2dca1 diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.10.3 b/metadata/md5-cache/dev-ruby/rspec-support-3.10.3 index 3236664cce93..13b968656567 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.10.3 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.10.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.10.3.tar.gz -> rspec-support-3.10.3-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5ae7fd75d501e1a86c901376dc1bdda0 diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.11.0 b/metadata/md5-cache/dev-ruby/rspec-support-3.11.0 index aa87d6a9bb08..ae13f24579e4 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.11.0 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.11.0.tar.gz -> rspec-support-3.11.0-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=39be81486914037c3824add5a939341d diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.9.4 b/metadata/md5-cache/dev-ruby/rspec-support-3.9.4 index babe8f7dc0e5..c9989b8dc82c 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.9.4 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.9.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.9.4.tar.gz -> rspec-support-3.9.4-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d3a8367995f96e6aaab9b0a82b4d249c diff --git a/metadata/md5-cache/dev-ruby/rspectacular-0.70.8-r1 b/metadata/md5-cache/dev-ruby/rspectacular-0.70.8-r1 index 319bb26cc48f..993dd50055ca 100644 --- a/metadata/md5-cache/dev-ruby/rspectacular-0.70.8-r1 +++ b/metadata/md5-cache/dev-ruby/rspectacular-0.70.8-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rspectacular-0.70.8.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e5776a650ac7a6b69e652ee104ab2a99 diff --git a/metadata/md5-cache/dev-ruby/rss-0.2.9 b/metadata/md5-cache/dev-ruby/rss-0.2.9 index 7c6d9079704c..a463c8e70105 100644 --- a/metadata/md5-cache/dev-ruby/rss-0.2.9 +++ b/metadata/md5-cache/dev-ruby/rss-0.2.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rss-0.2.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d87ddb125c91e831b8b9f10db3965a30 diff --git a/metadata/md5-cache/dev-ruby/rss-0.2.9-r1 b/metadata/md5-cache/dev-ruby/rss-0.2.9-r1 index 4ce750caa6f8..b642632b931b 100644 --- a/metadata/md5-cache/dev-ruby/rss-0.2.9-r1 +++ b/metadata/md5-cache/dev-ruby/rss-0.2.9-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rss-0.2.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d423beec558a9fa4706384e2517e12f6 diff --git a/metadata/md5-cache/dev-ruby/ruby-atk-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-atk-3.4.3 index 54459baea53e..b16f8782d1e6 100644 --- a/metadata/md5-cache/dev-ruby/ruby-atk-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-atk-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0d81abe5f2faeee8649fe2725faeb8f0 diff --git a/metadata/md5-cache/dev-ruby/ruby-augeas-0.5.0-r4 b/metadata/md5-cache/dev-ruby/ruby-augeas-0.5.0-r4 index 8634468d0f0d..59480e5e54d2 100644 --- a/metadata/md5-cache/dev-ruby/ruby-augeas-0.5.0-r4 +++ b/metadata/md5-cache/dev-ruby/ruby-augeas-0.5.0-r4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=http://download.augeas.net/ruby/ruby-augeas-0.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6c56d22f16d34218ef7ec450a37739b7 diff --git a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.4.3 index 3adb3a46f34e..33a1914e6550 100644 --- a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1c0b85558c58146026c355d505176568 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-clutter-3.4.3 index b4eeaa858165..81893c5c621c 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=9219ec1a7dc03fde5ada071732075907 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.4.3 index 28d19ad193ca..8de366ebd6c2 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6a3add72a981d0c7c27edd7711597709 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.4.3 index fdb2b521e0ee..e320b998c136 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=d56a4875b3b2cf439dfeeee122300c76 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.4.3 index ad9e9445be7f..9ee25049f315 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=7e8e1e9562bccfe51d2c7be4abb02a58 diff --git a/metadata/md5-cache/dev-ruby/ruby-dict-0.9.4-r5 b/metadata/md5-cache/dev-ruby/ruby-dict-0.9.4-r5 index 6dd51fe589d2..7a76e626fd88 100644 --- a/metadata/md5-cache/dev-ruby/ruby-dict-0.9.4-r5 +++ b/metadata/md5-cache/dev-ruby/ruby-dict-0.9.4-r5 @@ -11,5 +11,5 @@ RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-la REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) SLOT=0 SRC_URI=http://www.caliban.org/files/ruby/ruby-dict-0.9.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c45ad2af50683fc7c8a8c65e37cc6eb1 diff --git a/metadata/md5-cache/dev-ruby/ruby-elf-1.0.8-r1 b/metadata/md5-cache/dev-ruby/ruby-elf-1.0.8-r1 index 68e9dc8be53e..5a0d467ae0dd 100644 --- a/metadata/md5-cache/dev-ruby/ruby-elf-1.0.8-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-elf-1.0.8-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Flameeyes/ruby-elf/archive/1.0.8.tar.gz -> ruby-elf-1.0.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=996030de843311b6f969f87f62bf4599 diff --git a/metadata/md5-cache/dev-ruby/ruby-feedparser-0.10.0 b/metadata/md5-cache/dev-ruby/ruby-feedparser-0.10.0 index af4233773056..0c88415e757c 100644 --- a/metadata/md5-cache/dev-ruby/ruby-feedparser-0.10.0 +++ b/metadata/md5-cache/dev-ruby/ruby-feedparser-0.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/feed2imap/ruby-feedparser/archive/v0.10.0.tar.gz -> ruby-feedparser-0.10.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b4f5a95341d90382d1c2caaa48124063 diff --git a/metadata/md5-cache/dev-ruby/ruby-feedparser-0.9.7 b/metadata/md5-cache/dev-ruby/ruby-feedparser-0.9.7 index 424d1f4c7a52..6294dcf196fd 100644 --- a/metadata/md5-cache/dev-ruby/ruby-feedparser-0.9.7 +++ b/metadata/md5-cache/dev-ruby/ruby-feedparser-0.9.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/feed2imap/ruby-feedparser/archive/v0.9.7.tar.gz -> ruby-feedparser-0.9.7.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=264e018e9ec1a89eab56c848ea0b849c diff --git a/metadata/md5-cache/dev-ruby/ruby-filemagic-0.7.2-r1 b/metadata/md5-cache/dev-ruby/ruby-filemagic-0.7.2-r1 index 1728330e3c37..dcdc9732e17f 100644 --- a/metadata/md5-cache/dev-ruby/ruby-filemagic-0.7.2-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-filemagic-0.7.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-filemagic-0.7.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=919114c748b7072000d732c25c87e33d diff --git a/metadata/md5-cache/dev-ruby/ruby-gdk3-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gdk3-3.4.3 index 619cdb2ac8fe..39c1bea9c7a3 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gdk3-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gdk3-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=26fe993c21f8a7b71c848ce13fac91b8 diff --git a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.4.3 index 61fe88b41bdd..bb3fbb135f56 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=59b84f84f88bc8e2d6b2b2b38bf4b2ec diff --git a/metadata/md5-cache/dev-ruby/ruby-gegl-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gegl-3.4.3 index 30e6c870a4fb..e1c049586272 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gegl-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gegl-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=436b0c157ef691cb85f11ff891ac87c5 diff --git a/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.5 b/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.5 index 0d901a37a215..673ceaeff988 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.5 +++ b/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/gettext-3.3.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6e72fd57dbce3c2ee1acee69e3faf5ac diff --git a/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.7 index a398e277e42f..312df39b99e1 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/gettext-3.3.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=aaed340d7094b99bee8384c39b02b180 diff --git a/metadata/md5-cache/dev-ruby/ruby-gettext-3.4.1 b/metadata/md5-cache/dev-ruby/ruby-gettext-3.4.1 index 4c534d0f3872..5c9250d67453 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gettext-3.4.1 +++ b/metadata/md5-cache/dev-ruby/ruby-gettext-3.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/gettext-3.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4d8f6b3fc346a9e2620b1e06ad20d2a9 diff --git a/metadata/md5-cache/dev-ruby/ruby-gio2-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gio2-3.4.3 index b8963f4da34e..af08daa1ca4b 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gio2-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gio2-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b897748610054b52821627dfd27a9d42 diff --git a/metadata/md5-cache/dev-ruby/ruby-glib2-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-glib2-3.4.3 index 1f3742f16ac0..0185e136166e 100644 --- a/metadata/md5-cache/dev-ruby/ruby-glib2-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-glib2-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=893ae1e3963bddcb55fc4be9a25d1d8b diff --git a/metadata/md5-cache/dev-ruby/ruby-gnome2-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gnome2-3.4.3 index 407a36f8a577..bcbe72d292d1 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gnome2-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gnome2-3.4.3 @@ -11,5 +11,5 @@ RDEPEND=ruby_targets_ruby26? ( ~dev-ruby/ruby-atk-3.4.3[ruby_targets_ruby26(-)] REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3d5b4e5787b6e1d9d28d22d80fdd4caf diff --git a/metadata/md5-cache/dev-ruby/ruby-gnumeric-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gnumeric-3.4.3 index aa3f7bded000..a3580ecca36a 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gnumeric-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gnumeric-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=0f4b13635743dfd7029cf43e979fe374 diff --git a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.4.3 index 97f36a8eb538..590166abfa98 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1d98da586b794237b0157ed1b98d55da diff --git a/metadata/md5-cache/dev-ruby/ruby-goffice-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-goffice-3.4.3 index 59ab7606f722..9d2f8ca7aa55 100644 --- a/metadata/md5-cache/dev-ruby/ruby-goffice-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-goffice-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=9e3f7cd4d38dac5a178dbd378de3ed64 diff --git a/metadata/md5-cache/dev-ruby/ruby-gsf-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gsf-3.4.3 index 9266c372a937..1630d20cfa6a 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gsf-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gsf-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0d73b8eac709094cea24a7c1b26e5b7b diff --git a/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.4.3 index 307267e73a6d..7914b976cc58 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=3fc516fb7af14974e87d625ddcf5d5d2 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk2-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.4.3 index 96f41910d75d..0c7e88d8595f 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtk2-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=b4ee6e052aa3d19b097b4fefe77d26a4 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk3-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gtk3-3.4.3 index 6598c2104fd0..deb98077fe42 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtk3-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gtk3-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=646a0bee3ee7e9ca46d0cc690274a57c diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.4.3 index e429551f7f4a..f28ac23d1372 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=e69f11f409daf1421dfbc8e1b29e799a diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.4.3 index ed8abb3fa854..a639a339ba88 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=5d53605dfd3d799272e55f0a838a6914 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview4-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview4-3.4.3 index bdecee7b1ec7..c918acc4f97d 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview4-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-gtksourceview4-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=922d5dedca169523ffca11a6014372e2 diff --git a/metadata/md5-cache/dev-ruby/ruby-hmac-0.4.0-r2 b/metadata/md5-cache/dev-ruby/ruby-hmac-0.4.0-r2 index b8496d7a5a24..dcf37386bf86 100644 --- a/metadata/md5-cache/dev-ruby/ruby-hmac-0.4.0-r2 +++ b/metadata/md5-cache/dev-ruby/ruby-hmac-0.4.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-hmac-0.4.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=014aad6e20805b9af5abfc04d290026a diff --git a/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20-r2 b/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20-r2 index c57c3181588f..8080de705cf5 100644 --- a/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20-r2 +++ b/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-ldap-0.9.20.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=147a1df2d8e870546e8d5867608e3aae diff --git a/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20-r3 b/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20-r3 index d264549e0e9b..08201ffb0c3e 100644 --- a/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20-r3 +++ b/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=test !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-ldap-0.9.20.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=882addbd448f17ba3600640635a008e5 diff --git a/metadata/md5-cache/dev-ruby/ruby-libsecret-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-libsecret-3.4.3 index 7d4332275b23..88acda076dec 100644 --- a/metadata/md5-cache/dev-ruby/ruby-libsecret-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-libsecret-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2ba249c61dc417b9b610b28b0b245856 diff --git a/metadata/md5-cache/dev-ruby/ruby-macho-2.2.0 b/metadata/md5-cache/dev-ruby/ruby-macho-2.2.0 index 8707bca8560b..844097ced3d3 100644 --- a/metadata/md5-cache/dev-ruby/ruby-macho-2.2.0 +++ b/metadata/md5-cache/dev-ruby/ruby-macho-2.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/Homebrew/ruby-macho/archive/2.2.0.tar.gz -> ruby-macho-2.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5e77251ad0e18a46b5a8a98969c314de diff --git a/metadata/md5-cache/dev-ruby/ruby-macho-2.3.0 b/metadata/md5-cache/dev-ruby/ruby-macho-2.3.0 index 22f3c3448e15..c238e275d8d1 100644 --- a/metadata/md5-cache/dev-ruby/ruby-macho-2.3.0 +++ b/metadata/md5-cache/dev-ruby/ruby-macho-2.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/Homebrew/ruby-macho/archive/2.3.0.tar.gz -> ruby-macho-2.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2b6991ce26a27c270b02bcd59ebb626d diff --git a/metadata/md5-cache/dev-ruby/ruby-macho-2.5.0 b/metadata/md5-cache/dev-ruby/ruby-macho-2.5.0 index 3b9956c1c77a..fe22aa4c2048 100644 --- a/metadata/md5-cache/dev-ruby/ruby-macho-2.5.0 +++ b/metadata/md5-cache/dev-ruby/ruby-macho-2.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/Homebrew/ruby-macho/archive/v2.5.0.tar.gz -> ruby-macho-2.5.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f2880820aca8743acbe6c984f5cdd44c diff --git a/metadata/md5-cache/dev-ruby/ruby-macho-2.5.1 b/metadata/md5-cache/dev-ruby/ruby-macho-2.5.1 index d0ebb0a220b9..75766a0350a8 100644 --- a/metadata/md5-cache/dev-ruby/ruby-macho-2.5.1 +++ b/metadata/md5-cache/dev-ruby/ruby-macho-2.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/Homebrew/ruby-macho/archive/v2.5.1.tar.gz -> ruby-macho-2.5.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=77b6967233824d7ffa6af8a4f458b457 diff --git a/metadata/md5-cache/dev-ruby/ruby-mp3info-0.8.10-r1 b/metadata/md5-cache/dev-ruby/ruby-mp3info-0.8.10-r1 index ad9666899d83..b11e54d45c4c 100644 --- a/metadata/md5-cache/dev-ruby/ruby-mp3info-0.8.10-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-mp3info-0.8.10-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/moumar/ruby-mp3info/archive/v0.8.10.tar.gz -> ruby-mp3info-0.8.10-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=17b701689a16b5a6d21e0a2b5283cc37 diff --git a/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.16.2 b/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.16.2 index 66c92a8a69d6..828a7308fed8 100644 --- a/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.16.2 +++ b/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.16.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/net-ldap-0.16.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2d10158017efde21deeefd65c1b11b71 diff --git a/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.16.3 b/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.16.3 index cee518d052fe..4a0f6522a9c4 100644 --- a/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.16.3 +++ b/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.16.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/net-ldap-0.16.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=86cfe32cd794a1d8f2cb1da5ae0ce1a2 diff --git a/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.17.0 b/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.17.0 index a336738d0b3e..942ffd96143e 100644 --- a/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.17.0 +++ b/metadata/md5-cache/dev-ruby/ruby-net-ldap-0.17.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-ldap/ruby-net-ldap/archive/v0.17.0.tar.gz -> ruby-net-ldap-0.17.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b7fabed627e9780b79994c86369f7396 diff --git a/metadata/md5-cache/dev-ruby/ruby-odbc-0.99999 b/metadata/md5-cache/dev-ruby/ruby-odbc-0.99999 index 51818dc8d910..e15985ec7fa1 100644 --- a/metadata/md5-cache/dev-ruby/ruby-odbc-0.99999 +++ b/metadata/md5-cache/dev-ruby/ruby-odbc-0.99999 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=http://www.ch-werner.de/rubyodbc/ruby-odbc-0.99999.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bf3d95117a4d9840026abfc3d3b6db88 diff --git a/metadata/md5-cache/dev-ruby/ruby-odbc-0.999991 b/metadata/md5-cache/dev-ruby/ruby-odbc-0.999991 index 50fd796ef168..308043878f6e 100644 --- a/metadata/md5-cache/dev-ruby/ruby-odbc-0.999991 +++ b/metadata/md5-cache/dev-ruby/ruby-odbc-0.999991 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test SLOT=0 SRC_URI=http://www.ch-werner.de/rubyodbc/ruby-odbc-0.999991.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=742d39571627b5172f4759d44f6d4566 diff --git a/metadata/md5-cache/dev-ruby/ruby-odbc-0.999991-r1 b/metadata/md5-cache/dev-ruby/ruby-odbc-0.999991-r1 index ec82dc0f6bf0..fc4ca0c37478 100644 --- a/metadata/md5-cache/dev-ruby/ruby-odbc-0.999991-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-odbc-0.999991-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=http://www.ch-werner.de/rubyodbc/ruby-odbc-0.999991.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=16a282f74fed4b0a8072b089c428f183 diff --git a/metadata/md5-cache/dev-ruby/ruby-oembed-0.16.0 b/metadata/md5-cache/dev-ruby/ruby-oembed-0.16.0 index 7fcda2a155c4..79405d3d5e06 100644 --- a/metadata/md5-cache/dev-ruby/ruby-oembed-0.16.0 +++ b/metadata/md5-cache/dev-ruby/ruby-oembed-0.16.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-oembed/ruby-oembed/archive/v0.16.0.tar.gz -> ruby-oembed-0.16.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ad2ddfef37f29425d661b2b673e208df diff --git a/metadata/md5-cache/dev-ruby/ruby-oembed-0.16.1 b/metadata/md5-cache/dev-ruby/ruby-oembed-0.16.1 index 919c59bc43da..7e458be47e75 100644 --- a/metadata/md5-cache/dev-ruby/ruby-oembed-0.16.1 +++ b/metadata/md5-cache/dev-ruby/ruby-oembed-0.16.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-oembed/ruby-oembed/archive/v0.16.1.tar.gz -> ruby-oembed-0.16.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ad2ddfef37f29425d661b2b673e208df diff --git a/metadata/md5-cache/dev-ruby/ruby-ole-1.2.12.2 b/metadata/md5-cache/dev-ruby/ruby-ole-1.2.12.2 index cca54cacdd27..0a1f341c7559 100644 --- a/metadata/md5-cache/dev-ruby/ruby-ole-1.2.12.2 +++ b/metadata/md5-cache/dev-ruby/ruby-ole-1.2.12.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-ole-1.2.12.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5d7b305e3fa67e7421b459b6040333e5 diff --git a/metadata/md5-cache/dev-ruby/ruby-opengl-0.10.0 b/metadata/md5-cache/dev-ruby/ruby-opengl-0.10.0 index a626343eff5c..f8a0aa5e4735 100644 --- a/metadata/md5-cache/dev-ruby/ruby-opengl-0.10.0 +++ b/metadata/md5-cache/dev-ruby/ruby-opengl-0.10.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/opengl-0.10.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ad9bdbe19cbf0ef3a818fafa61c6c688 diff --git a/metadata/md5-cache/dev-ruby/ruby-opengl-0.10.0-r1 b/metadata/md5-cache/dev-ruby/ruby-opengl-0.10.0-r1 index 3d382d1e64d1..fb88bc896b5d 100644 --- a/metadata/md5-cache/dev-ruby/ruby-opengl-0.10.0-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-opengl-0.10.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/opengl-0.10.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=259dcdb3a3c167ff5c955d4840fb3fad diff --git a/metadata/md5-cache/dev-ruby/ruby-openid-2.9.2 b/metadata/md5-cache/dev-ruby/ruby-openid-2.9.2 index e34c28932822..8a06e56d9386 100644 --- a/metadata/md5-cache/dev-ruby/ruby-openid-2.9.2 +++ b/metadata/md5-cache/dev-ruby/ruby-openid-2.9.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/openid/ruby-openid/archive/v2.9.2.tar.gz -> ruby-openid-2.9.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4816a5d3daed81a2c5ca6374a7fbbdb2 diff --git a/metadata/md5-cache/dev-ruby/ruby-pango-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-pango-3.4.3 index 7c7319d788c6..33380a8b2781 100644 --- a/metadata/md5-cache/dev-ruby/ruby-pango-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-pango-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=99f4512f8465f58d9413f86d87c1a1e8 diff --git a/metadata/md5-cache/dev-ruby/ruby-poppler-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-poppler-3.4.3 index e5bebf92c744..12422eeb1cef 100644 --- a/metadata/md5-cache/dev-ruby/ruby-poppler-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-poppler-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=01cd67de36d38daf4e54548f847ee0f1 diff --git a/metadata/md5-cache/dev-ruby/ruby-prof-1.4.3 b/metadata/md5-cache/dev-ruby/ruby-prof-1.4.3 index c6633e2d4489..cd562b794dac 100644 --- a/metadata/md5-cache/dev-ruby/ruby-prof-1.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-prof-1.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-prof/ruby-prof/archive/1.4.3.tar.gz -> ruby-prof-1.4.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b3a42d7c8bc284ce457c8d2291de42bd diff --git a/metadata/md5-cache/dev-ruby/ruby-progressbar-1.10.1-r1 b/metadata/md5-cache/dev-ruby/ruby-progressbar-1.10.1-r1 index f563af68d69f..bb4c23c2aed5 100644 --- a/metadata/md5-cache/dev-ruby/ruby-progressbar-1.10.1-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-progressbar-1.10.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jfelchner/ruby-progressbar/archive/releases/v1.10.1.tar.gz -> ruby-progressbar-1.10.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c4c4f3ffbc2bb34f76e0a2672f0669be diff --git a/metadata/md5-cache/dev-ruby/ruby-progressbar-1.11.0 b/metadata/md5-cache/dev-ruby/ruby-progressbar-1.11.0 index 3ea1b53ba307..528311df26b9 100644 --- a/metadata/md5-cache/dev-ruby/ruby-progressbar-1.11.0 +++ b/metadata/md5-cache/dev-ruby/ruby-progressbar-1.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jfelchner/ruby-progressbar/archive/releases/v1.11.0.tar.gz -> ruby-progressbar-1.11.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9c3aee56b6f47d2533f195954881605c diff --git a/metadata/md5-cache/dev-ruby/ruby-rc4-0.1.5-r3 b/metadata/md5-cache/dev-ruby/ruby-rc4-0.1.5-r3 index d2805b6eb832..e18a618c12d1 100644 --- a/metadata/md5-cache/dev-ruby/ruby-rc4-0.1.5-r3 +++ b/metadata/md5-cache/dev-ruby/ruby-rc4-0.1.5-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-rc4-0.1.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8ad8b121fca9b46a66f27633a8c26025 diff --git a/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r7 b/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r7 index d3bcee32e2f4..7e7bef2f558d 100644 --- a/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r7 +++ b/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r7 @@ -11,5 +11,5 @@ RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-la REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) SLOT=0 SRC_URI=http://0xcc.net/ruby-romkan/ruby-romkan-0.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0d51bce5f059f701d11494097a7b821b diff --git a/metadata/md5-cache/dev-ruby/ruby-rsvg-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-rsvg-3.4.3 index 2e89a6deb0ec..d3b5e06fcacc 100644 --- a/metadata/md5-cache/dev-ruby/ruby-rsvg-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-rsvg-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=37379b365a9c4867be765ee58b9889bc diff --git a/metadata/md5-cache/dev-ruby/ruby-sdl-2.1.2-r3 b/metadata/md5-cache/dev-ruby/ruby-sdl-2.1.2-r3 index ae4066c3fefa..5478fadae860 100644 --- a/metadata/md5-cache/dev-ruby/ruby-sdl-2.1.2-r3 +++ b/metadata/md5-cache/dev-ruby/ruby-sdl-2.1.2-r3 @@ -11,5 +11,5 @@ RDEPEND=>=media-libs/libsdl-1.2.5[joystick] truetype? ( >=media-libs/sdl-ttf-2.0 REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) SLOT=0 SRC_URI=https://github.com/ohai/rubysdl/archive/rel-2-1-2.tar.gz -> ruby-sdl-2.1.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ad9c088f2b37bacd085fd0595717c690 diff --git a/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.0-r1 b/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.0-r1 index c52c7e812daa..8ce1e855fde0 100644 --- a/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.0-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-shadow-2.5.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a6820e6300426412dea841a8ffe7abb9 diff --git a/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.1 b/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.1 index ed89091027db..7a2bf1e64181 100644 --- a/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.1 +++ b/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-shadow-2.5.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=776fbec2d64137af353d55096459c163 diff --git a/metadata/md5-cache/dev-ruby/ruby-shout-2.2.2-r1 b/metadata/md5-cache/dev-ruby/ruby-shout-2.2.2-r1 index 3934486cb9da..e9ba2c0b70f9 100644 --- a/metadata/md5-cache/dev-ruby/ruby-shout-2.2.2-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-shout-2.2.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-shout-2.2.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=15a09d58bcbb83b56facc4808ad9a222 diff --git a/metadata/md5-cache/dev-ruby/ruby-termios-1.1.0 b/metadata/md5-cache/dev-ruby/ruby-termios-1.1.0 index ce5ad38b0a7d..163e31363fdf 100644 --- a/metadata/md5-cache/dev-ruby/ruby-termios-1.1.0 +++ b/metadata/md5-cache/dev-ruby/ruby-termios-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-termios-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0b41182ceff5e4a364991a6e9473a70e diff --git a/metadata/md5-cache/dev-ruby/ruby-termios-1.1.0-r1 b/metadata/md5-cache/dev-ruby/ruby-termios-1.1.0-r1 index 0373f235c771..ffae98af8c96 100644 --- a/metadata/md5-cache/dev-ruby/ruby-termios-1.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-termios-1.1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-termios-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=64948fe36ddcda4e2b7e339c316b8303 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-vte-3.4.3 index 4b86b92bb8b9..de3f22afaa26 100644 --- a/metadata/md5-cache/dev-ruby/ruby-vte-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-vte-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5bad87adc3ccb63ac7f3d1546a7da8b9 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte3-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-vte3-3.4.3 index bff514c69970..dbc82e1f7abb 100644 --- a/metadata/md5-cache/dev-ruby/ruby-vte3-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-vte3-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=443bb38ac0e26a7f91261e55fa094e8b diff --git a/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.4.3 index 4eaacecf083f..9b29dc126dbd 100644 --- a/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=f240019b3280cf236c6b754d5d8a79a0 diff --git a/metadata/md5-cache/dev-ruby/ruby-wnck3-3.4.3 b/metadata/md5-cache/dev-ruby/ruby-wnck3-3.4.3 index 33a5dafcd9d2..1220443ad899 100644 --- a/metadata/md5-cache/dev-ruby/ruby-wnck3-3.4.3 +++ b/metadata/md5-cache/dev-ruby/ruby-wnck3-3.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.4.3.tar.gz -> ruby-gnome2-3.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-ng-gnome2 644503b6d0bb77d25630a3a0af7487d7 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 _md5_=aaae1c7c85e4fefb9b4b610bb22961af diff --git a/metadata/md5-cache/dev-ruby/ruby-xslt-0.9.10 b/metadata/md5-cache/dev-ruby/ruby-xslt-0.9.10 index 5127df43b654..49a52da50438 100644 --- a/metadata/md5-cache/dev-ruby/ruby-xslt-0.9.10 +++ b/metadata/md5-cache/dev-ruby/ruby-xslt-0.9.10 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-xslt-0.9.10.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=15f1656fcff2be4439f6440daff9c9ea diff --git a/metadata/md5-cache/dev-ruby/ruby-xslt-0.9.10-r1 b/metadata/md5-cache/dev-ruby/ruby-xslt-0.9.10-r1 index 75c5eda59d8c..2f70179a8574 100644 --- a/metadata/md5-cache/dev-ruby/ruby-xslt-0.9.10-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-xslt-0.9.10-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-xslt-0.9.10.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=095441282c6cfdd88876aa0ed3a1efe7 diff --git a/metadata/md5-cache/dev-ruby/ruby-yadis-0.3.4-r3 b/metadata/md5-cache/dev-ruby/ruby-yadis-0.3.4-r3 index 5f270027229e..5547ae1220b9 100644 --- a/metadata/md5-cache/dev-ruby/ruby-yadis-0.3.4-r3 +++ b/metadata/md5-cache/dev-ruby/ruby-yadis-0.3.4-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-yadis-0.3.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a3e9da68be6310ebf07a25de5550d752 diff --git a/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.2 b/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.2 index 893a12b8cf37..e0bedbb162ee 100644 --- a/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.2 +++ b/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0.0 SRC_URI=https://rubygems.org/gems/ruby2_keywords-0.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ef7937c25f0839c5d169e8c459169b58 diff --git a/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.4 b/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.4 index 82a0d295e831..a95e8606e796 100644 --- a/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.4 +++ b/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0.0 SRC_URI=https://rubygems.org/gems/ruby2_keywords-0.0.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1355e930bf7d92562ac015e1b407867d diff --git a/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.5 b/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.5 index 49afff7b2996..c44e072664bd 100644 --- a/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.5 +++ b/metadata/md5-cache/dev-ruby/ruby2_keywords-0.0.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0.0 SRC_URI=https://rubygems.org/gems/ruby2_keywords-0.0.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fe20482d2f045f2a23323bd3cf7bfc0a diff --git a/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.4 b/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.4 index b171aa37c1b6..a6ec1a099b72 100644 --- a/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.4 +++ b/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/ruby2ruby-2.4.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=56637e663920ab7a21249a32a90c0614 diff --git a/metadata/md5-cache/dev-ruby/ruby_gntp-0.3.4-r1 b/metadata/md5-cache/dev-ruby/ruby_gntp-0.3.4-r1 index 30037f116d37..e1038d1e3bef 100644 --- a/metadata/md5-cache/dev-ruby/ruby_gntp-0.3.4-r1 +++ b/metadata/md5-cache/dev-ruby/ruby_gntp-0.3.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby_gntp-0.3.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=75998a660e2b25181574deac1c94519f diff --git a/metadata/md5-cache/dev-ruby/ruby_parser-3.14.2 b/metadata/md5-cache/dev-ruby/ruby_parser-3.14.2 index a0513c0b9d98..03f93ffc7f0d 100644 --- a/metadata/md5-cache/dev-ruby/ruby_parser-3.14.2 +++ b/metadata/md5-cache/dev-ruby/ruby_parser-3.14.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/ruby_parser-3.14.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=47642a395e045e78237e28b1a596c8ba diff --git a/metadata/md5-cache/dev-ruby/ruby_parser-3.18.1 b/metadata/md5-cache/dev-ruby/ruby_parser-3.18.1 index e05e9d4d57d1..382baddb3cfb 100644 --- a/metadata/md5-cache/dev-ruby/ruby_parser-3.18.1 +++ b/metadata/md5-cache/dev-ruby/ruby_parser-3.18.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/ruby_parser-3.18.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7f0c08561542bc5d5c1c8a5fb16b936b diff --git a/metadata/md5-cache/dev-ruby/ruby_parser-3.19.1 b/metadata/md5-cache/dev-ruby/ruby_parser-3.19.1 index 61038172301f..83cdda79f2e8 100644 --- a/metadata/md5-cache/dev-ruby/ruby_parser-3.19.1 +++ b/metadata/md5-cache/dev-ruby/ruby_parser-3.19.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/ruby_parser-3.19.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=70718e2b82121b93a19b159d7ed7ace4 diff --git a/metadata/md5-cache/dev-ruby/ruby_smb-1.1.0 b/metadata/md5-cache/dev-ruby/ruby_smb-1.1.0 index bf547a3e2d5a..cb70c5cc9f48 100644 --- a/metadata/md5-cache/dev-ruby/ruby_smb-1.1.0 +++ b/metadata/md5-cache/dev-ruby/ruby_smb-1.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/ruby_smb-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1d43308e4af2206c5cfde51f977e67a9 diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.0.3 b/metadata/md5-cache/dev-ruby/rubygems-3.0.3 index 01f9a62e6758..37aaa579f8be 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.0.3 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.0.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ad310e7082c46e566cdc5d6dd00a0c56 diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.0.9 b/metadata/md5-cache/dev-ruby/rubygems-3.0.9 index 8021cebc350d..522a9b09b5c8 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.0.9 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.0.9 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.0.9.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b20d97269aaac00463d81533fe429123 diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.1.6 b/metadata/md5-cache/dev-ruby/rubygems-3.1.6 index e10c6cd92181..7927a9c7ada6 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.1.6 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.1.6 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.1.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6cb2168c0cbbdaf59560ebd0d9b5a2ab diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.2.14 b/metadata/md5-cache/dev-ruby/rubygems-3.2.14 index 397418e657fb..350581b39770 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.2.14 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.2.14 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.2.14.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b6c3328155b1111f2b3a61cee7db604c diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.2.22 b/metadata/md5-cache/dev-ruby/rubygems-3.2.22 index 4a4c4cddea1a..4731a453006b 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.2.22 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.2.22 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.2.22.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=484cc948c608e1e0e743051327d9b9da diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.2.33 b/metadata/md5-cache/dev-ruby/rubygems-3.2.33 index a1eecda4f57e..236b89a56181 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.2.33 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.2.33 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rubygems/rubygems/archive/v3.2.33.tar.gz -> rubygems-3.2.33.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bb268c57bc7d5370f574a6fa1e71093d diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.3.8 b/metadata/md5-cache/dev-ruby/rubygems-3.3.8 index e0bf8095752e..211bf77d588d 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.3.8 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.3.8 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rubygems/rubygems/archive/v3.3.8.tar.gz -> rubygems-3.3.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3a291b88e4540b59cd536f6a7f41be48 diff --git a/metadata/md5-cache/dev-ruby/rubyntlm-0.6.3 b/metadata/md5-cache/dev-ruby/rubyntlm-0.6.3 index cf0994724e6c..986d5df7cb89 100644 --- a/metadata/md5-cache/dev-ruby/rubyntlm-0.6.3 +++ b/metadata/md5-cache/dev-ruby/rubyntlm-0.6.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubyntlm-0.6.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b444da738eff975024ea2cdeaa5f4c7c diff --git a/metadata/md5-cache/dev-ruby/rubypants-0.7.0 b/metadata/md5-cache/dev-ruby/rubypants-0.7.0 index 11684ca8a4d7..3d50fb64fdb6 100644 --- a/metadata/md5-cache/dev-ruby/rubypants-0.7.0 +++ b/metadata/md5-cache/dev-ruby/rubypants-0.7.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubypants-0.7.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1ebdf08d4085ec1032e430e505fb8b08 diff --git a/metadata/md5-cache/dev-ruby/rubypants-0.7.1 b/metadata/md5-cache/dev-ruby/rubypants-0.7.1 index 8c4bfe88a124..25463024f3d4 100644 --- a/metadata/md5-cache/dev-ruby/rubypants-0.7.1 +++ b/metadata/md5-cache/dev-ruby/rubypants-0.7.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubypants-0.7.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=02dcc6c57f7a91b5ed57e686200b3849 diff --git a/metadata/md5-cache/dev-ruby/rubytest-0.8.1-r1 b/metadata/md5-cache/dev-ruby/rubytest-0.8.1-r1 index e16b753a6daa..51b2836453ed 100644 --- a/metadata/md5-cache/dev-ruby/rubytest-0.8.1-r1 +++ b/metadata/md5-cache/dev-ruby/rubytest-0.8.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubytest-0.8.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=42a1f69df99f11d3adcac4abf7495d2c diff --git a/metadata/md5-cache/dev-ruby/rubytest-cli-0.2.0-r1 b/metadata/md5-cache/dev-ruby/rubytest-cli-0.2.0-r1 index 62d301033c77..4695857a62a4 100644 --- a/metadata/md5-cache/dev-ruby/rubytest-cli-0.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/rubytest-cli-0.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubytest-cli-0.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=85cfafef57594d1263bcb57d3b3512ae diff --git a/metadata/md5-cache/dev-ruby/rubytter-1.5.1-r2 b/metadata/md5-cache/dev-ruby/rubytter-1.5.1-r2 index bf3538a5e6af..3e90d748dcdc 100644 --- a/metadata/md5-cache/dev-ruby/rubytter-1.5.1-r2 +++ b/metadata/md5-cache/dev-ruby/rubytter-1.5.1-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubytter-1.5.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=45176f57dd129772307f22e701b73d12 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-1.3.0 b/metadata/md5-cache/dev-ruby/rubyzip-1.3.0 index b3255043ca28..f3825f0e1815 100644 --- a/metadata/md5-cache/dev-ruby/rubyzip-1.3.0 +++ b/metadata/md5-cache/dev-ruby/rubyzip-1.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/rubyzip/rubyzip/archive/v1.3.0.tar.gz -> rubyzip-1.3.0-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c2f7325262f0726e54031236396ac6a9 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-2.2.0 b/metadata/md5-cache/dev-ruby/rubyzip-2.2.0 index 6c5e77ba5032..80c43705775d 100644 --- a/metadata/md5-cache/dev-ruby/rubyzip-2.2.0 +++ b/metadata/md5-cache/dev-ruby/rubyzip-2.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rubyzip/rubyzip/archive/v2.2.0.tar.gz -> rubyzip-2.2.0-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9ed88f5f0470fc7d569916b545735077 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-2.3.0 b/metadata/md5-cache/dev-ruby/rubyzip-2.3.0 index ffc830f475f0..5883267df0a6 100644 --- a/metadata/md5-cache/dev-ruby/rubyzip-2.3.0 +++ b/metadata/md5-cache/dev-ruby/rubyzip-2.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rubyzip/rubyzip/archive/v2.3.0.tar.gz -> rubyzip-2.3.0-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=86745bafcc0961f999af72d8d9ab8211 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-2.3.2 b/metadata/md5-cache/dev-ruby/rubyzip-2.3.2 index d7d62f7226fc..8af6e6f045cb 100644 --- a/metadata/md5-cache/dev-ruby/rubyzip-2.3.2 +++ b/metadata/md5-cache/dev-ruby/rubyzip-2.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rubyzip/rubyzip/archive/v2.3.2.tar.gz -> rubyzip-2.3.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7f69041ec2d1b879ddb7d1c4fc89da15 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-2.3.2-r1 b/metadata/md5-cache/dev-ruby/rubyzip-2.3.2-r1 index b881d3888068..75545222538e 100644 --- a/metadata/md5-cache/dev-ruby/rubyzip-2.3.2-r1 +++ b/metadata/md5-cache/dev-ruby/rubyzip-2.3.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rubyzip/rubyzip/archive/v2.3.2.tar.gz -> rubyzip-2.3.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=94549d769bf632a5e3d7664e2a08b70c diff --git a/metadata/md5-cache/dev-ruby/safe_yaml-1.0.5-r1 b/metadata/md5-cache/dev-ruby/safe_yaml-1.0.5-r1 index 3eeb158344ad..d406440e5015 100644 --- a/metadata/md5-cache/dev-ruby/safe_yaml-1.0.5-r1 +++ b/metadata/md5-cache/dev-ruby/safe_yaml-1.0.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/safe_yaml-1.0.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=abc76e97aa062fe5fd38fdf48b70bc58 diff --git a/metadata/md5-cache/dev-ruby/sanitize-5.2.3 b/metadata/md5-cache/dev-ruby/sanitize-5.2.3 index 5e877cd02f3f..b241fc535119 100644 --- a/metadata/md5-cache/dev-ruby/sanitize-5.2.3 +++ b/metadata/md5-cache/dev-ruby/sanitize-5.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/rgrove/sanitize/archive/v5.2.3.tar.gz -> sanitize-5.2.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b97c473a8ba7fd6998c38e7d148693e8 diff --git a/metadata/md5-cache/dev-ruby/sanitize-6.0.0 b/metadata/md5-cache/dev-ruby/sanitize-6.0.0 index 6c57ed36c11a..ea52d797bb1f 100644 --- a/metadata/md5-cache/dev-ruby/sanitize-6.0.0 +++ b/metadata/md5-cache/dev-ruby/sanitize-6.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://github.com/rgrove/sanitize/archive/v6.0.0.tar.gz -> sanitize-6.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b1b20828441bda907ff510875697ecc8 diff --git a/metadata/md5-cache/dev-ruby/sass-3.4.25 b/metadata/md5-cache/dev-ruby/sass-3.4.25 index d728386c9875..a3f473f39729 100644 --- a/metadata/md5-cache/dev-ruby/sass-3.4.25 +++ b/metadata/md5-cache/dev-ruby/sass-3.4.25 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3.4 SRC_URI=https://rubygems.org/gems/sass-3.4.25.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=1beb7fcbc7ae0e23e83b55091acbab74 diff --git a/metadata/md5-cache/dev-ruby/sass-3.4.25-r1 b/metadata/md5-cache/dev-ruby/sass-3.4.25-r1 index c56c76b39547..315acce61d60 100644 --- a/metadata/md5-cache/dev-ruby/sass-3.4.25-r1 +++ b/metadata/md5-cache/dev-ruby/sass-3.4.25-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3.4 SRC_URI=https://rubygems.org/gems/sass-3.4.25.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=7801f0c8da468f055839256119035852 diff --git a/metadata/md5-cache/dev-ruby/sass-3.5.7 b/metadata/md5-cache/dev-ruby/sass-3.5.7 index 8ccdcd0f99b2..6752eafb0003 100644 --- a/metadata/md5-cache/dev-ruby/sass-3.5.7 +++ b/metadata/md5-cache/dev-ruby/sass-3.5.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3.5 SRC_URI=https://rubygems.org/gems/sass-3.5.7.gem -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bfd69e750c0383dcf2ecfe6cd8617ead diff --git a/metadata/md5-cache/dev-ruby/sass-3.5.7-r1 b/metadata/md5-cache/dev-ruby/sass-3.5.7-r1 index 70ce073a5157..27462bf6acbc 100644 --- a/metadata/md5-cache/dev-ruby/sass-3.5.7-r1 +++ b/metadata/md5-cache/dev-ruby/sass-3.5.7-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3.5 SRC_URI=https://rubygems.org/gems/sass-3.5.7.gem -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e6a1fd6a0e7f49119dcfa24d034020ff diff --git a/metadata/md5-cache/dev-ruby/sass-3.7.4 b/metadata/md5-cache/dev-ruby/sass-3.7.4 index d0ee4b8294eb..2b22eae9df72 100644 --- a/metadata/md5-cache/dev-ruby/sass-3.7.4 +++ b/metadata/md5-cache/dev-ruby/sass-3.7.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3.7 SRC_URI=https://github.com/sass/ruby-sass/archive/3.7.4.tar.gz -> sass-3.7.4.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bbf990de80874d815f026a075d205175 diff --git a/metadata/md5-cache/dev-ruby/sass-3.7.4-r1 b/metadata/md5-cache/dev-ruby/sass-3.7.4-r1 index 782b8eb2d942..6496377f073d 100644 --- a/metadata/md5-cache/dev-ruby/sass-3.7.4-r1 +++ b/metadata/md5-cache/dev-ruby/sass-3.7.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3.7 SRC_URI=https://github.com/sass/ruby-sass/archive/3.7.4.tar.gz -> sass-3.7.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ae4073c90e37b6a93ab90f8e12ca6662 diff --git a/metadata/md5-cache/dev-ruby/sass-listen-4.0.0 b/metadata/md5-cache/dev-ruby/sass-listen-4.0.0 deleted file mode 100644 index b3bc8373e42c..000000000000 --- a/metadata/md5-cache/dev-ruby/sass-listen-4.0.0 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/rb-inotify-0.9.7[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/rb-inotify-0.9.7[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/thor[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/thor[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) -DESCRIPTION=Fork of guard/listen provides a stable API for users of the ruby Sass CLI -EAPI=6 -HOMEPAGE=https://github.com/guard/listen -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/rb-inotify-0.9.7[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/rb-inotify-0.9.7[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=4 -SRC_URI=https://github.com/sass/listen/archive/v4.0.0.tar.gz -> sass-listen-4.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=025a0bf44d161e49260f0407ec92aaee diff --git a/metadata/md5-cache/dev-ruby/sass-listen-4.0.0-r1 b/metadata/md5-cache/dev-ruby/sass-listen-4.0.0-r1 index 68b0d25a1d09..d92c507b922d 100644 --- a/metadata/md5-cache/dev-ruby/sass-listen-4.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/sass-listen-4.0.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/sass/listen/archive/v4.0.0.tar.gz -> sass-listen-4.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4a310387fc9f2aecb5fbcd195e576b3f diff --git a/metadata/md5-cache/dev-ruby/sass-rails-5.0.8 b/metadata/md5-cache/dev-ruby/sass-rails-5.0.8 index adb896a538f8..100f51d48d8e 100644 --- a/metadata/md5-cache/dev-ruby/sass-rails-5.0.8 +++ b/metadata/md5-cache/dev-ruby/sass-rails-5.0.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=5.0 SRC_URI=https://github.com/rails/sass-rails/archive/v5.0.8.tar.gz -> sass-rails-5.0.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3af0be71d0ec15de835745925f7d61df diff --git a/metadata/md5-cache/dev-ruby/sass-rails-5.1.0 b/metadata/md5-cache/dev-ruby/sass-rails-5.1.0 index b9bf0e728740..69d1443a865b 100644 --- a/metadata/md5-cache/dev-ruby/sass-rails-5.1.0 +++ b/metadata/md5-cache/dev-ruby/sass-rails-5.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=5.1 SRC_URI=https://github.com/rails/sass-rails/archive/v5.1.0.tar.gz -> sass-rails-5.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3af0be71d0ec15de835745925f7d61df diff --git a/metadata/md5-cache/dev-ruby/sassc-2.4.0-r1 b/metadata/md5-cache/dev-ruby/sassc-2.4.0-r1 index 2a6b4d47e777..4f6bbc587f09 100644 --- a/metadata/md5-cache/dev-ruby/sassc-2.4.0-r1 +++ b/metadata/md5-cache/dev-ruby/sassc-2.4.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/sassc-2.4.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a6cf6ec6efa404c9c6c70c86888d3488 diff --git a/metadata/md5-cache/dev-ruby/sassc-rails-2.1.2-r1 b/metadata/md5-cache/dev-ruby/sassc-rails-2.1.2-r1 index 70ba74a8e537..7596e5a2e983 100644 --- a/metadata/md5-cache/dev-ruby/sassc-rails-2.1.2-r1 +++ b/metadata/md5-cache/dev-ruby/sassc-rails-2.1.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/sassc-rails-2.1.2.gem -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=45c3693a98e13f8305c0a1e822893d24 diff --git a/metadata/md5-cache/dev-ruby/sawyer-0.8.2 b/metadata/md5-cache/dev-ruby/sawyer-0.8.2 index 6417abddcb3c..9237d0869615 100644 --- a/metadata/md5-cache/dev-ruby/sawyer-0.8.2 +++ b/metadata/md5-cache/dev-ruby/sawyer-0.8.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/lostisland/sawyer/archive/v0.8.2.tar.gz -> sawyer-0.8.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=28d22d749e690e05a518512a1c1e15b7 diff --git a/metadata/md5-cache/dev-ruby/sdoc-1.1.0 b/metadata/md5-cache/dev-ruby/sdoc-1.1.0 index d625e091326f..1d9a3bc922a4 100644 --- a/metadata/md5-cache/dev-ruby/sdoc-1.1.0 +++ b/metadata/md5-cache/dev-ruby/sdoc-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sdoc-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=00e362d96d4025f769912c721d313e02 diff --git a/metadata/md5-cache/dev-ruby/seed-fu-2.3.9 b/metadata/md5-cache/dev-ruby/seed-fu-2.3.9 index 50613359576c..06756b58a187 100644 --- a/metadata/md5-cache/dev-ruby/seed-fu-2.3.9 +++ b/metadata/md5-cache/dev-ruby/seed-fu-2.3.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/mbleigh/seed-fu/archive/v2.3.9.tar.gz -> seed-fu-2.3.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4bc1f4a87adaafd9344057feddb4ea30 diff --git a/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.7-r1 b/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.7-r1 index 219e17217302..195cee212a58 100644 --- a/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.7-r1 +++ b/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.7-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/selenium-webdriver-3.142.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0dc5c57347aa3d8c1f8757a67713d0a4 diff --git a/metadata/md5-cache/dev-ruby/selenium-webdriver-4.0.3 b/metadata/md5-cache/dev-ruby/selenium-webdriver-4.0.3 index b273cd5a9951..f62f5c910106 100644 --- a/metadata/md5-cache/dev-ruby/selenium-webdriver-4.0.3 +++ b/metadata/md5-cache/dev-ruby/selenium-webdriver-4.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/selenium-webdriver-4.0.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e9bb51fbc01f52c78586b87a7e95ff40 diff --git a/metadata/md5-cache/dev-ruby/selenium-webdriver-4.1.0 b/metadata/md5-cache/dev-ruby/selenium-webdriver-4.1.0 index cff1d7c0b6d2..52ed2dd27c52 100644 --- a/metadata/md5-cache/dev-ruby/selenium-webdriver-4.1.0 +++ b/metadata/md5-cache/dev-ruby/selenium-webdriver-4.1.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby26(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby26(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby27(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby27(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby30(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby30(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby26(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby26(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby27(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby27(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby30(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby30(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby31(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby31(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=This gem provides Ruby bindings for WebDriver EAPI=8 HOMEPAGE=https://github.com/seleniumhq/selenium -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 test +KEYWORDS=amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby26(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby26(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby27(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby27(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby30(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby30(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby26(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby26(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby27(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby27(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby30(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby30(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/childprocess-0.5:2[ruby_targets_ruby31(-)] >=dev-ruby/rexml-3.2.5:3[ruby_targets_ruby31(-)] >=dev-ruby/rubyzip-1.2.2:*[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/selenium-webdriver-4.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=7ee2135726d7a7460fcc54652a12bfab +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=43f38d329fc3025c2647143d0b01fc72 diff --git a/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.2 b/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.2 index b297839df1a7..024573d400d1 100644 --- a/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.2 +++ b/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/semantic_puppet-1.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1ebde591c66693df6f697bd1b60bd609 diff --git a/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.3 b/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.3 index 3d7197b2238d..25dc555597c2 100644 --- a/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.3 +++ b/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/semantic_puppet-1.0.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=81975a18a3499300418db602c7611b81 diff --git a/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.4 b/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.4 index f6f11b97839e..2de7c54ed7c0 100644 --- a/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.4 +++ b/metadata/md5-cache/dev-ruby/semantic_puppet-1.0.4 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Library of tools for working with Semantic Versions and module dependencies EAPI=8 HOMEPAGE=https://github.com/puppetlabs/semantic_puppet -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 LICENSE=Apache-2.0 -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/semantic_puppet-1.0.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=a6cfdc91ca2856a25536b8d6d40f252c +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=a1535a114b2fb5a586ffe6744b793047 diff --git a/metadata/md5-cache/dev-ruby/semver2-3.4.2 b/metadata/md5-cache/dev-ruby/semver2-3.4.2 index d8390a8f968a..79dd7b54974f 100644 --- a/metadata/md5-cache/dev-ruby/semver2-3.4.2 +++ b/metadata/md5-cache/dev-ruby/semver2-3.4.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/haf/semver/archive/v3.4.2.tar.gz -> semver2-3.4.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6ad7c25ae167938800c3514f8ea5f524 diff --git a/metadata/md5-cache/dev-ruby/semver2-3.4.2-r1 b/metadata/md5-cache/dev-ruby/semver2-3.4.2-r1 new file mode 100644 index 000000000000..5c885b2976e1 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/semver2-3.4.2-r1 @@ -0,0 +1,16 @@ +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DESCRIPTION=maintain versions as per http://semver.org +EAPI=8 +HOMEPAGE=https://github.com/haf/semver +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test +KEYWORDS=~amd64 ~ppc64 ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=3 +SRC_URI=https://github.com/haf/semver/archive/v3.4.2.tar.gz -> semver2-3.4.2.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=7961a06e7ba336c34da1d29a6a8895db diff --git a/metadata/md5-cache/dev-ruby/serialport-1.3.2 b/metadata/md5-cache/dev-ruby/serialport-1.3.2 index 26b9066e2d15..8e8191ddf968 100644 --- a/metadata/md5-cache/dev-ruby/serialport-1.3.2 +++ b/metadata/md5-cache/dev-ruby/serialport-1.3.2 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=a library for serial port (rs232) access in ruby EAPI=8 HOMEPAGE=https://github.com/hparra/ruby-serialport/ -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 test KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-2 -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/serialport-1.3.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=6d619754feda3461a4135e966cadc14f +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=fbaeb95de8de4fe23d80f4766c5d21de diff --git a/metadata/md5-cache/dev-ruby/serverengine-2.2.4 b/metadata/md5-cache/dev-ruby/serverengine-2.2.4 deleted file mode 100644 index 552e5e437917..000000000000 --- a/metadata/md5-cache/dev-ruby/serverengine-2.2.4 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/sigdump-0.2.2:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/sigdump-0.2.2:0[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/bundler[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby26(-)] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby27(-)] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( 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_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=A framework to implement robust multiprocess servers -EAPI=8 -HOMEPAGE=https://github.com/fluent/serverengine -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~amd64 -LICENSE=Apache-2.0 -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/sigdump-0.2.2:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/sigdump-0.2.2:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://rubygems.org/gems/serverengine-2.2.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=6b0da6d5e9c3359272a814f938820eca diff --git a/metadata/md5-cache/dev-ruby/serverengine-2.2.5 b/metadata/md5-cache/dev-ruby/serverengine-2.2.5 index 92ac85e113e7..770b0e831286 100644 --- a/metadata/md5-cache/dev-ruby/serverengine-2.2.5 +++ b/metadata/md5-cache/dev-ruby/serverengine-2.2.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/serverengine-2.2.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6de8a8659af658aa294ea2b0eb20ee59 diff --git a/metadata/md5-cache/dev-ruby/set-1.0.2 b/metadata/md5-cache/dev-ruby/set-1.0.2 index ed3db8d6a61c..eed4421e7245 100644 --- a/metadata/md5-cache/dev-ruby/set-1.0.2 +++ b/metadata/md5-cache/dev-ruby/set-1.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/set/archive/v1.0.2.tar.gz -> set-1.0.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bf6bed9f0dd53ae076b80d6686e23340 diff --git a/metadata/md5-cache/dev-ruby/settingslogic-2.0.9-r1 b/metadata/md5-cache/dev-ruby/settingslogic-2.0.9-r1 deleted file mode 100644 index b21d73792f16..000000000000 --- a/metadata/md5-cache/dev-ruby/settingslogic-2.0.9-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby26(-)] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby27(-)] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( 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_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=A simple configuration / settings solution that uses an ERB enabled YAML file -EAPI=8 -HOMEPAGE=https://github.com/binarylogic/settingslogic -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://rubygems.org/gems/settingslogic-2.0.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=d45c5920590bb7eb7196f00712fbd2bd diff --git a/metadata/md5-cache/dev-ruby/settingslogic-2.0.9-r2 b/metadata/md5-cache/dev-ruby/settingslogic-2.0.9-r2 index 9933f3e4c4b8..b82ef85c987a 100644 --- a/metadata/md5-cache/dev-ruby/settingslogic-2.0.9-r2 +++ b/metadata/md5-cache/dev-ruby/settingslogic-2.0.9-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/settingslogic-2.0.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b167c6f0c61e4fe171c3646d4ff4827b diff --git a/metadata/md5-cache/dev-ruby/sexp_processor-4.15.0 b/metadata/md5-cache/dev-ruby/sexp_processor-4.15.0 index b2b78147250e..364598513d94 100644 --- a/metadata/md5-cache/dev-ruby/sexp_processor-4.15.0 +++ b/metadata/md5-cache/dev-ruby/sexp_processor-4.15.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/sexp_processor-4.15.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7cb61dc31721aa8aae99cac362775bb0 diff --git a/metadata/md5-cache/dev-ruby/sexp_processor-4.16.0 b/metadata/md5-cache/dev-ruby/sexp_processor-4.16.0 index 5648ffb69b23..34735c3ae396 100644 --- a/metadata/md5-cache/dev-ruby/sexp_processor-4.16.0 +++ b/metadata/md5-cache/dev-ruby/sexp_processor-4.16.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/sexp_processor-4.16.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=66cdb177d2c42aa0a43ba270d60f5b3e diff --git a/metadata/md5-cache/dev-ruby/sexp_processor-4.16.1 b/metadata/md5-cache/dev-ruby/sexp_processor-4.16.1 index ce4eb6a725c6..addb139d8631 100644 --- a/metadata/md5-cache/dev-ruby/sexp_processor-4.16.1 +++ b/metadata/md5-cache/dev-ruby/sexp_processor-4.16.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/sexp_processor-4.16.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b8eee06afdec9e89b3f5a0bc230f82f9 diff --git a/metadata/md5-cache/dev-ruby/shoulda-2.11.3-r3 b/metadata/md5-cache/dev-ruby/shoulda-2.11.3-r3 index 4953e5d6536f..9cc3cc9d73b5 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-2.11.3-r3 +++ b/metadata/md5-cache/dev-ruby/shoulda-2.11.3-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=test SLOT=0 SRC_URI=https://github.com/thoughtbot/shoulda/tarball/v2.11.3 -> shoulda-2.11.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=63da73a6dd33c0e080e8f413c56c11e6 diff --git a/metadata/md5-cache/dev-ruby/shoulda-3.6.0-r1 b/metadata/md5-cache/dev-ruby/shoulda-3.6.0-r1 index 6ef6215e35b6..e2955d7d00a6 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-3.6.0-r1 +++ b/metadata/md5-cache/dev-ruby/shoulda-3.6.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=3 SRC_URI=https://github.com/thoughtbot/shoulda/archive/v3.6.0.tar.gz -> shoulda-3.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=901683567b6c5b1df7f9d4c73103c823 diff --git a/metadata/md5-cache/dev-ruby/shoulda-3.6.0-r2 b/metadata/md5-cache/dev-ruby/shoulda-3.6.0-r2 index d771db78b058..e5cb76233a6a 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-3.6.0-r2 +++ b/metadata/md5-cache/dev-ruby/shoulda-3.6.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/thoughtbot/shoulda/archive/v3.6.0.tar.gz -> shoulda-3.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c80490f7d7001a057e2fb7aecdb289bc diff --git a/metadata/md5-cache/dev-ruby/shoulda-context-1.2.2-r1 b/metadata/md5-cache/dev-ruby/shoulda-context-1.2.2-r1 index c2243e628b98..ad9fd6cc94db 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-context-1.2.2-r1 +++ b/metadata/md5-cache/dev-ruby/shoulda-context-1.2.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/shoulda-context-1.2.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=418598b65657bd9b1094c511d0d12efc diff --git a/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3-r1 b/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3-r1 index 0a08e6f2fbcd..5a51f6f92324 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3-r1 +++ b/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/shoulda-matchers-3.1.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7bc8b50fa74f9a4dce945d4ccd02bf55 diff --git a/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3-r2 b/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3-r2 index e9500858545c..8bd2c6bfe5ba 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3-r2 +++ b/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3-r2 @@ -5,12 +5,12 @@ DESCRIPTION=Making tests easy on the fingers and eyes EAPI=8 HOMEPAGE=https://github.com/thoughtbot/shoulda-matchers IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/activesupport-4.0.0:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/activesupport-4.0.0:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/activesupport-4.0.0:*[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/shoulda-matchers-3.1.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=209f975976a574fd516f4828c7ab05e8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=3562b42b8284b7b2adada43a442c55a4 diff --git a/metadata/md5-cache/dev-ruby/shoulda-matchers-4.3.0-r1 b/metadata/md5-cache/dev-ruby/shoulda-matchers-4.3.0-r1 deleted file mode 100644 index 065706d1b516..000000000000 --- a/metadata/md5-cache/dev-ruby/shoulda-matchers-4.3.0-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/activesupport-4.2.0:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/activesupport-4.2.0:*[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( 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_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=Making tests easy on the fingers and eyes -EAPI=7 -HOMEPAGE=https://github.com/thoughtbot/shoulda-matchers -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 doc test -KEYWORDS=amd64 ~arm ~arm64 ~hppa ~sparc ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/activesupport-4.2.0:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/activesupport-4.2.0:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=4 -SRC_URI=https://github.com/thoughtbot/shoulda-matchers/archive/v4.3.0.tar.gz -> shoulda-matchers-4.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b6e233f943c8a90d6619ec027be8271c diff --git a/metadata/md5-cache/dev-ruby/shoulda-matchers-4.4.1 b/metadata/md5-cache/dev-ruby/shoulda-matchers-4.4.1 index 89abf5fce5ca..3522ab5c375a 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-matchers-4.4.1 +++ b/metadata/md5-cache/dev-ruby/shoulda-matchers-4.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/thoughtbot/shoulda-matchers/archive/v4.4.1.tar.gz -> shoulda-matchers-4.4.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=499ac189158d1e67941696db0ce5abe9 diff --git a/metadata/md5-cache/dev-ruby/shoulda-matchers-4.5.1 b/metadata/md5-cache/dev-ruby/shoulda-matchers-4.5.1 deleted file mode 100644 index a74946c35b5d..000000000000 --- a/metadata/md5-cache/dev-ruby/shoulda-matchers-4.5.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/activesupport-4.2.0:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/activesupport-4.2.0:*[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( 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_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=Making tests easy on the fingers and eyes -EAPI=7 -HOMEPAGE=https://github.com/thoughtbot/shoulda-matchers -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 doc test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/activesupport-4.2.0:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/activesupport-4.2.0:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=4 -SRC_URI=https://github.com/thoughtbot/shoulda-matchers/archive/v4.5.1.tar.gz -> shoulda-matchers-4.5.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=0fd41feb46406849e8d98848db756ffa diff --git a/metadata/md5-cache/dev-ruby/shoulda-matchers-4.5.1-r1 b/metadata/md5-cache/dev-ruby/shoulda-matchers-4.5.1-r1 index aa078a6f02ae..462c127fa4f3 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-matchers-4.5.1-r1 +++ b/metadata/md5-cache/dev-ruby/shoulda-matchers-4.5.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/thoughtbot/shoulda-matchers/archive/v4.5.1.tar.gz -> shoulda-matchers-4.5.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f84d4d2a36244f17502d7e6119d13f14 diff --git a/metadata/md5-cache/dev-ruby/shoulda-matchers-5.0.0 b/metadata/md5-cache/dev-ruby/shoulda-matchers-5.0.0 index d794201b0d5d..d8230bd3723e 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-matchers-5.0.0 +++ b/metadata/md5-cache/dev-ruby/shoulda-matchers-5.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/thoughtbot/shoulda-matchers/archive/v5.0.0.tar.gz -> shoulda-matchers-5.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0b4ff847d63c4ac1a124390fc349a37f diff --git a/metadata/md5-cache/dev-ruby/shoulda-matchers-5.1.0 b/metadata/md5-cache/dev-ruby/shoulda-matchers-5.1.0 new file mode 100644 index 000000000000..bd01ccc81c40 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/shoulda-matchers-5.1.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/activesupport-5.2.0:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/activesupport-5.2.0:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/activesupport-5.2.0:*[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DESCRIPTION=Making tests easy on the fingers and eyes +EAPI=8 +HOMEPAGE=https://github.com/thoughtbot/shoulda-matchers +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/activesupport-5.2.0:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/activesupport-5.2.0:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/activesupport-5.2.0:*[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=5 +SRC_URI=https://github.com/thoughtbot/shoulda-matchers/archive/v5.1.0.tar.gz -> shoulda-matchers-5.1.0.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=4a63d89a82027488b4809d9a5d1fca85 diff --git a/metadata/md5-cache/dev-ruby/sigar-0.7.3-r1 b/metadata/md5-cache/dev-ruby/sigar-0.7.3-r1 index 36257b751184..6f9be6606d8c 100644 --- a/metadata/md5-cache/dev-ruby/sigar-0.7.3-r1 +++ b/metadata/md5-cache/dev-ruby/sigar-0.7.3-r1 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=|| ( simple_oauth-0.3.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d05e4024d90d61d494ac27e80e91dba1 diff --git a/metadata/md5-cache/dev-ruby/simplecov-0.18.5 b/metadata/md5-cache/dev-ruby/simplecov-0.18.5 index 62cba128974c..85b02a74fea3 100644 --- a/metadata/md5-cache/dev-ruby/simplecov-0.18.5 +++ b/metadata/md5-cache/dev-ruby/simplecov-0.18.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0.8 SRC_URI=https://github.com/colszowka/simplecov/archive/v0.18.5.tar.gz -> simplecov-0.18.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3fb2491060f5335fb87ab54d41c94d99 diff --git a/metadata/md5-cache/dev-ruby/simplecov-0.19.0 b/metadata/md5-cache/dev-ruby/simplecov-0.19.0 index 7f4dc9a04507..d422772ac4db 100644 --- a/metadata/md5-cache/dev-ruby/simplecov-0.19.0 +++ b/metadata/md5-cache/dev-ruby/simplecov-0.19.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0.8 SRC_URI=https://github.com/simplecov-ruby/simplecov/archive/v0.19.0.tar.gz -> simplecov-0.19.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8c3760872dc54d3c10b5c11e72d2177b diff --git a/metadata/md5-cache/dev-ruby/simplecov-0.19.1 b/metadata/md5-cache/dev-ruby/simplecov-0.19.1 index f0259965e1dd..fc3e425b66dd 100644 --- a/metadata/md5-cache/dev-ruby/simplecov-0.19.1 +++ b/metadata/md5-cache/dev-ruby/simplecov-0.19.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0.8 SRC_URI=https://github.com/simplecov-ruby/simplecov/archive/v0.19.1.tar.gz -> simplecov-0.19.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=af9f88838012fdb0ce29f2339d7daa3a diff --git a/metadata/md5-cache/dev-ruby/simplecov-html-0.10.2 b/metadata/md5-cache/dev-ruby/simplecov-html-0.10.2 index 650e30ee8d4b..d7a3edd43bbe 100644 --- a/metadata/md5-cache/dev-ruby/simplecov-html-0.10.2 +++ b/metadata/md5-cache/dev-ruby/simplecov-html-0.10.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0.10 SRC_URI=https://rubygems.org/gems/simplecov-html-0.10.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f2c87f7e80b01bb1c132c4e99846841e diff --git a/metadata/md5-cache/dev-ruby/simplecov-html-0.11.0 b/metadata/md5-cache/dev-ruby/simplecov-html-0.11.0 index 7716bb6f14c3..c7c172555947 100644 --- a/metadata/md5-cache/dev-ruby/simplecov-html-0.11.0 +++ b/metadata/md5-cache/dev-ruby/simplecov-html-0.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0.11 SRC_URI=https://rubygems.org/gems/simplecov-html-0.11.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=395d167c3bd045c2b8fc354e2c7f1e66 diff --git a/metadata/md5-cache/dev-ruby/simplecov-html-0.12.0 b/metadata/md5-cache/dev-ruby/simplecov-html-0.12.0 index 03ff01684ef7..13f10346a92a 100644 --- a/metadata/md5-cache/dev-ruby/simplecov-html-0.12.0 +++ b/metadata/md5-cache/dev-ruby/simplecov-html-0.12.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0.12 SRC_URI=https://rubygems.org/gems/simplecov-html-0.12.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=395d167c3bd045c2b8fc354e2c7f1e66 diff --git a/metadata/md5-cache/dev-ruby/simplecov-html-0.12.1 b/metadata/md5-cache/dev-ruby/simplecov-html-0.12.1 index 12d1d0b7d60f..88be0b36357f 100644 --- a/metadata/md5-cache/dev-ruby/simplecov-html-0.12.1 +++ b/metadata/md5-cache/dev-ruby/simplecov-html-0.12.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0.12 SRC_URI=https://rubygems.org/gems/simplecov-html-0.12.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=395d167c3bd045c2b8fc354e2c7f1e66 diff --git a/metadata/md5-cache/dev-ruby/simplecov-html-0.12.2 b/metadata/md5-cache/dev-ruby/simplecov-html-0.12.2 index f5756137cb78..f6451e9371d2 100644 --- a/metadata/md5-cache/dev-ruby/simplecov-html-0.12.2 +++ b/metadata/md5-cache/dev-ruby/simplecov-html-0.12.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0.12 SRC_URI=https://rubygems.org/gems/simplecov-html-0.12.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=395d167c3bd045c2b8fc354e2c7f1e66 diff --git a/metadata/md5-cache/dev-ruby/simplecov-html-0.12.3 b/metadata/md5-cache/dev-ruby/simplecov-html-0.12.3 index 28819d7bdf83..a5138511bcce 100644 --- a/metadata/md5-cache/dev-ruby/simplecov-html-0.12.3 +++ b/metadata/md5-cache/dev-ruby/simplecov-html-0.12.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0.12 SRC_URI=https://rubygems.org/gems/simplecov-html-0.12.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b26c04e9d7dea4c2bad16700da3dae64 diff --git a/metadata/md5-cache/dev-ruby/simpleidn-0.2.1 b/metadata/md5-cache/dev-ruby/simpleidn-0.2.1 index ea8777e69c2e..2eb6a4dd8d22 100644 --- a/metadata/md5-cache/dev-ruby/simpleidn-0.2.1 +++ b/metadata/md5-cache/dev-ruby/simpleidn-0.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/mmriis/simpleidn/archive/v0.2.1.tar.gz -> simpleidn-0.2.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4168e1a2201457e3421f6c3cdf498423 diff --git a/metadata/md5-cache/dev-ruby/simpleidn-0.2.1-r1 b/metadata/md5-cache/dev-ruby/simpleidn-0.2.1-r1 index 8746ef10a428..ad9a284ba293 100644 --- a/metadata/md5-cache/dev-ruby/simpleidn-0.2.1-r1 +++ b/metadata/md5-cache/dev-ruby/simpleidn-0.2.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/mmriis/simpleidn/archive/v0.2.1.tar.gz -> simpleidn-0.2.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=43b1d033bb01fe0658eaeb9f5f82b03e diff --git a/metadata/md5-cache/dev-ruby/sinatra-2.1.0 b/metadata/md5-cache/dev-ruby/sinatra-2.1.0 index 8758292d2b13..14605171cfbb 100644 --- a/metadata/md5-cache/dev-ruby/sinatra-2.1.0 +++ b/metadata/md5-cache/dev-ruby/sinatra-2.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/sinatra/sinatra/archive/v2.1.0.tar.gz -> sinatra-2.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ac60efa3b65ddfaca4e57558f7fa370f diff --git a/metadata/md5-cache/dev-ruby/sinatra-2.1.0-r1 b/metadata/md5-cache/dev-ruby/sinatra-2.1.0-r1 index c45994ebac77..e76e1dab219a 100644 --- a/metadata/md5-cache/dev-ruby/sinatra-2.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/sinatra-2.1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/sinatra/sinatra/archive/v2.1.0.tar.gz -> sinatra-2.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3fa0bb15e6e27c2b5b9ebec3e18e21ae diff --git a/metadata/md5-cache/dev-ruby/sinatra-partial-1.0.1 b/metadata/md5-cache/dev-ruby/sinatra-partial-1.0.1 index 34f7c88f41fd..47fea7fff765 100644 --- a/metadata/md5-cache/dev-ruby/sinatra-partial-1.0.1 +++ b/metadata/md5-cache/dev-ruby/sinatra-partial-1.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sinatra-partial-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7fb5f27b573bfae0f097c49805a6358d diff --git a/metadata/md5-cache/dev-ruby/sinatra-partial-1.0.1-r1 b/metadata/md5-cache/dev-ruby/sinatra-partial-1.0.1-r1 index 3db84ce401a1..6bb21fae32b8 100644 --- a/metadata/md5-cache/dev-ruby/sinatra-partial-1.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/sinatra-partial-1.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sinatra-partial-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=769fef976c7ddf4aa91348a98d518004 diff --git a/metadata/md5-cache/dev-ruby/six-0.2.0-r1 b/metadata/md5-cache/dev-ruby/six-0.2.0-r1 index fca23fa9147a..8ea34f65c542 100644 --- a/metadata/md5-cache/dev-ruby/six-0.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/six-0.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/randx/six/archive/v0.2.0.tar.gz -> six-0.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=281eba4c482519bf9de45c54a9769631 diff --git a/metadata/md5-cache/dev-ruby/slim-3.0.9-r1 b/metadata/md5-cache/dev-ruby/slim-3.0.9-r1 index 0fb5cdd7a34f..6abccf79ce69 100644 --- a/metadata/md5-cache/dev-ruby/slim-3.0.9-r1 +++ b/metadata/md5-cache/dev-ruby/slim-3.0.9-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/slim-3.0.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7a3b6d0e30b3b7b3ee5a485f37b8a3bf diff --git a/metadata/md5-cache/dev-ruby/slim-4.1.0 b/metadata/md5-cache/dev-ruby/slim-4.1.0 index 110f1351d059..5d6acd8a56e6 100644 --- a/metadata/md5-cache/dev-ruby/slim-4.1.0 +++ b/metadata/md5-cache/dev-ruby/slim-4.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/slim-4.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c75fda06fcc6fb7f2f88ccc0ad60f8bc diff --git a/metadata/md5-cache/dev-ruby/slim-4.1.0-r1 b/metadata/md5-cache/dev-ruby/slim-4.1.0-r1 index 3eb34c0b0ba5..72186a49ec16 100644 --- a/metadata/md5-cache/dev-ruby/slim-4.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/slim-4.1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/slim-4.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=96274fb19a92af4a17e9bd5a94df40dc diff --git a/metadata/md5-cache/dev-ruby/slim-4.1.0-r2 b/metadata/md5-cache/dev-ruby/slim-4.1.0-r2 index 8afbc26fc6a3..0ef8c721b5b5 100644 --- a/metadata/md5-cache/dev-ruby/slim-4.1.0-r2 +++ b/metadata/md5-cache/dev-ruby/slim-4.1.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/slim-4.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f2c661a55b06fdefbe2fc679bd0ce34c diff --git a/metadata/md5-cache/dev-ruby/slop-4.9.1 b/metadata/md5-cache/dev-ruby/slop-4.9.1 index f527d1c11a86..396303b9f295 100644 --- a/metadata/md5-cache/dev-ruby/slop-4.9.1 +++ b/metadata/md5-cache/dev-ruby/slop-4.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/injekt/slop/archive/v4.9.1.tar.gz -> slop-4.9.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=37c5342bdc03f3a9d1c50998c5797b71 diff --git a/metadata/md5-cache/dev-ruby/slop-4.9.2 b/metadata/md5-cache/dev-ruby/slop-4.9.2 index 9abe4d2d5943..ed87600853ba 100644 --- a/metadata/md5-cache/dev-ruby/slop-4.9.2 +++ b/metadata/md5-cache/dev-ruby/slop-4.9.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/injekt/slop/archive/v4.9.2.tar.gz -> slop-4.9.2.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2870aff192f3d411241910c5b8f0dd06 diff --git a/metadata/md5-cache/dev-ruby/slow_enumerator_tools-1.1.0-r1 b/metadata/md5-cache/dev-ruby/slow_enumerator_tools-1.1.0-r1 index 7e56a508140d..51b4ce0ae7b6 100644 --- a/metadata/md5-cache/dev-ruby/slow_enumerator_tools-1.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/slow_enumerator_tools-1.1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/slow_enumerator_tools-1.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2e939f437d3f13ba7944d993d3fe07aa diff --git a/metadata/md5-cache/dev-ruby/sorted_set-1.0.3 b/metadata/md5-cache/dev-ruby/sorted_set-1.0.3 index 24d33e3feebe..ba167aa01a62 100644 --- a/metadata/md5-cache/dev-ruby/sorted_set-1.0.3 +++ b/metadata/md5-cache/dev-ruby/sorted_set-1.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/knu/sorted_set/archive/v1.0.3.tar.gz -> sorted_set-1.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3380235e4ce5f9f88145df5f012c1604 diff --git a/metadata/md5-cache/dev-ruby/sourcemap-0.1.1-r1 b/metadata/md5-cache/dev-ruby/sourcemap-0.1.1-r1 index b09668535076..8ec624c6583f 100644 --- a/metadata/md5-cache/dev-ruby/sourcemap-0.1.1-r1 +++ b/metadata/md5-cache/dev-ruby/sourcemap-0.1.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sourcemap-0.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c1a0da3e0293ea9672583b66c532ea3f diff --git a/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r7 b/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r7 index 18f9257cef2d..4f7ffd30b4cc 100644 --- a/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r7 +++ b/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sparklines-0.5.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5ca6c09bb4bf939ffa7c5bfc0130fef6 diff --git a/metadata/md5-cache/dev-ruby/spreadsheet-1.2.6 b/metadata/md5-cache/dev-ruby/spreadsheet-1.2.6 index 997b013f2481..66c76a2c3a04 100644 --- a/metadata/md5-cache/dev-ruby/spreadsheet-1.2.6 +++ b/metadata/md5-cache/dev-ruby/spreadsheet-1.2.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/zdavatz/spreadsheet/archive/1.2.6.tar.gz -> spreadsheet-1.2.6.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=067d5ef924106ab8126a35f52ac7fc38 diff --git a/metadata/md5-cache/dev-ruby/spreadsheet-1.2.9 b/metadata/md5-cache/dev-ruby/spreadsheet-1.2.9 index 1d9eb7840959..605b4835ed42 100644 --- a/metadata/md5-cache/dev-ruby/spreadsheet-1.2.9 +++ b/metadata/md5-cache/dev-ruby/spreadsheet-1.2.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/zdavatz/spreadsheet/archive/1.2.9.tar.gz -> spreadsheet-1.2.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1992110f3358b021d13fca138b9d092a diff --git a/metadata/md5-cache/dev-ruby/spreadsheet-1.3.0 b/metadata/md5-cache/dev-ruby/spreadsheet-1.3.0 index 015120f5ccea..0d38189bdbf6 100644 --- a/metadata/md5-cache/dev-ruby/spreadsheet-1.3.0 +++ b/metadata/md5-cache/dev-ruby/spreadsheet-1.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/zdavatz/spreadsheet/archive/1.3.0.tar.gz -> spreadsheet-1.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3d8f4bf4d20cc9c64fb60bac184813cc diff --git a/metadata/md5-cache/dev-ruby/spring-2.1.1 b/metadata/md5-cache/dev-ruby/spring-2.1.1 index c11d624cf1f4..8e996aedd372 100644 --- a/metadata/md5-cache/dev-ruby/spring-2.1.1 +++ b/metadata/md5-cache/dev-ruby/spring-2.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.1 SRC_URI=https://github.com/rails/spring/archive/v2.1.1.tar.gz -> spring-2.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6cff63f653d8693f9d94117b7a8158ac diff --git a/metadata/md5-cache/dev-ruby/spring-3.1.1 b/metadata/md5-cache/dev-ruby/spring-3.1.1 index 5ef80ff4ae3d..97bb989de7b9 100644 --- a/metadata/md5-cache/dev-ruby/spring-3.1.1 +++ b/metadata/md5-cache/dev-ruby/spring-3.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.1 SRC_URI=https://github.com/rails/spring/archive/v3.1.1.tar.gz -> spring-3.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f5918975093107e7f6622c7750068c86 diff --git a/metadata/md5-cache/dev-ruby/sprockets-3.7.2 b/metadata/md5-cache/dev-ruby/sprockets-3.7.2 index f17173200c7d..bb5f6a44cca7 100644 --- a/metadata/md5-cache/dev-ruby/sprockets-3.7.2 +++ b/metadata/md5-cache/dev-ruby/sprockets-3.7.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rails/sprockets/archive/v3.7.2.tar.gz -> sprockets-3.7.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=6cfdd1fd8bba97046a603720d7f66788 diff --git a/metadata/md5-cache/dev-ruby/sprockets-3.7.2-r1 b/metadata/md5-cache/dev-ruby/sprockets-3.7.2-r1 index 7c128e929b2a..6ea2437476a5 100644 --- a/metadata/md5-cache/dev-ruby/sprockets-3.7.2-r1 +++ b/metadata/md5-cache/dev-ruby/sprockets-3.7.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rails/sprockets/archive/v3.7.2.tar.gz -> sprockets-3.7.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=5f72ba992338d99644811a061e5aa1c3 diff --git a/metadata/md5-cache/dev-ruby/sprockets-4.0.2 b/metadata/md5-cache/dev-ruby/sprockets-4.0.2 index 08fbed91d21c..77c91134e68d 100644 --- a/metadata/md5-cache/dev-ruby/sprockets-4.0.2 +++ b/metadata/md5-cache/dev-ruby/sprockets-4.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/rails/sprockets/archive/v4.0.2.tar.gz -> sprockets-4.0.2-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3b3d30827ea84b76e4846b96052274d4 diff --git a/metadata/md5-cache/dev-ruby/sprockets-rails-3.3.0 b/metadata/md5-cache/dev-ruby/sprockets-rails-3.3.0 index 22b831e8d152..1e71cbdc9eb9 100644 --- a/metadata/md5-cache/dev-ruby/sprockets-rails-3.3.0 +++ b/metadata/md5-cache/dev-ruby/sprockets-rails-3.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rails/sprockets-rails/archive/v3.3.0.tar.gz -> sprockets-rails-3.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d90203745dacc6aa26a9a1dc084109fc diff --git a/metadata/md5-cache/dev-ruby/sprockets-rails-3.4.2 b/metadata/md5-cache/dev-ruby/sprockets-rails-3.4.2 index 017330ef9d89..9ddf3a82b068 100644 --- a/metadata/md5-cache/dev-ruby/sprockets-rails-3.4.2 +++ b/metadata/md5-cache/dev-ruby/sprockets-rails-3.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rails/sprockets-rails/archive/v3.4.2.tar.gz -> sprockets-rails-3.4.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d90203745dacc6aa26a9a1dc084109fc diff --git a/metadata/md5-cache/dev-ruby/sprockets-rails-3.4.2-r1 b/metadata/md5-cache/dev-ruby/sprockets-rails-3.4.2-r1 index 69dd6cd2d87d..1da012803aae 100644 --- a/metadata/md5-cache/dev-ruby/sprockets-rails-3.4.2-r1 +++ b/metadata/md5-cache/dev-ruby/sprockets-rails-3.4.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rails/sprockets-rails/archive/v3.4.2.tar.gz -> sprockets-rails-3.4.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c3988a49400682d9a5d250f832986641 diff --git a/metadata/md5-cache/dev-ruby/spy-1.0.1-r1 b/metadata/md5-cache/dev-ruby/spy-1.0.1-r1 index 6c3851d66f69..d48211a815e4 100644 --- a/metadata/md5-cache/dev-ruby/spy-1.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/spy-1.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/spy-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bd8132170ae1810812d05e21cd820936 diff --git a/metadata/md5-cache/dev-ruby/spy-1.0.2 b/metadata/md5-cache/dev-ruby/spy-1.0.2 index c1d4733fefc4..5bd0919fe3b8 100644 --- a/metadata/md5-cache/dev-ruby/spy-1.0.2 +++ b/metadata/md5-cache/dev-ruby/spy-1.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/spy-1.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=59e01fb059bf769cffadcd8355953cd1 diff --git a/metadata/md5-cache/dev-ruby/sqlite3-1.4.2-r1 b/metadata/md5-cache/dev-ruby/sqlite3-1.4.2-r1 index 9393a77b1479..9f07e98e23e2 100644 --- a/metadata/md5-cache/dev-ruby/sqlite3-1.4.2-r1 +++ b/metadata/md5-cache/dev-ruby/sqlite3-1.4.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sqlite3-1.4.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=398605f9afd94e89c4b222f75ea1d73c diff --git a/metadata/md5-cache/dev-ruby/sshkey-2.0.0 b/metadata/md5-cache/dev-ruby/sshkey-2.0.0 index bd1c3e43c4b6..2fed3a56ea82 100644 --- a/metadata/md5-cache/dev-ruby/sshkey-2.0.0 +++ b/metadata/md5-cache/dev-ruby/sshkey-2.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sshkey-2.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c9908097a4fe20d34fff1d3e4ecb8687 diff --git a/metadata/md5-cache/dev-ruby/sshkit-1.21.2 b/metadata/md5-cache/dev-ruby/sshkit-1.21.2 index a04b39809795..f62b99b23e46 100644 --- a/metadata/md5-cache/dev-ruby/sshkit-1.21.2 +++ b/metadata/md5-cache/dev-ruby/sshkit-1.21.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sshkit-1.21.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=46e490d0a5e2abf52593dd7a55afb1cb diff --git a/metadata/md5-cache/dev-ruby/stamp-0.6.0-r1 b/metadata/md5-cache/dev-ruby/stamp-0.6.0-r1 index a8f4b9b600aa..ea5a9a54f6ea 100644 --- a/metadata/md5-cache/dev-ruby/stamp-0.6.0-r1 +++ b/metadata/md5-cache/dev-ruby/stamp-0.6.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jeremyw/stamp/archive/v0.6.0.tar.gz -> stamp-0.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=596a86a83da8ccd368166b7429fda1b2 diff --git a/metadata/md5-cache/dev-ruby/state_machine-1.2.0-r1 b/metadata/md5-cache/dev-ruby/state_machine-1.2.0-r1 index fd05a9dc0f4e..1753bef33655 100644 --- a/metadata/md5-cache/dev-ruby/state_machine-1.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/state_machine-1.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/state_machine-1.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fb9a45a5ddd510c03b3433c88660d74a diff --git a/metadata/md5-cache/dev-ruby/stomp-1.4.10 b/metadata/md5-cache/dev-ruby/stomp-1.4.10 index 4ee5a2417c69..7634f61bb035 100644 --- a/metadata/md5-cache/dev-ruby/stomp-1.4.10 +++ b/metadata/md5-cache/dev-ruby/stomp-1.4.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/stomp-1.4.10.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7f34f9cc6b48983582ece42901738804 diff --git a/metadata/md5-cache/dev-ruby/stomp-1.4.9 b/metadata/md5-cache/dev-ruby/stomp-1.4.9 index 4cf87c5a6bdc..a4d61b9b6d01 100644 --- a/metadata/md5-cache/dev-ruby/stomp-1.4.9 +++ b/metadata/md5-cache/dev-ruby/stomp-1.4.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/stomp-1.4.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d60fc2a6ec522ca1da38300076285184 diff --git a/metadata/md5-cache/dev-ruby/stringex-2.8.5 b/metadata/md5-cache/dev-ruby/stringex-2.8.5 index be0aa723be3a..fd0824604905 100644 --- a/metadata/md5-cache/dev-ruby/stringex-2.8.5 +++ b/metadata/md5-cache/dev-ruby/stringex-2.8.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/stringex-2.8.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=76bdab80eb376baf3c25bae98c57d803 diff --git a/metadata/md5-cache/dev-ruby/stringex-2.8.5-r1 b/metadata/md5-cache/dev-ruby/stringex-2.8.5-r1 index d9cf8fdd8ba0..e6f8afa75324 100644 --- a/metadata/md5-cache/dev-ruby/stringex-2.8.5-r1 +++ b/metadata/md5-cache/dev-ruby/stringex-2.8.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/stringex-2.8.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=39e32402a63e279cf5f0937d603afb59 diff --git a/metadata/md5-cache/dev-ruby/stringio-3.0.1 b/metadata/md5-cache/dev-ruby/stringio-3.0.1 index efc888b13c5f..d24ab7cd0be0 100644 --- a/metadata/md5-cache/dev-ruby/stringio-3.0.1 +++ b/metadata/md5-cache/dev-ruby/stringio-3.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/stringio/archive/v3.0.1.tar.gz -> stringio-3.0.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=330c6d8c8819dc90bf6eb1df0e5ba413 diff --git a/metadata/md5-cache/dev-ruby/strptime-0.2.5-r1 b/metadata/md5-cache/dev-ruby/strptime-0.2.5-r1 index 6016fbdcecf4..8512365098fc 100644 --- a/metadata/md5-cache/dev-ruby/strptime-0.2.5-r1 +++ b/metadata/md5-cache/dev-ruby/strptime-0.2.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nurse/strptime/archive/v0.2.5.tar.gz -> strptime-0.2.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dbbf90ba84c9e6b6e44bf94861c51168 diff --git a/metadata/md5-cache/dev-ruby/strscan-3.0.1 b/metadata/md5-cache/dev-ruby/strscan-3.0.1 index f2dddc443f99..06712d3f9968 100644 --- a/metadata/md5-cache/dev-ruby/strscan-3.0.1 +++ b/metadata/md5-cache/dev-ruby/strscan-3.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/ruby/strscan/archive/v3.0.1.tar.gz -> strscan-3.0.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=efea4b65d395ab8e8b15b318acbcfe0e diff --git a/metadata/md5-cache/dev-ruby/subexec-0.2.3-r2 b/metadata/md5-cache/dev-ruby/subexec-0.2.3-r2 index d2a5022fa535..1cd660f8e9b7 100644 --- a/metadata/md5-cache/dev-ruby/subexec-0.2.3-r2 +++ b/metadata/md5-cache/dev-ruby/subexec-0.2.3-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nulayer/subexec/archive/v0.2.3.tar.gz -> subexec-0.2.3.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ac56d63ab94789f28402b64a6779874f diff --git a/metadata/md5-cache/dev-ruby/sync-0.5.0 b/metadata/md5-cache/dev-ruby/sync-0.5.0 index 468c0b9be409..200c1bb8d561 100644 --- a/metadata/md5-cache/dev-ruby/sync-0.5.0 +++ b/metadata/md5-cache/dev-ruby/sync-0.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/sync/archive/v0.5.0.tar.gz -> sync-0.5.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4ce39a74dc4d2a1e61ce4557abafde1e diff --git a/metadata/md5-cache/dev-ruby/syntax-1.2.2 b/metadata/md5-cache/dev-ruby/syntax-1.2.2 index 8bb85db04d0f..0874faed6bd1 100644 --- a/metadata/md5-cache/dev-ruby/syntax-1.2.2 +++ b/metadata/md5-cache/dev-ruby/syntax-1.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/dblock/syntax/archive/v1.2.2.tar.gz -> syntax-1.2.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=94ef3e5b5099bf497a5326cfcc46c69b diff --git a/metadata/md5-cache/dev-ruby/sys-uname-1.2.2 b/metadata/md5-cache/dev-ruby/sys-uname-1.2.2 index c697df4fc5e6..29bbe3c5bb9e 100644 --- a/metadata/md5-cache/dev-ruby/sys-uname-1.2.2 +++ b/metadata/md5-cache/dev-ruby/sys-uname-1.2.2 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=A Ruby interface for getting operating system information EAPI=7 HOMEPAGE=https://github.com/djberg96/sys-uname -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 test test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=Apache-2.0 -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/ffi-1.1[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/sys-uname-1.2.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=29bfcbdfc64387fca4dbe67c425a5fd6 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=592915d17b736b7c65ed3663cf84c155 diff --git a/metadata/md5-cache/dev-ruby/syslogger-1.6.5 b/metadata/md5-cache/dev-ruby/syslogger-1.6.5 index 04b0ef6f3ac0..d9045dd5f764 100644 --- a/metadata/md5-cache/dev-ruby/syslogger-1.6.5 +++ b/metadata/md5-cache/dev-ruby/syslogger-1.6.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/syslogger-1.6.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2f0ed2dad3d118c6fd9b48303d8ec1a5 diff --git a/metadata/md5-cache/dev-ruby/syslogger-1.6.6-r1 b/metadata/md5-cache/dev-ruby/syslogger-1.6.6-r1 index 2474f865bc13..e62da6381a79 100644 --- a/metadata/md5-cache/dev-ruby/syslogger-1.6.6-r1 +++ b/metadata/md5-cache/dev-ruby/syslogger-1.6.6-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/syslogger-1.6.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e6aca22828496cf7f8c6c1c0e32a359f diff --git a/metadata/md5-cache/dev-ruby/systemu-2.6.5-r1 b/metadata/md5-cache/dev-ruby/systemu-2.6.5-r1 index 1600e63b80da..8aa820039bd3 100644 --- a/metadata/md5-cache/dev-ruby/systemu-2.6.5-r1 +++ b/metadata/md5-cache/dev-ruby/systemu-2.6.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/systemu-2.6.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d8f1986f0db11e1e54564a6cefd40267 diff --git a/metadata/md5-cache/dev-ruby/tdiff-0.3.4-r1 b/metadata/md5-cache/dev-ruby/tdiff-0.3.4-r1 index 5254946eb833..46b8341f7229 100644 --- a/metadata/md5-cache/dev-ruby/tdiff-0.3.4-r1 +++ b/metadata/md5-cache/dev-ruby/tdiff-0.3.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tdiff-0.3.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1b2df92a4a7ced051fda4e95827fa4a2 diff --git a/metadata/md5-cache/dev-ruby/temple-0.8.2 b/metadata/md5-cache/dev-ruby/temple-0.8.2 index a3cc944a0cf7..c37c8d7fbe8c 100644 --- a/metadata/md5-cache/dev-ruby/temple-0.8.2 +++ b/metadata/md5-cache/dev-ruby/temple-0.8.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0.7 SRC_URI=https://rubygems.org/gems/temple-0.8.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=50dfbe74ee1546c67aeeb54eccbcd922 diff --git a/metadata/md5-cache/dev-ruby/temple-0.8.2-r1 b/metadata/md5-cache/dev-ruby/temple-0.8.2-r1 index 4c8df278eb18..b515851a6c6b 100644 --- a/metadata/md5-cache/dev-ruby/temple-0.8.2-r1 +++ b/metadata/md5-cache/dev-ruby/temple-0.8.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0.7 SRC_URI=https://rubygems.org/gems/temple-0.8.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ebfc78d7a539d7256602ccd012cc11ae diff --git a/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1 b/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1 index b9d504195b99..b32685055574 100644 --- a/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1 +++ b/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/term-ansicolor-1.7.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c53d8f49bf69f21a12f1568a76fd7fee diff --git a/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1-r1 b/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1-r1 index d39ff1ce5cee..c1bf9dc2e927 100644 --- a/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1-r1 +++ b/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/term-ansicolor-1.7.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=63113c7b89c2e0e98e232c918ddbb571 diff --git a/metadata/md5-cache/dev-ruby/terminal-table-1.8.0-r2 b/metadata/md5-cache/dev-ruby/terminal-table-1.8.0-r2 index 6347b46c2fb5..26920617567a 100644 --- a/metadata/md5-cache/dev-ruby/terminal-table-1.8.0-r2 +++ b/metadata/md5-cache/dev-ruby/terminal-table-1.8.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/tj/terminal-table/archive/v1.8.0.tar.gz -> terminal-table-1.8.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=aa3ef94aefe2a0916d5ba63071c066f7 diff --git a/metadata/md5-cache/dev-ruby/terminal-table-2.0.0 b/metadata/md5-cache/dev-ruby/terminal-table-2.0.0 index 38ffcc2318c3..b1c18f604a91 100644 --- a/metadata/md5-cache/dev-ruby/terminal-table-2.0.0 +++ b/metadata/md5-cache/dev-ruby/terminal-table-2.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/tj/terminal-table/archive/v2.0.0.tar.gz -> terminal-table-2.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d2d7c35e775a336621614288a946eb85 diff --git a/metadata/md5-cache/dev-ruby/terminal-table-3.0.2 b/metadata/md5-cache/dev-ruby/terminal-table-3.0.2 index fe4e1101dd78..ada3118f8384 100644 --- a/metadata/md5-cache/dev-ruby/terminal-table-3.0.2 +++ b/metadata/md5-cache/dev-ruby/terminal-table-3.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/tj/terminal-table/archive/v3.0.2.tar.gz -> terminal-table-3.0.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=96c60fca89653bea385fc21bca372134 diff --git a/metadata/md5-cache/dev-ruby/test-unit-3.3.9 b/metadata/md5-cache/dev-ruby/test-unit-3.3.9 index cab24bc6db55..10c43b1e8b75 100644 --- a/metadata/md5-cache/dev-ruby/test-unit-3.3.9 +++ b/metadata/md5-cache/dev-ruby/test-unit-3.3.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/test-unit-3.3.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=878f4c457bc50b14089e698664f917b2 diff --git a/metadata/md5-cache/dev-ruby/test-unit-3.4.9 b/metadata/md5-cache/dev-ruby/test-unit-3.4.9 index bd87f245adb4..246c4d2c8ca5 100644 --- a/metadata/md5-cache/dev-ruby/test-unit-3.4.9 +++ b/metadata/md5-cache/dev-ruby/test-unit-3.4.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/test-unit/test-unit/archive/3.4.9.tar.gz -> test-unit-3.4.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1ebed982aae8f8339410f530a853ac07 diff --git a/metadata/md5-cache/dev-ruby/test-unit-3.5.3 b/metadata/md5-cache/dev-ruby/test-unit-3.5.3 index 8617ee434230..cd879be34506 100644 --- a/metadata/md5-cache/dev-ruby/test-unit-3.5.3 +++ b/metadata/md5-cache/dev-ruby/test-unit-3.5.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/test-unit/test-unit/archive/3.5.3.tar.gz -> test-unit-3.5.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=53ab0b05724407ab5e6e98d04278e95d diff --git a/metadata/md5-cache/dev-ruby/test-unit-rr-1.0.5-r1 b/metadata/md5-cache/dev-ruby/test-unit-rr-1.0.5-r1 index b304980b1e61..0e17e42081a0 100644 --- a/metadata/md5-cache/dev-ruby/test-unit-rr-1.0.5-r1 +++ b/metadata/md5-cache/dev-ruby/test-unit-rr-1.0.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/test-unit-rr-1.0.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4becfc97cbd046538e5b047b737942de diff --git a/metadata/md5-cache/dev-ruby/test_construct-2.0.2-r1 b/metadata/md5-cache/dev-ruby/test_construct-2.0.2-r1 index 62c6b39ddcf7..4e5681661029 100644 --- a/metadata/md5-cache/dev-ruby/test_construct-2.0.2-r1 +++ b/metadata/md5-cache/dev-ruby/test_construct-2.0.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/test_construct-2.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a9558a1c5fd03a3065f2c75704bb9b32 diff --git a/metadata/md5-cache/dev-ruby/test_declarative-0.0.6-r1 b/metadata/md5-cache/dev-ruby/test_declarative-0.0.6-r1 index 385a5acccf4d..2170201010ec 100644 --- a/metadata/md5-cache/dev-ruby/test_declarative-0.0.6-r1 +++ b/metadata/md5-cache/dev-ruby/test_declarative-0.0.6-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/svenfuchs/test_declarative/archive/v0.0.6 -> test_declarative-0.0.6.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=71c06b572751743e29d8a30dbf16a783 diff --git a/metadata/md5-cache/dev-ruby/text-1.3.1-r1 b/metadata/md5-cache/dev-ruby/text-1.3.1-r1 index e2c9825d07b7..f129e0d37fe9 100644 --- a/metadata/md5-cache/dev-ruby/text-1.3.1-r1 +++ b/metadata/md5-cache/dev-ruby/text-1.3.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/text-1.3.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ea49b63bb5383062d831bd09079748c9 diff --git a/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r3 b/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r3 index d853e1fa8017..dae115cc6bc6 100644 --- a/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r3 +++ b/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/text-hyphen-1.4.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bdd150324e55969b5aa5e40711e8a448 diff --git a/metadata/md5-cache/dev-ruby/textpow-1.4.0-r1 b/metadata/md5-cache/dev-ruby/textpow-1.4.0-r1 index 75b0f7c4792f..80c1efe00fa2 100644 --- a/metadata/md5-cache/dev-ruby/textpow-1.4.0-r1 +++ b/metadata/md5-cache/dev-ruby/textpow-1.4.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/grosser/textpow/archive/v1.4.0.tar.gz -> textpow-1.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1503fb45cfdd723e74c292e37289dac8 diff --git a/metadata/md5-cache/dev-ruby/thor-1.1.0 b/metadata/md5-cache/dev-ruby/thor-1.1.0 index 91053e426385..82ada6d67b24 100644 --- a/metadata/md5-cache/dev-ruby/thor-1.1.0 +++ b/metadata/md5-cache/dev-ruby/thor-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/erikhuda/thor/archive/v1.1.0.tar.gz -> thor-git-1.1.0.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3800a0f895972940fa80e51fb6c091c4 diff --git a/metadata/md5-cache/dev-ruby/thor-1.2.1 b/metadata/md5-cache/dev-ruby/thor-1.2.1 index 86e91bdb8750..dd1f97c42a7a 100644 --- a/metadata/md5-cache/dev-ruby/thor-1.2.1 +++ b/metadata/md5-cache/dev-ruby/thor-1.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/erikhuda/thor/archive/v1.2.1.tar.gz -> thor-git-1.2.1.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=97630c67471cda87b1bf3181bd33900e diff --git a/metadata/md5-cache/dev-ruby/thread_order-1.1.1 b/metadata/md5-cache/dev-ruby/thread_order-1.1.1 index 7553f95550eb..01d971ddbfe7 100644 --- a/metadata/md5-cache/dev-ruby/thread_order-1.1.1 +++ b/metadata/md5-cache/dev-ruby/thread_order-1.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/thread_order-1.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=40608788d119bbb7255b0f5bd8fbf152 diff --git a/metadata/md5-cache/dev-ruby/thread_safe-0.3.6-r1 b/metadata/md5-cache/dev-ruby/thread_safe-0.3.6-r1 index 29c41e4a965e..756db6210e72 100644 --- a/metadata/md5-cache/dev-ruby/thread_safe-0.3.6-r1 +++ b/metadata/md5-cache/dev-ruby/thread_safe-0.3.6-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/thread_safe-0.3.6.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=07f0ec18804c51a2b8e010e141eafa66 diff --git a/metadata/md5-cache/dev-ruby/tidy-ext-0.1.14-r4 b/metadata/md5-cache/dev-ruby/tidy-ext-0.1.14-r4 index bf1be190debc..82a0bc11e0c0 100644 --- a/metadata/md5-cache/dev-ruby/tidy-ext-0.1.14-r4 +++ b/metadata/md5-cache/dev-ruby/tidy-ext-0.1.14-r4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tidy-ext-0.1.14.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9e2b45e2bc1eee631a09fed91e39e831 diff --git a/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r5 b/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r5 index 8a884f59c0e9..f4fa1941e56b 100644 --- a/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r5 +++ b/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tidy_table-0.0.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6cecaaa032101307cc3f5c0685ea0884 diff --git a/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r6 b/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r6 index f5cc7063ace6..a4ccc7a66bd6 100644 --- a/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r6 +++ b/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tidy_table-0.0.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8c0fbac2699626562e95fa7448ccc314 diff --git a/metadata/md5-cache/dev-ruby/tilt-2.0.10 b/metadata/md5-cache/dev-ruby/tilt-2.0.10 index 5abae6460950..f8354300baf8 100644 --- a/metadata/md5-cache/dev-ruby/tilt-2.0.10 +++ b/metadata/md5-cache/dev-ruby/tilt-2.0.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rtomayko/tilt/archive/v2.0.10.tar.gz -> tilt-2.0.10.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3c9cf5f0816c947866ea515d0ee7ab45 diff --git a/metadata/md5-cache/dev-ruby/tilt-2.0.10-r1 b/metadata/md5-cache/dev-ruby/tilt-2.0.10-r1 index e24ed68b0ce2..c99ee1ce7f53 100644 --- a/metadata/md5-cache/dev-ruby/tilt-2.0.10-r1 +++ b/metadata/md5-cache/dev-ruby/tilt-2.0.10-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rtomayko/tilt/archive/v2.0.10.tar.gz -> tilt-2.0.10.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bd421788c9c9f805969f472e3aaca8dd diff --git a/metadata/md5-cache/dev-ruby/time-0.2.0 b/metadata/md5-cache/dev-ruby/time-0.2.0 index 48530683891d..92ef456f294c 100644 --- a/metadata/md5-cache/dev-ruby/time-0.2.0 +++ b/metadata/md5-cache/dev-ruby/time-0.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/time/archive/v0.2.0.tar.gz -> time-0.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2d1072ec543bb9444a6b33cd918b17e1 diff --git a/metadata/md5-cache/dev-ruby/timecop-0.9.4 b/metadata/md5-cache/dev-ruby/timecop-0.9.4 index 757e41ea6d46..fac8d2004b11 100644 --- a/metadata/md5-cache/dev-ruby/timecop-0.9.4 +++ b/metadata/md5-cache/dev-ruby/timecop-0.9.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/timecop-0.9.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5f967273baea411cfa319650336fcb55 diff --git a/metadata/md5-cache/dev-ruby/timecop-0.9.5 b/metadata/md5-cache/dev-ruby/timecop-0.9.5 index f3228b1d3887..f031aef1d787 100644 --- a/metadata/md5-cache/dev-ruby/timecop-0.9.5 +++ b/metadata/md5-cache/dev-ruby/timecop-0.9.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/timecop-0.9.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7a3ecbf6da436f7fffaa5566e86baf63 diff --git a/metadata/md5-cache/dev-ruby/timeout-0.2.0 b/metadata/md5-cache/dev-ruby/timeout-0.2.0 index 18ba1829077e..c3ac36c9bf7d 100644 --- a/metadata/md5-cache/dev-ruby/timeout-0.2.0 +++ b/metadata/md5-cache/dev-ruby/timeout-0.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/timeout/archive/v0.2.0.tar.gz -> timeout-0.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9cbb51954608fdca4d174b23e9582cb5 diff --git a/metadata/md5-cache/dev-ruby/timers-4.3.3 b/metadata/md5-cache/dev-ruby/timers-4.3.3 index 639e2e1c72cb..0a6ca25d550b 100644 --- a/metadata/md5-cache/dev-ruby/timers-4.3.3 +++ b/metadata/md5-cache/dev-ruby/timers-4.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/tarcieri/timers/archive/v4.3.3.tar.gz -> timers-4.3.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a5087de0401a6c992725c777accc6891 diff --git a/metadata/md5-cache/dev-ruby/tins-1.29.1 b/metadata/md5-cache/dev-ruby/tins-1.29.1 index 47c458bdd167..38a85b14de0e 100644 --- a/metadata/md5-cache/dev-ruby/tins-1.29.1 +++ b/metadata/md5-cache/dev-ruby/tins-1.29.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tins-1.29.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=42bee8576a84d661391f61b01732c892 diff --git a/metadata/md5-cache/dev-ruby/tins-1.31.0 b/metadata/md5-cache/dev-ruby/tins-1.31.0 index 08c6fe88de15..62822852d5db 100644 --- a/metadata/md5-cache/dev-ruby/tins-1.31.0 +++ b/metadata/md5-cache/dev-ruby/tins-1.31.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tins-1.31.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=032479715ff4b0f66569a53e044eeb3a diff --git a/metadata/md5-cache/dev-ruby/tokyocabinet-1.32.0-r1 b/metadata/md5-cache/dev-ruby/tokyocabinet-1.32.0-r1 index af4819b564e1..1d3727ab9dc7 100644 --- a/metadata/md5-cache/dev-ruby/tokyocabinet-1.32.0-r1 +++ b/metadata/md5-cache/dev-ruby/tokyocabinet-1.32.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tokyocabinet-1.32.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=87ca921baa7b2ad955b971fb21a5fb9c diff --git a/metadata/md5-cache/dev-ruby/tomlrb-1.2.8 b/metadata/md5-cache/dev-ruby/tomlrb-1.2.8 index 2bf71cc557fa..7e2f0cb065ba 100644 --- a/metadata/md5-cache/dev-ruby/tomlrb-1.2.8 +++ b/metadata/md5-cache/dev-ruby/tomlrb-1.2.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/fbernier/tomlrb/archive/v1.2.8.tar.gz -> tomlrb-1.2.8.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=60f572f8b2f211030aa99213dcb6d79d diff --git a/metadata/md5-cache/dev-ruby/tomlrb-2.0.1 b/metadata/md5-cache/dev-ruby/tomlrb-2.0.1 index 89178961b7bd..6e8fc1fd0ec9 100644 --- a/metadata/md5-cache/dev-ruby/tomlrb-2.0.1 +++ b/metadata/md5-cache/dev-ruby/tomlrb-2.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/fbernier/tomlrb/archive/v2.0.1.tar.gz -> tomlrb-2.0.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9f2a2244ff97bb5c21bd1edbf33efcd4 diff --git a/metadata/md5-cache/dev-ruby/totoridipjp-0.1.0-r1 b/metadata/md5-cache/dev-ruby/totoridipjp-0.1.0-r1 index 19495b5f3d1a..340da81c3a55 100644 --- a/metadata/md5-cache/dev-ruby/totoridipjp-0.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/totoridipjp-0.1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/totoridipjp-0.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d77c92d54095a9c929f4781527181dd7 diff --git a/metadata/md5-cache/dev-ruby/transaction-simple-1.4.0.2-r3 b/metadata/md5-cache/dev-ruby/transaction-simple-1.4.0.2-r3 index d0f9011c81ee..ae1a42e97826 100644 --- a/metadata/md5-cache/dev-ruby/transaction-simple-1.4.0.2-r3 +++ b/metadata/md5-cache/dev-ruby/transaction-simple-1.4.0.2-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/transaction-simple-1.4.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=aa7e1014d0c955e527244d7196b19fc6 diff --git a/metadata/md5-cache/dev-ruby/travis-1.10.0-r1 b/metadata/md5-cache/dev-ruby/travis-1.10.0-r1 index 4e043419fa13..4709f870d133 100644 --- a/metadata/md5-cache/dev-ruby/travis-1.10.0-r1 +++ b/metadata/md5-cache/dev-ruby/travis-1.10.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/travis-1.10.0.gem -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0e437e0a8e84d164dc011f7fc2f62643 diff --git a/metadata/md5-cache/dev-ruby/travis-1.11.0 b/metadata/md5-cache/dev-ruby/travis-1.11.0 index c31620067582..7b1d420cb625 100644 --- a/metadata/md5-cache/dev-ruby/travis-1.11.0 +++ b/metadata/md5-cache/dev-ruby/travis-1.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/travis-1.11.0.gem -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7ca00871e6ecd857da19f5a5dea746fe diff --git a/metadata/md5-cache/dev-ruby/treetop-1.6.11-r1 b/metadata/md5-cache/dev-ruby/treetop-1.6.11-r1 index 81b37d47b2b5..1a754ed3211d 100644 --- a/metadata/md5-cache/dev-ruby/treetop-1.6.11-r1 +++ b/metadata/md5-cache/dev-ruby/treetop-1.6.11-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/cjheath/treetop/archive/v1.6.11.tar.gz -> treetop-1.6.11.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f3ee8df0d6d09df5cc70c47a159c7d8d diff --git a/metadata/md5-cache/dev-ruby/trollop-2.9.10 b/metadata/md5-cache/dev-ruby/trollop-2.9.10 index 41966ba758ec..5a1915968e54 100644 --- a/metadata/md5-cache/dev-ruby/trollop-2.9.10 +++ b/metadata/md5-cache/dev-ruby/trollop-2.9.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/trollop-2.9.10.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=aa758c581fc93d6f8b51e97346506657 diff --git a/metadata/md5-cache/dev-ruby/ttfunk-1.6.2.1 b/metadata/md5-cache/dev-ruby/ttfunk-1.6.2.1 index ad6e98db987d..0391e472e452 100644 --- a/metadata/md5-cache/dev-ruby/ttfunk-1.6.2.1 +++ b/metadata/md5-cache/dev-ruby/ttfunk-1.6.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.6 SRC_URI=https://github.com/prawnpdf/ttfunk/archive/1.6.2.1.tar.gz -> ttfunk-1.6.2.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=268900a5b311b574c4a84882decf9365 diff --git a/metadata/md5-cache/dev-ruby/ttfunk-1.7.0 b/metadata/md5-cache/dev-ruby/ttfunk-1.7.0 index 46f11bbed212..1af9fa648cc8 100644 --- a/metadata/md5-cache/dev-ruby/ttfunk-1.7.0 +++ b/metadata/md5-cache/dev-ruby/ttfunk-1.7.0 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=A TrueType font parser written in pure ruby EAPI=7 HOMEPAGE=https://github.com/prawnpdf/ttfunk/ -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 GPL-3 Ruby ) -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.7 SRC_URI=https://github.com/prawnpdf/ttfunk/archive/1.7.0.tar.gz -> ttfunk-1.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=d2456fac24d80ec980dc882fcdbee0a9 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=280ce6a55ab08d2829d567ae1132168c diff --git a/metadata/md5-cache/dev-ruby/tty-color-0.6.0 b/metadata/md5-cache/dev-ruby/tty-color-0.6.0 index b508136eca75..1a620d7f0440 100644 --- a/metadata/md5-cache/dev-ruby/tty-color-0.6.0 +++ b/metadata/md5-cache/dev-ruby/tty-color-0.6.0 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Terminal color capabilities detection EAPI=7 HOMEPAGE=https://github.com/piotrmurach/tty-color -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-color/archive/v0.6.0.tar.gz -> tty-color-0.6.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=5502d97a70632b2438fc9d399e93dea1 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=48518945549b2ea77512eddc0b0dadd1 diff --git a/metadata/md5-cache/dev-ruby/tty-command-0.10.1 b/metadata/md5-cache/dev-ruby/tty-command-0.10.1 deleted file mode 100644 index ade99376ebcb..000000000000 --- a/metadata/md5-cache/dev-ruby/tty-command-0.10.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( 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_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=Terminal color capabilities detection -EAPI=7 -HOMEPAGE=https://github.com/piotrmurach/tty-command -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/piotrmurach/tty-command/archive/v0.10.1.tar.gz -> tty-command-0.10.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e3d6bf99e2f050cd8fde5bdef511b5f1 diff --git a/metadata/md5-cache/dev-ruby/tty-command-0.10.1-r1 b/metadata/md5-cache/dev-ruby/tty-command-0.10.1-r1 index f0cc43cd8db9..d287b024b45f 100644 --- a/metadata/md5-cache/dev-ruby/tty-command-0.10.1-r1 +++ b/metadata/md5-cache/dev-ruby/tty-command-0.10.1-r1 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Terminal color capabilities detection EAPI=8 HOMEPAGE=https://github.com/piotrmurach/tty-command -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~amd64 ~riscv LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-command/archive/v0.10.1.tar.gz -> tty-command-0.10.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=3f2cf6eacc9da03ddca133dbebe50306 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=755475d2b8544a09f827dac40e9b8a68 diff --git a/metadata/md5-cache/dev-ruby/tty-cursor-0.7.1 b/metadata/md5-cache/dev-ruby/tty-cursor-0.7.1 index 1d1c96d674b6..774eea9afcd6 100644 --- a/metadata/md5-cache/dev-ruby/tty-cursor-0.7.1 +++ b/metadata/md5-cache/dev-ruby/tty-cursor-0.7.1 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Move the terminal cursor around and manipulate text using intuitive method calls EAPI=7 HOMEPAGE=https://github.com/piotrmurach/tty-cursor -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-cursor/archive/v0.7.1.tar.gz -> tty-cursor-0.7.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ce266b0bbee6b326cef6afd86776f13f +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=8a04d5185be0ce6a7b188a85e98285e9 diff --git a/metadata/md5-cache/dev-ruby/tty-editor-0.7.0 b/metadata/md5-cache/dev-ruby/tty-editor-0.7.0 index ebf19f27dfcd..c64a6eeb8936 100644 --- a/metadata/md5-cache/dev-ruby/tty-editor-0.7.0 +++ b/metadata/md5-cache/dev-ruby/tty-editor-0.7.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Opens a file or text in the user's preferred editor EAPI=8 HOMEPAGE=https://github.com/piotrmurach/tty-editor -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/tty-prompt-0.22[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-editor/archive/v0.7.0.tar.gz -> tty-editor-0.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=063d603637f924ac88b94834197a3eaa +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=724557a5ed3e4cb03ec6cd2571e8dcfe diff --git a/metadata/md5-cache/dev-ruby/tty-file-0.10.0 b/metadata/md5-cache/dev-ruby/tty-file-0.10.0 index 0c0526e7ca1b..58c4251b8a52 100644 --- a/metadata/md5-cache/dev-ruby/tty-file-0.10.0 +++ b/metadata/md5-cache/dev-ruby/tty-file-0.10.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby26(-)] >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-prompt-0.22:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby27(-)] >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-prompt-0.22:0[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/webmock[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/webmock[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby26(-)] >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-prompt-0.22:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby27(-)] >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-prompt-0.22:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby30(-)] >=dev-ruby/pastel-0.8:0[ruby_targets_ruby30(-)] >=dev-ruby/tty-prompt-0.22:0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/webmock[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/webmock[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/webmock[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) DESCRIPTION=File manipulation utility methods EAPI=7 HOMEPAGE=https://github.com/piotrmurach/tty-file -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby26(-)] >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-prompt-0.22:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby27(-)] >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-prompt-0.22:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) +RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby26(-)] >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-prompt-0.22:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby27(-)] >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-prompt-0.22:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby30(-)] >=dev-ruby/pastel-0.8:0[ruby_targets_ruby30(-)] >=dev-ruby/tty-prompt-0.22:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-file/archive/v0.10.0.tar.gz -> tty-file-0.10.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=d76b629021827d1171e64114a9fb2777 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=97003aafbc913319d8c4c79ec3ce08d6 diff --git a/metadata/md5-cache/dev-ruby/tty-platform-0.3.0-r1 b/metadata/md5-cache/dev-ruby/tty-platform-0.3.0-r1 index 6175f692152e..56bfccdbfcab 100644 --- a/metadata/md5-cache/dev-ruby/tty-platform-0.3.0-r1 +++ b/metadata/md5-cache/dev-ruby/tty-platform-0.3.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-platform/archive/v0.3.0.tar.gz -> tty-platform-0.3.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=de92ec18f4a663c7c4ede2c3ed5ccb12 diff --git a/metadata/md5-cache/dev-ruby/tty-prompt-0.23.1 b/metadata/md5-cache/dev-ruby/tty-prompt-0.23.1 index b00161b39d74..471e79b28574 100644 --- a/metadata/md5-cache/dev-ruby/tty-prompt-0.23.1 +++ b/metadata/md5-cache/dev-ruby/tty-prompt-0.23.1 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby30(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby30(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby31(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=A beautiful and powerful interactive command line prompt EAPI=7 HOMEPAGE=https://github.com/piotrmurach/tty-prompt -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby30(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby30(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/pastel-0.8:0[ruby_targets_ruby31(-)] >=dev-ruby/tty-reader-0.8:0[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-prompt/archive/v0.23.1.tar.gz -> tty-prompt-0.23.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=de9f8c30e1f9285c1cb917a8e0de2e25 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=b839ff5853ffaa9f4f48339ef31aba29 diff --git a/metadata/md5-cache/dev-ruby/tty-reader-0.9.0 b/metadata/md5-cache/dev-ruby/tty-reader-0.9.0 index cde738ec8f0a..c8eae9a6a75d 100644 --- a/metadata/md5-cache/dev-ruby/tty-reader-0.9.0 +++ b/metadata/md5-cache/dev-ruby/tty-reader-0.9.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby26(-)] =dev-ruby/wisper-2*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby27(-)] =dev-ruby/wisper-2*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby30(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby30(-)] =dev-ruby/wisper-2*[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby26(-)] =dev-ruby/wisper-2*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby27(-)] =dev-ruby/wisper-2*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby30(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby30(-)] =dev-ruby/wisper-2*[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby31(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby31(-)] =dev-ruby/wisper-2*[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Methods for processing keyboard input in character, line and multiline modes EAPI=7 HOMEPAGE=https://github.com/piotrmurach/tty-reader -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby26(-)] =dev-ruby/wisper-2*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby27(-)] =dev-ruby/wisper-2*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby30(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby30(-)] =dev-ruby/wisper-2*[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby26(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby26(-)] =dev-ruby/wisper-2*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby27(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby27(-)] =dev-ruby/wisper-2*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby30(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby30(-)] =dev-ruby/wisper-2*[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/tty-cursor-0.7:0[ruby_targets_ruby31(-)] >=dev-ruby/tty-screen-0.8:0[ruby_targets_ruby31(-)] =dev-ruby/wisper-2*[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-reader/archive/v0.9.0.tar.gz -> tty-reader-0.9.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=5e21c2291684ae8c39f9b5ac2b81e6d8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=ff9c05974ba7190b14a4ff3d438d6ef2 diff --git a/metadata/md5-cache/dev-ruby/tty-screen-0.7.1 b/metadata/md5-cache/dev-ruby/tty-screen-0.7.1 deleted file mode 100644 index 3d0872fa3752..000000000000 --- a/metadata/md5-cache/dev-ruby/tty-screen-0.7.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( 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_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=Terminal screen size detection which works on Linux, OS X and Windows/Cygwin -EAPI=7 -HOMEPAGE=https://github.com/piotrmurach/tty-screen -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/piotrmurach/tty-screen/archive/v0.7.1.tar.gz -> tty-screen-0.7.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=6226a66c6adb0b692e0311c402350664 diff --git a/metadata/md5-cache/dev-ruby/tty-screen-0.8.1 b/metadata/md5-cache/dev-ruby/tty-screen-0.8.1 index 989399cf9dc6..c633f07c2feb 100644 --- a/metadata/md5-cache/dev-ruby/tty-screen-0.8.1 +++ b/metadata/md5-cache/dev-ruby/tty-screen-0.8.1 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Terminal screen size detection which works on Linux, OS X and Windows/Cygwin EAPI=7 HOMEPAGE=https://github.com/piotrmurach/tty-screen -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-screen/archive/v0.8.1.tar.gz -> tty-screen-0.8.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=d5114cbcd8de42d58427cb6e9e780247 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=05b34eb90e2ab6a9383c8a4197589747 diff --git a/metadata/md5-cache/dev-ruby/tty-which-0.4.2 b/metadata/md5-cache/dev-ruby/tty-which-0.4.2 deleted file mode 100644 index 8dc76a0ec787..000000000000 --- a/metadata/md5-cache/dev-ruby/tty-which-0.4.2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -DESCRIPTION=Platform independent implementation of Unix which command -EAPI=7 -HOMEPAGE=https://github.com/piotrmurach/tty-which -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/piotrmurach/tty-which/archive/v0.4.2.tar.gz -> tty-which-0.4.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=bc0fb330e135d13abdc8c20e3830aa51 diff --git a/metadata/md5-cache/dev-ruby/tty-which-0.5.0 b/metadata/md5-cache/dev-ruby/tty-which-0.5.0 index 655435b1a2c4..6b032ee32d88 100644 --- a/metadata/md5-cache/dev-ruby/tty-which-0.5.0 +++ b/metadata/md5-cache/dev-ruby/tty-which-0.5.0 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Platform independent implementation of Unix which command EAPI=8 HOMEPAGE=https://github.com/piotrmurach/tty-which -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~amd64 ~riscv LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-which/archive/v0.5.0.tar.gz -> tty-which-0.5.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=f814a0f85ee6e0a3df2f84e6868cd4d9 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=6f263e8b0f01d9bc59e2b46ef31e0f07 diff --git a/metadata/md5-cache/dev-ruby/turbolinks-5.2.1 b/metadata/md5-cache/dev-ruby/turbolinks-5.2.1 index 997bbf5497b2..f42190f511f5 100644 --- a/metadata/md5-cache/dev-ruby/turbolinks-5.2.1 +++ b/metadata/md5-cache/dev-ruby/turbolinks-5.2.1 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) DESCRIPTION=Makes following links in your web application faster EAPI=7 HOMEPAGE=https://github.com/rails/turbolinks -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 doc test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/turbolinks-5.2.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ade34c76c0dc57c51f02a615c82ee5ad +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=d4d796c4be21bdd6e0e0b866c7212e67 diff --git a/metadata/md5-cache/dev-ruby/turbolinks-source-5.2.0 b/metadata/md5-cache/dev-ruby/turbolinks-source-5.2.0 index cb7c6c8a5216..3825b6d4e942 100644 --- a/metadata/md5-cache/dev-ruby/turbolinks-source-5.2.0 +++ b/metadata/md5-cache/dev-ruby/turbolinks-source-5.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/turbolinks-source-5.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3c3f60f8d399cf7f8e83e89d9de3c3f6 diff --git a/metadata/md5-cache/dev-util/cucumber-messages-17.0.0 b/metadata/md5-cache/dev-ruby/turbolinks-source-5.2.0-r1 similarity index 56% rename from metadata/md5-cache/dev-util/cucumber-messages-17.0.0 rename to metadata/md5-cache/dev-ruby/turbolinks-source-5.2.0-r1 index 0baf40e25813..69db5fe0be16 100644 --- a/metadata/md5-cache/dev-util/cucumber-messages-17.0.0 +++ b/metadata/md5-cache/dev-ruby/turbolinks-source-5.2.0-r1 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -DESCRIPTION=Protocol Buffer messages for Cucumber's inter-process communication -EAPI=7 -HOMEPAGE=https://cucumber.io/ -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +DESCRIPTION=Turbolinks JavaScript assets +EAPI=8 +HOMEPAGE=https://github.com/rails/turbolinks-source-gem +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test KEYWORDS=~amd64 LICENSE=MIT RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=17 -SRC_URI=https://rubygems.org/gems/cucumber-messages-17.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=5efd6f3f501f7bf11232158286dc9000 +RESTRICT=!test? ( test ) +SLOT=5 +SRC_URI=https://rubygems.org/gems/turbolinks-source-5.2.0.gem +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=9aab6841a5dcb5b79ae1bad4025d7720 diff --git a/metadata/md5-cache/dev-ruby/twitter-7.0.0-r1 b/metadata/md5-cache/dev-ruby/twitter-7.0.0-r1 index 5726a292867f..9d72e907021c 100644 --- a/metadata/md5-cache/dev-ruby/twitter-7.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/twitter-7.0.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=7 SRC_URI=https://github.com/sferik/twitter/archive/v7.0.0.tar.gz -> twitter-7.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4b47587694be8ff98cb71e24831cf222 diff --git a/metadata/md5-cache/dev-ruby/twitter-text-3.1.0-r1 b/metadata/md5-cache/dev-ruby/twitter-text-3.1.0-r1 index c49bf1adceab..414accbf8330 100644 --- a/metadata/md5-cache/dev-ruby/twitter-text-3.1.0-r1 +++ b/metadata/md5-cache/dev-ruby/twitter-text-3.1.0-r1 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( dev-ruby/idn-ruby[ruby_targets_ruby26(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/idn-ruby[ruby_targets_ruby27(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( >=dev-ruby/multi_json-1.3[ruby_targets_ruby26(-)] >=dev-ruby/nokogiri-1.8.0[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( >=dev-ruby/multi_json-1.3[ruby_targets_ruby27(-)] >=dev-ruby/nokogiri-1.8.0[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( dev-ruby/idn-ruby[ruby_targets_ruby26(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/idn-ruby[ruby_targets_ruby27(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/idn-ruby[ruby_targets_ruby30(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/idn-ruby[ruby_targets_ruby31(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( >=dev-ruby/nokogiri-1.8.0[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( >=dev-ruby/nokogiri-1.8.0[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( >=dev-ruby/nokogiri-1.8.0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/nokogiri-1.8.0[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Text handling for Twitter EAPI=7 HOMEPAGE=https://github.com/twitter/twitter-text -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~amd64 ~riscv LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-ruby/idn-ruby[ruby_targets_ruby26(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/idn-ruby[ruby_targets_ruby27(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) +RDEPEND=ruby_targets_ruby26? ( dev-ruby/idn-ruby[ruby_targets_ruby26(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/idn-ruby[ruby_targets_ruby27(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/idn-ruby[ruby_targets_ruby30(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/idn-ruby[ruby_targets_ruby31(-)] =dev-ruby/unf-0.1*[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3.1 SRC_URI=https://rubygems.org/gems/twitter-text-3.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ef157e517354b9c6d1d15f7171aea5b7 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=b5b719ac9c49b91f00ccf52697d77b08 diff --git a/metadata/md5-cache/dev-ruby/typed-array-0.1.2-r2 b/metadata/md5-cache/dev-ruby/typed-array-0.1.2-r2 index 8de2ffc69656..bba4c3f75346 100644 --- a/metadata/md5-cache/dev-ruby/typed-array-0.1.2-r2 +++ b/metadata/md5-cache/dev-ruby/typed-array-0.1.2-r2 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Gem provides enforced-type functionality to Arrays EAPI=8 HOMEPAGE=https://github.com/yaauie/typed-array -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~amd64 ~riscv ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/typed-array-0.1.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=72b438968ddd59c0b77b4df38e0da826 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=56fef631f87b7943bb5c5972d4950e40 diff --git a/metadata/md5-cache/dev-ruby/typeprof-0.13.0 b/metadata/md5-cache/dev-ruby/typeprof-0.13.0 deleted file mode 100644 index 52a2613be2b9..000000000000 --- a/metadata/md5-cache/dev-ruby/typeprof-0.13.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby27? ( >=dev-ruby/rbs-1.0.0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/rbs-1.0.0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -DESCRIPTION=Performs a type analysis of non-annotated Ruby code -EAPI=7 -HOMEPAGE=https://github.com/ruby/typeprof -IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby27? ( >=dev-ruby/rbs-1.0.0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/rbs-1.0.0[ruby_targets_ruby30(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ruby/typeprof/archive/v0.13.0.tar.gz -> typeprof-0.13.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=8c0d4ee9b33e08b27f2ccaf6a3fedf91 diff --git a/metadata/md5-cache/dev-ruby/typeprof-0.14.1 b/metadata/md5-cache/dev-ruby/typeprof-0.14.1 deleted file mode 100644 index 196bd31ef872..000000000000 --- a/metadata/md5-cache/dev-ruby/typeprof-0.14.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby27? ( >=dev-ruby/rbs-1.2.0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/rbs-1.2.0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -DESCRIPTION=Performs a type analysis of non-annotated Ruby code -EAPI=7 -HOMEPAGE=https://github.com/ruby/typeprof -IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby27? ( >=dev-ruby/rbs-1.2.0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/rbs-1.2.0[ruby_targets_ruby30(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ruby/typeprof/archive/v0.14.1.tar.gz -> typeprof-0.14.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=0ce381da8b61269712931e598c350cba diff --git a/metadata/md5-cache/dev-ruby/typeprof-0.15.1 b/metadata/md5-cache/dev-ruby/typeprof-0.15.1 deleted file mode 100644 index 75042f854276..000000000000 --- a/metadata/md5-cache/dev-ruby/typeprof-0.15.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby27? ( >=dev-ruby/rbs-1.3.1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/rbs-1.3.1[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -DESCRIPTION=Performs a type analysis of non-annotated Ruby code -EAPI=8 -HOMEPAGE=https://github.com/ruby/typeprof -IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby27? ( >=dev-ruby/rbs-1.3.1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/rbs-1.3.1[ruby_targets_ruby30(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ruby/typeprof/archive/v0.15.1.tar.gz -> typeprof-0.15.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=193b5428fdfe36ed7931a62bd72001b5 diff --git a/metadata/md5-cache/dev-ruby/typeprof-0.15.2 b/metadata/md5-cache/dev-ruby/typeprof-0.15.2 index 97d546770cb2..a10d6b1327d6 100644 --- a/metadata/md5-cache/dev-ruby/typeprof-0.15.2 +++ b/metadata/md5-cache/dev-ruby/typeprof-0.15.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/typeprof/archive/v0.15.2.tar.gz -> typeprof-0.15.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=193b5428fdfe36ed7931a62bd72001b5 diff --git a/metadata/md5-cache/dev-ruby/typeprof-0.21.2 b/metadata/md5-cache/dev-ruby/typeprof-0.21.2 index 566dc085b3aa..d3fe5ad80c8d 100644 --- a/metadata/md5-cache/dev-ruby/typeprof-0.21.2 +++ b/metadata/md5-cache/dev-ruby/typeprof-0.21.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/typeprof/archive/v0.21.2.tar.gz -> typeprof-0.21.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c0d7460c0fd043543cf3b05c20526844 diff --git a/metadata/md5-cache/dev-ruby/typhoeus-1.4.0 b/metadata/md5-cache/dev-ruby/typhoeus-1.4.0 index 557e82383516..cfa3c1bbf495 100644 --- a/metadata/md5-cache/dev-ruby/typhoeus-1.4.0 +++ b/metadata/md5-cache/dev-ruby/typhoeus-1.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/typhoeus-1.4.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f656db08dae2b723db2552ef645b9895 diff --git a/metadata/md5-cache/dev-ruby/tzinfo-1.2.8 b/metadata/md5-cache/dev-ruby/tzinfo-1.2.8 index 8ec6f8850a70..2b28bb113c91 100644 --- a/metadata/md5-cache/dev-ruby/tzinfo-1.2.8 +++ b/metadata/md5-cache/dev-ruby/tzinfo-1.2.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/tzinfo-1.2.8.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=05e06b48c46b0fb7fb03636301875c07 diff --git a/metadata/md5-cache/dev-ruby/tzinfo-1.2.9 b/metadata/md5-cache/dev-ruby/tzinfo-1.2.9 index 85f625104711..9de0f215c79f 100644 --- a/metadata/md5-cache/dev-ruby/tzinfo-1.2.9 +++ b/metadata/md5-cache/dev-ruby/tzinfo-1.2.9 @@ -5,12 +5,12 @@ DESCRIPTION=Daylight-savings aware timezone library EAPI=8 HOMEPAGE=https://tzinfo.github.io/ IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=sys-libs/timezone-data ruby_targets_ruby26? ( >=dev-ruby/thread_safe-0.1:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/thread_safe-0.1:0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/thread_safe-0.1:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/tzinfo-1.2.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=2fd7cd56705408bd8f054aeebd1c7f07 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=0a7046099d2eab0643e904d72fa4c5ef diff --git a/metadata/md5-cache/dev-ruby/tzinfo-2.0.4 b/metadata/md5-cache/dev-ruby/tzinfo-2.0.4 index 869617e00a0e..469d395cdf62 100644 --- a/metadata/md5-cache/dev-ruby/tzinfo-2.0.4 +++ b/metadata/md5-cache/dev-ruby/tzinfo-2.0.4 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/bundler[ruby_targets_ruby26(-)] dev-ruby/minitest:5[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-ruby/minitest:5[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/bundler[ruby_targets_ruby30(-)] dev-ruby/minitest:5[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/bundler[ruby_targets_ruby26(-)] dev-ruby/minitest:5[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-ruby/minitest:5[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/bundler[ruby_targets_ruby30(-)] dev-ruby/minitest:5[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/bundler[ruby_targets_ruby31(-)] dev-ruby/minitest:5[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( sys-libs/timezone-data ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=test? ( sys-libs/timezone-data ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Daylight-savings aware timezone library EAPI=7 HOMEPAGE=https://tzinfo.github.io/ -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT -RDEPEND=sys-libs/timezone-data ruby_targets_ruby26? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=sys-libs/timezone-data ruby_targets_ruby26? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/tzinfo/tzinfo/archive/v2.0.4.tar.gz -> tzinfo-2.0.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=1c0a3eabbd6825f18d3f0460c17648c3 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=d0d4ea60e62eb3133712a5e4ff66825b diff --git a/metadata/md5-cache/dev-ruby/uconv-0.6.1-r3 b/metadata/md5-cache/dev-ruby/uconv-0.6.1-r3 index 2a1bdbe06eda..fe83a576a871 100644 --- a/metadata/md5-cache/dev-ruby/uconv-0.6.1-r3 +++ b/metadata/md5-cache/dev-ruby/uconv-0.6.1-r3 @@ -11,5 +11,5 @@ RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-la REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) SLOT=0 SRC_URI=http://www.yoshidam.net/uconv-0.6.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=59a8516e197b3457c1be242dd7468c80 diff --git a/metadata/md5-cache/dev-ruby/uglifier-4.2.0-r1 b/metadata/md5-cache/dev-ruby/uglifier-4.2.0-r1 index 18ea100da755..0db6a071808e 100644 --- a/metadata/md5-cache/dev-ruby/uglifier-4.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/uglifier-4.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/lautis/uglifier/archive/v4.2.0.tar.gz -> uglifier-4.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9b0115e6238ff0bb28fbc261434efbe5 diff --git a/metadata/md5-cache/dev-ruby/ultraviolet-1.0.1-r1 b/metadata/md5-cache/dev-ruby/ultraviolet-1.0.1-r1 index 1397f945aca5..2f0351dec4c2 100644 --- a/metadata/md5-cache/dev-ruby/ultraviolet-1.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/ultraviolet-1.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ultraviolet-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c164f78dc8fd28d1025f07d47ede8939 diff --git a/metadata/md5-cache/dev-ruby/unf-0.1.4-r1 b/metadata/md5-cache/dev-ruby/unf-0.1.4-r1 index aef679d19f5d..80bbb6a4e0f7 100644 --- a/metadata/md5-cache/dev-ruby/unf-0.1.4-r1 +++ b/metadata/md5-cache/dev-ruby/unf-0.1.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/unf-0.1.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=57ffd7a2adc533289d6e1cff69a6d1f6 diff --git a/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.7-r1 b/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.7-r1 index 2116475bc7ac..a4ddae898529 100644 --- a/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.7-r1 +++ b/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.7-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/unf_ext-0.0.7.7.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1fd8143c194299377bc513a925f974e6 diff --git a/metadata/md5-cache/dev-ruby/unf_ext-0.0.8 b/metadata/md5-cache/dev-ruby/unf_ext-0.0.8 index 233a126b1405..8fc17121272f 100644 --- a/metadata/md5-cache/dev-ruby/unf_ext-0.0.8 +++ b/metadata/md5-cache/dev-ruby/unf_ext-0.0.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/unf_ext-0.0.8.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=556285660b2834fca53709b1fa4c7540 diff --git a/metadata/md5-cache/dev-ruby/unf_ext-0.0.8.1 b/metadata/md5-cache/dev-ruby/unf_ext-0.0.8.1 index 235ea1a7db96..27cd938bd770 100644 --- a/metadata/md5-cache/dev-ruby/unf_ext-0.0.8.1 +++ b/metadata/md5-cache/dev-ruby/unf_ext-0.0.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/unf_ext-0.0.8.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=aa9994097d31706feb864f7fceefbec7 diff --git a/metadata/md5-cache/dev-ruby/unicode-display_width-1.7.0 b/metadata/md5-cache/dev-ruby/unicode-display_width-1.7.0 index 7c4eb9b2ff7b..3d8abefdc66a 100644 --- a/metadata/md5-cache/dev-ruby/unicode-display_width-1.7.0 +++ b/metadata/md5-cache/dev-ruby/unicode-display_width-1.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/janlelis/unicode-display_width/archive/v1.7.0.tar.gz -> unicode-display_width-1.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=27c62c6e71f8fd8d1b594e7f66d69519 diff --git a/metadata/md5-cache/dev-ruby/unicode-display_width-2.1.0 b/metadata/md5-cache/dev-ruby/unicode-display_width-2.1.0 index 4ca4b7ecc15e..b74c6a7dbc2b 100644 --- a/metadata/md5-cache/dev-ruby/unicode-display_width-2.1.0 +++ b/metadata/md5-cache/dev-ruby/unicode-display_width-2.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/janlelis/unicode-display_width/archive/v2.1.0.tar.gz -> unicode-display_width-2.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=639151bf30300a42f77ea02fb5ddadfd diff --git a/metadata/md5-cache/dev-ruby/unindent-1.0-r1 b/metadata/md5-cache/dev-ruby/unindent-1.0-r1 index c89879e0ce68..bd45e238d4b6 100644 --- a/metadata/md5-cache/dev-ruby/unindent-1.0-r1 +++ b/metadata/md5-cache/dev-ruby/unindent-1.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/unindent-1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=869efbc64797ed8181044703a714268a diff --git a/metadata/md5-cache/dev-ruby/uuidtools-2.2.0 b/metadata/md5-cache/dev-ruby/uuidtools-2.2.0 index 89555afea61e..f730f81689e5 100644 --- a/metadata/md5-cache/dev-ruby/uuidtools-2.2.0 +++ b/metadata/md5-cache/dev-ruby/uuidtools-2.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/uuidtools-2.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=32f245f22b1dddb790c3115711ea6877 diff --git a/metadata/md5-cache/dev-ruby/vagrant_cloud-2.0.3-r1 b/metadata/md5-cache/dev-ruby/vagrant_cloud-2.0.3-r1 index 59b02d4525d5..cda77bb92b15 100644 --- a/metadata/md5-cache/dev-ruby/vagrant_cloud-2.0.3-r1 +++ b/metadata/md5-cache/dev-ruby/vagrant_cloud-2.0.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/hashicorp/vagrant_cloud/archive/v2.0.3.tar.gz -> vagrant_cloud-2.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=24c85ccd9422c1337ae317921eb27fb2 diff --git a/metadata/md5-cache/dev-ruby/vagrant_cloud-3.0.2 b/metadata/md5-cache/dev-ruby/vagrant_cloud-3.0.2 index a17e19318697..10e603cfd337 100644 --- a/metadata/md5-cache/dev-ruby/vagrant_cloud-3.0.2 +++ b/metadata/md5-cache/dev-ruby/vagrant_cloud-3.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/hashicorp/vagrant_cloud/archive/v3.0.2.tar.gz -> vagrant_cloud-3.0.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1bf0098fd198cace20c0f1ff1c719435 diff --git a/metadata/md5-cache/dev-ruby/vagrant_cloud-3.0.5 b/metadata/md5-cache/dev-ruby/vagrant_cloud-3.0.5 index 07ae3f617754..99552e1271d2 100644 --- a/metadata/md5-cache/dev-ruby/vagrant_cloud-3.0.5 +++ b/metadata/md5-cache/dev-ruby/vagrant_cloud-3.0.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/hashicorp/vagrant_cloud/archive/v3.0.5.tar.gz -> vagrant_cloud-3.0.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=45130ac9e43a3e2536954494212691cb diff --git a/metadata/md5-cache/dev-ruby/vcard-0.3.0 b/metadata/md5-cache/dev-ruby/vcard-0.3.0 index 6cc6431948a4..6d7c6f778200 100644 --- a/metadata/md5-cache/dev-ruby/vcard-0.3.0 +++ b/metadata/md5-cache/dev-ruby/vcard-0.3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/vcard-0.3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a034657c02551445be09e4599cf7881b diff --git a/metadata/md5-cache/dev-ruby/vcard-0.3.0-r1 b/metadata/md5-cache/dev-ruby/vcard-0.3.0-r1 index d0e68953c95c..84c159f199eb 100644 --- a/metadata/md5-cache/dev-ruby/vcard-0.3.0-r1 +++ b/metadata/md5-cache/dev-ruby/vcard-0.3.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/vcard-0.3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f8d683e56e49e36dc57da1a10df1f88d diff --git a/metadata/md5-cache/dev-ruby/vcr-4.0.0 b/metadata/md5-cache/dev-ruby/vcr-4.0.0 index 68acda991336..e611581b1972 100644 --- a/metadata/md5-cache/dev-ruby/vcr-4.0.0 +++ b/metadata/md5-cache/dev-ruby/vcr-4.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=3 SRC_URI=https://github.com/vcr/vcr/archive/v4.0.0.tar.gz -> vcr-4.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=88030277d71136d556fda8610ebf4504 diff --git a/metadata/md5-cache/dev-ruby/vcr-5.1.0 b/metadata/md5-cache/dev-ruby/vcr-5.1.0 index bffb857c00e7..320ee5f3c8ce 100644 --- a/metadata/md5-cache/dev-ruby/vcr-5.1.0 +++ b/metadata/md5-cache/dev-ruby/vcr-5.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=https://github.com/vcr/vcr/archive/v5.1.0.tar.gz -> vcr-5.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f1b8b928e4532f65d831ae7aef7b846d diff --git a/metadata/md5-cache/dev-ruby/vcr-6.0.0 b/metadata/md5-cache/dev-ruby/vcr-6.0.0 index a23894deb3d2..39ba54fb650f 100644 --- a/metadata/md5-cache/dev-ruby/vcr-6.0.0 +++ b/metadata/md5-cache/dev-ruby/vcr-6.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) SLOT=6 SRC_URI=https://github.com/vcr/vcr/archive/v6.0.0.tar.gz -> vcr-6.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9572943ed7ba3f6efe85bdc919d20dd1 diff --git a/metadata/md5-cache/dev-ruby/vcr-6.1.0 b/metadata/md5-cache/dev-ruby/vcr-6.1.0 index dc6353637442..9ebb765cbb76 100644 --- a/metadata/md5-cache/dev-ruby/vcr-6.1.0 +++ b/metadata/md5-cache/dev-ruby/vcr-6.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://github.com/vcr/vcr/archive/v6.1.0.tar.gz -> vcr-6.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f10fa75908dccc45a099ffaac87f0188 diff --git a/metadata/md5-cache/dev-ruby/virtus-1.0.5 b/metadata/md5-cache/dev-ruby/virtus-1.0.5 index c4435aa0801b..e9aeaf06b10b 100644 --- a/metadata/md5-cache/dev-ruby/virtus-1.0.5 +++ b/metadata/md5-cache/dev-ruby/virtus-1.0.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/virtus-1.0.5.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=024b8e9733798ba6e425c0e828f89739 diff --git a/metadata/md5-cache/dev-ruby/vlad-2.7.1 b/metadata/md5-cache/dev-ruby/vlad-2.7.1 index bd0261da8315..236d18292bca 100644 --- a/metadata/md5-cache/dev-ruby/vlad-2.7.1 +++ b/metadata/md5-cache/dev-ruby/vlad-2.7.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/vlad-2.7.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=42867b8a287ec9840ab9e89a473fcae6 diff --git a/metadata/md5-cache/dev-ruby/warden-1.2.9 b/metadata/md5-cache/dev-ruby/warden-1.2.9 index d0e52f1e4c2c..c297437aeacc 100644 --- a/metadata/md5-cache/dev-ruby/warden-1.2.9 +++ b/metadata/md5-cache/dev-ruby/warden-1.2.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/wardencommunity/warden/archive/v1.2.9.tar.gz -> warden-1.2.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=adc112a27d299b7fc7db9ac8f7c7bfb4 diff --git a/metadata/md5-cache/dev-ruby/warden-1.2.9-r1 b/metadata/md5-cache/dev-ruby/warden-1.2.9-r1 index 4cfbdacf853e..e85c131e26b0 100644 --- a/metadata/md5-cache/dev-ruby/warden-1.2.9-r1 +++ b/metadata/md5-cache/dev-ruby/warden-1.2.9-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/wardencommunity/warden/archive/v1.2.9.tar.gz -> warden-1.2.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1e86f3966edacb23158cf347f8789d8d diff --git a/metadata/md5-cache/dev-ruby/web-console-3.7.0 b/metadata/md5-cache/dev-ruby/web-console-3.7.0 index 8b1e0c7e2993..33c94822703a 100644 --- a/metadata/md5-cache/dev-ruby/web-console-3.7.0 +++ b/metadata/md5-cache/dev-ruby/web-console-3.7.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rails/web-console/archive/v3.7.0.tar.gz -> web-console-3.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ed558ba797cbccafc3e792eb3ac6feae diff --git a/metadata/md5-cache/dev-ruby/web-console-4.2.0 b/metadata/md5-cache/dev-ruby/web-console-4.2.0 index 9351da24788d..355fb9226bf2 100644 --- a/metadata/md5-cache/dev-ruby/web-console-4.2.0 +++ b/metadata/md5-cache/dev-ruby/web-console-4.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/rails/web-console/archive/v4.2.0.tar.gz -> web-console-4.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=498142a8a0c9c38e2a172b5c6ca1c093 diff --git a/metadata/md5-cache/dev-ruby/webmock-3.14.0 b/metadata/md5-cache/dev-ruby/webmock-3.14.0 index 692cbc08ff51..13fac745eb75 100644 --- a/metadata/md5-cache/dev-ruby/webmock-3.14.0 +++ b/metadata/md5-cache/dev-ruby/webmock-3.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/webmock-3.14.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e78577ebc0306eb1c546f0b98676cd46 diff --git a/metadata/md5-cache/dev-ruby/webrick-1.7.0 b/metadata/md5-cache/dev-ruby/webrick-1.7.0 index b34dd524864b..4cf26d49d588 100644 --- a/metadata/md5-cache/dev-ruby/webrick-1.7.0 +++ b/metadata/md5-cache/dev-ruby/webrick-1.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/webrick/archive/v1.7.0.tar.gz -> webrick-1.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=68796ef1304857b9e62648cadaa7a965 diff --git a/metadata/md5-cache/dev-ruby/webrick-1.7.0-r1 b/metadata/md5-cache/dev-ruby/webrick-1.7.0-r1 index 22eb6504a4fb..afff75e8079c 100644 --- a/metadata/md5-cache/dev-ruby/webrick-1.7.0-r1 +++ b/metadata/md5-cache/dev-ruby/webrick-1.7.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/webrick/archive/v1.7.0.tar.gz -> webrick-1.7.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a5546812a6e5698a20785398602a655a diff --git a/metadata/md5-cache/dev-ruby/webrobots-0.1.2-r2 b/metadata/md5-cache/dev-ruby/webrobots-0.1.2-r2 index e9192dbeb8ee..a3cb3ffc8670 100644 --- a/metadata/md5-cache/dev-ruby/webrobots-0.1.2-r2 +++ b/metadata/md5-cache/dev-ruby/webrobots-0.1.2-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/webrobots-0.1.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3de7a6b368714d1b0e81c39b433e118e diff --git a/metadata/md5-cache/dev-ruby/websocket-1.2.9-r1 b/metadata/md5-cache/dev-ruby/websocket-1.2.9-r1 index 0a3cf520a278..f8d4d96c3c7a 100644 --- a/metadata/md5-cache/dev-ruby/websocket-1.2.9-r1 +++ b/metadata/md5-cache/dev-ruby/websocket-1.2.9-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/websocket-1.2.9.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d4a4a04b7ff19fd2f1d8f347dc9906d9 diff --git a/metadata/md5-cache/dev-ruby/websocket-driver-0.6.5-r1 b/metadata/md5-cache/dev-ruby/websocket-driver-0.6.5-r1 index e6d3377ee043..dd33b7b960bc 100644 --- a/metadata/md5-cache/dev-ruby/websocket-driver-0.6.5-r1 +++ b/metadata/md5-cache/dev-ruby/websocket-driver-0.6.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/faye/websocket-driver-ruby/archive/0.6.5.tar.gz -> websocket-driver-0.6.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8c91f1c3a4a6480a69c09ac38ab2988b diff --git a/metadata/md5-cache/dev-ruby/websocket-driver-0.7.5 b/metadata/md5-cache/dev-ruby/websocket-driver-0.7.5 index 8df0d4e75ec6..bc713ef35b2e 100644 --- a/metadata/md5-cache/dev-ruby/websocket-driver-0.7.5 +++ b/metadata/md5-cache/dev-ruby/websocket-driver-0.7.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0.7 SRC_URI=https://github.com/faye/websocket-driver-ruby/archive/0.7.5.tar.gz -> websocket-driver-0.7.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2914c101656b7c6edc0e7731252cb580 diff --git a/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.5-r1 b/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.5-r1 index e395365e4cee..adc9634b06b6 100644 --- a/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.5-r1 +++ b/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/faye/websocket-extensions-ruby/archive/0.1.5.tar.gz -> websocket-extensions-0.1.5-r1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5d8acc480fb76d2fdb569c0edfc87a4b diff --git a/metadata/md5-cache/dev-ruby/whole_history_rating-0.1.2-r1 b/metadata/md5-cache/dev-ruby/whole_history_rating-0.1.2-r1 index f57c560cde16..8dab229dab22 100644 --- a/metadata/md5-cache/dev-ruby/whole_history_rating-0.1.2-r1 +++ b/metadata/md5-cache/dev-ruby/whole_history_rating-0.1.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/whole_history_rating-0.1.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=05e35806ffae53e006783e11576c5f3d diff --git a/metadata/md5-cache/dev-ruby/will_paginate-3.3.1 b/metadata/md5-cache/dev-ruby/will_paginate-3.3.1 index 21e80effbf81..42fd6a9b08e3 100644 --- a/metadata/md5-cache/dev-ruby/will_paginate-3.3.1 +++ b/metadata/md5-cache/dev-ruby/will_paginate-3.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/will_paginate-3.3.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ee0caa4f7143457be9fba96672cbadaa diff --git a/metadata/md5-cache/dev-ruby/windows_error-0.1.3 b/metadata/md5-cache/dev-ruby/windows_error-0.1.3 index 946d983da625..ca011b80720e 100644 --- a/metadata/md5-cache/dev-ruby/windows_error-0.1.3 +++ b/metadata/md5-cache/dev-ruby/windows_error-0.1.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0.1 SRC_URI=https://rubygems.org/gems/windows_error-0.1.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=93d69409880ed85ac4e88a3dad8eacde diff --git a/metadata/md5-cache/dev-ruby/windows_error-0.1.4 b/metadata/md5-cache/dev-ruby/windows_error-0.1.4 index 926749af443f..46578f22c593 100644 --- a/metadata/md5-cache/dev-ruby/windows_error-0.1.4 +++ b/metadata/md5-cache/dev-ruby/windows_error-0.1.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0.1 SRC_URI=https://rubygems.org/gems/windows_error-0.1.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dd693a33c99ed3f2858a36f7de6cac81 diff --git a/metadata/md5-cache/dev-ruby/wirble-0.1.3-r5 b/metadata/md5-cache/dev-ruby/wirble-0.1.3-r5 index 5964bc6501b5..2566ba76779f 100644 --- a/metadata/md5-cache/dev-ruby/wirble-0.1.3-r5 +++ b/metadata/md5-cache/dev-ruby/wirble-0.1.3-r5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/wirble-0.1.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7270a9d832a4baae6e8d9190846b3364 diff --git a/metadata/md5-cache/dev-ruby/wisper-2.0.1 b/metadata/md5-cache/dev-ruby/wisper-2.0.1 index e45d8ed20e15..0535c173c868 100644 --- a/metadata/md5-cache/dev-ruby/wisper-2.0.1 +++ b/metadata/md5-cache/dev-ruby/wisper-2.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/wisper-2.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=339fbc9eeb4593df03aec725cf6a32ea diff --git a/metadata/md5-cache/dev-ruby/x25519-1.0.9 b/metadata/md5-cache/dev-ruby/x25519-1.0.9 index 9b614f590e76..87292719a5d1 100644 --- a/metadata/md5-cache/dev-ruby/x25519-1.0.9 +++ b/metadata/md5-cache/dev-ruby/x25519-1.0.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/crypto-rb/x25519/archive/v1.0.9.tar.gz -> x25519-1.0.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=df76c69f0e2e1b4eafe99749e118664a diff --git a/metadata/md5-cache/dev-ruby/xdr-3.0.1 b/metadata/md5-cache/dev-ruby/xdr-3.0.1 index 91d7fa2a4b27..a102f9df4fa3 100644 --- a/metadata/md5-cache/dev-ruby/xdr-3.0.1 +++ b/metadata/md5-cache/dev-ruby/xdr-3.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3.0.1 SRC_URI=https://rubygems.org/gems/xdr-3.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4e2501bdbd886988207bbc9a9e57d5f2 diff --git a/metadata/md5-cache/dev-ruby/xdr-3.0.2 b/metadata/md5-cache/dev-ruby/xdr-3.0.2 index 785b6cdbbf88..48fb0a2eb315 100644 --- a/metadata/md5-cache/dev-ruby/xdr-3.0.2 +++ b/metadata/md5-cache/dev-ruby/xdr-3.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/astroband/ruby-xdr/archive/v3.0.2.tar.gz -> xdr-3.0.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6aaf286deb8592be73eccd1fd109aa1e diff --git a/metadata/md5-cache/dev-ruby/xdr-3.0.3 b/metadata/md5-cache/dev-ruby/xdr-3.0.3 index c39e1396f880..6ad434029692 100644 --- a/metadata/md5-cache/dev-ruby/xdr-3.0.3 +++ b/metadata/md5-cache/dev-ruby/xdr-3.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/astroband/ruby-xdr/archive/v3.0.3.tar.gz -> xdr-3.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9777be2b42ef88a333023d23735ea89c diff --git a/metadata/md5-cache/dev-ruby/xml-simple-1.1.9 b/metadata/md5-cache/dev-ruby/xml-simple-1.1.9 index 545872d20790..56e5f6d394f9 100644 --- a/metadata/md5-cache/dev-ruby/xml-simple-1.1.9 +++ b/metadata/md5-cache/dev-ruby/xml-simple-1.1.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/maik/xml-simple/archive/7b8bdf7b33ab872bb4d1fb8eeecba5c5e1a4a421.tar.gz -> xml-simple-1.1.9.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0a140309e98e902f6432c18b8305215b diff --git a/metadata/md5-cache/dev-ruby/xmlrpc-0.3.2-r1 b/metadata/md5-cache/dev-ruby/xmlrpc-0.3.2-r1 index 2acc65ac844f..3b0ca6521c09 100644 --- a/metadata/md5-cache/dev-ruby/xmlrpc-0.3.2-r1 +++ b/metadata/md5-cache/dev-ruby/xmlrpc-0.3.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/xmlrpc/archive/v0.3.2.tar.gz -> xmlrpc-0.3.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f5ac87e0577d937fd642d6fb57280dcd diff --git a/metadata/md5-cache/dev-ruby/xpath-3.2.0 b/metadata/md5-cache/dev-ruby/xpath-3.2.0 index c3a02b95bdee..26e9d07e7174 100644 --- a/metadata/md5-cache/dev-ruby/xpath-3.2.0 +++ b/metadata/md5-cache/dev-ruby/xpath-3.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/xpath-3.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=46b6f5e8b5e2fd4e41948eba1e4e09a0 diff --git a/metadata/md5-cache/dev-ruby/xpath-3.2.0-r1 b/metadata/md5-cache/dev-ruby/xpath-3.2.0-r1 index ab199f147417..7eabf8b80e0a 100644 --- a/metadata/md5-cache/dev-ruby/xpath-3.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/xpath-3.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/xpath-3.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d63225bcfd3c878e5f921ff94ed82ef9 diff --git a/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.2 b/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.2 index 5c9e42f5dc95..7c9f26a7a64d 100644 --- a/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.2 +++ b/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/yajl-ruby-1.4.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=752b4aa8d0f1200c006aeb18a3776438 diff --git a/metadata/md5-cache/dev-ruby/yard-0.9.26 b/metadata/md5-cache/dev-ruby/yard-0.9.26 index c379fe16b157..fb16db4c4cc8 100644 --- a/metadata/md5-cache/dev-ruby/yard-0.9.26 +++ b/metadata/md5-cache/dev-ruby/yard-0.9.26 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/lsegal/yard/archive/v0.9.26.tar.gz -> yard-0.9.26-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=16f7b76acd160ae011f97273b2e8af15 diff --git a/metadata/md5-cache/dev-ruby/yard-0.9.27 b/metadata/md5-cache/dev-ruby/yard-0.9.27 index d48f3e719105..d1170dc2983b 100644 --- a/metadata/md5-cache/dev-ruby/yard-0.9.27 +++ b/metadata/md5-cache/dev-ruby/yard-0.9.27 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/lsegal/yard/archive/v0.9.27.tar.gz -> yard-0.9.27-git.tgz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b1c1ea04d3c5d761a4e891ab3dd66eaf diff --git a/metadata/md5-cache/dev-ruby/zeitwerk-2.4.2 b/metadata/md5-cache/dev-ruby/zeitwerk-2.4.2 index 6e965d01e7b0..f305cf38d502 100644 --- a/metadata/md5-cache/dev-ruby/zeitwerk-2.4.2 +++ b/metadata/md5-cache/dev-ruby/zeitwerk-2.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/fxn/zeitwerk/archive/v2.4.2.tar.gz -> zeitwerk-2.4.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f3489ff427fdf5bfd7530ef12e032364 diff --git a/metadata/md5-cache/dev-ruby/zeitwerk-2.5.4 b/metadata/md5-cache/dev-ruby/zeitwerk-2.5.4 index c85247743e7e..6066802fdfb7 100644 --- a/metadata/md5-cache/dev-ruby/zeitwerk-2.5.4 +++ b/metadata/md5-cache/dev-ruby/zeitwerk-2.5.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/fxn/zeitwerk/archive/v2.5.4.tar.gz -> zeitwerk-2.5.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fc73d57f6c7d944f1e53f6a0ae188294 diff --git a/metadata/md5-cache/dev-ruby/zentest-4.12.0 b/metadata/md5-cache/dev-ruby/zentest-4.12.0 index e511db6ce7de..8d6ce16b2de3 100644 --- a/metadata/md5-cache/dev-ruby/zentest-4.12.0 +++ b/metadata/md5-cache/dev-ruby/zentest-4.12.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ZenTest-4.12.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b1c56094b493fe627f5e38e55204f4ed diff --git a/metadata/md5-cache/dev-ruby/zentest-4.12.1 b/metadata/md5-cache/dev-ruby/zentest-4.12.1 index d75427f35c96..ed886e3e48ad 100644 --- a/metadata/md5-cache/dev-ruby/zentest-4.12.1 +++ b/metadata/md5-cache/dev-ruby/zentest-4.12.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ru RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ZenTest-4.12.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=20f43425213f40ae916e600956d47628 diff --git a/metadata/md5-cache/dev-scheme/Manifest.gz b/metadata/md5-cache/dev-scheme/Manifest.gz index 8ba386f23a0e..78489731568a 100644 Binary files a/metadata/md5-cache/dev-scheme/Manifest.gz and b/metadata/md5-cache/dev-scheme/Manifest.gz differ diff --git a/metadata/md5-cache/dev-scheme/bigloo-4.4c_p4-r1 b/metadata/md5-cache/dev-scheme/bigloo-4.4c_p4-r1 index 14a32c507ac1..216898bad319 100644 --- a/metadata/md5-cache/dev-scheme/bigloo-4.4c_p4-r1 +++ b/metadata/md5-cache/dev-scheme/bigloo-4.4c_p4-r1 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/boehm-gc[threads] dev-libs/libpcre2:= dev-libs/libunistring:= d REQUIRED_USE=flac? ( alsa ) mp3? ( alsa ) SLOT=0 SRC_URI=ftp://ftp-sop.inria.fr/indes/fp/Bigloo/bigloo-4.4c-4.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5ea5c3b7f19fcbddbb4b8a12bc397818 diff --git a/metadata/md5-cache/dev-scheme/gambit-4.8.8-r2 b/metadata/md5-cache/dev-scheme/gambit-4.8.8-r2 index a745dbf262b3..99d317ba1305 100644 --- a/metadata/md5-cache/dev-scheme/gambit-4.8.8-r2 +++ b/metadata/md5-cache/dev-scheme/gambit-4.8.8-r2 @@ -10,5 +10,5 @@ LICENSE=|| ( Apache-2.0 LGPL-2.1 ) RDEPEND=ssl? ( dev-libs/openssl:0= ) SLOT=0 SRC_URI=http://www-labs.iro.umontreal.ca/~gambit/download/gambit/v4.8/source/gambit-v4_8_8.tgz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=03b1e7deebb9c64232f7a3f4ce6ecef5 diff --git a/metadata/md5-cache/dev-scheme/gambit-4.9.3-r2 b/metadata/md5-cache/dev-scheme/gambit-4.9.3-r2 index 65b4c01839f7..f72aa7b2df3d 100644 --- a/metadata/md5-cache/dev-scheme/gambit-4.9.3-r2 +++ b/metadata/md5-cache/dev-scheme/gambit-4.9.3-r2 @@ -10,5 +10,5 @@ LICENSE=|| ( Apache-2.0 LGPL-2.1 ) RDEPEND=ssl? ( dev-libs/openssl:0= ) SLOT=0 SRC_URI=http://www-labs.iro.umontreal.ca/~gambit/download/gambit/v4.9/source/gambit-v4_9_3.tgz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=03b1e7deebb9c64232f7a3f4ce6ecef5 diff --git a/metadata/md5-cache/dev-scheme/gambit-4.9.4 b/metadata/md5-cache/dev-scheme/gambit-4.9.4 index 07d44b039c82..2b833d780c55 100644 --- a/metadata/md5-cache/dev-scheme/gambit-4.9.4 +++ b/metadata/md5-cache/dev-scheme/gambit-4.9.4 @@ -10,5 +10,5 @@ LICENSE=|| ( Apache-2.0 LGPL-2.1 ) RDEPEND=ssl? ( dev-libs/openssl:0= ) SLOT=0 SRC_URI=https://github.com/gambit/gambit/archive/tags/v4.9.4.tar.gz -> gambit-4.9.4.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f117c7ca9bb85f423f46abfa19c312fc diff --git a/metadata/md5-cache/dev-scheme/guile-1.8.8-r4 b/metadata/md5-cache/dev-scheme/guile-1.8.8-r4 index a669b1c7262d..df68611057a0 100644 --- a/metadata/md5-cache/dev-scheme/guile-1.8.8-r4 +++ b/metadata/md5-cache/dev-scheme/guile-1.8.8-r4 @@ -11,5 +11,5 @@ RDEPEND=>=dev-libs/gmp-4.1:0= dev-libs/libltdl:0= sys-devel/gettext sys-libs/ncu RESTRICT=!regex? ( test ) SLOT=12/8 SRC_URI=mirror://gnu/guile/guile-1.8.8.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0d1bba0754b36451add594e654a57eb0 diff --git a/metadata/md5-cache/dev-scheme/scheme48-1.9.2-r2 b/metadata/md5-cache/dev-scheme/scheme48-1.9.2-r2 index 7b673bc8b389..31629191786f 100644 --- a/metadata/md5-cache/dev-scheme/scheme48-1.9.2-r2 +++ b/metadata/md5-cache/dev-scheme/scheme48-1.9.2-r2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=https://www.s48.org/1.9.2/scheme48-1.9.2.tgz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=85251a10e2233507cac3c3482896efb8 diff --git a/metadata/md5-cache/dev-scheme/skribilo-0.9.5 b/metadata/md5-cache/dev-scheme/skribilo-0.9.5 index 7da4e654955e..8e730a23b51a 100644 --- a/metadata/md5-cache/dev-scheme/skribilo-0.9.5 +++ b/metadata/md5-cache/dev-scheme/skribilo-0.9.5 @@ -11,5 +11,5 @@ RDEPEND=app-text/ghostscript-gpl media-gfx/imagemagick >=dev-scheme/guile-2.0.0: RESTRICT=strip test SLOT=0 SRC_URI=mirror://nongnu/skribilo/skribilo-0.9.5.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=bd6a6ad07293bdb0dcf2e250bc24b7ae diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz index a10f3b896d3f..e8b72d33d304 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/argouml-0.34 b/metadata/md5-cache/dev-util/argouml-0.34 deleted file mode 100644 index 49a85f04fea6..000000000000 --- a/metadata/md5-cache/dev-util/argouml-0.34 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup -DEPEND=app-arch/unzip >=dev-java/java-config-2.2.0-r3 -DESCRIPTION=Modelling tool that helps you do your design using UML -EAPI=6 -HOMEPAGE=http://argouml.tigris.org -IUSE=doc -KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos -LICENSE=BSD -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 -SLOT=0 -SRC_URI=http://argouml-downloads.tigris.org/nonav/argouml-0.34/ArgoUML-0.34.tar.gz http://argouml-downloads.tigris.org/nonav/argouml-db-1.0/dbuml-module-1.0.4.zip doc? ( http://argouml-downloads.tigris.org/nonav/argouml-0.34/manual-0.34.pdf http://argouml-downloads.tigris.org/nonav/argouml-0.34/quickguide-0.34.pdf ) -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=be5d739cce8b3ff61f972f705b0e1e5e diff --git a/metadata/md5-cache/dev-util/argouml-0.34-r1 b/metadata/md5-cache/dev-util/argouml-0.34-r1 index 3e509197bb15..da76c25d44d7 100644 --- a/metadata/md5-cache/dev-util/argouml-0.34-r1 +++ b/metadata/md5-cache/dev-util/argouml-0.34-r1 @@ -5,10 +5,10 @@ DESCRIPTION=Modelling tool that helps you do your design using UML EAPI=8 HOMEPAGE=https://argouml-tigris-org.github.io/ IUSE=doc -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=BSD RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 SLOT=0 SRC_URI=http://argouml-downloads.tigris.org/nonav/argouml-0.34/ArgoUML-0.34.tar.gz http://argouml-downloads.tigris.org/nonav/argouml-db-1.0/dbuml-module-1.0.4.zip doc? ( http://argouml-downloads.tigris.org/nonav/argouml-0.34/manual-0.34.pdf http://argouml-downloads.tigris.org/nonav/argouml-0.34/quickguide-0.34.pdf ) _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=d2afe8315a405b6b5f236bfc1636147f +_md5_=801246c9ee7416339c78eebc657a8968 diff --git a/metadata/md5-cache/dev-util/aruba-0.6.2-r2 b/metadata/md5-cache/dev-util/aruba-0.6.2-r2 index b13a795390e7..267028e1e434 100644 --- a/metadata/md5-cache/dev-util/aruba-0.6.2-r2 +++ b/metadata/md5-cache/dev-util/aruba-0.6.2-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/aruba-0.6.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=19cad316a0b504cba01ad67a0a3e032e diff --git a/metadata/md5-cache/dev-util/aruba-1.0.3-r1 b/metadata/md5-cache/dev-util/aruba-1.0.3-r1 index 3ecd9f6ea0f3..9eacbd6a4d1c 100644 --- a/metadata/md5-cache/dev-util/aruba-1.0.3-r1 +++ b/metadata/md5-cache/dev-util/aruba-1.0.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/cucumber/aruba/archive/v1.0.3.tar.gz -> aruba-1.0.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9a31e86174aad224dfa3370e3c119ef6 diff --git a/metadata/md5-cache/dev-util/aruba-1.1.2-r1 b/metadata/md5-cache/dev-util/aruba-1.1.2-r1 index 673d054ec9e7..904d5ddaac8d 100644 --- a/metadata/md5-cache/dev-util/aruba-1.1.2-r1 +++ b/metadata/md5-cache/dev-util/aruba-1.1.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/cucumber/aruba/archive/v1.1.2.tar.gz -> aruba-1.1.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2ddfe83f7cefacd4ac52d0a902c6d1b5 diff --git a/metadata/md5-cache/dev-util/aruba-2.0.0 b/metadata/md5-cache/dev-util/aruba-2.0.0 index 437fc067317b..71e76a544d2c 100644 --- a/metadata/md5-cache/dev-util/aruba-2.0.0 +++ b/metadata/md5-cache/dev-util/aruba-2.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/cucumber/aruba/archive/v2.0.0.tar.gz -> aruba-2.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1dd75f102e89cf336d65448c94e3ca38 diff --git a/metadata/md5-cache/dev-util/bcc-0.24.0 b/metadata/md5-cache/dev-util/bcc-0.24.0-r1 similarity index 72% rename from metadata/md5-cache/dev-util/bcc-0.24.0 rename to metadata/md5-cache/dev-util/bcc-0.24.0-r1 index 0e7362bca8ee..85c098c7881c 100644 --- a/metadata/md5-cache/dev-util/bcc-0.24.0 +++ b/metadata/md5-cache/dev-util/bcc-0.24.0-r1 @@ -1,16 +1,16 @@ BDEPEND=virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install prepare pretend setup test -DEPEND=>=dev-libs/elfutils-0.166:= >=dev-libs/libbpf-0.7.0:=[static-libs(-)] sys-kernel/linux-headers =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) ) test? ( || ( net-misc/iputils[arping] net-analyzer/arping ) net-analyzer/netperf net-misc/iperf:* ) !!sys-devel/llvm:0 +DEPEND=>=dev-libs/elfutils-0.166:= >=dev-libs/libbpf-0.7.0:=[static-libs(-)] sys-kernel/linux-headers =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) ) test? ( || ( net-misc/iputils[arping] net-analyzer/arping ) net-analyzer/netperf net-misc/iperf:* ) !!sys-devel/llvm:0 DESCRIPTION=Tools for BPF-based Linux IO analysis, networking, monitoring, and more -EAPI=7 +EAPI=8 HOMEPAGE=https://iovisor.github.io/bcc/ IUSE=+lua test +lua_single_target_luajit python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=~amd64 ~arm64 ~x86 LICENSE=Apache-2.0 -RDEPEND=>=dev-libs/elfutils-0.166:= >=dev-libs/libbpf-0.7.0:=[static-libs(-)] sys-kernel/linux-headers =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) ) +RDEPEND=>=dev-libs/elfutils-0.166:= >=dev-libs/libbpf-0.7.0:=[static-libs(-)] sys-kernel/linux-headers =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) lua? ( ^^ ( lua_single_target_luajit ) ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/iovisor/bcc/archive/v0.24.0.tar.gz -> bcc-0.24.0.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd llvm 6f88d422e49b917bf254b2594f3d903c lua-single f2c2fb82c912dd65d53bdae3613a331f lua-utils e69ff116248d78546ae1a234c086fe80 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=64c0af02e7ef33db9a86c6bb636143b8 +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd llvm 6f88d422e49b917bf254b2594f3d903c lua-single f2c2fb82c912dd65d53bdae3613a331f lua-utils e69ff116248d78546ae1a234c086fe80 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=3fd6686ca0ade27d7637d2fbbf81aa6a diff --git a/metadata/md5-cache/dev-util/bpftool-5.16.14 b/metadata/md5-cache/dev-util/bpftool-5.16.14 index 67e59794d551..602da13e9118 100644 --- a/metadata/md5-cache/dev-util/bpftool-5.16.14 +++ b/metadata/md5-cache/dev-util/bpftool-5.16.14 @@ -5,10 +5,10 @@ DESCRIPTION=Tool for inspection and simple manipulation of eBPF programs and map EAPI=8 HOMEPAGE=https://kernel.org/ IUSE=caps -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=sys-libs/binutils-libs:= sys-libs/zlib:= virtual/libelf:= caps? ( sys-libs/libcap:= ) SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.16.14.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.16.tar.xz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=223312e21130fe58ea7c24b976d92925 +_md5_=55a737ee352724a65840ce53518cf8ed diff --git a/metadata/md5-cache/dev-util/bpftool-5.16.2 b/metadata/md5-cache/dev-util/bpftool-5.16.2 deleted file mode 100644 index 2970b5bec64b..000000000000 --- a/metadata/md5-cache/dev-util/bpftool-5.16.2 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=dev-util/patchutils || ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) dev-python/docutils -DEFINED_PHASES=compile install postinst prepare setup unpack -DEPEND=sys-libs/binutils-libs:= sys-libs/zlib:= virtual/libelf:= caps? ( sys-libs/libcap:= ) >=sys-kernel/linux-headers-5.8 -DESCRIPTION=Tool for inspection and simple manipulation of eBPF programs and maps -EAPI=8 -HOMEPAGE=https://kernel.org/ -IUSE=caps -KEYWORDS=amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/binutils-libs:= sys-libs/zlib:= virtual/libelf:= caps? ( sys-libs/libcap:= ) -SLOT=0 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.16.2.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.16.tar.xz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=55a737ee352724a65840ce53518cf8ed diff --git a/metadata/md5-cache/dev-util/cflow-1.7 b/metadata/md5-cache/dev-util/cflow-1.7 index 8ac2d63f2163..1975f8dff617 100644 --- a/metadata/md5-cache/dev-util/cflow-1.7 +++ b/metadata/md5-cache/dev-util/cflow-1.7 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) nls? ( virtual/libintl virtual/libiconv ) SLOT=0 SRC_URI=mirror://gnu/cflow/cflow-1.7.tar.xz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=7b31577c34dbd5a2cd71f4f043ae29fe diff --git a/metadata/md5-cache/dev-util/cmake-3.22.2 b/metadata/md5-cache/dev-util/cmake-3.22.2 index 3b7b3d67a420..adf0802391b4 100644 --- a/metadata/md5-cache/dev-util/cmake-3.22.2 +++ b/metadata/md5-cache/dev-util/cmake-3.22.2 @@ -11,5 +11,5 @@ RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.22/cmake-3.22.2.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 3c38df051095289667b6f09ebd0cc149 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 3c38df051095289667b6f09ebd0cc149 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=0fe8e298b628b601eecab80b27c5bbe7 diff --git a/metadata/md5-cache/dev-util/cmake-3.22.4 b/metadata/md5-cache/dev-util/cmake-3.22.4 index bfd384bc9ca0..0ef2ea0ae692 100644 --- a/metadata/md5-cache/dev-util/cmake-3.22.4 +++ b/metadata/md5-cache/dev-util/cmake-3.22.4 @@ -11,5 +11,5 @@ RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.22/cmake-3.22.4.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 3c38df051095289667b6f09ebd0cc149 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 3c38df051095289667b6f09ebd0cc149 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=f4a02749824230a2f648f7bba3fe9a00 diff --git a/metadata/md5-cache/dev-util/cmake-3.23.1 b/metadata/md5-cache/dev-util/cmake-3.23.1 index 9e69d2bbedce..279f5ea4328f 100644 --- a/metadata/md5-cache/dev-util/cmake-3.23.1 +++ b/metadata/md5-cache/dev-util/cmake-3.23.1 @@ -11,5 +11,5 @@ RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.23/cmake-3.23.1.tar.gz verify-sig? ( https://github.com/Kitware/CMake/releases/download/v3.23.1/cmake-3.23.1-SHA-256.txt https://github.com/Kitware/CMake/releases/download/v3.23.1/cmake-3.23.1-SHA-256.txt.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 3c38df051095289667b6f09ebd0cc149 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 3c38df051095289667b6f09ebd0cc149 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=322b8a0afddc0cc6cfac12696260e826 diff --git a/metadata/md5-cache/dev-util/cmake-9999 b/metadata/md5-cache/dev-util/cmake-9999 index 2d7b4e6b096e..2a6add365bb3 100644 --- a/metadata/md5-cache/dev-util/cmake-9999 +++ b/metadata/md5-cache/dev-util/cmake-9999 @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=dev-libs/jsoncpp-1.9.2-r2:0= >=dev-libs/libuv-1.10.0:= >=net-misc/curl-7.21.5[ssl] sys-libs/zlib virtual/pkgconfig emacs? ( >=app-editors/emacs-23.1:* ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 3c38df051095289667b6f09ebd0cc149 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 3c38df051095289667b6f09ebd0cc149 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=322b8a0afddc0cc6cfac12696260e826 diff --git a/metadata/md5-cache/dev-util/colm-0.14.7-r1 b/metadata/md5-cache/dev-util/colm-0.14.7-r1 index 97a005a616ea..074b96198052 100644 --- a/metadata/md5-cache/dev-util/colm-0.14.7-r1 +++ b/metadata/md5-cache/dev-util/colm-0.14.7-r1 @@ -4,10 +4,10 @@ DESCRIPTION=COmputer Language Manipulation EAPI=8 HOMEPAGE=https://www.colm.net/open-source/colm/ IUSE=doc -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=!=sys-libs/ncurses-5.2:0= emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=mirror://sourceforge/cscope/cscope-15.8a.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=ceac20d82a4a227e20c6ec8177b0acd2 diff --git a/metadata/md5-cache/dev-util/cscope-15.8a-r2 b/metadata/md5-cache/dev-util/cscope-15.8a-r2 index 72672b2e6a78..503c236ad3b2 100644 --- a/metadata/md5-cache/dev-util/cscope-15.8a-r2 +++ b/metadata/md5-cache/dev-util/cscope-15.8a-r2 @@ -9,5 +9,5 @@ LICENSE=BSD GPL-2+ RDEPEND=>=sys-libs/ncurses-5.2:0= emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=mirror://sourceforge/cscope/cscope-15.8a.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=9b619d8906cdd7e64f1fe5bc8952cd92 diff --git a/metadata/md5-cache/dev-util/cscope-15.9 b/metadata/md5-cache/dev-util/cscope-15.9 index 146810a2cb7f..c7fa9487eb97 100644 --- a/metadata/md5-cache/dev-util/cscope-15.9 +++ b/metadata/md5-cache/dev-util/cscope-15.9 @@ -5,10 +5,10 @@ DESCRIPTION=Interactively examine a C program EAPI=7 HOMEPAGE=http://cscope.sourceforge.net/ IUSE=emacs -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris LICENSE=BSD GPL-2+ RDEPEND=>=sys-libs/ncurses-5.2:0= emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=mirror://sourceforge/cscope/cscope-15.9.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b8d1d6c6305f0fbab2c262c3c0b3b440 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=505608e6fad969631dc507fb3b117271 diff --git a/metadata/md5-cache/dev-util/cucumber-3.2.0 b/metadata/md5-cache/dev-util/cucumber-3.2.0 index 87288615033e..6647155a7321 100644 --- a/metadata/md5-cache/dev-util/cucumber-3.2.0 +++ b/metadata/md5-cache/dev-util/cucumber-3.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/cucumber/cucumber-ruby/archive/v3.2.0.tar.gz -> cucumber-3.2.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c6151cf56697e8e8ef6b6c924b9053c6 diff --git a/metadata/md5-cache/dev-util/cucumber-6.1.0 b/metadata/md5-cache/dev-util/cucumber-6.1.0 deleted file mode 100644 index f509d1341346..000000000000 --- a/metadata/md5-cache/dev-util/cucumber-6.1.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=ruby_targets_ruby26? ( test? ( dev-ruby/bundler[ruby_targets_ruby26(-)] dev-ruby/rspec:3[ruby_targets_ruby26(-)] >=dev-ruby/nokogiri-1.5.2[ruby_targets_ruby26(-)] >=dev-ruby/syntax-1.0.0[ruby_targets_ruby26(-)] dev-ruby/json[ruby_targets_ruby26(-)] >=dev-util/cucumber-3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-ruby/rspec:3[ruby_targets_ruby27(-)] >=dev-ruby/nokogiri-1.5.2[ruby_targets_ruby27(-)] >=dev-ruby/syntax-1.0.0[ruby_targets_ruby27(-)] dev-ruby/json[ruby_targets_ruby27(-)] >=dev-util/cucumber-3[ruby_targets_ruby27(-)] ) ) test? ( ruby_targets_ruby26? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby26(-)] >=dev-util/cucumber-core-9.0.1:9[ruby_targets_ruby26(-)] dev-util/cucumber-create-meta:4[ruby_targets_ruby26(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby26(-)] >=dev-util/cucumber-gherkin-18.1.0:18[ruby_targets_ruby26(-)] >=dev-util/cucumber-html-formatter-13.0.0:13[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-15.0.0:15[ruby_targets_ruby26(-)] >=dev-util/cucumber-wire-5.0.1:5[ruby_targets_ruby26(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby26(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby26(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby27(-)] >=dev-util/cucumber-core-9.0.1:9[ruby_targets_ruby27(-)] dev-util/cucumber-create-meta:4[ruby_targets_ruby27(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby27(-)] >=dev-util/cucumber-gherkin-18.1.0:18[ruby_targets_ruby27(-)] >=dev-util/cucumber-html-formatter-13.0.0:13[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-15.0.0:15[ruby_targets_ruby27(-)] >=dev-util/cucumber-wire-5.0.1:5[ruby_targets_ruby27(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby27(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby27(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( 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_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=Executable feature scenarios -EAPI=7 -HOMEPAGE=https://cucumber.io/ -IUSE=examples test test ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 -LICENSE=Ruby -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby26(-)] >=dev-util/cucumber-core-9.0.1:9[ruby_targets_ruby26(-)] dev-util/cucumber-create-meta:4[ruby_targets_ruby26(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby26(-)] >=dev-util/cucumber-gherkin-18.1.0:18[ruby_targets_ruby26(-)] >=dev-util/cucumber-html-formatter-13.0.0:13[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-15.0.0:15[ruby_targets_ruby26(-)] >=dev-util/cucumber-wire-5.0.1:5[ruby_targets_ruby26(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby26(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby26(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby27(-)] >=dev-util/cucumber-core-9.0.1:9[ruby_targets_ruby27(-)] dev-util/cucumber-create-meta:4[ruby_targets_ruby27(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby27(-)] >=dev-util/cucumber-gherkin-18.1.0:18[ruby_targets_ruby27(-)] >=dev-util/cucumber-html-formatter-13.0.0:13[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-15.0.0:15[ruby_targets_ruby27(-)] >=dev-util/cucumber-wire-5.0.1:5[ruby_targets_ruby27(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby27(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby27(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/cucumber/cucumber-ruby/archive/v6.1.0.tar.gz -> cucumber-6.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=88c770923acee878472c6d17a1ec2e5c diff --git a/metadata/md5-cache/dev-util/cucumber-7.0.0 b/metadata/md5-cache/dev-util/cucumber-7.0.0 deleted file mode 100644 index af38727bbdb9..000000000000 --- a/metadata/md5-cache/dev-util/cucumber-7.0.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=ruby_targets_ruby26? ( test? ( dev-ruby/bundler[ruby_targets_ruby26(-)] dev-ruby/rspec:3[ruby_targets_ruby26(-)] >=dev-ruby/nokogiri-1.5.2[ruby_targets_ruby26(-)] >=dev-ruby/syntax-1.0.0[ruby_targets_ruby26(-)] dev-ruby/json[ruby_targets_ruby26(-)] >=dev-util/cucumber-3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-ruby/rspec:3[ruby_targets_ruby27(-)] >=dev-ruby/nokogiri-1.5.2[ruby_targets_ruby27(-)] >=dev-ruby/syntax-1.0.0[ruby_targets_ruby27(-)] dev-ruby/json[ruby_targets_ruby27(-)] >=dev-util/cucumber-3[ruby_targets_ruby27(-)] ) ) test? ( ruby_targets_ruby26? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby26(-)] >=dev-util/cucumber-core-10.0.1:10[ruby_targets_ruby26(-)] >=dev-util/cucumber-create-meta-6.0.1:6[ruby_targets_ruby26(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby26(-)] >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby26(-)] >=dev-util/cucumber-html-formatter-16.0.1:16[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-wire-6.0.1:6[ruby_targets_ruby26(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby26(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby26(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby27(-)] >=dev-util/cucumber-core-10.0.1:10[ruby_targets_ruby27(-)] >=dev-util/cucumber-create-meta-6.0.1:6[ruby_targets_ruby27(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby27(-)] >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby27(-)] >=dev-util/cucumber-html-formatter-16.0.1:16[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-wire-6.0.1:6[ruby_targets_ruby27(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby27(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby27(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( 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_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=Executable feature scenarios -EAPI=8 -HOMEPAGE=https://cucumber.io/ -IUSE=examples test test ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv -LICENSE=Ruby -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby26(-)] >=dev-util/cucumber-core-10.0.1:10[ruby_targets_ruby26(-)] >=dev-util/cucumber-create-meta-6.0.1:6[ruby_targets_ruby26(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby26(-)] >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby26(-)] >=dev-util/cucumber-html-formatter-16.0.1:16[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-wire-6.0.1:6[ruby_targets_ruby26(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby26(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby26(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby27(-)] >=dev-util/cucumber-core-10.0.1:10[ruby_targets_ruby27(-)] >=dev-util/cucumber-create-meta-6.0.1:6[ruby_targets_ruby27(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby27(-)] >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby27(-)] >=dev-util/cucumber-html-formatter-16.0.1:16[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-wire-6.0.1:6[ruby_targets_ruby27(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby27(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby27(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/cucumber/cucumber-ruby/archive/v7.0.0.tar.gz -> cucumber-7.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=0b0e25e79bd39892a011f28f609132bc diff --git a/metadata/md5-cache/dev-util/cucumber-7.0.0-r1 b/metadata/md5-cache/dev-util/cucumber-7.0.0-r1 deleted file mode 100644 index ee1b594b526b..000000000000 --- a/metadata/md5-cache/dev-util/cucumber-7.0.0-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=ruby_targets_ruby26? ( test? ( dev-ruby/bundler[ruby_targets_ruby26(-)] dev-ruby/rspec:3[ruby_targets_ruby26(-)] >=dev-ruby/nokogiri-1.5.2[ruby_targets_ruby26(-)] >=dev-ruby/syntax-1.0.0[ruby_targets_ruby26(-)] dev-ruby/json[ruby_targets_ruby26(-)] >=dev-util/cucumber-3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-ruby/rspec:3[ruby_targets_ruby27(-)] >=dev-ruby/nokogiri-1.5.2[ruby_targets_ruby27(-)] >=dev-ruby/syntax-1.0.0[ruby_targets_ruby27(-)] dev-ruby/json[ruby_targets_ruby27(-)] >=dev-util/cucumber-3[ruby_targets_ruby27(-)] ) ) test? ( ruby_targets_ruby26? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby26(-)] >=dev-util/cucumber-core-10.0.1:10[ruby_targets_ruby26(-)] >=dev-util/cucumber-create-meta-6.0.1:6[ruby_targets_ruby26(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby26(-)] >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby26(-)] >=dev-util/cucumber-html-formatter-16.0.1:16[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-wire-6.0.1:6[ruby_targets_ruby26(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby26(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby26(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby27(-)] >=dev-util/cucumber-core-10.0.1:10[ruby_targets_ruby27(-)] >=dev-util/cucumber-create-meta-6.0.1:6[ruby_targets_ruby27(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby27(-)] >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby27(-)] >=dev-util/cucumber-html-formatter-16.0.1:16[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-wire-6.0.1:6[ruby_targets_ruby27(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby27(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby27(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( 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_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=Executable feature scenarios -EAPI=8 -HOMEPAGE=https://cucumber.io/ -IUSE=examples test test ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv -LICENSE=Ruby -RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby26(-)] >=dev-util/cucumber-core-10.0.1:10[ruby_targets_ruby26(-)] >=dev-util/cucumber-create-meta-6.0.1:6[ruby_targets_ruby26(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby26(-)] >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby26(-)] >=dev-util/cucumber-html-formatter-16.0.1:16[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-wire-6.0.1:6[ruby_targets_ruby26(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby26(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby26(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby27(-)] >=dev-util/cucumber-core-10.0.1:10[ruby_targets_ruby27(-)] >=dev-util/cucumber-create-meta-6.0.1:6[ruby_targets_ruby27(-)] >=dev-util/cucumber-cucumber-expressions-12.1.1:12[ruby_targets_ruby27(-)] >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby27(-)] >=dev-util/cucumber-html-formatter-16.0.1:16[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-wire-6.0.1:6[ruby_targets_ruby27(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby27(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby27(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/cucumber/cucumber-ruby/archive/v7.0.0.tar.gz -> cucumber-7.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=19378daf5e03ede7fea0576cebd86139 diff --git a/metadata/md5-cache/dev-util/cucumber-7.1.0 b/metadata/md5-cache/dev-util/cucumber-7.1.0 index a5fd38e37516..843f5d8b3fab 100644 --- a/metadata/md5-cache/dev-util/cucumber-7.1.0 +++ b/metadata/md5-cache/dev-util/cucumber-7.1.0 @@ -5,12 +5,12 @@ DESCRIPTION=Executable feature scenarios EAPI=8 HOMEPAGE=https://cucumber.io/ IUSE=examples test test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby26(-)] >=dev-util/cucumber-core-10.1.0:10[ruby_targets_ruby26(-)] >=dev-util/cucumber-create-meta-6.0.1:6[ruby_targets_ruby26(-)] >=dev-util/cucumber-cucumber-expressions-14.0.0:14[ruby_targets_ruby26(-)] >=dev-util/cucumber-gherkin-22.0.0:22[ruby_targets_ruby26(-)] >=dev-util/cucumber-html-formatter-17.0.0:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-wire-6.2.0:6[ruby_targets_ruby26(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby26(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby26(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby27(-)] >=dev-util/cucumber-core-10.1.0:10[ruby_targets_ruby27(-)] >=dev-util/cucumber-create-meta-6.0.1:6[ruby_targets_ruby27(-)] >=dev-util/cucumber-cucumber-expressions-14.0.0:14[ruby_targets_ruby27(-)] >=dev-util/cucumber-gherkin-22.0.0:22[ruby_targets_ruby27(-)] >=dev-util/cucumber-html-formatter-17.0.0:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-wire-6.2.0:6[ruby_targets_ruby27(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby27(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby27(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/builder-3.2.4:3.2[ruby_targets_ruby30(-)] >=dev-util/cucumber-core-10.1.0:10[ruby_targets_ruby30(-)] >=dev-util/cucumber-create-meta-6.0.1:6[ruby_targets_ruby30(-)] >=dev-util/cucumber-cucumber-expressions-14.0.0:14[ruby_targets_ruby30(-)] >=dev-util/cucumber-gherkin-22.0.0:22[ruby_targets_ruby30(-)] >=dev-util/cucumber-html-formatter-17.0.0:17[ruby_targets_ruby30(-)] >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby30(-)] >=dev-util/cucumber-wire-6.2.0:6[ruby_targets_ruby30(-)] >=dev-ruby/diff-lcs-1.4.4:0[ruby_targets_ruby30(-)] >=dev-ruby/mime-types-3.3.1:3[ruby_targets_ruby30(-)] >=dev-ruby/multi_test-0.1.2:0[ruby_targets_ruby30(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/cucumber/cucumber-ruby/archive/v7.1.0.tar.gz -> cucumber-7.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=c41b895e45d5cd52ff02f8a53c913ce0 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=111a0596aad91bf1425f34235c33075a diff --git a/metadata/md5-cache/dev-util/cucumber-core-10.0.0 b/metadata/md5-cache/dev-util/cucumber-core-10.0.0 deleted file mode 100644 index 5076ce8e9959..000000000000 --- a/metadata/md5-cache/dev-util/cucumber-core-10.0.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=ruby_targets_ruby26? ( test? ( >=dev-ruby/unindent-1.0[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( >=dev-ruby/unindent-1.0[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( >=dev-ruby/unindent-1.0[ruby_targets_ruby30(-)] ) ) test? ( ruby_targets_ruby26? ( >=dev-util/cucumber-gherkin-20.0.0:20[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-gherkin-20.0.0:20[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-gherkin-20.0.0:20[ruby_targets_ruby30(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby30(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -DESCRIPTION=Executable feature scenarios -EAPI=7 -HOMEPAGE=https://cucumber.io/ -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test -KEYWORDS=~amd64 -LICENSE=Ruby -RDEPEND=ruby_targets_ruby26? ( >=dev-util/cucumber-gherkin-20.0.0:20[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-gherkin-20.0.0:20[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-gherkin-20.0.0:20[ruby_targets_ruby30(-)] >=dev-util/cucumber-messages-17.0.0:17[ruby_targets_ruby30(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=10 -SRC_URI=https://github.com/cucumber/cucumber-ruby-core/archive/v10.0.0.tar.gz -> cucumber-core-10.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e96ef38fef7458f55c54d4134a123c18 diff --git a/metadata/md5-cache/dev-util/cucumber-core-10.0.1 b/metadata/md5-cache/dev-util/cucumber-core-10.0.1 deleted file mode 100644 index bb9cf1ef22a0..000000000000 --- a/metadata/md5-cache/dev-util/cucumber-core-10.0.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=ruby_targets_ruby26? ( test? ( >=dev-ruby/unindent-1.0[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( >=dev-ruby/unindent-1.0[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( >=dev-ruby/unindent-1.0[ruby_targets_ruby30(-)] ) ) test? ( ruby_targets_ruby26? ( >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby30(-)] >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby30(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -DESCRIPTION=Executable feature scenarios -EAPI=8 -HOMEPAGE=https://cucumber.io/ -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv -LICENSE=Ruby -RDEPEND=ruby_targets_ruby26? ( >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-gherkin-20.0.1:20[ruby_targets_ruby30(-)] >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby30(-)] >=dev-util/cucumber-tag-expressions-3.0.1:3[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=10 -SRC_URI=https://github.com/cucumber/cucumber-ruby-core/archive/v10.0.1.tar.gz -> cucumber-core-10.0.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=039c43bbef483376cb840e2eeac18361 diff --git a/metadata/md5-cache/dev-util/cucumber-core-10.1.0 b/metadata/md5-cache/dev-util/cucumber-core-10.1.0 deleted file mode 100644 index e62ec8483045..000000000000 --- a/metadata/md5-cache/dev-util/cucumber-core-10.1.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=ruby_targets_ruby26? ( test? ( >=dev-ruby/unindent-1.0[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( >=dev-ruby/unindent-1.0[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( >=dev-ruby/unindent-1.0[ruby_targets_ruby30(-)] ) ) test? ( ruby_targets_ruby26? ( >=dev-util/cucumber-gherkin-22.0.0:22[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-tag-expressions-4.0.2:4[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-gherkin-22.0.0:22[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-tag-expressions-4.0.2:4[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-gherkin-22.0.0:22[ruby_targets_ruby30(-)] >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby30(-)] >=dev-util/cucumber-tag-expressions-4.0.2:4[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -DESCRIPTION=Executable feature scenarios -EAPI=8 -HOMEPAGE=https://cucumber.io/ -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=Ruby -RDEPEND=ruby_targets_ruby26? ( >=dev-util/cucumber-gherkin-22.0.0:22[ruby_targets_ruby26(-)] >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby26(-)] >=dev-util/cucumber-tag-expressions-4.0.2:4[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-gherkin-22.0.0:22[ruby_targets_ruby27(-)] >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby27(-)] >=dev-util/cucumber-tag-expressions-4.0.2:4[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-gherkin-22.0.0:22[ruby_targets_ruby30(-)] >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby30(-)] >=dev-util/cucumber-tag-expressions-4.0.2:4[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=10 -SRC_URI=https://github.com/cucumber/cucumber-ruby-core/archive/v10.1.0.tar.gz -> cucumber-core-10.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=868158fdf71d0f3b2a495b597740c891 diff --git a/metadata/md5-cache/dev-util/cucumber-core-10.1.1 b/metadata/md5-cache/dev-util/cucumber-core-10.1.1 index df5b289be83b..8bbc34c6253c 100644 --- a/metadata/md5-cache/dev-util/cucumber-core-10.1.1 +++ b/metadata/md5-cache/dev-util/cucumber-core-10.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=10 SRC_URI=https://github.com/cucumber/cucumber-ruby-core/archive/v10.1.1.tar.gz -> cucumber-core-10.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=23afb611fbb32234e969522d7b2718c9 diff --git a/metadata/md5-cache/dev-util/cucumber-core-3.2.1 b/metadata/md5-cache/dev-util/cucumber-core-3.2.1 index 9f1b1310a61a..9e5736f331a8 100644 --- a/metadata/md5-cache/dev-util/cucumber-core-3.2.1 +++ b/metadata/md5-cache/dev-util/cucumber-core-3.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3.2 SRC_URI=https://github.com/cucumber/cucumber-ruby-core/archive/v3.2.1.tar.gz -> cucumber-core-3.2.1.tar.gz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6058a470933d5bdcda113433b67d4c8b diff --git a/metadata/md5-cache/dev-util/cucumber-core-9.0.1 b/metadata/md5-cache/dev-util/cucumber-core-9.0.1 index edee2cdeb84e..df5b2193396b 100644 --- a/metadata/md5-cache/dev-util/cucumber-core-9.0.1 +++ b/metadata/md5-cache/dev-util/cucumber-core-9.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=9 SRC_URI=https://github.com/cucumber/cucumber-ruby-core/archive/v9.0.1.tar.gz -> cucumber-core-9.0.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cdbae39788b025654abb6595c42e5339 diff --git a/metadata/md5-cache/dev-util/cucumber-create-meta-4.0.0 b/metadata/md5-cache/dev-util/cucumber-create-meta-4.0.0 index 33d25b1ce3f0..881bb16ac1bb 100644 --- a/metadata/md5-cache/dev-util/cucumber-create-meta-4.0.0 +++ b/metadata/md5-cache/dev-util/cucumber-create-meta-4.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/cucumber-create-meta-4.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6fd5d833b0c6a5bbcce13c05a1a72e86 diff --git a/metadata/md5-cache/dev-util/cucumber-create-meta-6.0.1 b/metadata/md5-cache/dev-util/cucumber-create-meta-6.0.1 deleted file mode 100644 index 375149dae77c..000000000000 --- a/metadata/md5-cache/dev-util/cucumber-create-meta-6.0.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby30(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -DESCRIPTION=HTML formatter for Cucumber -EAPI=8 -HOMEPAGE=https://cucumber.io/ -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv -LICENSE=Ruby -RDEPEND=ruby_targets_ruby26? ( >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-messages-17.0.1:17[ruby_targets_ruby30(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=6 -SRC_URI=https://rubygems.org/gems/cucumber-create-meta-6.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=415118ff20ea44f2a20000d3f95c5646 diff --git a/metadata/md5-cache/dev-util/cucumber-create-meta-6.0.2 b/metadata/md5-cache/dev-util/cucumber-create-meta-6.0.2 index cd5b3744074f..a68389a68307 100644 --- a/metadata/md5-cache/dev-util/cucumber-create-meta-6.0.2 +++ b/metadata/md5-cache/dev-util/cucumber-create-meta-6.0.2 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby30(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby30(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby31(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=HTML formatter for Cucumber EAPI=8 HOMEPAGE=https://cucumber.io/ -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=Ruby -RDEPEND=ruby_targets_ruby26? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby30(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby26(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby27(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby30(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby31(-)] >=dev-ruby/sys-uname-1.2.2:1[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/cucumber-create-meta-6.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=0856e9134d6a1f2560a36969f636ccae +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=bb0c04bcc5d6253750bda9269b6fa5ba diff --git a/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.3.0 b/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.3.0 index cadecfccc6aa..2de5fdd99828 100644 --- a/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.3.0 +++ b/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=10 SRC_URI=https://rubygems.org/gems/cucumber-cucumber-expressions-10.3.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d1b77d4d5519f864e1b223d4ce6d3517 diff --git a/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-12.1.3 b/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-12.1.3 index 3a844de9db1d..ad41ba7c4392 100644 --- a/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-12.1.3 +++ b/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-12.1.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=12 SRC_URI=https://rubygems.org/gems/cucumber-cucumber-expressions-12.1.3.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=892000a753933205a96d9d6e3213aeaa diff --git a/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-14.0.0 b/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-14.0.0 index 90d79deeea92..0c18621cd27c 100644 --- a/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-14.0.0 +++ b/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-14.0.0 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=a simpler alternative to Regular Expressions EAPI=8 HOMEPAGE=https://cucumber.io/ -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=14 SRC_URI=https://rubygems.org/gems/cucumber-cucumber-expressions-14.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=892000a753933205a96d9d6e3213aeaa +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=5cce495df31e27ec5590e6dea6e11a94 diff --git a/metadata/md5-cache/dev-util/cucumber-expressions-6.0.1 b/metadata/md5-cache/dev-util/cucumber-expressions-6.0.1 index b0fec9130623..40ef0224fe2c 100644 --- a/metadata/md5-cache/dev-util/cucumber-expressions-6.0.1 +++ b/metadata/md5-cache/dev-util/cucumber-expressions-6.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://rubygems.org/gems/cucumber-expressions-6.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1cb03291d66da40912ae9837e73decb2 diff --git a/metadata/md5-cache/dev-util/cucumber-gherkin-18.1.1 b/metadata/md5-cache/dev-util/cucumber-gherkin-18.1.1 index c7d318cbaa16..4adb59296913 100644 --- a/metadata/md5-cache/dev-util/cucumber-gherkin-18.1.1 +++ b/metadata/md5-cache/dev-util/cucumber-gherkin-18.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=18 SRC_URI=https://github.com/cucumber/common/archive/gherkin/v18.1.1.tar.gz -> cucumber-gherkin-18.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4687ca2d9b9af4da0f6953ece1c096c5 diff --git a/metadata/md5-cache/dev-util/cucumber-gherkin-20.0.1 b/metadata/md5-cache/dev-util/cucumber-gherkin-20.0.1 index f44b0925927a..e306dc935dd0 100644 --- a/metadata/md5-cache/dev-util/cucumber-gherkin-20.0.1 +++ b/metadata/md5-cache/dev-util/cucumber-gherkin-20.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=20 SRC_URI=https://github.com/cucumber/common/archive/gherkin/v20.0.1.tar.gz -> cucumber-gherkin-20.0.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=df8af86f6f01368ce09fc13a884bb4c2 diff --git a/metadata/md5-cache/dev-util/cucumber-gherkin-22.0.0 b/metadata/md5-cache/dev-util/cucumber-gherkin-22.0.0 index b0fcf1d01d97..8a8b13b0d4da 100644 --- a/metadata/md5-cache/dev-util/cucumber-gherkin-22.0.0 +++ b/metadata/md5-cache/dev-util/cucumber-gherkin-22.0.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Fast Gherkin lexer and parser EAPI=8 HOMEPAGE=https://cucumber.io/ -IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby30(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-util/cucumber-messages-17.1.1:17[ruby_targets_ruby31(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=22 SRC_URI=https://github.com/cucumber/common/archive/gherkin/v22.0.0.tar.gz -> cucumber-gherkin-22.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=97ee095d4eb83d9f46d301baef4ca162 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=a49a05e278457c7a62ecec834957f30f diff --git a/metadata/md5-cache/dev-util/cucumber-html-formatter-13.0.0-r2 b/metadata/md5-cache/dev-util/cucumber-html-formatter-13.0.0-r2 index 5cf6dae5e95c..3c9b21552be8 100644 --- a/metadata/md5-cache/dev-util/cucumber-html-formatter-13.0.0-r2 +++ b/metadata/md5-cache/dev-util/cucumber-html-formatter-13.0.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=13 SRC_URI=https://rubygems.org/gems/cucumber-html-formatter-13.0.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=00727a037e7d65cb1b155c0925d437c8 diff --git a/metadata/md5-cache/dev-util/cucumber-html-formatter-16.0.1-r1 b/metadata/md5-cache/dev-util/cucumber-html-formatter-16.0.1-r1 index 637d3478cbb6..febbf8968be2 100644 --- a/metadata/md5-cache/dev-util/cucumber-html-formatter-16.0.1-r1 +++ b/metadata/md5-cache/dev-util/cucumber-html-formatter-16.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=16 SRC_URI=https://rubygems.org/gems/cucumber-html-formatter-16.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c4a0712e100775df5ffd90a359f748a3 diff --git a/metadata/md5-cache/dev-util/cucumber-html-formatter-16.0.1-r2 b/metadata/md5-cache/dev-util/cucumber-html-formatter-16.0.1-r2 index 2658a998ad60..1c0bb5ec14dd 100644 --- a/metadata/md5-cache/dev-util/cucumber-html-formatter-16.0.1-r2 +++ b/metadata/md5-cache/dev-util/cucumber-html-formatter-16.0.1-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=16 SRC_URI=https://rubygems.org/gems/cucumber-html-formatter-16.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9125d54f983cb795e48a224dfa638e35 diff --git a/metadata/md5-cache/dev-util/cucumber-html-formatter-17.0.0 b/metadata/md5-cache/dev-util/cucumber-html-formatter-17.0.0 index 8f31223da059..9e1b0f63a833 100644 --- a/metadata/md5-cache/dev-util/cucumber-html-formatter-17.0.0 +++ b/metadata/md5-cache/dev-util/cucumber-html-formatter-17.0.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby26(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby27(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby30(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby26(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby27(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby30(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby31(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby26(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby27(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby30(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby26(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby27(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby30(-)] !=dev-util/cucumber-messages-17.1.0.1:17[ruby_targets_ruby31(-)] ! cucumber-rails-2.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fbb18af2de9032ea76c868371c845088 diff --git a/metadata/md5-cache/dev-util/cucumber-rails-2.5.0-r1 b/metadata/md5-cache/dev-util/cucumber-rails-2.5.0-r1 index 7d1eed4bccca..ecb7b032b664 100644 --- a/metadata/md5-cache/dev-util/cucumber-rails-2.5.0-r1 +++ b/metadata/md5-cache/dev-util/cucumber-rails-2.5.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/cucumber/cucumber-rails/archive/v2.5.0.tar.gz -> cucumber-rails-2.5.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=88342c2ddfde521fd24cfbaedf9d8ff5 diff --git a/metadata/md5-cache/dev-util/cucumber-rails-2.5.1 b/metadata/md5-cache/dev-util/cucumber-rails-2.5.1 index c4554a031d75..042b44689dc8 100644 --- a/metadata/md5-cache/dev-util/cucumber-rails-2.5.1 +++ b/metadata/md5-cache/dev-util/cucumber-rails-2.5.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=test !test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/cucumber/cucumber-rails/archive/v2.5.1.tar.gz -> cucumber-rails-2.5.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b031c283f7fd6efb565956f305bac80d diff --git a/metadata/md5-cache/dev-util/cucumber-tag-expressions-2.0.4 b/metadata/md5-cache/dev-util/cucumber-tag-expressions-2.0.4 index b4e8d0f43f86..7011d60f9fb2 100644 --- a/metadata/md5-cache/dev-util/cucumber-tag-expressions-2.0.4 +++ b/metadata/md5-cache/dev-util/cucumber-tag-expressions-2.0.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/cucumber-tag-expressions-2.0.4.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f4b1cdf1fabda40426d00db6c0e8644d diff --git a/metadata/md5-cache/dev-util/cucumber-tag-expressions-3.0.1 b/metadata/md5-cache/dev-util/cucumber-tag-expressions-3.0.1 index 72b03dfb4925..7ae350812cc9 100644 --- a/metadata/md5-cache/dev-util/cucumber-tag-expressions-3.0.1 +++ b/metadata/md5-cache/dev-util/cucumber-tag-expressions-3.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/cucumber-tag-expressions-3.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4f770bae50f449a7372c033f32853ddb diff --git a/metadata/md5-cache/dev-util/cucumber-tag-expressions-4.1.0 b/metadata/md5-cache/dev-util/cucumber-tag-expressions-4.1.0 index cb4c0c2a1591..288451ffb5a8 100644 --- a/metadata/md5-cache/dev-util/cucumber-tag-expressions-4.1.0 +++ b/metadata/md5-cache/dev-util/cucumber-tag-expressions-4.1.0 @@ -1,16 +1,16 @@ -BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) DESCRIPTION=Cucumber tag expressions for ruby EAPI=8 HOMEPAGE=https://cucumber.io/ -IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test +IUSE=ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) +RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/cucumber-tag-expressions-4.1.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=54386d46d65c1c441e0db1f350551f7e +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=6e3cb3baba4c538735de0c24b2942b91 diff --git a/metadata/md5-cache/dev-util/cucumber-tag_expressions-1.1.1 b/metadata/md5-cache/dev-util/cucumber-tag_expressions-1.1.1 index 689cc85dd3c1..198bd55aa878 100644 --- a/metadata/md5-cache/dev-util/cucumber-tag_expressions-1.1.1 +++ b/metadata/md5-cache/dev-util/cucumber-tag_expressions-1.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/cucumber-tag_expressions-1.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=46af1ae9d04a30d6499950d2367a7452 diff --git a/metadata/md5-cache/dev-util/cucumber-wire-0.0.1-r1 b/metadata/md5-cache/dev-util/cucumber-wire-0.0.1-r1 index 77e271d1212f..91707bbcef6b 100644 --- a/metadata/md5-cache/dev-util/cucumber-wire-0.0.1-r1 +++ b/metadata/md5-cache/dev-util/cucumber-wire-0.0.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cucumber-wire-0.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cc606ea19aa95de1d8db17b03334664b diff --git a/metadata/md5-cache/dev-util/cucumber-wire-5.0.1 b/metadata/md5-cache/dev-util/cucumber-wire-5.0.1 index 133fed112876..9eb9b9ea58d5 100644 --- a/metadata/md5-cache/dev-util/cucumber-wire-5.0.1 +++ b/metadata/md5-cache/dev-util/cucumber-wire-5.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/cucumber-wire-5.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2b583c85c4868353624533790f07da4a diff --git a/metadata/md5-cache/dev-util/cucumber-wire-6.1.1 b/metadata/md5-cache/dev-util/cucumber-wire-6.1.1 index 694f9bbcab90..c227b9611958 100644 --- a/metadata/md5-cache/dev-util/cucumber-wire-6.1.1 +++ b/metadata/md5-cache/dev-util/cucumber-wire-6.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/cucumber-wire-6.1.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=607bf7d57320cca8e08030b5f9bd7c6e diff --git a/metadata/md5-cache/dev-util/cucumber-wire-6.2.0 b/metadata/md5-cache/dev-util/cucumber-wire-6.2.0 index 4d90aaa30048..cdb1cabdc11c 100644 --- a/metadata/md5-cache/dev-util/cucumber-wire-6.2.0 +++ b/metadata/md5-cache/dev-util/cucumber-wire-6.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/cucumber-wire-6.2.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=72d82ea0a31554f63bb5de440319c169 diff --git a/metadata/md5-cache/dev-util/cucumber-wire-6.2.1 b/metadata/md5-cache/dev-util/cucumber-wire-6.2.1 index 6d3a5979b23e..df184fcc5dc9 100644 --- a/metadata/md5-cache/dev-util/cucumber-wire-6.2.1 +++ b/metadata/md5-cache/dev-util/cucumber-wire-6.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/cucumber-wire-6.2.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5b4ae1246467f3a85010b8824b825f52 diff --git a/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r1 b/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r1 index c08bb7e707bb..0f3696b34ecf 100644 --- a/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r1 +++ b/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-libs/glib-2.12:2 SLOT=0 SRC_URI=https://www.freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-0.26.tar.xz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=5181987665756aa14dda48b4cdfc34fe diff --git a/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r2 b/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r2 index 5f0787cf66dc..8b307175725a 100644 --- a/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r2 +++ b/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-libs/glib-2.12:2 SLOT=0 SRC_URI=https://www.freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-0.26.tar.xz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f2ccadde0aaf675a1a54e46eaa833bed diff --git a/metadata/md5-cache/dev-util/difftastic-0.26.3 b/metadata/md5-cache/dev-util/difftastic-0.26.3 deleted file mode 100644 index 68979f55bb61..000000000000 --- a/metadata/md5-cache/dev-util/difftastic-0.26.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=virtual/rust-1.53 -DEFINED_PHASES=compile configure install prepare test unpack -DESCRIPTION=A diff that understands syntax -EAPI=8 -HOMEPAGE=https://github.com/wilfred/difftastic -IUSE=debug -KEYWORDS=~amd64 -LICENSE=Apache-2.0 MIT MPL-2.0 Unlicense ZLIB -RESTRICT=mirror -SLOT=0 -SRC_URI=https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/archery/0.4.0/download -> archery-0.4.0.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/cc/1.0.72/download -> cc-1.0.72.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/clap/3.0.13/download -> clap-3.0.13.crate https://crates.io/api/v1/crates/const_format/0.2.22/download -> const_format-0.2.22.crate https://crates.io/api/v1/crates/const_format_proc_macros/0.2.22/download -> const_format_proc_macros-0.2.22.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.1/download -> crossbeam-channel-0.5.1.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.1/download -> crossbeam-deque-0.8.1.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.5/download -> crossbeam-epoch-0.9.5.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.7/download -> crossbeam-utils-0.8.7.crate https://crates.io/api/v1/crates/ctor/0.1.21/download -> ctor-0.1.21.crate https://crates.io/api/v1/crates/diff/0.1.12/download -> diff-0.1.12.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/env_logger/0.7.1/download -> env_logger-0.7.1.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/humantime/1.3.0/download -> humantime-1.3.0.crate https://crates.io/api/v1/crates/indexmap/1.8.0/download -> indexmap-1.8.0.crate https://crates.io/api/v1/crates/itertools/0.10.3/download -> itertools-0.10.3.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.112/download -> libc-0.2.112.crate https://crates.io/api/v1/crates/libmimalloc-sys/0.1.23/download -> libmimalloc-sys-0.1.23.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/memoffset/0.6.5/download -> memoffset-0.6.5.crate https://crates.io/api/v1/crates/mimalloc/0.1.27/download -> mimalloc-0.1.27.crate https://crates.io/api/v1/crates/num_cpus/1.13.1/download -> num_cpus-1.13.1.crate https://crates.io/api/v1/crates/os_str_bytes/6.0.0/download -> os_str_bytes-6.0.0.crate https://crates.io/api/v1/crates/output_vt100/0.1.2/download -> output_vt100-0.1.2.crate https://crates.io/api/v1/crates/owo-colors/3.2.0/download -> owo-colors-3.2.0.crate https://crates.io/api/v1/crates/pretty_assertions/1.0.0/download -> pretty_assertions-1.0.0.crate https://crates.io/api/v1/crates/pretty_env_logger/0.4.0/download -> pretty_env_logger-0.4.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.36/download -> proc-macro2-1.0.36.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.crate https://crates.io/api/v1/crates/quote/1.0.13/download -> quote-1.0.13.crate https://crates.io/api/v1/crates/radix-heap/0.4.2/download -> radix-heap-0.4.2.crate https://crates.io/api/v1/crates/rayon/1.5.1/download -> rayon-1.5.1.crate https://crates.io/api/v1/crates/rayon-core/1.9.1/download -> rayon-core-1.9.1.crate https://crates.io/api/v1/crates/regex/1.5.5/download -> regex-1.5.5.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/rpds/0.10.0/download -> rpds-0.10.0.crate https://crates.io/api/v1/crates/rustc-hash/1.1.0/download -> rustc-hash-1.1.0.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/strsim/0.10.0/download -> strsim-0.10.0.crate https://crates.io/api/v1/crates/syn/1.0.84/download -> syn-1.0.84.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/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/textwrap/0.14.2/download -> textwrap-0.14.2.crate https://crates.io/api/v1/crates/tree-sitter/0.20.5/download -> tree-sitter-0.20.5.crate https://crates.io/api/v1/crates/typed-arena/2.0.1/download -> typed-arena-2.0.1.crate https://crates.io/api/v1/crates/unicode-xid/0.2.2/download -> unicode-xid-0.2.2.crate https://crates.io/api/v1/crates/walkdir/2.3.2/download -> walkdir-2.3.2.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/wu-diff/0.1.2/download -> wu-diff-0.1.2.crate https://github.com/Wilfred/difftastic/archive/refs/tags/0.26.3.tar.gz -> difftastic-0.26.3.tar.gz -_eclasses_=cargo 52a92ed3815080c5f2caac1905687b1c multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=17cfdce74f272bf83e5fd381105ab00e diff --git a/metadata/md5-cache/dev-util/difftastic-0.27.0 b/metadata/md5-cache/dev-util/difftastic-0.27.0 new file mode 100644 index 000000000000..bf8fdefe8b61 --- /dev/null +++ b/metadata/md5-cache/dev-util/difftastic-0.27.0 @@ -0,0 +1,12 @@ +BDEPEND=>=virtual/rust-1.53 +DEFINED_PHASES=compile configure install prepare test unpack +DESCRIPTION=A diff that understands syntax +EAPI=8 +HOMEPAGE=https://github.com/wilfred/difftastic +IUSE=debug +KEYWORDS=~amd64 +LICENSE=Apache-2.0 MIT MPL-2.0 Unlicense ZLIB +SLOT=0 +SRC_URI=https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/archery/0.4.0/download -> archery-0.4.0.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/cc/1.0.73/download -> cc-1.0.73.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/clap/3.1.8/download -> clap-3.1.8.crate https://crates.io/api/v1/crates/const_format/0.2.22/download -> const_format-0.2.22.crate https://crates.io/api/v1/crates/const_format_proc_macros/0.2.22/download -> const_format_proc_macros-0.2.22.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.1/download -> crossbeam-channel-0.5.1.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.1/download -> crossbeam-deque-0.8.1.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.5/download -> crossbeam-epoch-0.9.5.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.7/download -> crossbeam-utils-0.8.7.crate https://crates.io/api/v1/crates/ctor/0.1.21/download -> ctor-0.1.21.crate https://crates.io/api/v1/crates/diff/0.1.12/download -> diff-0.1.12.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/env_logger/0.7.1/download -> env_logger-0.7.1.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/humantime/1.3.0/download -> humantime-1.3.0.crate https://crates.io/api/v1/crates/indexmap/1.8.0/download -> indexmap-1.8.0.crate https://crates.io/api/v1/crates/itertools/0.10.3/download -> itertools-0.10.3.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.112/download -> libc-0.2.112.crate https://crates.io/api/v1/crates/libmimalloc-sys/0.1.24/download -> libmimalloc-sys-0.1.24.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/memoffset/0.6.5/download -> memoffset-0.6.5.crate https://crates.io/api/v1/crates/mimalloc/0.1.28/download -> mimalloc-0.1.28.crate https://crates.io/api/v1/crates/num_cpus/1.13.1/download -> num_cpus-1.13.1.crate https://crates.io/api/v1/crates/os_str_bytes/6.0.0/download -> os_str_bytes-6.0.0.crate https://crates.io/api/v1/crates/output_vt100/0.1.2/download -> output_vt100-0.1.2.crate https://crates.io/api/v1/crates/owo-colors/3.3.0/download -> owo-colors-3.3.0.crate https://crates.io/api/v1/crates/pretty_assertions/1.0.0/download -> pretty_assertions-1.0.0.crate https://crates.io/api/v1/crates/pretty_env_logger/0.4.0/download -> pretty_env_logger-0.4.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.36/download -> proc-macro2-1.0.36.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.crate https://crates.io/api/v1/crates/quote/1.0.13/download -> quote-1.0.13.crate https://crates.io/api/v1/crates/radix-heap/0.4.2/download -> radix-heap-0.4.2.crate https://crates.io/api/v1/crates/rayon/1.5.2/download -> rayon-1.5.2.crate https://crates.io/api/v1/crates/rayon-core/1.9.2/download -> rayon-core-1.9.2.crate https://crates.io/api/v1/crates/regex/1.5.5/download -> regex-1.5.5.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/rpds/0.10.0/download -> rpds-0.10.0.crate https://crates.io/api/v1/crates/rustc-hash/1.1.0/download -> rustc-hash-1.1.0.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/strsim/0.10.0/download -> strsim-0.10.0.crate https://crates.io/api/v1/crates/syn/1.0.84/download -> syn-1.0.84.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/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/textwrap/0.15.0/download -> textwrap-0.15.0.crate https://crates.io/api/v1/crates/tree-sitter/0.20.6/download -> tree-sitter-0.20.6.crate https://crates.io/api/v1/crates/typed-arena/2.0.1/download -> typed-arena-2.0.1.crate https://crates.io/api/v1/crates/unicode-xid/0.2.2/download -> unicode-xid-0.2.2.crate https://crates.io/api/v1/crates/walkdir/2.3.2/download -> walkdir-2.3.2.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/wu-diff/0.1.2/download -> wu-diff-0.1.2.crate https://github.com/Wilfred/difftastic/archive/refs/tags/0.27.0.tar.gz -> difftastic-0.27.0.tar.gz +_eclasses_=cargo 52a92ed3815080c5f2caac1905687b1c multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=c25c3cd2bd4e1efdd80ed942d59b9aae diff --git a/metadata/md5-cache/dev-util/global-6.6.4 b/metadata/md5-cache/dev-util/global-6.6.4 index 25f11ac60e00..1ac356fde429 100644 --- a/metadata/md5-cache/dev-util/global-6.6.4 +++ b/metadata/md5-cache/dev-util/global-6.6.4 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=sys-libs/ncurses emacs? ( >=app-editors/emacs-23.1:* ) vim? ( || ( app-editors/vim app-editors/gvim ) ) || ( dev-libs/libltdl:0 sys-devel/libtool:2 ) SLOT=0 SRC_URI=mirror://gnu/global/global-6.6.4.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b581472ebcd9757bf6c8676ab32b4fab diff --git a/metadata/md5-cache/dev-util/gtk-doc-1.33.2 b/metadata/md5-cache/dev-util/gtk-doc-1.33.2 index 2db21af0f4b3..c59c03e0b23f 100644 --- a/metadata/md5-cache/dev-util/gtk-doc-1.33.2 +++ b/metadata/md5-cache/dev-util/gtk-doc-1.33.2 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/gtk-doc/1.33/gtk-doc-1.33.2.tar.xz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e gnome.org 429073e99d7067d3462e875bf5c6e14a meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 gnome.org 429073e99d7067d3462e875bf5c6e14a meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6d934ad9bbad981a89fb0044c2b0a4be diff --git a/metadata/md5-cache/dev-util/hfstospell-0.5.2-r1 b/metadata/md5-cache/dev-util/hfstospell-0.5.2-r1 deleted file mode 100644 index 349b99c37885..000000000000 --- a/metadata/md5-cache/dev-util/hfstospell-0.5.2-r1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 -DEFINED_PHASES=configure install prepare -DEPEND=app-arch/libarchive dev-libs/icu:= !clang? ( dev-cpp/libxmlpp:2.6 dev-libs/tinyxml2 ) -DESCRIPTION=HFST spell checker library and command line tool -EAPI=7 -HOMEPAGE=https://github.com/hfst/hfst-ospell -IUSE=clang -KEYWORDS=amd64 ~riscv x86 -LICENSE=Apache-2.0 -RDEPEND=app-arch/libarchive dev-libs/icu:= !clang? ( dev-cpp/libxmlpp:2.6 dev-libs/tinyxml2 ) -SLOT=0 -SRC_URI=https://github.com/hfst/hfst-ospell/archive/v0.5.2.tar.gz -> hfstospell-0.5.2.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=3ae9e155577c96f680702113742e286c diff --git a/metadata/md5-cache/dev-util/ninja-1.10.2-r1 b/metadata/md5-cache/dev-util/ninja-1.10.2-r1 index 04b8c0de457e..4a3ccd95b187 100644 --- a/metadata/md5-cache/dev-util/ninja-1.10.2-r1 +++ b/metadata/md5-cache/dev-util/ninja-1.10.2-r1 @@ -10,5 +10,5 @@ RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) vim-syntax? ( || ( app-editors/vim RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ninja-build/ninja/archive/v1.10.2.tar.gz -> ninja-1.10.2.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=83e8888051e140961245149a7654baf9 diff --git a/metadata/md5-cache/dev-util/ninja-9999 b/metadata/md5-cache/dev-util/ninja-9999 index 497b5f5c90f9..fdff23921fdc 100644 --- a/metadata/md5-cache/dev-util/ninja-9999 +++ b/metadata/md5-cache/dev-util/ninja-9999 @@ -9,5 +9,5 @@ PROPERTIES=live RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d4264d394a19b9d37cc395bf0bb6605c diff --git a/metadata/md5-cache/dev-util/patdiff-0.14.0-r1 b/metadata/md5-cache/dev-util/patdiff-0.14.0-r1 index 355c452bea3d..dc73389c0c56 100644 --- a/metadata/md5-cache/dev-util/patdiff-0.14.0-r1 +++ b/metadata/md5-cache/dev-util/patdiff-0.14.0-r1 @@ -5,10 +5,10 @@ DESCRIPTION=Colored patience diffs with word-level refinement EAPI=7 HOMEPAGE=https://github.com/janestreet/patdiff IUSE=+ocamlopt -KEYWORDS=~amd64 +KEYWORDS=~amd64 ~riscv LICENSE=Apache-2.0 RDEPEND=>=dev-lang/ocaml-4.08.0:= dev-ml/core:= dev-ml/core_kernel:= dev-ml/patience_diff:0/0.14 dev-ml/ppx_jane:= dev-ml/pcre-ocaml:= >=dev-ml/re-1.8.0:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0 SRC_URI=https://github.com/janestreet/patdiff/archive/v0.14.0.tar.gz -> patdiff-0.14.0.tar.gz _eclasses_=dune c8f275f00adf2380fe0a57d8a249885c multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=a4d838f220a9ced37cfe3047cfa66bcc +_md5_=afd70519be53b04445fcfbba49a75287 diff --git a/metadata/md5-cache/dev-util/protobuf-cucumber-3.10.8-r1 b/metadata/md5-cache/dev-util/protobuf-cucumber-3.10.8-r1 index f1a51213daca..b3b693cb87fd 100644 --- a/metadata/md5-cache/dev-util/protobuf-cucumber-3.10.8-r1 +++ b/metadata/md5-cache/dev-util/protobuf-cucumber-3.10.8-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/protobuf-cucumber-3.10.8.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c502bd175eac0904a7faa12fa16e1571 diff --git a/metadata/md5-cache/dev-util/ragel-7.0.4-r1 b/metadata/md5-cache/dev-util/ragel-7.0.4-r1 index f3d5b1291bb8..ee81de64ac02 100644 --- a/metadata/md5-cache/dev-util/ragel-7.0.4-r1 +++ b/metadata/md5-cache/dev-util/ragel-7.0.4-r1 @@ -5,10 +5,10 @@ DESCRIPTION=Compiles finite state machines from regular languages into executabl EAPI=8 HOMEPAGE=https://www.colm.net/open-source/ragel/ IUSE=doc -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc ~x86 LICENSE=MIT RDEPEND=>=dev-util/colm-0.14.7-r1 SLOT=0 SRC_URI=https://www.colm.net/files/ragel/ragel-7.0.4.tar.gz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=bf35cf2884ea327c0e1d3e27eeccc413 +_md5_=93d6014fa84168ec50b0cc9514d58958 diff --git a/metadata/md5-cache/dev-util/tree-sitter-cli-0.20.6 b/metadata/md5-cache/dev-util/tree-sitter-cli-0.20.6 index 02736a8d8d5a..07620c7c60ff 100644 --- a/metadata/md5-cache/dev-util/tree-sitter-cli-0.20.6 +++ b/metadata/md5-cache/dev-util/tree-sitter-cli-0.20.6 @@ -4,11 +4,11 @@ DESCRIPTION=Command-line tool for creating and testing tree-sitter grammars EAPI=8 HOMEPAGE=https://github.com/tree-sitter/tree-sitter IUSE=debug -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=Apache-2.0 BSD-2 CC0-1.0 ISC MIT RDEPEND=~dev-libs/tree-sitter-0.20.6[-ts-cli(-)] RESTRICT=test SLOT=0 SRC_URI=https://github.com/tree-sitter/tree-sitter/archive/refs/tags/v0.20.6.tar.gz -> tree-sitter-0.20.6.tar.gz https://crates.io/api/v1/crates/aho-corasick/0.7.15/download -> aho-corasick-0.7.15.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/anyhow/1.0.40/download -> anyhow-1.0.40.crate https://crates.io/api/v1/crates/arrayref/0.3.6/download -> arrayref-0.3.6.crate https://crates.io/api/v1/crates/arrayvec/0.5.2/download -> arrayvec-0.5.2.crate https://crates.io/api/v1/crates/ascii/1.0.0/download -> ascii-1.0.0.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/base64/0.13.0/download -> base64-0.13.0.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/blake2b_simd/0.5.11/download -> blake2b_simd-0.5.11.crate https://crates.io/api/v1/crates/bumpalo/3.6.1/download -> bumpalo-3.6.1.crate https://crates.io/api/v1/crates/cc/1.0.67/download -> cc-1.0.67.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/chunked_transfer/1.4.0/download -> chunked_transfer-1.4.0.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/constant_time_eq/0.1.5/download -> constant_time_eq-0.1.5.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.3/download -> crossbeam-utils-0.8.3.crate https://crates.io/api/v1/crates/ctor/0.1.20/download -> ctor-0.1.20.crate https://crates.io/api/v1/crates/diff/0.1.12/download -> diff-0.1.12.crate https://crates.io/api/v1/crates/difference/2.0.0/download -> difference-2.0.0.crate https://crates.io/api/v1/crates/dirs/3.0.1/download -> dirs-3.0.1.crate https://crates.io/api/v1/crates/dirs-sys/0.3.5/download -> dirs-sys-0.3.5.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/form_urlencoded/1.0.1/download -> form_urlencoded-1.0.1.crate https://crates.io/api/v1/crates/getrandom/0.1.16/download -> getrandom-0.1.16.crate https://crates.io/api/v1/crates/getrandom/0.2.2/download -> getrandom-0.2.2.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.crate https://crates.io/api/v1/crates/hashbrown/0.9.1/download -> hashbrown-0.9.1.crate https://crates.io/api/v1/crates/hermit-abi/0.1.18/download -> hermit-abi-0.1.18.crate https://crates.io/api/v1/crates/html-escape/0.2.6/download -> html-escape-0.2.6.crate https://crates.io/api/v1/crates/idna/0.2.2/download -> idna-0.2.2.crate https://crates.io/api/v1/crates/indexmap/1.6.1/download -> indexmap-1.6.1.crate https://crates.io/api/v1/crates/itoa/0.4.7/download -> itoa-0.4.7.crate https://crates.io/api/v1/crates/js-sys/0.3.48/download -> js-sys-0.3.48.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.86/download -> libc-0.2.86.crate https://crates.io/api/v1/crates/libloading/0.7.0/download -> libloading-0.7.0.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/matches/0.1.8/download -> matches-0.1.8.crate https://crates.io/api/v1/crates/memchr/2.3.4/download -> memchr-2.3.4.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/once_cell/1.7.0/download -> once_cell-1.7.0.crate https://crates.io/api/v1/crates/output_vt100/0.1.2/download -> output_vt100-0.1.2.crate https://crates.io/api/v1/crates/percent-encoding/2.1.0/download -> percent-encoding-2.1.0.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download -> ppv-lite86-0.2.10.crate https://crates.io/api/v1/crates/pretty_assertions/0.7.2/download -> pretty_assertions-0.7.2.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.9/download -> quote-1.0.9.crate https://crates.io/api/v1/crates/rand/0.8.3/download -> rand-0.8.3.crate https://crates.io/api/v1/crates/rand_chacha/0.3.0/download -> rand_chacha-0.3.0.crate https://crates.io/api/v1/crates/rand_core/0.6.2/download -> rand_core-0.6.2.crate https://crates.io/api/v1/crates/rand_hc/0.3.0/download -> rand_hc-0.3.0.crate https://crates.io/api/v1/crates/redox_syscall/0.1.57/download -> redox_syscall-0.1.57.crate https://crates.io/api/v1/crates/redox_syscall/0.2.5/download -> redox_syscall-0.2.5.crate https://crates.io/api/v1/crates/redox_users/0.3.5/download -> redox_users-0.3.5.crate https://crates.io/api/v1/crates/regex/1.4.3/download -> regex-1.4.3.crate https://crates.io/api/v1/crates/regex-syntax/0.6.22/download -> regex-syntax-0.6.22.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/rust-argon2/0.8.3/download -> rust-argon2-0.8.3.crate https://crates.io/api/v1/crates/rustc-hash/1.1.0/download -> rustc-hash-1.1.0.crate https://crates.io/api/v1/crates/ryu/1.0.5/download -> ryu-1.0.5.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/semver/1.0.5/download -> semver-1.0.5.crate https://crates.io/api/v1/crates/serde/1.0.130/download -> serde-1.0.130.crate https://crates.io/api/v1/crates/serde_derive/1.0.130/download -> serde_derive-1.0.130.crate https://crates.io/api/v1/crates/serde_json/1.0.63/download -> serde_json-1.0.63.crate https://crates.io/api/v1/crates/smallbitvec/2.5.1/download -> smallbitvec-2.5.1.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.67/download -> syn-1.0.67.crate https://crates.io/api/v1/crates/tempfile/3.2.0/download -> tempfile-3.2.0.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thiserror/1.0.25/download -> thiserror-1.0.25.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.25/download -> thiserror-impl-1.0.25.crate https://crates.io/api/v1/crates/thread_local/1.1.3/download -> thread_local-1.1.3.crate https://crates.io/api/v1/crates/time/0.1.43/download -> time-0.1.43.crate https://crates.io/api/v1/crates/tiny_http/0.8.0/download -> tiny_http-0.8.0.crate https://crates.io/api/v1/crates/tinyvec/1.1.1/download -> tinyvec-1.1.1.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/toml/0.5.8/download -> toml-0.5.8.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.4/download -> unicode-bidi-0.3.4.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.17/download -> unicode-normalization-0.1.17.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/url/2.2.1/download -> url-2.2.1.crate https://crates.io/api/v1/crates/utf8-width/0.1.4/download -> utf8-width-0.1.4.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/walkdir/2.3.1/download -> walkdir-2.3.1.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.10.2+wasi-snapshot-preview1/download -> wasi-0.10.2+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.71/download -> wasm-bindgen-0.2.71.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.71/download -> wasm-bindgen-backend-0.2.71.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.71/download -> wasm-bindgen-macro-0.2.71.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.71/download -> wasm-bindgen-macro-support-0.2.71.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.71/download -> wasm-bindgen-shared-0.2.71.crate https://crates.io/api/v1/crates/web-sys/0.3.48/download -> web-sys-0.3.48.crate https://crates.io/api/v1/crates/webbrowser/0.5.5/download -> webbrowser-0.5.5.crate https://crates.io/api/v1/crates/which/4.1.0/download -> which-4.1.0.crate https://crates.io/api/v1/crates/widestring/0.4.3/download -> widestring-0.4.3.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 52a92ed3815080c5f2caac1905687b1c multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=fdf1143854e76d313a5d47bc09228cc8 +_md5_=48db36fba7345dbb06ebc564518f8439 diff --git a/metadata/md5-cache/dev-vcs/Manifest.gz b/metadata/md5-cache/dev-vcs/Manifest.gz index 4d3e5e4176ac..aead5b6e609f 100644 Binary files a/metadata/md5-cache/dev-vcs/Manifest.gz and b/metadata/md5-cache/dev-vcs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-vcs/git-2.32.0-r1 b/metadata/md5-cache/dev-vcs/git-2.32.0-r1 index 9b73424065fa..85700df109fd 100644 --- a/metadata/md5-cache/dev-vcs/git-2.32.0-r1 +++ b/metadata/md5-cache/dev-vcs/git-2.32.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.32.0.tar.xz https://www.kernel.org/pub/software/scm/git/git-manpages-2.32.0.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.32.0.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=860df902a623c4b7193356d39d0c5459 diff --git a/metadata/md5-cache/dev-vcs/git-2.33.1 b/metadata/md5-cache/dev-vcs/git-2.33.1 index 2a99f7972c81..4f2eae2a693a 100644 --- a/metadata/md5-cache/dev-vcs/git-2.33.1 +++ b/metadata/md5-cache/dev-vcs/git-2.33.1 @@ -12,5 +12,5 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.33.1.tar.xz https://www.kernel.org/pub/software/scm/git/git-manpages-2.33.1.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.33.1.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=32e817af9a2f33bef0693bfa0d0bb5eb diff --git a/metadata/md5-cache/dev-vcs/git-2.34.1 b/metadata/md5-cache/dev-vcs/git-2.34.1 index 3319675d8578..a4e010fad51f 100644 --- a/metadata/md5-cache/dev-vcs/git-2.34.1 +++ b/metadata/md5-cache/dev-vcs/git-2.34.1 @@ -12,5 +12,5 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.34.1.tar.xz https://www.kernel.org/pub/software/scm/git/git-manpages-2.34.1.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.34.1.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dd959a55af3558357adb06601e3b9fd2 diff --git a/metadata/md5-cache/dev-vcs/git-2.34.1-r1 b/metadata/md5-cache/dev-vcs/git-2.34.1-r1 index a8ee44107ae2..edec8d8456bb 100644 --- a/metadata/md5-cache/dev-vcs/git-2.34.1-r1 +++ b/metadata/md5-cache/dev-vcs/git-2.34.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.34.1.tar.xz https://www.kernel.org/pub/software/scm/git/git-manpages-2.34.1.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.34.1.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e00172f6c0e2ddf4656e602c8436d4db diff --git a/metadata/md5-cache/dev-vcs/git-2.35.1 b/metadata/md5-cache/dev-vcs/git-2.35.1 index 3df0c778e098..3b8d8270430e 100644 --- a/metadata/md5-cache/dev-vcs/git-2.35.1 +++ b/metadata/md5-cache/dev-vcs/git-2.35.1 @@ -12,5 +12,5 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.35.1.tar.xz https://www.kernel.org/pub/software/scm/git/git-manpages-2.35.1.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.35.1.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bbde6a94c620226b624af0a3d0bf6440 diff --git a/metadata/md5-cache/dev-vcs/git-2.35.2 b/metadata/md5-cache/dev-vcs/git-2.35.2 index 921768eb8f41..0954f03041e5 100644 --- a/metadata/md5-cache/dev-vcs/git-2.35.2 +++ b/metadata/md5-cache/dev-vcs/git-2.35.2 @@ -12,5 +12,5 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.35.2.tar.xz https://www.kernel.org/pub/software/scm/git/git-manpages-2.35.2.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.35.2.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e00172f6c0e2ddf4656e602c8436d4db diff --git a/metadata/md5-cache/dev-vcs/git-2.35.3 b/metadata/md5-cache/dev-vcs/git-2.35.3 index 13a3040ef830..fb710b3f68a7 100644 --- a/metadata/md5-cache/dev-vcs/git-2.35.3 +++ b/metadata/md5-cache/dev-vcs/git-2.35.3 @@ -12,5 +12,5 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.35.3.tar.xz https://www.kernel.org/pub/software/scm/git/git-manpages-2.35.3.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.35.3.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e00172f6c0e2ddf4656e602c8436d4db diff --git a/metadata/md5-cache/dev-vcs/git-2.36.0_rc2 b/metadata/md5-cache/dev-vcs/git-2.36.0 similarity index 84% rename from metadata/md5-cache/dev-vcs/git-2.36.0_rc2 rename to metadata/md5-cache/dev-vcs/git-2.36.0 index 486c0abd0418..b4ed6a801425 100644 --- a/metadata/md5-cache/dev-vcs/git-2.36.0_rc2 +++ b/metadata/md5-cache/dev-vcs/git-2.36.0 @@ -5,11 +5,12 @@ DESCRIPTION=stupid content tracker: distributed VCS designed for speed and effic EAPI=8 HOMEPAGE=https://www.git-scm.com/ IUSE=+blksha1 +curl cgi doc emacs gnome-keyring +gpg highlight +iconv mediawiki mediawiki-experimental +nls +pcre perforce +perl +ppcsha1 subversion tk +threads +webdav xinetd cvs test python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +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=GPL-2 RDEPEND=gnome-keyring? ( app-crypt/libsecret dev-libs/glib:2 ) dev-libs/openssl:0= sys-libs/zlib pcre? ( dev-libs/libpcre2:= ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:0= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) iconv? ( virtual/libiconv ) gpg? ( app-crypt/gnupg ) perl? ( dev-perl/Error dev-perl/MailTools dev-perl/Authen-SASL >=virtual/perl-libnet-3.110.0-r4[ssl] cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) mediawiki? ( dev-perl/DateTime-Format-ISO8601 dev-perl/HTML-Tree dev-perl/MediaWiki-API ) subversion? ( dev-vcs/subversion[-dso(-),perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) perforce? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) ) REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimental? ( mediawiki ) perforce? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) subversion? ( perl ) webdav? ( curl ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://www.kernel.org/pub/software/scm/git/testing/git-2.36.0.rc2.tar.xz https://www.kernel.org/pub/software/scm/git/testing/git-manpages-2.36.0.rc2.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/testing/git-htmldocs-2.36.0.rc2.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.36.0.tar.xz https://www.kernel.org/pub/software/scm/git/git-manpages-2.36.0.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.36.0.tar.xz ) +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e00172f6c0e2ddf4656e602c8436d4db diff --git a/metadata/md5-cache/dev-vcs/git-9999 b/metadata/md5-cache/dev-vcs/git-9999 index 304df05fc7cb..930593e38d23 100644 --- a/metadata/md5-cache/dev-vcs/git-9999 +++ b/metadata/md5-cache/dev-vcs/git-9999 @@ -11,5 +11,5 @@ RDEPEND=gnome-keyring? ( app-crypt/libsecret dev-libs/glib:2 ) dev-libs/openssl: REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimental? ( mediawiki ) perforce? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) subversion? ( perl ) webdav? ( curl ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e00172f6c0e2ddf4656e602c8436d4db diff --git a/metadata/md5-cache/dev-vcs/git-9999-r1 b/metadata/md5-cache/dev-vcs/git-9999-r1 index 304df05fc7cb..930593e38d23 100644 --- a/metadata/md5-cache/dev-vcs/git-9999-r1 +++ b/metadata/md5-cache/dev-vcs/git-9999-r1 @@ -11,5 +11,5 @@ RDEPEND=gnome-keyring? ( app-crypt/libsecret dev-libs/glib:2 ) dev-libs/openssl: REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimental? ( mediawiki ) perforce? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) subversion? ( perl ) webdav? ( curl ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e00172f6c0e2ddf4656e602c8436d4db diff --git a/metadata/md5-cache/dev-vcs/git-9999-r2 b/metadata/md5-cache/dev-vcs/git-9999-r2 index 304df05fc7cb..930593e38d23 100644 --- a/metadata/md5-cache/dev-vcs/git-9999-r2 +++ b/metadata/md5-cache/dev-vcs/git-9999-r2 @@ -11,5 +11,5 @@ RDEPEND=gnome-keyring? ( app-crypt/libsecret dev-libs/glib:2 ) dev-libs/openssl: REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimental? ( mediawiki ) perforce? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) subversion? ( perl ) webdav? ( curl ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e00172f6c0e2ddf4656e602c8436d4db diff --git a/metadata/md5-cache/dev-vcs/git-9999-r3 b/metadata/md5-cache/dev-vcs/git-9999-r3 index 304df05fc7cb..930593e38d23 100644 --- a/metadata/md5-cache/dev-vcs/git-9999-r3 +++ b/metadata/md5-cache/dev-vcs/git-9999-r3 @@ -11,5 +11,5 @@ RDEPEND=gnome-keyring? ( app-crypt/libsecret dev-libs/glib:2 ) dev-libs/openssl: REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimental? ( mediawiki ) perforce? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) subversion? ( perl ) webdav? ( curl ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 plocale 7ce00136a77130df46fbbd5966f98a61 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e00172f6c0e2ddf4656e602c8436d4db diff --git a/metadata/md5-cache/dev-vcs/mercurial-5.8 b/metadata/md5-cache/dev-vcs/mercurial-5.8 index 4af6f6e36bbf..5d1a36c289aa 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-5.8 +++ b/metadata/md5-cache/dev-vcs/mercurial-5.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targe RESTRICT=test SLOT=0 SRC_URI=https://www.mercurial-scm.org/release/mercurial-5.8.tar.gz rust? ( https://crates.io/api/v1/crates/adler/0.2.3/download -> adler-0.2.3.crate https://crates.io/api/v1/crates/aho-corasick/0.7.15/download -> aho-corasick-0.7.15.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/bitmaps/2.1.0/download -> bitmaps-2.1.0.crate https://crates.io/api/v1/crates/byteorder/1.3.4/download -> byteorder-1.3.4.crate https://crates.io/api/v1/crates/bytes-cast/0.1.0/download -> bytes-cast-0.1.0.crate https://crates.io/api/v1/crates/bytes-cast-derive/0.1.0/download -> bytes-cast-derive-0.1.0.crate https://crates.io/api/v1/crates/cc/1.0.66/download -> cc-1.0.66.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/const_fn/0.4.4/download -> const_fn-0.4.4.crate https://crates.io/api/v1/crates/cpython/0.5.2/download -> cpython-0.5.2.crate https://crates.io/api/v1/crates/crc32fast/1.2.1/download -> crc32fast-1.2.1.crate https://crates.io/api/v1/crates/crossbeam-channel/0.4.4/download -> crossbeam-channel-0.4.4.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.0/download -> crossbeam-channel-0.5.0.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.0/download -> crossbeam-deque-0.8.0.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.1/download -> crossbeam-epoch-0.9.1.crate https://crates.io/api/v1/crates/crossbeam-utils/0.7.2/download -> crossbeam-utils-0.7.2.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.1/download -> crossbeam-utils-0.8.1.crate https://crates.io/api/v1/crates/ctor/0.1.16/download -> ctor-0.1.16.crate https://crates.io/api/v1/crates/derive_more/0.99.11/download -> derive_more-0.99.11.crate https://crates.io/api/v1/crates/difference/2.0.0/download -> difference-2.0.0.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/env_logger/0.7.1/download -> env_logger-0.7.1.crate https://crates.io/api/v1/crates/flate2/1.0.19/download -> flate2-1.0.19.crate https://crates.io/api/v1/crates/format-bytes/0.2.2/download -> format-bytes-0.2.2.crate https://crates.io/api/v1/crates/format-bytes-macros/0.3.0/download -> format-bytes-macros-0.3.0.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/gcc/0.3.55/download -> gcc-0.3.55.crate https://crates.io/api/v1/crates/getrandom/0.1.15/download -> getrandom-0.1.15.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.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/home/0.5.3/download -> home-0.5.3.crate https://crates.io/api/v1/crates/humantime/1.3.0/download -> humantime-1.3.0.crate https://crates.io/api/v1/crates/im-rc/15.0.0/download -> im-rc-15.0.0.crate https://crates.io/api/v1/crates/itertools/0.9.0/download -> itertools-0.9.0.crate https://crates.io/api/v1/crates/jobserver/0.1.21/download -> jobserver-0.1.21.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.81/download -> libc-0.2.81.crate https://crates.io/api/v1/crates/libz-sys/1.1.2/download -> libz-sys-1.1.2.crate https://crates.io/api/v1/crates/log/0.4.11/download -> log-0.4.11.crate https://crates.io/api/v1/crates/maybe-uninit/2.0.0/download -> maybe-uninit-2.0.0.crate https://crates.io/api/v1/crates/memchr/2.3.4/download -> memchr-2.3.4.crate https://crates.io/api/v1/crates/memmap/0.7.0/download -> memmap-0.7.0.crate https://crates.io/api/v1/crates/memoffset/0.6.1/download -> memoffset-0.6.1.crate https://crates.io/api/v1/crates/micro-timer/0.3.1/download -> micro-timer-0.3.1.crate https://crates.io/api/v1/crates/micro-timer-macros/0.3.1/download -> micro-timer-macros-0.3.1.crate https://crates.io/api/v1/crates/miniz_oxide/0.4.3/download -> miniz_oxide-0.4.3.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/output_vt100/0.1.2/download -> output_vt100-0.1.2.crate https://crates.io/api/v1/crates/paste/0.1.18/download -> paste-0.1.18.crate https://crates.io/api/v1/crates/paste-impl/0.1.18/download -> paste-impl-0.1.18.crate https://crates.io/api/v1/crates/pkg-config/0.3.19/download -> pkg-config-0.3.19.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download -> ppv-lite86-0.2.10.crate https://crates.io/api/v1/crates/pretty_assertions/0.6.1/download -> pretty_assertions-0.6.1.crate https://crates.io/api/v1/crates/proc-macro-hack/0.5.19/download -> proc-macro-hack-0.5.19.crate https://crates.io/api/v1/crates/proc-macro2/1.0.24/download -> proc-macro2-1.0.24.crate https://crates.io/api/v1/crates/python27-sys/0.5.2/download -> python27-sys-0.5.2.crate https://crates.io/api/v1/crates/python3-sys/0.5.2/download -> python3-sys-0.5.2.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.crate https://crates.io/api/v1/crates/quote/1.0.7/download -> quote-1.0.7.crate https://crates.io/api/v1/crates/rand/0.3.23/download -> rand-0.3.23.crate https://crates.io/api/v1/crates/rand/0.4.6/download -> rand-0.4.6.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.2.crate https://crates.io/api/v1/crates/rand_core/0.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_distr/0.2.2/download -> rand_distr-0.2.2.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_pcg/0.2.1/download -> rand_pcg-0.2.1.crate https://crates.io/api/v1/crates/rand_xoshiro/0.4.0/download -> rand_xoshiro-0.4.0.crate https://crates.io/api/v1/crates/rayon/1.5.0/download -> rayon-1.5.0.crate https://crates.io/api/v1/crates/rayon-core/1.9.0/download -> rayon-core-1.9.0.crate https://crates.io/api/v1/crates/rdrand/0.4.0/download -> rdrand-0.4.0.crate https://crates.io/api/v1/crates/redox_syscall/0.1.57/download -> redox_syscall-0.1.57.crate https://crates.io/api/v1/crates/regex/1.4.2/download -> regex-1.4.2.crate https://crates.io/api/v1/crates/regex-syntax/0.6.21/download -> regex-syntax-0.6.21.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/rust-crypto/0.2.36/download -> rust-crypto-0.2.36.crate https://crates.io/api/v1/crates/rustc-serialize/0.3.24/download -> rustc-serialize-0.3.24.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/sized-chunks/0.6.2/download -> sized-chunks-0.6.2.crate https://crates.io/api/v1/crates/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/syn/1.0.54/download -> syn-1.0.54.crate https://crates.io/api/v1/crates/tempfile/3.1.0/download -> tempfile-3.1.0.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thread_local/1.0.1/download -> thread_local-1.0.1.crate https://crates.io/api/v1/crates/time/0.1.44/download -> time-0.1.44.crate https://crates.io/api/v1/crates/twox-hash/1.6.0/download -> twox-hash-1.6.0.crate https://crates.io/api/v1/crates/typenum/1.12.0/download -> typenum-1.12.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/users/0.11.0/download -> users-0.11.0.crate https://crates.io/api/v1/crates/vcpkg/0.2.11/download -> vcpkg-0.2.11.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.10.0+wasi-snapshot-preview1/download -> wasi-0.10.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/zstd/0.5.3+zstd.1.4.5/download -> zstd-0.5.3+zstd.1.4.5.crate https://crates.io/api/v1/crates/zstd-safe/2.0.5+zstd.1.4.5/download -> zstd-safe-2.0.5+zstd.1.4.5.crate https://crates.io/api/v1/crates/zstd-sys/1.4.17+zstd.1.4.5/download -> zstd-sys-1.4.17+zstd.1.4.5.crate ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 52a92ed3815080c5f2caac1905687b1c distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 52a92ed3815080c5f2caac1905687b1c distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=a662b0800b110b6953d7a1630992bcf4 diff --git a/metadata/md5-cache/dev-vcs/mercurial-5.8.1 b/metadata/md5-cache/dev-vcs/mercurial-5.8.1 index e59b51b2f0d1..a69da8a6c36d 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-5.8.1 +++ b/metadata/md5-cache/dev-vcs/mercurial-5.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targe RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.mercurial-scm.org/release/mercurial-5.8.1.tar.gz rust? ( https://crates.io/api/v1/crates/adler/0.2.3/download -> adler-0.2.3.crate https://crates.io/api/v1/crates/aho-corasick/0.7.15/download -> aho-corasick-0.7.15.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/bitmaps/2.1.0/download -> bitmaps-2.1.0.crate https://crates.io/api/v1/crates/byteorder/1.3.4/download -> byteorder-1.3.4.crate https://crates.io/api/v1/crates/bytes-cast/0.1.0/download -> bytes-cast-0.1.0.crate https://crates.io/api/v1/crates/bytes-cast-derive/0.1.0/download -> bytes-cast-derive-0.1.0.crate https://crates.io/api/v1/crates/cc/1.0.66/download -> cc-1.0.66.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/const_fn/0.4.4/download -> const_fn-0.4.4.crate https://crates.io/api/v1/crates/cpython/0.5.2/download -> cpython-0.5.2.crate https://crates.io/api/v1/crates/crc32fast/1.2.1/download -> crc32fast-1.2.1.crate https://crates.io/api/v1/crates/crossbeam-channel/0.4.4/download -> crossbeam-channel-0.4.4.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.0/download -> crossbeam-channel-0.5.0.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.0/download -> crossbeam-deque-0.8.0.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.1/download -> crossbeam-epoch-0.9.1.crate https://crates.io/api/v1/crates/crossbeam-utils/0.7.2/download -> crossbeam-utils-0.7.2.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.1/download -> crossbeam-utils-0.8.1.crate https://crates.io/api/v1/crates/ctor/0.1.16/download -> ctor-0.1.16.crate https://crates.io/api/v1/crates/derive_more/0.99.11/download -> derive_more-0.99.11.crate https://crates.io/api/v1/crates/difference/2.0.0/download -> difference-2.0.0.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/env_logger/0.7.1/download -> env_logger-0.7.1.crate https://crates.io/api/v1/crates/flate2/1.0.19/download -> flate2-1.0.19.crate https://crates.io/api/v1/crates/format-bytes/0.2.2/download -> format-bytes-0.2.2.crate https://crates.io/api/v1/crates/format-bytes-macros/0.3.0/download -> format-bytes-macros-0.3.0.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/gcc/0.3.55/download -> gcc-0.3.55.crate https://crates.io/api/v1/crates/getrandom/0.1.15/download -> getrandom-0.1.15.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.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/home/0.5.3/download -> home-0.5.3.crate https://crates.io/api/v1/crates/humantime/1.3.0/download -> humantime-1.3.0.crate https://crates.io/api/v1/crates/im-rc/15.0.0/download -> im-rc-15.0.0.crate https://crates.io/api/v1/crates/itertools/0.9.0/download -> itertools-0.9.0.crate https://crates.io/api/v1/crates/jobserver/0.1.21/download -> jobserver-0.1.21.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.81/download -> libc-0.2.81.crate https://crates.io/api/v1/crates/libz-sys/1.1.2/download -> libz-sys-1.1.2.crate https://crates.io/api/v1/crates/log/0.4.11/download -> log-0.4.11.crate https://crates.io/api/v1/crates/maybe-uninit/2.0.0/download -> maybe-uninit-2.0.0.crate https://crates.io/api/v1/crates/memchr/2.3.4/download -> memchr-2.3.4.crate https://crates.io/api/v1/crates/memmap/0.7.0/download -> memmap-0.7.0.crate https://crates.io/api/v1/crates/memoffset/0.6.1/download -> memoffset-0.6.1.crate https://crates.io/api/v1/crates/micro-timer/0.3.1/download -> micro-timer-0.3.1.crate https://crates.io/api/v1/crates/micro-timer-macros/0.3.1/download -> micro-timer-macros-0.3.1.crate https://crates.io/api/v1/crates/miniz_oxide/0.4.3/download -> miniz_oxide-0.4.3.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/output_vt100/0.1.2/download -> output_vt100-0.1.2.crate https://crates.io/api/v1/crates/paste/0.1.18/download -> paste-0.1.18.crate https://crates.io/api/v1/crates/paste-impl/0.1.18/download -> paste-impl-0.1.18.crate https://crates.io/api/v1/crates/pkg-config/0.3.19/download -> pkg-config-0.3.19.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download -> ppv-lite86-0.2.10.crate https://crates.io/api/v1/crates/pretty_assertions/0.6.1/download -> pretty_assertions-0.6.1.crate https://crates.io/api/v1/crates/proc-macro-hack/0.5.19/download -> proc-macro-hack-0.5.19.crate https://crates.io/api/v1/crates/proc-macro2/1.0.24/download -> proc-macro2-1.0.24.crate https://crates.io/api/v1/crates/python27-sys/0.5.2/download -> python27-sys-0.5.2.crate https://crates.io/api/v1/crates/python3-sys/0.5.2/download -> python3-sys-0.5.2.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.crate https://crates.io/api/v1/crates/quote/1.0.7/download -> quote-1.0.7.crate https://crates.io/api/v1/crates/rand/0.3.23/download -> rand-0.3.23.crate https://crates.io/api/v1/crates/rand/0.4.6/download -> rand-0.4.6.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.2.crate https://crates.io/api/v1/crates/rand_core/0.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_distr/0.2.2/download -> rand_distr-0.2.2.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_pcg/0.2.1/download -> rand_pcg-0.2.1.crate https://crates.io/api/v1/crates/rand_xoshiro/0.4.0/download -> rand_xoshiro-0.4.0.crate https://crates.io/api/v1/crates/rayon/1.5.0/download -> rayon-1.5.0.crate https://crates.io/api/v1/crates/rayon-core/1.9.0/download -> rayon-core-1.9.0.crate https://crates.io/api/v1/crates/rdrand/0.4.0/download -> rdrand-0.4.0.crate https://crates.io/api/v1/crates/redox_syscall/0.1.57/download -> redox_syscall-0.1.57.crate https://crates.io/api/v1/crates/regex/1.4.2/download -> regex-1.4.2.crate https://crates.io/api/v1/crates/regex-syntax/0.6.21/download -> regex-syntax-0.6.21.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/rust-crypto/0.2.36/download -> rust-crypto-0.2.36.crate https://crates.io/api/v1/crates/rustc-serialize/0.3.24/download -> rustc-serialize-0.3.24.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/sized-chunks/0.6.2/download -> sized-chunks-0.6.2.crate https://crates.io/api/v1/crates/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/syn/1.0.54/download -> syn-1.0.54.crate https://crates.io/api/v1/crates/tempfile/3.1.0/download -> tempfile-3.1.0.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thread_local/1.0.1/download -> thread_local-1.0.1.crate https://crates.io/api/v1/crates/time/0.1.44/download -> time-0.1.44.crate https://crates.io/api/v1/crates/twox-hash/1.6.0/download -> twox-hash-1.6.0.crate https://crates.io/api/v1/crates/typenum/1.12.0/download -> typenum-1.12.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/users/0.11.0/download -> users-0.11.0.crate https://crates.io/api/v1/crates/vcpkg/0.2.11/download -> vcpkg-0.2.11.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.10.0+wasi-snapshot-preview1/download -> wasi-0.10.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/zstd/0.5.3+zstd.1.4.5/download -> zstd-0.5.3+zstd.1.4.5.crate https://crates.io/api/v1/crates/zstd-safe/2.0.5+zstd.1.4.5/download -> zstd-safe-2.0.5+zstd.1.4.5.crate https://crates.io/api/v1/crates/zstd-sys/1.4.17+zstd.1.4.5/download -> zstd-sys-1.4.17+zstd.1.4.5.crate ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 52a92ed3815080c5f2caac1905687b1c distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 52a92ed3815080c5f2caac1905687b1c distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=6a1006193e4df3d11dbe8c4c652e9832 diff --git a/metadata/md5-cache/dev-vcs/mercurial-6.0.2 b/metadata/md5-cache/dev-vcs/mercurial-6.0.2 index 5c5c4831a005..a3d314e2801b 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-6.0.2 +++ b/metadata/md5-cache/dev-vcs/mercurial-6.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targe RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.mercurial-scm.org/release/mercurial-6.0.2.tar.gz rust? ( https://crates.io/api/v1/crates/adler/0.2.3/download -> adler-0.2.3.crate https://crates.io/api/v1/crates/aho-corasick/0.7.15/download -> aho-corasick-0.7.15.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/bitmaps/2.1.0/download -> bitmaps-2.1.0.crate https://crates.io/api/v1/crates/block-buffer/0.9.0/download -> block-buffer-0.9.0.crate https://crates.io/api/v1/crates/byteorder/1.3.4/download -> byteorder-1.3.4.crate https://crates.io/api/v1/crates/bytes-cast/0.2.0/download -> bytes-cast-0.2.0.crate https://crates.io/api/v1/crates/bytes-cast-derive/0.1.0/download -> bytes-cast-derive-0.1.0.crate https://crates.io/api/v1/crates/cc/1.0.66/download -> cc-1.0.66.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/const_fn/0.4.4/download -> const_fn-0.4.4.crate https://crates.io/api/v1/crates/cpufeatures/0.1.4/download -> cpufeatures-0.1.4.crate https://crates.io/api/v1/crates/cpython/0.7.0/download -> cpython-0.7.0.crate https://crates.io/api/v1/crates/crc32fast/1.2.1/download -> crc32fast-1.2.1.crate https://crates.io/api/v1/crates/crossbeam-channel/0.4.4/download -> crossbeam-channel-0.4.4.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.0/download -> crossbeam-channel-0.5.0.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.0/download -> crossbeam-deque-0.8.0.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.1/download -> crossbeam-epoch-0.9.1.crate https://crates.io/api/v1/crates/crossbeam-utils/0.7.2/download -> crossbeam-utils-0.7.2.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.1/download -> crossbeam-utils-0.8.1.crate https://crates.io/api/v1/crates/ctor/0.1.16/download -> ctor-0.1.16.crate https://crates.io/api/v1/crates/derive_more/0.99.11/download -> derive_more-0.99.11.crate https://crates.io/api/v1/crates/difference/2.0.0/download -> difference-2.0.0.crate https://crates.io/api/v1/crates/digest/0.9.0/download -> digest-0.9.0.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/env_logger/0.7.1/download -> env_logger-0.7.1.crate https://crates.io/api/v1/crates/flate2/1.0.19/download -> flate2-1.0.19.crate https://crates.io/api/v1/crates/format-bytes/0.2.2/download -> format-bytes-0.2.2.crate https://crates.io/api/v1/crates/format-bytes-macros/0.3.0/download -> format-bytes-macros-0.3.0.crate https://crates.io/api/v1/crates/generic-array/0.14.4/download -> generic-array-0.14.4.crate https://crates.io/api/v1/crates/getrandom/0.1.15/download -> getrandom-0.1.15.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.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/home/0.5.3/download -> home-0.5.3.crate https://crates.io/api/v1/crates/humantime/1.3.0/download -> humantime-1.3.0.crate https://crates.io/api/v1/crates/im-rc/15.0.0/download -> im-rc-15.0.0.crate https://crates.io/api/v1/crates/itertools/0.9.0/download -> itertools-0.9.0.crate https://crates.io/api/v1/crates/jobserver/0.1.21/download -> jobserver-0.1.21.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.81/download -> libc-0.2.81.crate https://crates.io/api/v1/crates/libz-sys/1.1.2/download -> libz-sys-1.1.2.crate https://crates.io/api/v1/crates/log/0.4.11/download -> log-0.4.11.crate https://crates.io/api/v1/crates/maybe-uninit/2.0.0/download -> maybe-uninit-2.0.0.crate https://crates.io/api/v1/crates/memchr/2.3.4/download -> memchr-2.3.4.crate https://crates.io/api/v1/crates/memmap2/0.4.0/download -> memmap2-0.4.0.crate https://crates.io/api/v1/crates/memoffset/0.6.1/download -> memoffset-0.6.1.crate https://crates.io/api/v1/crates/micro-timer/0.3.1/download -> micro-timer-0.3.1.crate https://crates.io/api/v1/crates/micro-timer-macros/0.3.1/download -> micro-timer-macros-0.3.1.crate https://crates.io/api/v1/crates/miniz_oxide/0.4.3/download -> miniz_oxide-0.4.3.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/opaque-debug/0.3.0/download -> opaque-debug-0.3.0.crate https://crates.io/api/v1/crates/output_vt100/0.1.2/download -> output_vt100-0.1.2.crate https://crates.io/api/v1/crates/paste/1.0.5/download -> paste-1.0.5.crate https://crates.io/api/v1/crates/pkg-config/0.3.19/download -> pkg-config-0.3.19.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download -> ppv-lite86-0.2.10.crate https://crates.io/api/v1/crates/pretty_assertions/0.6.1/download -> pretty_assertions-0.6.1.crate https://crates.io/api/v1/crates/proc-macro-hack/0.5.19/download -> proc-macro-hack-0.5.19.crate https://crates.io/api/v1/crates/proc-macro2/1.0.24/download -> proc-macro2-1.0.24.crate https://crates.io/api/v1/crates/python27-sys/0.7.0/download -> python27-sys-0.7.0.crate https://crates.io/api/v1/crates/python3-sys/0.7.0/download -> python3-sys-0.7.0.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.crate https://crates.io/api/v1/crates/quote/1.0.7/download -> quote-1.0.7.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.2.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_distr/0.2.2/download -> rand_distr-0.2.2.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_pcg/0.2.1/download -> rand_pcg-0.2.1.crate https://crates.io/api/v1/crates/rand_xoshiro/0.4.0/download -> rand_xoshiro-0.4.0.crate https://crates.io/api/v1/crates/rayon/1.5.0/download -> rayon-1.5.0.crate https://crates.io/api/v1/crates/rayon-core/1.9.0/download -> rayon-core-1.9.0.crate https://crates.io/api/v1/crates/redox_syscall/0.1.57/download -> redox_syscall-0.1.57.crate https://crates.io/api/v1/crates/regex/1.4.2/download -> regex-1.4.2.crate https://crates.io/api/v1/crates/regex-syntax/0.6.21/download -> regex-syntax-0.6.21.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/sha-1/0.9.6/download -> sha-1-0.9.6.crate https://crates.io/api/v1/crates/sized-chunks/0.6.2/download -> sized-chunks-0.6.2.crate https://crates.io/api/v1/crates/stable_deref_trait/1.2.0/download -> stable_deref_trait-1.2.0.crate https://crates.io/api/v1/crates/static_assertions/1.1.0/download -> static_assertions-1.1.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.54/download -> syn-1.0.54.crate https://crates.io/api/v1/crates/tempfile/3.1.0/download -> tempfile-3.1.0.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thread_local/1.0.1/download -> thread_local-1.0.1.crate https://crates.io/api/v1/crates/time/0.1.44/download -> time-0.1.44.crate https://crates.io/api/v1/crates/twox-hash/1.6.0/download -> twox-hash-1.6.0.crate https://crates.io/api/v1/crates/typenum/1.12.0/download -> typenum-1.12.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/users/0.11.0/download -> users-0.11.0.crate https://crates.io/api/v1/crates/vcpkg/0.2.11/download -> vcpkg-0.2.11.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/wasi/0.10.0+wasi-snapshot-preview1/download -> wasi-0.10.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/zstd/0.5.3+zstd.1.4.5/download -> zstd-0.5.3+zstd.1.4.5.crate https://crates.io/api/v1/crates/zstd-safe/2.0.5+zstd.1.4.5/download -> zstd-safe-2.0.5+zstd.1.4.5.crate https://crates.io/api/v1/crates/zstd-sys/1.4.17+zstd.1.4.5/download -> zstd-sys-1.4.17+zstd.1.4.5.crate ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 52a92ed3815080c5f2caac1905687b1c distutils-r1 779bc733c68a72273cfce64602bada1d elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 52a92ed3815080c5f2caac1905687b1c distutils-r1 779bc733c68a72273cfce64602bada1d elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=380a264f71333c8c98e029a90cda6ffe diff --git a/metadata/md5-cache/dev-vcs/mercurial-9999 b/metadata/md5-cache/dev-vcs/mercurial-9999 index 57dbcca5646a..753f9b04ceef 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-9999 +++ b/metadata/md5-cache/dev-vcs/mercurial-9999 @@ -11,5 +11,5 @@ RDEPEND=app-misc/ca-certificates gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) py REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 52a92ed3815080c5f2caac1905687b1c distutils-r1 779bc733c68a72273cfce64602bada1d elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 mercurial fe71ea094903aff1df58671776243530 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 52a92ed3815080c5f2caac1905687b1c distutils-r1 779bc733c68a72273cfce64602bada1d elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 mercurial fe71ea094903aff1df58671776243530 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9b6c8ce69a993c01e75160a165e8a870 diff --git a/metadata/md5-cache/games-board/Manifest.gz b/metadata/md5-cache/games-board/Manifest.gz index 3fdaa83d9d8e..5b301799f159 100644 Binary files a/metadata/md5-cache/games-board/Manifest.gz and b/metadata/md5-cache/games-board/Manifest.gz differ diff --git a/metadata/md5-cache/games-board/camato-0.7.4-r2 b/metadata/md5-cache/games-board/camato-0.7.4-r2 index f76ed47f4b67..0ee832aa5503 100644 --- a/metadata/md5-cache/games-board/camato-0.7.4-r2 +++ b/metadata/md5-cache/games-board/camato-0.7.4-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gentoo/camato-0_7_4.tar.gz https://dev.gentoo.org/~ionen/distfiles/camato.png -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ad7da6182719145a00f4ecd323294151 diff --git a/metadata/md5-cache/games-fps/Manifest.gz b/metadata/md5-cache/games-fps/Manifest.gz index 07bbc56e7381..a4b5814ee3af 100644 Binary files a/metadata/md5-cache/games-fps/Manifest.gz and b/metadata/md5-cache/games-fps/Manifest.gz differ diff --git a/metadata/md5-cache/games-fps/yamagi-quake2-8.01 b/metadata/md5-cache/games-fps/yamagi-quake2-8.01 new file mode 100644 index 000000000000..ca8dc1837c23 --- /dev/null +++ b/metadata/md5-cache/games-fps/yamagi-quake2-8.01 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst +DEPEND=client? ( media-libs/libsdl2[opengl?,video,vulkan?] net-misc/curl openal? ( media-libs/openal ) !openal? ( media-libs/libsdl2[sound] ) opengl? ( virtual/opengl ) ) client? ( vulkan? ( dev-util/vulkan-headers ) ) +DESCRIPTION=Quake 2 engine focused on single player +EAPI=8 +HOMEPAGE=https://www.yamagi.org/quake2/ +IUSE=+client ctf dedicated openal +opengl rogue softrender vulkan xatrix +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=GPL-2 +RDEPEND=client? ( media-libs/libsdl2[opengl?,video,vulkan?] net-misc/curl openal? ( media-libs/openal ) !openal? ( media-libs/libsdl2[sound] ) opengl? ( virtual/opengl ) ) +REQUIRED_USE=|| ( client dedicated ) client? ( || ( opengl softrender vulkan ) ) +SLOT=0 +SRC_URI=https://deponie.yamagi.org/quake2/quake2-8.01.tar.xz ctf? ( https://deponie.yamagi.org/quake2/quake2-ctf-1.08.tar.xz ) rogue? ( https://deponie.yamagi.org/quake2/quake2-rogue-2.08.tar.xz ) xatrix? ( https://deponie.yamagi.org/quake2/quake2-xatrix-2.09.tar.xz ) vulkan? ( https://github.com/yquake2/ref_vk/archive/refs/tags/v1.0.1.tar.gz -> quake2-ref_vk-1.0.1.tar.gz ) +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=a3a200d97b48ad258ba13f6a5f794555 diff --git a/metadata/md5-cache/games-misc/Manifest.gz b/metadata/md5-cache/games-misc/Manifest.gz index 6271a2bb37d0..d9f2150c9a4f 100644 Binary files a/metadata/md5-cache/games-misc/Manifest.gz and b/metadata/md5-cache/games-misc/Manifest.gz differ diff --git a/metadata/md5-cache/games-misc/lolcat-100.0.1-r1 b/metadata/md5-cache/games-misc/lolcat-100.0.1-r1 index 2373c415d1f4..3326c98e17b0 100644 --- a/metadata/md5-cache/games-misc/lolcat-100.0.1-r1 +++ b/metadata/md5-cache/games-misc/lolcat-100.0.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/lolcat-100.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=639783101ac74595f280afc0b7a9cbad diff --git a/metadata/md5-cache/games-strategy/Manifest.gz b/metadata/md5-cache/games-strategy/Manifest.gz index 5c944592e201..a8b1f83b2ed1 100644 Binary files a/metadata/md5-cache/games-strategy/Manifest.gz and b/metadata/md5-cache/games-strategy/Manifest.gz differ diff --git a/metadata/md5-cache/games-strategy/naev-0.9.2 b/metadata/md5-cache/games-strategy/naev-0.9.2 deleted file mode 100644 index 8601cb601523..000000000000 --- a/metadata/md5-cache/games-strategy/naev-0.9.2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=|| ( ( >=dev-lang/python-3.10.0_p1-r1:3.10 dev-python/pyyaml[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.9-r1:3.9 dev-python/pyyaml[python_targets_python3_9(-)] ) ( >=dev-lang/python-3.8.12_p1-r1:3.8 dev-python/pyyaml[python_targets_python3_8(-)] ) ) sys-devel/gettext doc? ( app-doc/doxygen[dot] dev-lua/ldoc ) >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) dev-games/physfs dev-libs/libunibreak:= dev-libs/libxml2 media-libs/freetype:2 media-libs/libsdl2[joystick,opengl,video] media-libs/libvorbis media-libs/openal media-libs/sdl2-image[png,webp] sci-libs/cholmod sci-libs/cxsparse sci-libs/openblas sci-libs/suitesparse sci-mathematics/glpk:= virtual/libintl virtual/opengl test? ( dev-games/physfs[zip] media-libs/libsdl2[X] media-libs/mesa[llvm] ) -DESCRIPTION=2D space trading and combat game, in a similar vein to Escape Velocity -EAPI=8 -HOMEPAGE=https://naev.org/ -IUSE=doc lua_single_target_luajit lua_single_target_lua5-1 test -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3+ BSD BSD-2 CC-BY-2.0 CC-BY-3.0 CC-BY-4.0 CC-BY-SA-2.0 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 MIT public-domain -RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) dev-games/physfs dev-libs/libunibreak:= dev-libs/libxml2 media-libs/freetype:2 media-libs/libsdl2[joystick,opengl,video] media-libs/libvorbis media-libs/openal media-libs/sdl2-image[png,webp] sci-libs/cholmod sci-libs/cxsparse sci-libs/openblas sci-libs/suitesparse sci-mathematics/glpk:= virtual/libintl virtual/opengl -REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/naev/naev/releases/download/v0.9.2/naev-0.9.2-source.tar.xz -_eclasses_=lua-single f2c2fb82c912dd65d53bdae3613a331f lua-utils e69ff116248d78546ae1a234c086fe80 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=9d76b34523b598d208664ad7c6fdbd6d diff --git a/metadata/md5-cache/gnome-base/Manifest.gz b/metadata/md5-cache/gnome-base/Manifest.gz index 085c0eba6b54..bdfb8f0f1d84 100644 Binary files a/metadata/md5-cache/gnome-base/Manifest.gz and b/metadata/md5-cache/gnome-base/Manifest.gz differ diff --git a/metadata/md5-cache/gnome-base/gnome-control-center-42.0-r1 b/metadata/md5-cache/gnome-base/gnome-control-center-42.0-r1 index f78806c069da..44ee7cde43e0 100644 --- a/metadata/md5-cache/gnome-base/gnome-control-center-42.0-r1 +++ b/metadata/md5-cache/gnome-base/gnome-control-center-42.0-r1 @@ -5,7 +5,7 @@ DESCRIPTION=GNOME's main interface to configure various aspects of the desktop EAPI=8 HOMEPAGE=https://gitlab.gnome.org/GNOME/gnome-control-center IUSE=+bluetooth +cups debug elogind +gnome-online-accounts +ibus input_devices_wacom kerberos networkmanager systemd test wayland -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ PDEPEND=>=gnome-base/gnome-session-2.91.6-r1 networkmanager? ( gnome-extra/nm-applet ) RDEPEND=gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.25.3:= ) >=media-sound/pulseaudio-2.0[glib] >=gui-libs/libadwaita-1.1:1= >=sys-apps/accountsservice-0.6.39 >=x11-misc/colord-0.1.34:0= >=x11-libs/gdk-pixbuf-2.23.0:2 >=dev-libs/glib-2.56.0:2 gnome-base/gnome-desktop:4= >=gnome-base/gnome-settings-daemon-41.0[colord,input_devices_wacom?] >=gnome-base/gsettings-desktop-schemas-42_alpha dev-libs/libxml2:2 >=sys-power/upower-0.99.8:= >=dev-libs/libgudev-232 x11-libs/libX11 >=x11-libs/libXi-1.2 media-libs/libepoxy app-crypt/gcr:= >=dev-libs/libpwquality-1.2.2 >=gui-libs/gtk-4.4:4[X,wayland=] >=sys-auth/polkit-0.114 cups? ( >=net-print/cups-1.7[dbus] >=net-fs/samba-4.0.0[client] ) ibus? ( >=app-i18n/ibus-1.5.2 ) networkmanager? ( >=net-libs/libnma-1.8.36 >=net-misc/networkmanager-1.24.0:=[modemmanager] >=net-misc/modemmanager-0.7.990 ) bluetooth? ( net-wireless/gnome-bluetooth:3= ) input_devices_wacom? ( >=dev-libs/libwacom-0.27 ) kerberos? ( app-crypt/mit-krb5 ) x11-libs/cairo[glib] >=x11-libs/colord-gtk-0.3.0 media-libs/fontconfig gnome-base/libgtop:2= >=sys-fs/udisks-2.1.8:2 app-crypt/libsecret net-libs/gnutls:= media-libs/gsound systemd? ( >=sys-apps/systemd-31 ) elogind? ( app-admin/openrc-settingsd sys-auth/elogind ) x11-themes/adwaita-icon-theme >=gnome-extra/gnome-color-manager-3.1.2 cups? ( app-admin/system-config-printer net-print/cups-pk-helper ) >=gnome-base/libgnomekbd-3 wayland? ( dev-libs/libinput ) !wayland? ( >=x11-drivers/xf86-input-libinput-0.19.0 input_devices_wacom? ( >=x11-drivers/xf86-input-wacom-0.33.0 ) ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=2 SRC_URI=mirror://gnome/sources/gnome-control-center/42/gnome-control-center-42.0.tar.xz https://dev.gentoo.org/~mattst88/distfiles/gnome-control-center-42.0-patchset.tar.xz _eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=c2ad80953cb12e5354828942b466d637 +_md5_=667370658a72ebfb83e700885c9b799e diff --git a/metadata/md5-cache/gnome-base/gnome-desktop-42.0-r400 b/metadata/md5-cache/gnome-base/gnome-desktop-42.0-r400 index 31cf299abefb..947504fd59bb 100644 --- a/metadata/md5-cache/gnome-base/gnome-desktop-42.0-r400 +++ b/metadata/md5-cache/gnome-base/gnome-desktop-42.0-r400 @@ -5,10 +5,10 @@ DESCRIPTION=Library with common API for various GNOME modules EAPI=8 HOMEPAGE=https://gitlab.gnome.org/GNOME/gnome-desktop/ IUSE=debug gtk-doc +introspection seccomp systemd udev -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~x86-solaris LICENSE=GPL-2+ LGPL-2+ FDL-1.1+ RDEPEND=>=x11-libs/gdk-pixbuf-2.36.5:2[introspection?] >=gui-libs/gtk-4.4.0:4[X,introspection?] >=dev-libs/glib-2.53.0:2 >=gnome-base/gsettings-desktop-schemas-3.27.0[introspection?] x11-misc/xkeyboard-config x11-libs/libxkbcommon app-text/iso-codes systemd? ( sys-apps/systemd:= ) udev? ( virtual/libudev:= ) seccomp? ( sys-libs/libseccomp ) x11-libs/cairo:= introspection? ( >=dev-libs/gobject-introspection-1.54:= ) seccomp? ( sys-apps/bubblewrap ) !=dev-libs/glib-2.68:2 >=gui-libs/gtk-4.5:4 >=media-libs/gsound-0.98 >=de DESCRIPTION=Clocks application for GNOME EAPI=8 HOMEPAGE=https://wiki.gnome.org/Apps/Clocks -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ RDEPEND=>=dev-libs/glib-2.68:2 >=gui-libs/gtk-4.5:4 >=media-libs/gsound-0.98 >=dev-libs/libgweather-4.0.0:4= gnome-base/gnome-desktop:4 >=sci-geosciences/geocode-glib-1 >=app-misc/geoclue-2.4:2.0 >=gui-libs/libadwaita-1.0:1 SLOT=0 SRC_URI=mirror://gnome/sources/gnome-clocks/42/gnome-clocks-42.0.tar.xz _eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vala 9badd41d5aab740ae5ac301c4416c5f8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=033973ed19a73dbfb33708a9de44699a +_md5_=85994b6e26d68c4bfa570d607776aadb diff --git a/metadata/md5-cache/gnome-extra/gnome-contacts-42.0 b/metadata/md5-cache/gnome-extra/gnome-contacts-42.0 index 72bc234227f0..e842d22a43fc 100644 --- a/metadata/md5-cache/gnome-extra/gnome-contacts-42.0 +++ b/metadata/md5-cache/gnome-extra/gnome-contacts-42.0 @@ -5,10 +5,10 @@ DESCRIPTION=GNOME contact management application EAPI=8 HOMEPAGE=https://wiki.gnome.org/Design/Apps/Contacts IUSE=telepathy -KEYWORDS=~amd64 +KEYWORDS=~amd64 ~riscv LICENSE=GPL-2+ RDEPEND=>=gnome-extra/evolution-data-server-3.30:=[gnome-online-accounts] >=dev-libs/folks-0.11.4:=[eds,telepathy?] >=dev-libs/glib-2.58:2 >=dev-libs/libgee-0.10:0.8 net-libs/gnome-online-accounts:= >=gui-libs/gtk-4.6:4 gui-libs/libadwaita:1 telepathy? ( >=net-libs/telepathy-glib-0.22 ) >=gui-libs/libhandy-1.0.0:1 SLOT=0 SRC_URI=mirror://gnome/sources/gnome-contacts/42/gnome-contacts-42.0.tar.xz _eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vala 9badd41d5aab740ae5ac301c4416c5f8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=d7cc9fa67e6828e390823f24e2726b74 +_md5_=d302f74fd29b47457598b7710a5bb8bb diff --git a/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-23.0 b/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-23.0 new file mode 100644 index 000000000000..de631f05f483 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-23.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install postinst postrm preinst +DESCRIPTION=Restore the alphabetical ordering of the app grid +EAPI=8 +HOMEPAGE=https://github.com/stuarthayhurst/alphabetical-grid-extension +KEYWORDS=amd64 x86 +LICENSE=GPL-3 +RDEPEND=app-eselect/eselect-gnome-shell-extensions >=gnome-base/gnome-shell-3.38 +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/stuarthayhurst/alphabetical-grid-extension/archive/refs/tags/v23.0.tar.gz -> gnome-shell-extension-alphabetical-grid-23.0.tar.gz +_eclasses_=gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=7cec7dac33b797f4e3717b6ba940c067 diff --git a/metadata/md5-cache/gnome-extra/gnome-shell-extension-bluetooth-quick-connect-29 b/metadata/md5-cache/gnome-extra/gnome-shell-extension-bluetooth-quick-connect-29 new file mode 100644 index 000000000000..f087e15cbd36 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/gnome-shell-extension-bluetooth-quick-connect-29 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install postinst postrm preinst +DESCRIPTION=Allow to connect bluetooth paired devices from gnome control panel +EAPI=8 +HOMEPAGE=https://github.com/bjarosze/gnome-bluetooth-quick-connect +KEYWORDS=~amd64 ~riscv ~x86 +LICENSE=GPL-3 +RDEPEND=net-wireless/bluez app-eselect/eselect-gnome-shell-extensions >=gnome-base/gnome-shell-40 +SLOT=0 +SRC_URI=https://github.com/bjarosze/gnome-bluetooth-quick-connect/archive/v29.tar.gz -> gnome-shell-extension-bluetooth-quick-connect-29.tar.gz +_eclasses_=gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=10ac22ee68fb443ca1fd02f1d9499db7 diff --git a/metadata/md5-cache/kde-apps/Manifest.gz b/metadata/md5-cache/kde-apps/Manifest.gz index 47c0934ff680..bc9b33b55f63 100644 Binary files a/metadata/md5-cache/kde-apps/Manifest.gz and b/metadata/md5-cache/kde-apps/Manifest.gz differ diff --git a/metadata/md5-cache/kde-apps/krfb-21.12.3-r1 b/metadata/md5-cache/kde-apps/krfb-21.12.3-r1 index a32b5860436b..e47e36fb8783 100644 --- a/metadata/md5-cache/kde-apps/krfb-21.12.3-r1 +++ b/metadata/md5-cache/kde-apps/krfb-21.12.3-r1 @@ -1,4 +1,4 @@ -BDEPEND=wayland? ( || ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-5.88.0:5 ) >=kde-frameworks/extra-cmake-modules-5.88.0:5 +BDEPEND=wayland? ( >=dev-qt/qtwaylandscanner-5.15.2:5 ) dev-util/ninja >=dev-util/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-5.88.0:5 ) >=kde-frameworks/extra-cmake-modules-5.88.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtnetwork-5.15.2:5 >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtx11extras-5.15.2:5 >=kde-frameworks/kcompletion-5.88.0:5 >=kde-frameworks/kconfig-5.88.0:5 >=kde-frameworks/kconfigwidgets-5.88.0:5 >=kde-frameworks/kcoreaddons-5.88.0:5 >=kde-frameworks/kcrash-5.88.0:5 >=kde-frameworks/kdbusaddons-5.88.0:5 >=kde-frameworks/kdnssd-5.88.0:5 >=kde-frameworks/ki18n-5.88.0:5 >=kde-frameworks/knotifications-5.88.0:5 >=kde-frameworks/kwallet-5.88.0:5 >=kde-frameworks/kwidgetsaddons-5.88.0:5 >=kde-frameworks/kwindowsystem-5.88.0:5 >=kde-frameworks/kxmlgui-5.88.0:5 >=net-libs/libvncserver-0.9.9 x11-libs/libX11 x11-libs/libxcb x11-libs/libXtst x11-libs/xcb-util-image wayland? ( dev-libs/wayland || ( >=dev-qt/qtgui-5.15.2:5[libinput] >=dev-qt/qtgui-5.15.2:5[X] ) >=dev-qt/qtwayland-5.15.2:5 >=kde-frameworks/kwayland-5.88.0:5 media-libs/libepoxy media-libs/mesa[gbm(+)] >=media-video/pipewire-0.3:= ) wayland? ( >=dev-libs/plasma-wayland-protocols-1.5.0 media-libs/libglvnd ) dev-qt/qtcore:5 DESCRIPTION=VNC-compatible server to share Plasma desktops @@ -11,4 +11,4 @@ RDEPEND=>=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtnetwork-5.15.2:5 >=dev-qt/qtwidgets- SLOT=5 SRC_URI=mirror://kde/stable/release-service/21.12.3/src/krfb-21.12.3.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=45ab5a090a998efe884e8f284f7b76b8 +_md5_=5ec15d6897e3d29b533d4860e0c542c0 diff --git a/metadata/md5-cache/kde-frameworks/Manifest.gz b/metadata/md5-cache/kde-frameworks/Manifest.gz index ea437fd1c5dd..13a5afc90ad2 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/kcontacts-5.92.0 b/metadata/md5-cache/kde-frameworks/kcontacts-5.92.0 index 0252d5250c69..1052f6d3e962 100644 --- a/metadata/md5-cache/kde-frameworks/kcontacts-5.92.0 +++ b/metadata/md5-cache/kde-frameworks/kcontacts-5.92.0 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.92 SRC_URI=mirror://kde/stable/frameworks/5.92/kcontacts-5.92.0.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=b4176044c727c585b18f782bda3f01c6 +_md5_=964409febb3db1c5134fd30d9b10cddf diff --git a/metadata/md5-cache/kde-frameworks/kcontacts-5.93.0 b/metadata/md5-cache/kde-frameworks/kcontacts-5.93.0 index 63f5f533f3f0..2be9a3964da8 100644 --- a/metadata/md5-cache/kde-frameworks/kcontacts-5.93.0 +++ b/metadata/md5-cache/kde-frameworks/kcontacts-5.93.0 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.93 SRC_URI=mirror://kde/stable/frameworks/5.93/kcontacts-5.93.0.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=b4176044c727c585b18f782bda3f01c6 +_md5_=964409febb3db1c5134fd30d9b10cddf diff --git a/metadata/md5-cache/kde-frameworks/kguiaddons-5.90.0 b/metadata/md5-cache/kde-frameworks/kguiaddons-5.90.0 index bfc31e8d8e27..f6a40c5bad6a 100644 --- a/metadata/md5-cache/kde-frameworks/kguiaddons-5.90.0 +++ b/metadata/md5-cache/kde-frameworks/kguiaddons-5.90.0 @@ -1,4 +1,4 @@ -BDEPEND=wayland? ( || ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.90:5 +BDEPEND=wayland? ( >=dev-qt/qtwaylandscanner-5.15.2:5 ) dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.90:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-qt/qtgui-5.15.2:5 wayland? ( dev-libs/wayland >=dev-qt/qtgui-5.15.2:5=[wayland] >=dev-qt/qtwayland-5.15.2:5 ) X? ( >=dev-qt/qtx11extras-5.15.2:5 x11-libs/libX11 ) x11-base/xorg-proto X? ( x11-libs/libxcb ) test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 DESCRIPTION=Framework providing assorted high-level user interface components @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.90 SRC_URI=mirror://kde/stable/frameworks/5.90/kguiaddons-5.90.0.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=c9fa1804eab0f4f2f44ded3b8407f320 +_md5_=c609bf2503241004b82742ad88fa9458 diff --git a/metadata/md5-cache/kde-frameworks/kguiaddons-5.92.0 b/metadata/md5-cache/kde-frameworks/kguiaddons-5.92.0 index b90d5df17746..cbdefeff987d 100644 --- a/metadata/md5-cache/kde-frameworks/kguiaddons-5.92.0 +++ b/metadata/md5-cache/kde-frameworks/kguiaddons-5.92.0 @@ -1,4 +1,4 @@ -BDEPEND=wayland? ( || ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.92:5 +BDEPEND=wayland? ( >=dev-qt/qtwaylandscanner-5.15.2:5 ) dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.92:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-qt/qtgui-5.15.2:5 wayland? ( dev-libs/wayland >=dev-qt/qtgui-5.15.2:5=[wayland] >=dev-qt/qtwayland-5.15.2:5 ) X? ( >=dev-qt/qtx11extras-5.15.2:5 x11-libs/libX11 ) x11-base/xorg-proto X? ( x11-libs/libxcb ) test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 DESCRIPTION=Framework providing assorted high-level user interface components @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.92 SRC_URI=mirror://kde/stable/frameworks/5.92/kguiaddons-5.92.0.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=b65511a66fdbac99f1a7bd1f205cfd69 +_md5_=2e610139fbba5d89149643d2e19cb8dc diff --git a/metadata/md5-cache/kde-frameworks/kguiaddons-5.93.0 b/metadata/md5-cache/kde-frameworks/kguiaddons-5.93.0 index ce493675ab5b..3c40d8b61cdf 100644 --- a/metadata/md5-cache/kde-frameworks/kguiaddons-5.93.0 +++ b/metadata/md5-cache/kde-frameworks/kguiaddons-5.93.0 @@ -1,4 +1,4 @@ -BDEPEND=wayland? ( || ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.93:5 +BDEPEND=wayland? ( >=dev-qt/qtwaylandscanner-5.15.2:5 ) dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.93:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-qt/qtgui-5.15.2:5 wayland? ( dev-libs/wayland >=dev-qt/qtgui-5.15.2:5=[wayland] >=dev-qt/qtwayland-5.15.2:5 ) X? ( >=dev-qt/qtx11extras-5.15.2:5 x11-libs/libX11 ) x11-base/xorg-proto X? ( x11-libs/libxcb ) test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 DESCRIPTION=Framework providing assorted high-level user interface components @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.93 SRC_URI=mirror://kde/stable/frameworks/5.93/kguiaddons-5.93.0.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=b65511a66fdbac99f1a7bd1f205cfd69 +_md5_=2e610139fbba5d89149643d2e19cb8dc diff --git a/metadata/md5-cache/kde-frameworks/krunner-5.92.0 b/metadata/md5-cache/kde-frameworks/krunner-5.92.0 index 58a983bc6875..f744ed82e64c 100644 --- a/metadata/md5-cache/kde-frameworks/krunner-5.92.0 +++ b/metadata/md5-cache/kde-frameworks/krunner-5.92.0 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.92 SRC_URI=mirror://kde/stable/frameworks/5.92/krunner-5.92.0.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=8bff82c0e20d187bc22fdd40ff8cb7ae +_md5_=99ab223e26d85292cbe84cea4b972f69 diff --git a/metadata/md5-cache/kde-frameworks/kwayland-5.90.0 b/metadata/md5-cache/kde-frameworks/kwayland-5.90.0 index 531653b7a451..51130ec9a926 100644 --- a/metadata/md5-cache/kde-frameworks/kwayland-5.90.0 +++ b/metadata/md5-cache/kde-frameworks/kwayland-5.90.0 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/wayland-scanner-1.19.0 dev-util/ninja >=dev-util/cmake-3.20.5 doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.90:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 >=dev-util/wayland-scanner-1.19.0 dev-util/ninja >=dev-util/cmake-3.20.5 doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.90:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.15.0 >=dev-qt/qtconcurrent-5.15.2:5 >=dev-qt/qtgui-5.15.2:5=[egl] >=dev-qt/qtwayland-5.15.2:5 media-libs/libglvnd >=dev-libs/plasma-wayland-protocols-1.4.0 >=dev-libs/wayland-protocols-1.15 sys-kernel/linux-headers test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 DESCRIPTION=Qt-style client and server library wrapper for Wayland libraries @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=5/5.90 SRC_URI=mirror://kde/stable/frameworks/5.90/kwayland-5.90.0.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=fb7f00dcb520ca8f9a36a0c376e62923 +_md5_=5769957f672976d25260e4d8ac18cac7 diff --git a/metadata/md5-cache/kde-frameworks/kwayland-5.92.0 b/metadata/md5-cache/kde-frameworks/kwayland-5.92.0 index 9c323b272e10..541257f2f93a 100644 --- a/metadata/md5-cache/kde-frameworks/kwayland-5.92.0 +++ b/metadata/md5-cache/kde-frameworks/kwayland-5.92.0 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/wayland-scanner-1.19.0 dev-util/ninja >=dev-util/cmake-3.20.5 doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.92:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 >=dev-util/wayland-scanner-1.19.0 dev-util/ninja >=dev-util/cmake-3.20.5 doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.92:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.15.0 >=dev-qt/qtconcurrent-5.15.2:5 >=dev-qt/qtgui-5.15.2:5=[egl] >=dev-qt/qtwayland-5.15.2:5 media-libs/libglvnd >=dev-libs/plasma-wayland-protocols-1.4.0 >=dev-libs/wayland-protocols-1.15 sys-kernel/linux-headers test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 DESCRIPTION=Qt-style client and server library wrapper for Wayland libraries @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=5/5.92 SRC_URI=mirror://kde/stable/frameworks/5.92/kwayland-5.92.0.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=72c6dbad1c46e613cbd05ea5b5e30470 +_md5_=b9061242eb86a1bce49433b4df38b2aa diff --git a/metadata/md5-cache/kde-frameworks/kwayland-5.93.0-r1 b/metadata/md5-cache/kde-frameworks/kwayland-5.93.0-r1 index be776e7c548a..4e42bc6f721e 100644 --- a/metadata/md5-cache/kde-frameworks/kwayland-5.93.0-r1 +++ b/metadata/md5-cache/kde-frameworks/kwayland-5.93.0-r1 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/wayland-scanner-1.19.0 dev-util/ninja >=dev-util/cmake-3.20.5 doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.93:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 >=dev-util/wayland-scanner-1.19.0 dev-util/ninja >=dev-util/cmake-3.20.5 doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.93:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.15.0 >=dev-qt/qtconcurrent-5.15.2:5 >=dev-qt/qtgui-5.15.2:5=[egl] >=dev-qt/qtwayland-5.15.2:5 media-libs/libglvnd >=dev-libs/plasma-wayland-protocols-1.4.0 >=dev-libs/wayland-protocols-1.15 sys-kernel/linux-headers test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 DESCRIPTION=Qt-style client and server library wrapper for Wayland libraries @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=5/5.93 SRC_URI=mirror://kde/stable/frameworks/5.93/kwayland-5.93.0.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=95dd1db014dbc97a10635e85c481abe3 +_md5_=e00e2ea56310028ec0eca916afbe8fa2 diff --git a/metadata/md5-cache/kde-plasma/Manifest.gz b/metadata/md5-cache/kde-plasma/Manifest.gz index 4888e0ab3606..8ad97a05a029 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/kwayland-integration-5.23.5 b/metadata/md5-cache/kde-plasma/kwayland-integration-5.23.5 index f82aabf686ad..c6cc39739aec 100644 --- a/metadata/md5-cache/kde-plasma/kwayland-integration-5.23.5 +++ b/metadata/md5-cache/kde-plasma/kwayland-integration-5.23.5 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.86.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.86.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.15 || ( >=dev-qt/qtgui-5.15.2:5[libinput] >=dev-qt/qtgui-5.15.2:5[X] ) >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtwayland-5.15.2:5= >=kde-frameworks/kguiaddons-5.86.0:5 >=kde-frameworks/kidletime-5.86.0:5= >=kde-frameworks/kwayland-5.86.0:5 >=kde-frameworks/kwindowsystem-5.86.0:5= x11-libs/libxkbcommon test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 DESCRIPTION=Provides integration plugins for various KDE frameworks for Wayland @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.23.5/kwayland-integration-5.23.5.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=6ae235c951c54fe58c821ff067db513b +_md5_=7b4e4be114c6d930a71eb5702896dcda diff --git a/metadata/md5-cache/kde-plasma/kwayland-integration-5.24.4 b/metadata/md5-cache/kde-plasma/kwayland-integration-5.24.4 index 4fbff8216110..b3a9c26692b7 100644 --- a/metadata/md5-cache/kde-plasma/kwayland-integration-5.24.4 +++ b/metadata/md5-cache/kde-plasma/kwayland-integration-5.24.4 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.90.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.90.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.15 || ( >=dev-qt/qtgui-5.15.2:5[libinput] >=dev-qt/qtgui-5.15.2:5[X] ) >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtwayland-5.15.2:5= >=kde-frameworks/kguiaddons-5.90.0:5 >=kde-frameworks/kidletime-5.90.0:5= >=kde-frameworks/kwayland-5.90.0:5 >=kde-frameworks/kwindowsystem-5.90.0:5= x11-libs/libxkbcommon test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 DESCRIPTION=Provides integration plugins for various KDE frameworks for Wayland @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.24.4/kwayland-integration-5.24.4.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=cc505e65012baca0dbd406eae88ba9ef +_md5_=a6c05647401c2a57fa5725d88cfa3da2 diff --git a/metadata/md5-cache/kde-plasma/kwayland-server-5.23.5 b/metadata/md5-cache/kde-plasma/kwayland-server-5.23.5 index 2c2824811a5a..de8d894bcc86 100644 --- a/metadata/md5-cache/kde-plasma/kwayland-server-5.23.5 +++ b/metadata/md5-cache/kde-plasma/kwayland-server-5.23.5 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.86.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 dev-util/wayland-scanner dev-util/ninja >=dev-util/cmake-3.20.5 doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.86.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.19.0 >=dev-qt/qtconcurrent-5.15.2:5 >=dev-qt/qtgui-5.15.2:5[egl] >=dev-qt/qtwayland-5.15.2:5 >=kde-frameworks/kwayland-5.86.0:5 media-libs/libglvnd >=dev-libs/plasma-wayland-protocols-1.3.0 >=dev-libs/wayland-protocols-1.21 test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 DESCRIPTION=Wayland Server Components built on KDE Frameworks @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.23.5/kwayland-server-5.23.5.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=720f23b0521442fdb872f537957192af +_md5_=66d392c8620e44e99041665e899a95ab diff --git a/metadata/md5-cache/kde-plasma/kwayland-server-5.24.4-r1 b/metadata/md5-cache/kde-plasma/kwayland-server-5.24.4-r2 similarity index 84% rename from metadata/md5-cache/kde-plasma/kwayland-server-5.24.4-r1 rename to metadata/md5-cache/kde-plasma/kwayland-server-5.24.4-r2 index 6af86e6499dd..9a25db8442b1 100644 --- a/metadata/md5-cache/kde-plasma/kwayland-server-5.24.4-r1 +++ b/metadata/md5-cache/kde-plasma/kwayland-server-5.24.4-r2 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.90.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 dev-util/wayland-scanner dev-util/ninja >=dev-util/cmake-3.20.5 doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.90.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.19.0 >=dev-qt/qtconcurrent-5.15.2:5 >=dev-qt/qtgui-5.15.2:5[egl] >=dev-qt/qtwayland-5.15.2:5 >=kde-frameworks/kwayland-5.90.0:5 media-libs/libglvnd >=dev-libs/plasma-wayland-protocols-1.6.0 >=dev-libs/wayland-protocols-1.24 test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 DESCRIPTION=Wayland Server Components built on KDE Frameworks @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.24.4/kwayland-server-5.24.4.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=a8640eb7f4b60d79c5832f26fa916492 +_md5_=e3e9ab1917291e17d1bd9b3adcdae0c9 diff --git a/metadata/md5-cache/kde-plasma/kwin-5.23.5-r1 b/metadata/md5-cache/kde-plasma/kwin-5.23.5-r1 index 48266737a627..7d980c17dfa6 100644 --- a/metadata/md5-cache/kde-plasma/kwin-5.23.5-r1 +++ b/metadata/md5-cache/kde-plasma/kwin-5.23.5-r1 @@ -1,4 +1,4 @@ -BDEPEND=test? ( || ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) handbook? ( >=kde-frameworks/kdoctools-5.86.0:5 ) >=kde-frameworks/extra-cmake-modules-5.86.0:5 +BDEPEND=test? ( >=dev-qt/qtwaylandscanner-5.15.2:5 ) dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) handbook? ( >=kde-frameworks/kdoctools-5.86.0:5 ) >=kde-frameworks/extra-cmake-modules-5.86.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/libinput-1.14 >=dev-libs/wayland-1.2 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5 >=dev-qt/qtgui-5.15.2:5=[gles2-only=,libinput] >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtx11extras-5.15.2:5 >=kde-frameworks/kactivities-5.86.0:5 >=kde-frameworks/kauth-5.86.0:5 >=kde-frameworks/kcmutils-5.86.0:5 >=kde-frameworks/kcompletion-5.86.0:5 >=kde-frameworks/kconfig-5.86.0:5 >=kde-frameworks/kconfigwidgets-5.86.0:5 >=kde-frameworks/kcoreaddons-5.86.0:5 >=kde-frameworks/kcrash-5.86.0:5 >=kde-frameworks/kdeclarative-5.86.0:5 >=kde-frameworks/kglobalaccel-5.86.0:5= >=kde-frameworks/ki18n-5.86.0:5 >=kde-frameworks/kiconthemes-5.86.0:5 >=kde-frameworks/kidletime-5.86.0:5= >=kde-frameworks/knewstuff-5.86.0:5 >=kde-frameworks/knotifications-5.86.0:5 >=kde-frameworks/kpackage-5.86.0:5 >=kde-frameworks/kservice-5.86.0:5 >=kde-frameworks/ktextwidgets-5.86.0:5 >=kde-frameworks/kwayland-5.86.0:5 >=kde-frameworks/kwidgetsaddons-5.86.0:5 >=kde-frameworks/kwindowsystem-5.86.0:5=[X] >=kde-frameworks/kxmlgui-5.86.0:5 >=kde-frameworks/plasma-5.86.0:5 >=kde-plasma/breeze-5.23.5:5 >=kde-plasma/kdecoration-5.23.5:5 >=kde-plasma/kscreenlocker-5.23.5:5 >=kde-plasma/kwayland-server-5.23.5:5 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libepoxy >=media-libs/mesa-21.1[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi x11-libs/libdrm >=x11-libs/libxcb-1.10 >=x11-libs/libxkbcommon-0.7.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:5 ) caps? ( sys-libs/libcap ) gles2-only? ( media-libs/mesa[gles2] ) plasma? ( >=kde-frameworks/krunner-5.86.0:5 ) screencast? ( >=media-video/pipewire-0.3:= ) >=dev-qt/designer-5.15.2:5 >=dev-qt/qtconcurrent-5.15.2:5 x11-base/xorg-proto test? ( dev-libs/plasma-wayland-protocols >=dev-libs/wayland-protocols-1.19 ) test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 DESCRIPTION=Flexible, composited Window Manager for windowing systems on Linux @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.23.5/kwin-5.23.5.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=408952d7e74bf1614523037009266941 +_md5_=46c59f1978df9bc415e7e72410ebd027 diff --git a/metadata/md5-cache/kde-plasma/kwin-5.24.4 b/metadata/md5-cache/kde-plasma/kwin-5.24.4 index 552dfa56ec26..8e82aa72d38f 100644 --- a/metadata/md5-cache/kde-plasma/kwin-5.24.4 +++ b/metadata/md5-cache/kde-plasma/kwin-5.24.4 @@ -1,4 +1,4 @@ -BDEPEND=test? ( || ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) handbook? ( >=kde-frameworks/kdoctools-5.90.0:5 ) >=kde-frameworks/extra-cmake-modules-5.90.0:5 +BDEPEND=test? ( >=dev-qt/qtwaylandscanner-5.15.2:5 ) dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) handbook? ( >=kde-frameworks/kdoctools-5.90.0:5 ) >=kde-frameworks/extra-cmake-modules-5.90.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/libinput-1.19 >=dev-libs/wayland-1.2 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5 >=dev-qt/qtgui-5.15.2:5=[gles2-only=,libinput] >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtx11extras-5.15.2:5 >=kde-frameworks/kactivities-5.90.0:5 >=kde-frameworks/kauth-5.90.0:5 >=kde-frameworks/kcmutils-5.90.0:5 >=kde-frameworks/kcompletion-5.90.0:5 >=kde-frameworks/kconfig-5.90.0:5 >=kde-frameworks/kconfigwidgets-5.90.0:5 >=kde-frameworks/kcoreaddons-5.90.0:5 >=kde-frameworks/kcrash-5.90.0:5 >=kde-frameworks/kdbusaddons-5.90.0:5 >=kde-frameworks/kdeclarative-5.90.0:5 >=kde-frameworks/kglobalaccel-5.90.0:5= >=kde-frameworks/ki18n-5.90.0:5 >=kde-frameworks/kiconthemes-5.90.0:5 >=kde-frameworks/kidletime-5.90.0:5= >=kde-frameworks/knewstuff-5.90.0:5 >=kde-frameworks/knotifications-5.90.0:5 >=kde-frameworks/kpackage-5.90.0:5 >=kde-frameworks/kservice-5.90.0:5 >=kde-frameworks/ktextwidgets-5.90.0:5 >=kde-frameworks/kwayland-5.90.0:5 >=kde-frameworks/kwidgetsaddons-5.90.0:5 >=kde-frameworks/kwindowsystem-5.90.0:5=[X] >=kde-frameworks/kxmlgui-5.90.0:5 >=kde-frameworks/plasma-5.90.0:5 >=kde-plasma/breeze-5.24.4:5 >=kde-plasma/kdecoration-5.24.4:5 >=kde-plasma/kscreenlocker-5.24.4:5 >=kde-plasma/kwayland-server-5.24.4:5 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libepoxy >=media-libs/mesa-21.1[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi x11-libs/libdrm >=x11-libs/libxcb-1.10 >=x11-libs/libxkbcommon-0.7.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:5 ) caps? ( sys-libs/libcap ) gles2-only? ( media-libs/mesa[gles2] ) plasma? ( >=kde-frameworks/krunner-5.90.0:5 ) screencast? ( >=media-video/pipewire-0.3:= ) >=dev-qt/designer-5.15.2:5 >=dev-qt/qtconcurrent-5.15.2:5 x11-base/xorg-proto test? ( dev-libs/plasma-wayland-protocols >=dev-libs/wayland-protocols-1.19 ) test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 DESCRIPTION=Flexible, composited Window Manager for windowing systems on Linux @@ -13,4 +13,4 @@ RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.24.4/kwin-5.24.4.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=a3e57fd71a08bb6b620b08cdb0c49546 +_md5_=2fa3ce064c78fbc143c64255cabbdd1f diff --git a/metadata/md5-cache/kde-plasma/kwin-5.24.4-r1 b/metadata/md5-cache/kde-plasma/kwin-5.24.4-r1 new file mode 100644 index 000000000000..b4aa48ed520e --- /dev/null +++ b/metadata/md5-cache/kde-plasma/kwin-5.24.4-r1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-qt/qtwaylandscanner-5.15.2:5 ) dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) handbook? ( >=kde-frameworks/kdoctools-5.90.0:5 ) >=kde-frameworks/extra-cmake-modules-5.90.0:5 +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=>=dev-libs/libinput-1.19 >=dev-libs/wayland-1.2 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5 >=dev-qt/qtgui-5.15.2:5=[gles2-only=,libinput] >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtx11extras-5.15.2:5 >=kde-frameworks/kactivities-5.90.0:5 >=kde-frameworks/kauth-5.90.0:5 >=kde-frameworks/kcmutils-5.90.0:5 >=kde-frameworks/kcompletion-5.90.0:5 >=kde-frameworks/kconfig-5.90.0:5 >=kde-frameworks/kconfigwidgets-5.90.0:5 >=kde-frameworks/kcoreaddons-5.90.0:5 >=kde-frameworks/kcrash-5.90.0:5 >=kde-frameworks/kdbusaddons-5.90.0:5 >=kde-frameworks/kdeclarative-5.90.0:5 >=kde-frameworks/kglobalaccel-5.90.0:5= >=kde-frameworks/ki18n-5.90.0:5 >=kde-frameworks/kiconthemes-5.90.0:5 >=kde-frameworks/kidletime-5.90.0:5= >=kde-frameworks/knewstuff-5.90.0:5 >=kde-frameworks/knotifications-5.90.0:5 >=kde-frameworks/kpackage-5.90.0:5 >=kde-frameworks/kservice-5.90.0:5 >=kde-frameworks/ktextwidgets-5.90.0:5 >=kde-frameworks/kwayland-5.90.0:5 >=kde-frameworks/kwidgetsaddons-5.90.0:5 >=kde-frameworks/kwindowsystem-5.90.0:5=[X] >=kde-frameworks/kxmlgui-5.90.0:5 >=kde-frameworks/plasma-5.90.0:5 >=kde-plasma/breeze-5.24.4:5 >=kde-plasma/kdecoration-5.24.4:5 >=kde-plasma/kscreenlocker-5.24.4:5 >=kde-plasma/kwayland-server-5.24.4:5 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libepoxy >=media-libs/mesa-21.1[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi x11-libs/libdrm >=x11-libs/libxcb-1.10 >=x11-libs/libxkbcommon-0.7.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:5 ) caps? ( sys-libs/libcap ) gles2-only? ( media-libs/mesa[gles2] ) plasma? ( >=kde-frameworks/krunner-5.90.0:5 ) screencast? ( >=media-video/pipewire-0.3:= ) >=dev-qt/designer-5.15.2:5 >=dev-qt/qtconcurrent-5.15.2:5 x11-base/xorg-proto test? ( dev-libs/plasma-wayland-protocols >=dev-libs/wayland-protocols-1.19 ) test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 +DESCRIPTION=Flexible, composited Window Manager for windowing systems on Linux +EAPI=8 +HOMEPAGE=https://kde.org/plasma-desktop +IUSE=accessibility caps gles2-only multimedia plasma screencast test debug +handbook test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=GPL-2+ +PDEPEND=>=kde-plasma/kde-cli-tools-5.24.4:5 +RDEPEND=>=dev-libs/libinput-1.19 >=dev-libs/wayland-1.2 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5 >=dev-qt/qtgui-5.15.2:5=[gles2-only=,libinput] >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtx11extras-5.15.2:5 >=kde-frameworks/kactivities-5.90.0:5 >=kde-frameworks/kauth-5.90.0:5 >=kde-frameworks/kcmutils-5.90.0:5 >=kde-frameworks/kcompletion-5.90.0:5 >=kde-frameworks/kconfig-5.90.0:5 >=kde-frameworks/kconfigwidgets-5.90.0:5 >=kde-frameworks/kcoreaddons-5.90.0:5 >=kde-frameworks/kcrash-5.90.0:5 >=kde-frameworks/kdbusaddons-5.90.0:5 >=kde-frameworks/kdeclarative-5.90.0:5 >=kde-frameworks/kglobalaccel-5.90.0:5= >=kde-frameworks/ki18n-5.90.0:5 >=kde-frameworks/kiconthemes-5.90.0:5 >=kde-frameworks/kidletime-5.90.0:5= >=kde-frameworks/knewstuff-5.90.0:5 >=kde-frameworks/knotifications-5.90.0:5 >=kde-frameworks/kpackage-5.90.0:5 >=kde-frameworks/kservice-5.90.0:5 >=kde-frameworks/ktextwidgets-5.90.0:5 >=kde-frameworks/kwayland-5.90.0:5 >=kde-frameworks/kwidgetsaddons-5.90.0:5 >=kde-frameworks/kwindowsystem-5.90.0:5=[X] >=kde-frameworks/kxmlgui-5.90.0:5 >=kde-frameworks/plasma-5.90.0:5 >=kde-plasma/breeze-5.24.4:5 >=kde-plasma/kdecoration-5.24.4:5 >=kde-plasma/kscreenlocker-5.24.4:5 >=kde-plasma/kwayland-server-5.24.4:5 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libepoxy >=media-libs/mesa-21.1[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi x11-libs/libdrm >=x11-libs/libxcb-1.10 >=x11-libs/libxkbcommon-0.7.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:5 ) caps? ( sys-libs/libcap ) gles2-only? ( media-libs/mesa[gles2] ) plasma? ( >=kde-frameworks/krunner-5.90.0:5 ) screencast? ( >=media-video/pipewire-0.3:= ) >=dev-qt/qtquickcontrols-5.15.2:5 >=dev-qt/qtquickcontrols2-5.15.2:5 >=dev-qt/qtvirtualkeyboard-5.15.2:5 >=kde-frameworks/kirigami-5.90.0:5 >=kde-frameworks/kitemmodels-5.90.0:5[qml] sys-apps/hwdata x11-base/xwayland multimedia? ( >=dev-qt/qtmultimedia-5.15.2:5[gstreamer,qml] ) || ( 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/plasma/5.24.4/kwin-5.24.4.tar.xz +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=44d3c23e5624b61428a9fada801ce899 diff --git a/metadata/md5-cache/kde-plasma/layer-shell-qt-5.23.5 b/metadata/md5-cache/kde-plasma/layer-shell-qt-5.23.5 index f6f14cfff53e..221c4220b39d 100644 --- a/metadata/md5-cache/kde-plasma/layer-shell-qt-5.23.5 +++ b/metadata/md5-cache/kde-plasma/layer-shell-qt-5.23.5 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.86.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 dev-util/wayland-scanner virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.86.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdeclarative-5.15.2:5 || ( >=dev-qt/qtgui-5.15.2:5[libinput] >=dev-qt/qtgui-5.15.2:5[X] ) >=dev-qt/qtwayland-5.15.2:5= x11-libs/libxkbcommon dev-libs/wayland-protocols dev-qt/qtcore:5 DESCRIPTION=Qt component to allow applications make use of Wayland wl-layer-shell protocol @@ -11,4 +11,4 @@ RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdeclarative-5.15.2:5 || ( >=dev-qt/qt SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.23.5/layer-shell-qt-5.23.5.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=7224da530337530695bfa8507a0200b8 +_md5_=bafda17235e683659a2c15923769315c diff --git a/metadata/md5-cache/kde-plasma/layer-shell-qt-5.24.4 b/metadata/md5-cache/kde-plasma/layer-shell-qt-5.24.4 index 4ab85b44edbf..ffde1f1729c0 100644 --- a/metadata/md5-cache/kde-plasma/layer-shell-qt-5.24.4 +++ b/metadata/md5-cache/kde-plasma/layer-shell-qt-5.24.4 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.90.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 dev-util/wayland-scanner virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.90.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdeclarative-5.15.2:5 || ( >=dev-qt/qtgui-5.15.2:5[libinput] >=dev-qt/qtgui-5.15.2:5[X] ) >=dev-qt/qtwayland-5.15.2:5= x11-libs/libxkbcommon dev-libs/wayland-protocols dev-qt/qtcore:5 DESCRIPTION=Qt component to allow applications make use of Wayland wl-layer-shell protocol @@ -11,4 +11,4 @@ RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdeclarative-5.15.2:5 || ( >=dev-qt/qt SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.24.4/layer-shell-qt-5.24.4.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=9d472709ff333e6e32ddb9bdf8470d72 +_md5_=bdd4e803c2ed405bb20a172788d5de3c diff --git a/metadata/md5-cache/kde-plasma/libkscreen-5.23.5-r1 b/metadata/md5-cache/kde-plasma/libkscreen-5.23.5-r1 index d2b789f4ad73..3e7e0c82031e 100644 --- a/metadata/md5-cache/kde-plasma/libkscreen-5.23.5-r1 +++ b/metadata/md5-cache/kde-plasma/libkscreen-5.23.5-r1 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.86.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 dev-util/wayland-scanner dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.86.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=dev-libs/wayland >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtx11extras-5.15.2:5 >=kde-frameworks/kcoreaddons-5.86.0:5 >=kde-frameworks/kwayland-5.86.0:5 x11-libs/libxcb >=dev-libs/plasma-wayland-protocols-1.4.0 test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 DESCRIPTION=Plasma screen management library @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/7 SRC_URI=mirror://kde/stable/plasma/5.23.5/libkscreen-5.23.5.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=179a7f2776cf2faa8e951fee83254b6e +_md5_=37330619d06e696e262d9a5303e17670 diff --git a/metadata/md5-cache/kde-plasma/libkscreen-5.24.4 b/metadata/md5-cache/kde-plasma/libkscreen-5.24.4 index 8aefc14d1922..70d98942708c 100644 --- a/metadata/md5-cache/kde-plasma/libkscreen-5.24.4 +++ b/metadata/md5-cache/kde-plasma/libkscreen-5.24.4 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.90.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 dev-util/wayland-scanner dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.90.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=dev-libs/wayland >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtx11extras-5.15.2:5 >=kde-frameworks/kcoreaddons-5.90.0:5 >=kde-frameworks/kwayland-5.90.0:5 x11-libs/libxcb >=dev-libs/plasma-wayland-protocols-1.6.0 test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 DESCRIPTION=Plasma screen management library @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/7 SRC_URI=mirror://kde/stable/plasma/5.24.4/libkscreen-5.24.4.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=ec74e962bfe1efa1b0b02f88f409f82d +_md5_=022d83b740358d6865221afb522c35d5 diff --git a/metadata/md5-cache/kde-plasma/plasma-desktop-5.24.4-r1 b/metadata/md5-cache/kde-plasma/plasma-desktop-5.24.4-r1 new file mode 100644 index 000000000000..75ced7448263 --- /dev/null +++ b/metadata/md5-cache/kde-plasma/plasma-desktop-5.24.4-r1 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) handbook? ( >=kde-frameworks/kdoctools-5.90.0:5 ) >=kde-frameworks/extra-cmake-modules-5.90.0:5 +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=>=dev-qt/qtconcurrent-5.15.2:5 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtnetwork-5.15.2:5 >=dev-qt/qtprintsupport-5.15.2:5 >=dev-qt/qtsql-5.15.2:5 >=dev-qt/qtsvg-5.15.2:5 >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtx11extras-5.15.2:5 >=dev-qt/qtxml-5.15.2:5 >=kde-frameworks/attica-5.90.0:5 >=kde-frameworks/kactivities-5.90.0:5 >=kde-frameworks/kactivities-stats-5.90.0:5 >=kde-frameworks/karchive-5.90.0:5 >=kde-frameworks/kauth-5.90.0:5 >=kde-frameworks/kbookmarks-5.90.0:5 >=kde-frameworks/kcmutils-5.90.0:5 >=kde-frameworks/kcodecs-5.90.0:5 >=kde-frameworks/kcompletion-5.90.0:5 >=kde-frameworks/kconfig-5.90.0:5 >=kde-frameworks/kconfigwidgets-5.90.0:5 >=kde-frameworks/kcoreaddons-5.90.0:5 >=kde-frameworks/kcrash-5.90.0:5 >=kde-frameworks/kdbusaddons-5.90.0:5 >=kde-frameworks/kdeclarative-5.90.0:5 >=kde-frameworks/kded-5.90.0:5 >=kde-frameworks/kdelibs4support-5.90.0:5 >=kde-frameworks/kglobalaccel-5.90.0:5 >=kde-frameworks/kguiaddons-5.90.0:5 >=kde-frameworks/ki18n-5.90.0:5 >=kde-frameworks/kiconthemes-5.90.0:5 >=kde-frameworks/kio-5.90.0:5 >=kde-frameworks/kitemmodels-5.90.0:5 >=kde-frameworks/kitemviews-5.90.0:5 >=kde-frameworks/kjobwidgets-5.90.0:5 >=kde-frameworks/knewstuff-5.90.0:5 >=kde-frameworks/knotifications-5.90.0:5 >=kde-frameworks/knotifyconfig-5.90.0:5 >=kde-frameworks/kparts-5.90.0:5 >=kde-frameworks/krunner-5.90.0:5 >=kde-frameworks/kservice-5.90.0:5 >=kde-frameworks/kwidgetsaddons-5.90.0:5 >=kde-frameworks/kwindowsystem-5.90.0:5 >=kde-frameworks/kxmlgui-5.90.0:5 >=kde-frameworks/plasma-5.90.0:5 >=kde-frameworks/solid-5.90.0:5 >=kde-frameworks/sonnet-5.90.0:5 >=kde-plasma/kwin-5.24.4:5 >=kde-plasma/libksysguard-5.24.4:5 >=kde-plasma/libkworkspace-5.24.4:5 >=kde-plasma/plasma-workspace-5.24.4:5 >=media-libs/phonon-4.11.0 x11-libs/libX11 x11-libs/libXfixes x11-libs/libXi x11-libs/libxcb[xkb] x11-libs/libxkbfile emoji? ( app-i18n/ibus[emoji] dev-libs/glib:2 media-fonts/noto-emoji ) ibus? ( app-i18n/ibus dev-libs/glib:2 >=dev-qt/qtx11extras-5.15.2:5 x11-libs/libxcb x11-libs/xcb-util-keysyms ) kaccounts? ( kde-apps/kaccounts-integration:5 net-libs/accounts-qt ) scim? ( app-i18n/scim ) semantic-desktop? ( >=kde-frameworks/baloo-5.90.0:5 ) telemetry? ( dev-libs/kuserfeedback:5 ) dev-libs/boost x11-base/xorg-proto test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 +DESCRIPTION=KDE Plasma desktop +EAPI=8 +HOMEPAGE=https://kde.org/plasma-desktop +IUSE=emoji ibus +kaccounts scim +semantic-desktop telemetry test debug +handbook test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-qt/qtconcurrent-5.15.2:5 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtnetwork-5.15.2:5 >=dev-qt/qtprintsupport-5.15.2:5 >=dev-qt/qtsql-5.15.2:5 >=dev-qt/qtsvg-5.15.2:5 >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtx11extras-5.15.2:5 >=dev-qt/qtxml-5.15.2:5 >=kde-frameworks/attica-5.90.0:5 >=kde-frameworks/kactivities-5.90.0:5 >=kde-frameworks/kactivities-stats-5.90.0:5 >=kde-frameworks/karchive-5.90.0:5 >=kde-frameworks/kauth-5.90.0:5 >=kde-frameworks/kbookmarks-5.90.0:5 >=kde-frameworks/kcmutils-5.90.0:5 >=kde-frameworks/kcodecs-5.90.0:5 >=kde-frameworks/kcompletion-5.90.0:5 >=kde-frameworks/kconfig-5.90.0:5 >=kde-frameworks/kconfigwidgets-5.90.0:5 >=kde-frameworks/kcoreaddons-5.90.0:5 >=kde-frameworks/kcrash-5.90.0:5 >=kde-frameworks/kdbusaddons-5.90.0:5 >=kde-frameworks/kdeclarative-5.90.0:5 >=kde-frameworks/kded-5.90.0:5 >=kde-frameworks/kdelibs4support-5.90.0:5 >=kde-frameworks/kglobalaccel-5.90.0:5 >=kde-frameworks/kguiaddons-5.90.0:5 >=kde-frameworks/ki18n-5.90.0:5 >=kde-frameworks/kiconthemes-5.90.0:5 >=kde-frameworks/kio-5.90.0:5 >=kde-frameworks/kitemmodels-5.90.0:5 >=kde-frameworks/kitemviews-5.90.0:5 >=kde-frameworks/kjobwidgets-5.90.0:5 >=kde-frameworks/knewstuff-5.90.0:5 >=kde-frameworks/knotifications-5.90.0:5 >=kde-frameworks/knotifyconfig-5.90.0:5 >=kde-frameworks/kparts-5.90.0:5 >=kde-frameworks/krunner-5.90.0:5 >=kde-frameworks/kservice-5.90.0:5 >=kde-frameworks/kwidgetsaddons-5.90.0:5 >=kde-frameworks/kwindowsystem-5.90.0:5 >=kde-frameworks/kxmlgui-5.90.0:5 >=kde-frameworks/plasma-5.90.0:5 >=kde-frameworks/solid-5.90.0:5 >=kde-frameworks/sonnet-5.90.0:5 >=kde-plasma/kwin-5.24.4:5 >=kde-plasma/libksysguard-5.24.4:5 >=kde-plasma/libkworkspace-5.24.4:5 >=kde-plasma/plasma-workspace-5.24.4:5 >=media-libs/phonon-4.11.0 x11-libs/libX11 x11-libs/libXfixes x11-libs/libXi x11-libs/libxcb[xkb] x11-libs/libxkbfile emoji? ( app-i18n/ibus[emoji] dev-libs/glib:2 media-fonts/noto-emoji ) ibus? ( app-i18n/ibus dev-libs/glib:2 >=dev-qt/qtx11extras-5.15.2:5 x11-libs/libxcb x11-libs/xcb-util-keysyms ) kaccounts? ( kde-apps/kaccounts-integration:5 net-libs/accounts-qt ) scim? ( app-i18n/scim ) semantic-desktop? ( >=kde-frameworks/baloo-5.90.0:5 ) telemetry? ( dev-libs/kuserfeedback:5 ) !kde-plasma/user-manager >=dev-qt/qtgraphicaleffects-5.15.2:5 >=dev-qt/qtquickcontrols2-5.15.2:5 >=kde-frameworks/kirigami-5.90.0:5 >=kde-frameworks/qqc2-desktop-style-5.90.0:5 >=kde-plasma/kde-cli-tools-5.24.4:5 >=kde-plasma/oxygen-5.24.4:5 sys-apps/util-linux x11-apps/setxkbmap x11-misc/xdg-user-dirs kaccounts? ( net-libs/signon-oauth2 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=5 +SRC_URI=mirror://kde/stable/plasma/5.24.4/plasma-desktop-5.24.4.tar.xz https://dev.gentoo.org/~asturm/distfiles/plasma-desktop-override-include-dirs-1.tar.xz +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=91a546c97193579fadc63b2dc6a22a2b diff --git a/metadata/md5-cache/kde-plasma/plasma-workspace-5.23.5-r2 b/metadata/md5-cache/kde-plasma/plasma-workspace-5.23.5-r2 index de8b4d7fd0db..eaf5a7d93222 100644 --- a/metadata/md5-cache/kde-plasma/plasma-workspace-5.23.5-r2 +++ b/metadata/md5-cache/kde-plasma/plasma-workspace-5.23.5-r2 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) handbook? ( >=kde-frameworks/kdoctools-5.86.0:5 ) >=kde-frameworks/extra-cmake-modules-5.86.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) handbook? ( >=kde-frameworks/kdoctools-5.86.0:5 ) >=kde-frameworks/extra-cmake-modules-5.86.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5[widgets] >=dev-qt/qtgui-5.15.2:5=[jpeg,libinput] >=dev-qt/qtnetwork-5.15.2:5 >=dev-qt/qtsql-5.15.2:5 >=dev-qt/qtsvg-5.15.2:5 >=dev-qt/qtwayland-5.15.2:5= >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtx11extras-5.15.2:5 >=dev-qt/qtxml-5.15.2:5 >=kde-frameworks/kactivities-5.86.0:5 >=kde-frameworks/kactivities-stats-5.86.0:5 >=kde-frameworks/karchive-5.86.0:5 >=kde-frameworks/kauth-5.86.0:5 >=kde-frameworks/kbookmarks-5.86.0:5 >=kde-frameworks/kcompletion-5.86.0:5 >=kde-frameworks/kconfig-5.86.0:5 >=kde-frameworks/kconfigwidgets-5.86.0:5 >=kde-frameworks/kcoreaddons-5.86.0:5 >=kde-frameworks/kcrash-5.86.0:5 >=kde-frameworks/kdbusaddons-5.86.0:5 >=kde-frameworks/kdeclarative-5.86.0:5 >=kde-frameworks/kded-5.86.0:5 >=kde-frameworks/kglobalaccel-5.86.0:5 >=kde-frameworks/kguiaddons-5.86.0:5 >=kde-frameworks/ki18n-5.86.0:5 >=kde-frameworks/kiconthemes-5.86.0:5 >=kde-frameworks/kidletime-5.86.0:5 >=kde-frameworks/kinit-5.86.0:5 >=kde-frameworks/kio-5.86.0:5 >=kde-frameworks/kitemmodels-5.86.0:5 >=kde-frameworks/kitemviews-5.86.0:5 >=kde-frameworks/kjobwidgets-5.86.0:5 >=kde-frameworks/knewstuff-5.86.0:5 >=kde-frameworks/knotifications-5.86.0:5 >=kde-frameworks/knotifyconfig-5.86.0:5 >=kde-frameworks/kpackage-5.86.0:5 >=kde-frameworks/kpeople-5.86.0:5 >=kde-frameworks/krunner-5.86.0:5 >=kde-frameworks/kservice-5.86.0:5 >=kde-frameworks/ktexteditor-5.86.0:5 >=kde-frameworks/ktextwidgets-5.86.0:5 >=kde-frameworks/kunitconversion-5.86.0:5 >=kde-frameworks/kwallet-5.86.0:5 >=kde-frameworks/kwayland-5.86.0:5 >=kde-frameworks/kwidgetsaddons-5.86.0:5 >=kde-frameworks/kwindowsystem-5.86.0:5 >=kde-frameworks/kxmlgui-5.86.0:5 >=kde-frameworks/plasma-5.86.0:5 >=kde-frameworks/prison-5.86.0:5[qml] >=kde-frameworks/solid-5.86.0:5 >=kde-plasma/breeze-5.23.5:5 >=kde-plasma/kscreenlocker-5.23.5:5 >=kde-plasma/kwin-5.23.5:5 >=kde-plasma/layer-shell-qt-5.23.5:5 >=kde-plasma/libkscreen-5.23.5:5 >=kde-plasma/libksysguard-5.23.5:5 >=kde-plasma/libkworkspace-5.23.5:5 >=media-libs/phonon-4.11.0 sys-libs/zlib x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libxcb x11-libs/libXcursor x11-libs/libXfixes x11-libs/libXrender x11-libs/libXtst x11-libs/xcb-util x11-libs/xcb-util-image appstream? ( dev-libs/appstream[qt5] ) calculator? ( sci-libs/libqalculate:= ) calendar? ( >=kde-frameworks/kholidays-5.86.0:5 ) fontconfig? ( >=dev-qt/qtprintsupport-5.15.2:5 media-libs/fontconfig x11-libs/libXft x11-libs/xcb-util-image ) geolocation? ( >=kde-frameworks/networkmanager-qt-5.86.0:5 ) gps? ( sci-geosciences/gpsd ) screencast? ( >=dev-qt/qtgui-5.15.2:5=[egl] media-libs/libglvnd >=media-video/pipewire-0.3:= x11-libs/libdrm ) semantic-desktop? ( >=kde-frameworks/baloo-5.86.0:5 ) telemetry? ( dev-libs/kuserfeedback:5 ) >=dev-libs/plasma-wayland-protocols-1.1.1 >=dev-qt/qtconcurrent-5.15.2:5 >=dev-util/wayland-scanner-1.19.0 x11-base/xorg-proto fontconfig? ( x11-libs/libXrender ) test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 DESCRIPTION=KDE Plasma workspace @@ -14,4 +14,4 @@ RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.23.5/plasma-workspace-5.23.5.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=31d31dcf1f70d5e15349ddb8f198e98c +_md5_=013da1a4fab80d3899a7c3d3824ed233 diff --git a/metadata/md5-cache/kde-plasma/plasma-workspace-5.24.4 b/metadata/md5-cache/kde-plasma/plasma-workspace-5.24.4 index 950496a8efb9..f219eec20292 100644 --- a/metadata/md5-cache/kde-plasma/plasma-workspace-5.24.4 +++ b/metadata/md5-cache/kde-plasma/plasma-workspace-5.24.4 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) handbook? ( >=kde-frameworks/kdoctools-5.90.0:5 ) >=kde-frameworks/extra-cmake-modules-5.90.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) handbook? ( >=kde-frameworks/kdoctools-5.90.0:5 ) >=kde-frameworks/extra-cmake-modules-5.90.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5[widgets] >=dev-qt/qtgui-5.15.2:5=[jpeg,libinput] >=dev-qt/qtnetwork-5.15.2:5 >=dev-qt/qtsql-5.15.2:5 >=dev-qt/qtsvg-5.15.2:5 >=dev-qt/qtwayland-5.15.2:5= >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtx11extras-5.15.2:5 >=dev-qt/qtxml-5.15.2:5 >=kde-frameworks/kactivities-5.90.0:5 >=kde-frameworks/kactivities-stats-5.90.0:5 >=kde-frameworks/karchive-5.90.0:5 >=kde-frameworks/kauth-5.90.0:5 >=kde-frameworks/kbookmarks-5.90.0:5 >=kde-frameworks/kcompletion-5.90.0:5 >=kde-frameworks/kconfig-5.90.0:5 >=kde-frameworks/kconfigwidgets-5.90.0:5 >=kde-frameworks/kcoreaddons-5.90.0:5 >=kde-frameworks/kcrash-5.90.0:5 >=kde-frameworks/kdbusaddons-5.90.0:5 >=kde-frameworks/kdeclarative-5.90.0:5 >=kde-frameworks/kded-5.90.0:5 >=kde-frameworks/kglobalaccel-5.90.0:5 >=kde-frameworks/kguiaddons-5.90.0:5 >=kde-frameworks/ki18n-5.90.0:5 >=kde-frameworks/kiconthemes-5.90.0:5 >=kde-frameworks/kidletime-5.90.0:5 >=kde-frameworks/kinit-5.90.0:5 >=kde-frameworks/kio-5.90.0:5 >=kde-frameworks/kitemmodels-5.90.0:5 >=kde-frameworks/kitemviews-5.90.0:5 >=kde-frameworks/kjobwidgets-5.90.0:5 >=kde-frameworks/knewstuff-5.90.0:5 >=kde-frameworks/knotifications-5.90.0:5 >=kde-frameworks/knotifyconfig-5.90.0:5 >=kde-frameworks/kpackage-5.90.0:5 >=kde-frameworks/kpeople-5.90.0:5 >=kde-frameworks/krunner-5.90.0:5 >=kde-frameworks/kservice-5.90.0:5 >=kde-frameworks/ktexteditor-5.90.0:5 >=kde-frameworks/ktextwidgets-5.90.0:5 >=kde-frameworks/kunitconversion-5.90.0:5 >=kde-frameworks/kwallet-5.90.0:5 >=kde-frameworks/kwayland-5.90.0:5 >=kde-frameworks/kwidgetsaddons-5.90.0:5 >=kde-frameworks/kwindowsystem-5.90.0:5 >=kde-frameworks/kxmlgui-5.90.0:5 >=kde-frameworks/plasma-5.90.0:5 >=kde-frameworks/prison-5.90.0:5[qml] >=kde-frameworks/solid-5.90.0:5 >=kde-plasma/breeze-5.24.4:5 >=kde-plasma/kscreenlocker-5.24.4:5 >=kde-plasma/kwin-5.24.4:5 >=kde-plasma/layer-shell-qt-5.24.4:5 >=kde-plasma/libkscreen-5.24.4:5 >=kde-plasma/libksysguard-5.24.4:5 >=kde-plasma/libkworkspace-5.24.4:5 >=media-libs/phonon-4.11.0 sci-libs/libqalculate:= sys-libs/zlib x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libxcb x11-libs/libXcursor x11-libs/libXfixes x11-libs/libXrender x11-libs/libXtst x11-libs/xcb-util x11-libs/xcb-util-image appstream? ( dev-libs/appstream[qt5] ) calendar? ( >=kde-frameworks/kholidays-5.90.0:5 ) fontconfig? ( >=dev-qt/qtprintsupport-5.15.2:5 media-libs/fontconfig x11-libs/libXft x11-libs/xcb-util-image ) geolocation? ( >=kde-frameworks/networkmanager-qt-5.90.0:5 ) gps? ( sci-geosciences/gpsd ) policykit? ( virtual/libcrypt:= ) screencast? ( >=dev-qt/qtgui-5.15.2:5=[egl] media-libs/libglvnd >=media-video/pipewire-0.3:= x11-libs/libdrm ) semantic-desktop? ( >=kde-frameworks/baloo-5.90.0:5 ) telemetry? ( dev-libs/kuserfeedback:5 ) >=dev-libs/plasma-wayland-protocols-1.6.0 >=dev-qt/qtconcurrent-5.15.2:5 >=dev-util/wayland-scanner-1.19.0 x11-base/xorg-proto fontconfig? ( x11-libs/libXrender ) test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 DESCRIPTION=KDE Plasma workspace @@ -14,4 +14,4 @@ RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.24.4/plasma-workspace-5.24.4.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=88ff3ad4583f200cacc09254fbb3edcf +_md5_=b511cf414448f72fce093aad17bcc5a0 diff --git a/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.23.5 b/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.23.5 index 87bc6b1e3206..54496537bcc3 100644 --- a/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.23.5 +++ b/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.23.5 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.86.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 dev-util/ninja >=dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.86.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtprintsupport-5.15.2:5[cups] >=dev-qt/qtwidgets-5.15.2:5 >=kde-frameworks/kcoreaddons-5.86.0:5 >=kde-frameworks/kdeclarative-5.86.0:5 >=kde-frameworks/ki18n-5.86.0:5 >=kde-frameworks/kio-5.86.0:5 >=kde-frameworks/kirigami-5.86.0:5 >=kde-frameworks/knotifications-5.86.0:5 >=kde-frameworks/kwidgetsaddons-5.86.0:5 >=kde-frameworks/plasma-5.86.0:5 >=dev-libs/plasma-wayland-protocols-1.1.1 >=dev-qt/qtconcurrent-5.15.2:5 >=kde-frameworks/kwayland-5.86.0:5 dev-qt/qtcore:5 DESCRIPTION=Backend implementation for xdg-desktop-portal that is using Qt/KDE Frameworks @@ -11,4 +11,4 @@ RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative- SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.23.5/xdg-desktop-portal-kde-5.23.5.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=0f73002e06799f8e4b6b0eeb859e8b0d +_md5_=16cc3f62a05efef40619483f95af13d6 diff --git a/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.24.4 b/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.24.4 index e0bdd779047a..4e37da53c79d 100644 --- a/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.24.4 +++ b/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.24.4 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-qt/qtwaylandscanner-5.15.2:5 =dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.90.0:5 +BDEPEND=>=dev-qt/qtwaylandscanner-5.15.2:5 dev-util/ninja >=dev-util/cmake-3.20.5 >=kde-frameworks/extra-cmake-modules-5.90.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack DEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtprintsupport-5.15.2:5[cups] >=dev-qt/qtwidgets-5.15.2:5 >=kde-frameworks/kcoreaddons-5.90.0:5 >=kde-frameworks/kdeclarative-5.90.0:5 >=kde-frameworks/ki18n-5.90.0:5 >=kde-frameworks/kio-5.90.0:5 >=kde-frameworks/kirigami-5.90.0:5 >=kde-frameworks/knotifications-5.90.0:5 >=kde-frameworks/kwidgetsaddons-5.90.0:5 >=kde-frameworks/plasma-5.90.0:5 >=dev-libs/plasma-wayland-protocols-1.1.1 >=dev-qt/qtconcurrent-5.15.2:5 >=kde-frameworks/kwayland-5.90.0:5 dev-qt/qtcore:5 DESCRIPTION=Backend implementation for xdg-desktop-portal that is using Qt/KDE Frameworks @@ -11,4 +11,4 @@ RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative- SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.24.4/xdg-desktop-portal-kde-5.24.4.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 ecm 542fb4c59adc3702f566140a9bdf49f8 flag-o-matic a500d7cc40da3de38c361e889153bdf7 kde.org 4f2cef3496909640f9114c853d2077b4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=88321613d82a09a7a19b24b5a56ff6d1 +_md5_=8e244b2543fe01cdd5a6851bbf39610f diff --git a/metadata/md5-cache/mail-client/Manifest.gz b/metadata/md5-cache/mail-client/Manifest.gz index 9889184cd92b..4f4a055f5d94 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/geary-40.0-r1 b/metadata/md5-cache/mail-client/geary-40.0-r1 index 96ec9a0b5cd7..5c15313a790a 100644 --- a/metadata/md5-cache/mail-client/geary-40.0-r1 +++ b/metadata/md5-cache/mail-client/geary-40.0-r1 @@ -1,5 +1,5 @@ -BDEPEND=>=dev-libs/appstream-glib-0.7.10 dev-libs/libxml2 dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig test? ( net-libs/gnutls[tools] ) || ( dev-lang/vala:0.56 dev-lang/vala:0.54 dev-lang/vala:0.52 dev-lang/vala:0.50 dev-lang/vala:0.48 ) x11-libs/gtk+:3[introspection] net-libs/webkit-gtk:4[introspection] dev-libs/gmime:3.0[vala] app-crypt/gcr:0[introspection,vala] dev-libs/libgee:0.8[introspection] media-libs/gsound[vala] app-text/gspell[vala] gui-libs/libhandy:1[vala] app-crypt/libsecret[introspection,vala] net-libs/libsoup:2.4[introspection,vala] app-arch/xz-utils >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +BDEPEND=|| ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) >=dev-libs/appstream-glib-0.7.10 dev-libs/libxml2 dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig test? ( net-libs/gnutls[tools] ) || ( dev-lang/vala:0.54 dev-lang/vala:0.52 dev-lang/vala:0.50 dev-lang/vala:0.48 ) x11-libs/gtk+:3[introspection] net-libs/webkit-gtk:4[introspection] dev-libs/gmime:3.0[vala] app-crypt/gcr:0[introspection,vala] dev-libs/libgee:0.8[introspection] media-libs/gsound[vala] app-text/gspell[vala] gui-libs/libhandy:1[vala] app-crypt/libsecret[introspection,vala] net-libs/libsoup:2.4[introspection,vala] app-arch/xz-utils >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test DEPEND=>=dev-libs/glib-2.66:2 >=x11-libs/gtk+-3.24.23:3 >=net-libs/webkit-gtk-2.30:4= >=dev-libs/gmime-3.2.4:3.0 >=dev-db/sqlite-3.24:3 x11-libs/cairo[glib] app-text/enchant:2 >=dev-libs/folks-0.11:0= >=app-crypt/gcr-3.10.1:0= >=dev-libs/libgee-0.8.5:0.8= net-libs/gnome-online-accounts media-libs/gsound >=app-text/gspell-1.7:= >=dev-libs/icu-60:= app-text/iso-codes >=dev-libs/json-glib-1.0 >=gui-libs/libhandy-1.2.1:1= >=dev-libs/libpeas-1.24.0[gtk] >=app-crypt/libsecret-0.11 dev-libs/snowball-stemmer:= >=net-libs/libsoup-2.48:2.4 >=dev-libs/libxml2-2.7.8:2 ytnef? ( >=net-mail/ytnef-1.9.3 ) dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=A lightweight, easy-to-use, feature-rich email client EAPI=7 @@ -11,5 +11,5 @@ RDEPEND=>=dev-libs/glib-2.66:2 >=x11-libs/gtk+-3.24.23:3 >=net-libs/webkit-gtk-2 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/geary/40/geary-40.0.tar.xz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vala 9badd41d5aab740ae5ac301c4416c5f8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=0c6a623776cf3dc8b1d2ae9e343051fd +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vala 9badd41d5aab740ae5ac301c4416c5f8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=fe957e44425d8d2c70146b7743372249 diff --git a/metadata/md5-cache/mail-client/mutt-2.2.3 b/metadata/md5-cache/mail-client/mutt-2.2.3 index 7b3b088fda13..781f48ed9444 100644 --- a/metadata/md5-cache/mail-client/mutt-2.2.3 +++ b/metadata/md5-cache/mail-client/mutt-2.2.3 @@ -5,11 +5,11 @@ DESCRIPTION=A small but very powerful text-based mail client EAPI=7 HOMEPAGE=http://www.mutt.org/ IUSE=autocrypt berkdb debug doc gdbm gnutls gpgme gsasl +hcache idn +imap kerberos +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 +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? ( >=dev-libs/openssl-0.9.6:0= ) ) nls? ( virtual/libintl ) sasl? ( gsasl? ( virtual/gsasl ) !gsasl? ( >=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/openssl-0.9.6:0 ) pgp-classic? ( app-crypt/gnupg ) REQUIRED_USE=gsasl? ( sasl ) 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.2.3.tar.gz https://bitbucket.org/mutt/mutt/downloads/mutt-2.2.3.tar.gz https://dev.gentoo.org/~grobian/distfiles/mutt-gentoo-2.2.3-patches-r0.tar.xz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=7904a6ea26cf00fac2f130b9269c6063 +_md5_=c410526f91a7e2ab69f0908e50ebfa07 diff --git a/metadata/md5-cache/mail-mta/Manifest.gz b/metadata/md5-cache/mail-mta/Manifest.gz index 7fc05f3a66e3..f3c9ff318b07 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/postfix-3.6.6 b/metadata/md5-cache/mail-mta/postfix-3.6.6 new file mode 100644 index 000000000000..a106796e10cc --- /dev/null +++ b/metadata/md5-cache/mail-mta/postfix-3.6.6 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=configure install postinst prepare +DEPEND=acct-group/postfix acct-group/postdrop acct-user/postfix >=dev-libs/libpcre-3.4 dev-lang/perl berkdb? ( >=sys-libs/db-3.2:* ) cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r4 ) ) eai? ( dev-libs/icu:= ) ldap? ( net-nds/openldap:= ) ldap-bind? ( net-nds/openldap:=[sasl] ) lmdb? ( >=dev-db/lmdb-0.9.11:= ) mysql? ( dev-db/mysql-connector-c:0= ) nis? ( net-libs/libnsl:= ) pam? ( sys-libs/pam ) postgres? ( dev-db/postgresql:* ) sasl? ( >=dev-libs/cyrus-sasl-2 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-1.1.1:0= ) +DESCRIPTION=A fast and secure drop-in replacement for sendmail +EAPI=7 +HOMEPAGE=http://www.postfix.org/ +IUSE=+berkdb cdb dovecot-sasl +eai ldap ldap-bind lmdb memcached mbox mysql nis pam postgres sasl selinux sqlite ssl +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=|| ( IBM EPL-2.0 ) +RDEPEND=acct-group/postfix acct-group/postdrop acct-user/postfix >=dev-libs/libpcre-3.4 dev-lang/perl berkdb? ( >=sys-libs/db-3.2:* ) cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r4 ) ) eai? ( dev-libs/icu:= ) ldap? ( net-nds/openldap:= ) ldap-bind? ( net-nds/openldap:=[sasl] ) lmdb? ( >=dev-db/lmdb-0.9.11:= ) mysql? ( dev-db/mysql-connector-c:0= ) nis? ( net-libs/libnsl:= ) pam? ( sys-libs/pam ) postgres? ( dev-db/postgresql:* ) sasl? ( >=dev-libs/cyrus-sasl-2 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-1.1.1:0= ) memcached? ( net-misc/memcached ) net-mail/mailbase !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/msmtp[mta] !mail-mta/netqmail !mail-mta/nullmailer !mail-mta/sendmail !mail-mta/opensmtpd !mail-mta/ssmtp[mta] selinux? ( sec-policy/selinux-postfix ) +REQUIRED_USE=ldap-bind? ( ldap sasl ) +SLOT=0 +SRC_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-3.6.6.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b pam e44a1dd98f13e1ad76de01e919bde1f1 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=470b93a5692c6e3ac475d28bfd3e12b5 diff --git a/metadata/md5-cache/mail-mta/postfix-3.7.1 b/metadata/md5-cache/mail-mta/postfix-3.7.1 new file mode 100644 index 000000000000..6604cf4cd766 --- /dev/null +++ b/metadata/md5-cache/mail-mta/postfix-3.7.1 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=configure install postinst prepare +DEPEND=acct-group/postfix acct-group/postdrop acct-user/postfix dev-libs/libpcre2:0 dev-lang/perl berkdb? ( >=sys-libs/db-3.2:* ) cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r4 ) ) eai? ( dev-libs/icu:= ) ldap? ( net-nds/openldap:= ) ldap-bind? ( net-nds/openldap:=[sasl] ) lmdb? ( >=dev-db/lmdb-0.9.11:= ) mysql? ( dev-db/mysql-connector-c:0= ) nis? ( net-libs/libnsl:= ) pam? ( sys-libs/pam ) postgres? ( dev-db/postgresql:* ) sasl? ( >=dev-libs/cyrus-sasl-2 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-1.1.1:0= ) +DESCRIPTION=A fast and secure drop-in replacement for sendmail +EAPI=8 +HOMEPAGE=http://www.postfix.org/ +IUSE=+berkdb cdb dovecot-sasl +eai ldap ldap-bind lmdb mbox memcached mysql nis pam postgres sasl selinux sqlite ssl +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=|| ( IBM EPL-2.0 ) +RDEPEND=acct-group/postfix acct-group/postdrop acct-user/postfix dev-libs/libpcre2:0 dev-lang/perl berkdb? ( >=sys-libs/db-3.2:* ) cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r4 ) ) eai? ( dev-libs/icu:= ) ldap? ( net-nds/openldap:= ) ldap-bind? ( net-nds/openldap:=[sasl] ) lmdb? ( >=dev-db/lmdb-0.9.11:= ) mysql? ( dev-db/mysql-connector-c:0= ) nis? ( net-libs/libnsl:= ) pam? ( sys-libs/pam ) postgres? ( dev-db/postgresql:* ) sasl? ( >=dev-libs/cyrus-sasl-2 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-1.1.1:0= ) memcached? ( net-misc/memcached ) net-mail/mailbase !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/msmtp[mta] !mail-mta/netqmail !mail-mta/nullmailer !mail-mta/sendmail !mail-mta/opensmtpd !mail-mta/ssmtp[mta] selinux? ( sec-policy/selinux-postfix ) +REQUIRED_USE=ldap-bind? ( ldap sasl ) +SLOT=0 +SRC_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-3.7.1.tar.gz +_eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b pam e44a1dd98f13e1ad76de01e919bde1f1 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=8895366583505649a67d65c6bde4fdab diff --git a/metadata/md5-cache/mail-mta/postfix-3.8_pre20220407 b/metadata/md5-cache/mail-mta/postfix-3.8_pre20220417 similarity index 98% rename from metadata/md5-cache/mail-mta/postfix-3.8_pre20220407 rename to metadata/md5-cache/mail-mta/postfix-3.8_pre20220417 index dffaa12798b3..d355d68cfc9d 100644 --- a/metadata/md5-cache/mail-mta/postfix-3.8_pre20220407 +++ b/metadata/md5-cache/mail-mta/postfix-3.8_pre20220417 @@ -10,6 +10,6 @@ LICENSE=|| ( IBM EPL-2.0 ) RDEPEND=acct-group/postfix acct-group/postdrop acct-user/postfix dev-libs/libpcre2:0 dev-lang/perl berkdb? ( >=sys-libs/db-3.2:* ) cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r4 ) ) eai? ( dev-libs/icu:= ) ldap? ( net-nds/openldap:= ) ldap-bind? ( net-nds/openldap:=[sasl] ) lmdb? ( >=dev-db/lmdb-0.9.11:= ) mysql? ( dev-db/mysql-connector-c:0= ) nis? ( net-libs/libnsl:= ) pam? ( sys-libs/pam ) postgres? ( dev-db/postgresql:* ) sasl? ( >=dev-libs/cyrus-sasl-2 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-1.1.1:0= ) memcached? ( net-misc/memcached ) net-mail/mailbase !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/msmtp[mta] !mail-mta/netqmail !mail-mta/nullmailer !mail-mta/sendmail !mail-mta/opensmtpd !mail-mta/ssmtp[mta] selinux? ( sec-policy/selinux-postfix ) REQUIRED_USE=ldap-bind? ( ldap sasl ) SLOT=0 -SRC_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/postfix-3.8-20220407.tar.gz +SRC_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/postfix-3.8-20220417.tar.gz _eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b pam e44a1dd98f13e1ad76de01e919bde1f1 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=9763a8a6f8ee584cdc0657b5dfa652e0 diff --git a/metadata/md5-cache/media-gfx/Manifest.gz b/metadata/md5-cache/media-gfx/Manifest.gz index 95501d6fb25a..994432c994db 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/asymptote-2.70-r1 b/metadata/md5-cache/media-gfx/asymptote-2.70-r1 index 23db441838f3..4c4dca6d2b10 100644 --- a/metadata/md5-cache/media-gfx/asymptote-2.70-r1 +++ b/metadata/md5-cache/media-gfx/asymptote-2.70-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) offscreen? RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/asymptote/asymptote-2.70.src.tgz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=53672f28fa2679607fbed68a6f25e2a9 diff --git a/metadata/md5-cache/media-gfx/asymptote-2.77 b/metadata/md5-cache/media-gfx/asymptote-2.77 index 61ba805be4b9..49801e0c1db9 100644 --- a/metadata/md5-cache/media-gfx/asymptote-2.77 +++ b/metadata/md5-cache/media-gfx/asymptote-2.77 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targe RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/asymptote/asymptote-2.77.src.tgz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c1ba88d824da171f73a2e1ad6a9f8121 diff --git a/metadata/md5-cache/media-gfx/asymptote-2.78 b/metadata/md5-cache/media-gfx/asymptote-2.78 index e359ee7426b8..e9a998c70bd1 100644 --- a/metadata/md5-cache/media-gfx/asymptote-2.78 +++ b/metadata/md5-cache/media-gfx/asymptote-2.78 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targe RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/asymptote/asymptote-2.78.src.tgz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c1ba88d824da171f73a2e1ad6a9f8121 diff --git a/metadata/md5-cache/media-gfx/asymptote-2.80 b/metadata/md5-cache/media-gfx/asymptote-2.80 index 80db922a4a66..008a1b458017 100644 --- a/metadata/md5-cache/media-gfx/asymptote-2.80 +++ b/metadata/md5-cache/media-gfx/asymptote-2.80 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targe RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/asymptote/asymptote-2.80.src.tgz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ed0bc88bf76f6a4339ba881778d62982 diff --git a/metadata/md5-cache/media-gfx/freecad-0.19.4 b/metadata/md5-cache/media-gfx/freecad-0.19.4-r1 similarity index 99% rename from metadata/md5-cache/media-gfx/freecad-0.19.4 rename to metadata/md5-cache/media-gfx/freecad-0.19.4-r1 index 1490d4814e37..32cfbb14e7af 100644 --- a/metadata/md5-cache/media-gfx/freecad-0.19.4 +++ b/metadata/md5-cache/media-gfx/freecad-0.19.4-r1 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/FreeCAD/FreeCAD/archive/refs/tags/0.19.4.tar.gz -> freecad-0.19.4.tar.gz https://raw.githubusercontent.com/waebbl/waebbl-gentoo/master/patches/freecad-0.19.2-0005-Make-smesh-compile-with-vtk9.patch.xz _eclasses_=check-reqs 82234bf011d5453330773cd5fc3f0199 cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=21bdf275fa80853e0a42c73f6871e598 +_md5_=c66f0a1201ba2b7db0912fb9b0908492 diff --git a/metadata/md5-cache/media-gfx/gnome-font-viewer-42.0 b/metadata/md5-cache/media-gfx/gnome-font-viewer-42.0 index c06e37376dcb..f953a2b49f9b 100644 --- a/metadata/md5-cache/media-gfx/gnome-font-viewer-42.0 +++ b/metadata/md5-cache/media-gfx/gnome-font-viewer-42.0 @@ -4,10 +4,10 @@ DEPEND=>=dev-libs/glib-2.56.0:2 >=gui-libs/gtk-4.5.0:4 >=gui-libs/libadwaita-1.0 DESCRIPTION=Font viewer utility for GNOME EAPI=8 HOMEPAGE=https://gitlab.gnome.org/GNOME/gnome-font-viewer -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=>=dev-libs/glib-2.56.0:2 >=gui-libs/gtk-4.5.0:4 >=gui-libs/libadwaita-1.0.0:1= >=media-libs/harfbuzz-0.9.9:= media-libs/fontconfig:1.0 media-libs/freetype:2 gnome-base/gnome-desktop:4= SLOT=0 SRC_URI=mirror://gnome/sources/gnome-font-viewer/42/gnome-font-viewer-42.0.tar.xz _eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=cbffc2aabd62ceb99848258a2c29dfe0 +_md5_=1350f0950faecfb22d25eedd9179c6b5 diff --git a/metadata/md5-cache/media-gfx/openscad-2021.01 b/metadata/md5-cache/media-gfx/openscad-2021.01 index 6739e0a1163f..fac707bfee57 100644 --- a/metadata/md5-cache/media-gfx/openscad-2021.01 +++ b/metadata/md5-cache/media-gfx/openscad-2021.01 @@ -11,5 +11,5 @@ RDEPEND=dev-cpp/eigen:3 dev-libs/boost:= dev-libs/double-conversion:= dev-libs/g RESTRICT=test SLOT=0 SRC_URI=https://github.com/openscad/openscad/releases/download/openscad-2021.01/openscad-2021.01.src.tar.gz -> openscad-2021.01.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b qmake-utils f5eb2f69fffe94292aaaf802fb21c8d1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b qmake-utils f5eb2f69fffe94292aaaf802fb21c8d1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=9dd5f4046d7ecefc95bd366ded958e14 diff --git a/metadata/md5-cache/media-gfx/openscad-9999 b/metadata/md5-cache/media-gfx/openscad-9999 index ca8ef703535f..b48276c431ea 100644 --- a/metadata/md5-cache/media-gfx/openscad-9999 +++ b/metadata/md5-cache/media-gfx/openscad-9999 @@ -11,5 +11,5 @@ RDEPEND=dev-cpp/eigen:3 dev-libs/boost:= dev-libs/double-conversion:= dev-libs/g REQUIRED_USE=headless? ( !dbus !gamepad !spacenav ) RESTRICT=test SLOT=0 -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=9d69bf5505b9df2bfcd7d366aa7f72e8 diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index 1234cdc43390..558be611c262 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/harfbuzz-3.4.0-r1 b/metadata/md5-cache/media-libs/harfbuzz-3.4.0-r1 index 46f990455b7b..988492258edd 100644 --- a/metadata/md5-cache/media-libs/harfbuzz-3.4.0-r1 +++ b/metadata/md5-cache/media-libs/harfbuzz-3.4.0-r1 @@ -5,7 +5,7 @@ DESCRIPTION=An OpenType text shaping engine EAPI=8 HOMEPAGE=https://www.freedesktop.org/wiki/Software/HarfBuzz IUSE=+cairo debug doc experimental +glib +graphite icu +introspection test +truetype 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 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=Old-MIT ISC icu RDEPEND=cairo? ( x11-libs/cairo:= ) glib? ( >=dev-libs/glib-2.38: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(-)?] ) graphite? ( >=media-gfx/graphite2-1.2.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(-)?] ) icu? ( >=dev-libs/icu-51.2-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(-)?] ) introspection? ( >=dev-libs/gobject-introspection-1.34:= ) truetype? ( >=media-libs/freetype-2.5.0.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(-)?] ) REQUIRED_USE=introspection? ( glib ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0/3.0.0 SRC_URI=https://github.com/harfbuzz/harfbuzz/archive/3.4.0.tar.gz -> harfbuzz-3.4.0.tar.gz _eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 meson 2d8a51910bc57e004c37aa55c7d99ce4 meson-multilib 84c0d4019bf29be0d9d0a2d98fb8b0d9 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=cc206f441d7a474a4741fcb3d13e916d +_md5_=8a6b99e34bb985ab9b7afc8de40293fc diff --git a/metadata/md5-cache/media-libs/lcms-2.13.1 b/metadata/md5-cache/media-libs/lcms-2.13.1 index 9c093d170a4c..335256d8877d 100644 --- a/metadata/md5-cache/media-libs/lcms-2.13.1 +++ b/metadata/md5-cache/media-libs/lcms-2.13.1 @@ -5,7 +5,7 @@ DESCRIPTION=A lightweight, speed optimized color management engine EAPI=8 HOMEPAGE=http://www.littlecms.com/ IUSE=doc jpeg static-libs test +threads tiff 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 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=jpeg? ( >=virtual/jpeg-0-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( >=media-libs/tiff-4.0.3-r6: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(-)?] ) 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(-)?] ) REQUIRED_USE=tiff? ( zlib ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=2 SRC_URI=https://github.com/mm2/Little-CMS/releases/download/lcms2.13.1/lcms2-2.13.1.tar.gz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ecacd39490f32a1b4fb1eb967c58a418 +_md5_=256dcfdced6169d0b7f4d05ca9e4eab8 diff --git a/metadata/md5-cache/media-libs/libavif-0.10.1 b/metadata/md5-cache/media-libs/libavif-0.10.1 new file mode 100644 index 000000000000..9c31d22504aa --- /dev/null +++ b/metadata/md5-cache/media-libs/libavif-0.10.1 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=media-libs/libpng[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/jpeg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] aom? ( >=media-libs/libaom-3.3.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dav1d? ( >=media-libs/dav1d-1.0.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rav1e? ( >=media-video/rav1e-0.5.1[capi] ) svt-av1? ( >=media-libs/svt-av1-0.9.1 ) +DESCRIPTION=Library for encoding and decoding .avif files +EAPI=8 +HOMEPAGE=https://github.com/AOMediaCodec/libavif +IUSE=+aom dav1d examples extras gdk-pixbuf rav1e svt-av1 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 ~ppc64 ~riscv ~x86 +LICENSE=BSD-2 +RDEPEND=media-libs/libpng[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/jpeg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] aom? ( >=media-libs/libaom-3.3.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dav1d? ( >=media-libs/dav1d-1.0.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rav1e? ( >=media-video/rav1e-0.5.1[capi] ) svt-av1? ( >=media-libs/svt-av1-0.9.1 ) +REQUIRED_USE=|| ( aom dav1d ) +SLOT=0/0.10.1 +SRC_URI=https://github.com/AOMediaCodec/libavif/archive/v0.10.1.tar.gz -> libavif-0.10.1.tar.gz +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cmake-multilib 7f8d0fb6ae10906fe334997f977e838b flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=9f59e2a5ee873ed01d3089aeb14d1277 diff --git a/metadata/md5-cache/media-libs/libavif-9999 b/metadata/md5-cache/media-libs/libavif-9999 index 71f60f90f779..d647ecc5b4b7 100644 --- a/metadata/md5-cache/media-libs/libavif-9999 +++ b/metadata/md5-cache/media-libs/libavif-9999 @@ -1,14 +1,14 @@ BDEPEND=virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack -DEPEND=media-libs/libpng[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/jpeg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] aom? ( >=media-libs/libaom-3.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(-)?] ) dav1d? ( media-libs/dav1d:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rav1e? ( media-video/rav1e[capi] ) svt-av1? ( >=media-libs/svt-av1-0.8.6 ) +DEPEND=media-libs/libpng[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/jpeg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] aom? ( >=media-libs/libaom-3.3.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dav1d? ( >=media-libs/dav1d-1.0.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rav1e? ( >=media-video/rav1e-0.5.1[capi] ) svt-av1? ( >=media-libs/svt-av1-0.9.1 ) DESCRIPTION=Library for encoding and decoding .avif files EAPI=7 HOMEPAGE=https://github.com/AOMediaCodec/libavif IUSE=+aom dav1d examples extras gdk-pixbuf rav1e svt-av1 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 LICENSE=BSD-2 PROPERTIES=live -RDEPEND=media-libs/libpng[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/jpeg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] aom? ( >=media-libs/libaom-3.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(-)?] ) dav1d? ( media-libs/dav1d:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rav1e? ( media-video/rav1e[capi] ) svt-av1? ( >=media-libs/svt-av1-0.8.6 ) +RDEPEND=media-libs/libpng[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/jpeg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] aom? ( >=media-libs/libaom-3.3.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dav1d? ( >=media-libs/dav1d-1.0.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rav1e? ( >=media-video/rav1e-0.5.1[capi] ) svt-av1? ( >=media-libs/svt-av1-0.9.1 ) REQUIRED_USE=|| ( aom dav1d ) SLOT=0/9999 _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cmake-multilib 7f8d0fb6ae10906fe334997f977e838b edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=cc2d1867f35a76aa1db30df95833c6ce +_md5_=9e5dee3c60d2137304e4df57c177041e diff --git a/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r8 b/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r8 index 797dba2c461e..aa181d4fca37 100644 --- a/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r8 +++ b/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r8 @@ -11,5 +11,5 @@ RDEPEND=java? ( >=virtual/jre-1.8:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://libcaca.zoy.org/files/libcaca/libcaca-0.99.beta19.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e mono-env 87888393b1c1b882d0543087e28ec0b0 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e mono-env 87888393b1c1b882d0543087e28ec0b0 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=a5afa95dafd8cf9a930644d55b6c1192 diff --git a/metadata/md5-cache/media-libs/libvmaf-2.3.0-r1 b/metadata/md5-cache/media-libs/libvmaf-2.3.0-r2 similarity index 62% rename from metadata/md5-cache/media-libs/libvmaf-2.3.0-r1 rename to metadata/md5-cache/media-libs/libvmaf-2.3.0-r2 index 807a2fcc2eeb..e0c6ec3e8024 100644 --- a/metadata/md5-cache/media-libs/libvmaf-2.3.0-r1 +++ b/metadata/md5-cache/media-libs/libvmaf-2.3.0-r2 @@ -1,13 +1,14 @@ -BDEPEND=dev-lang/nasm app-editors/vim-core >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array -DEFINED_PHASES=compile configure install test +BDEPEND=dev-lang/nasm embed-models? ( app-editors/vim-core ) >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install prepare test DESCRIPTION=C libary for Netflix's Perceptual video quality assessment EAPI=8 HOMEPAGE=https://github.com/Netflix/vmaf -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 +IUSE=+embed-models test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 KEYWORDS=~amd64 ~x86 LICENSE=BSD-2-with-patent -RDEPEND=dev-lang/nasm app-editors/vim-core +RDEPEND=dev-lang/nasm embed-models? ( app-editors/vim-core ) +RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Netflix/vmaf/archive/v2.3.0.tar.gz -> libvmaf-2.3.0.tar.gz _eclasses_=meson 2d8a51910bc57e004c37aa55c7d99ce4 meson-multilib 84c0d4019bf29be0d9d0a2d98fb8b0d9 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=30957397d882c29462a85c5b321385ba +_md5_=707e511583858f8791c9ed886c4a9d1b diff --git a/metadata/md5-cache/media-libs/opencv-4.5.2-r3 b/metadata/md5-cache/media-libs/opencv-4.5.2-r3 deleted file mode 100644 index 2a8ff1dffd95..000000000000 --- a/metadata/md5-cache/media-libs/opencv-4.5.2-r3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install preinst prepare pretend setup test -DEPEND=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(-)?] =virtual/jre-1.8:* ) jpeg? ( virtual/jpeg: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(-)?] ) jpeg2k? ( media-libs/openjpeg: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(-)?] ) lapack? ( virtual/cblas virtual/lapack ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openexr? ( =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) qt5? ( dev-qt/qtgui:5= dev-qt/qtwidgets:5= dev-qt/qttest:5= dev-qt/qtconcurrent:5= opengl? ( dev-qt/qtopengl:5= ) ) tesseract? ( app-text/tesseract[opencl=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) threads? ( dev-cpp/tbb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( media-libs/tiff: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(-)?] ) v4l? ( >=media-libs/libv4l-0.8.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(-)?] ) vaapi? ( x11-libs/libva[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vtk? ( sci-libs/vtk[rendering] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xine? ( media-libs/xine-lib ) eigen? ( || ( >=dev-cpp/eigen-3.3.8-r1:3 =virtual/jdk-1.8:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) java? ( >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit ) -DESCRIPTION=A collection of algorithms and sample code for various computer vision problems -EAPI=7 -HOMEPAGE=https://opencv.org -IUSE=contrib contribcvv contribdnn contribfreetype contribhdf contribovis contribsfm contribxfeatures2d cuda debug dnnsamples download +eigen examples +features2d ffmpeg gdal gflags glog gphoto2 gstreamer gtk3 ieee1394 jpeg jpeg2k lapack lto opencl openexr opengl openmp opencvapps png +python qt5 tesseract testprograms threads tiff vaapi v4l vtk webp xine cpu_flags_arm_neon cpu_flags_arm_vfpv3 cpu_flags_ppc_vsx cpu_flags_ppc_vsx3 cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_avx512f cpu_flags_x86_f16c cpu_flags_x86_fma3 cpu_flags_x86_popcnt cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 java 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_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86 -LICENSE=Apache-2.0 -RDEPEND=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(-)?] =virtual/jre-1.8:* ) jpeg? ( virtual/jpeg: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(-)?] ) jpeg2k? ( media-libs/openjpeg: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(-)?] ) lapack? ( virtual/cblas virtual/lapack ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openexr? ( =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) qt5? ( dev-qt/qtgui:5= dev-qt/qtwidgets:5= dev-qt/qttest:5= dev-qt/qtconcurrent:5= opengl? ( dev-qt/qtopengl:5= ) ) tesseract? ( app-text/tesseract[opencl=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) threads? ( dev-cpp/tbb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( media-libs/tiff: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(-)?] ) v4l? ( >=media-libs/libv4l-0.8.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(-)?] ) vaapi? ( x11-libs/libva[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vtk? ( sci-libs/vtk[rendering] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xine? ( media-libs/xine-lib ) java? ( >=dev-java/java-config-2.2.0-r3 ) -REQUIRED_USE=cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) cuda? ( contrib tesseract? ( opencl ) ) dnnsamples? ( examples ) gflags? ( contrib ) glog? ( contrib ) contribcvv? ( contrib qt5 ) contribdnn? ( contrib ) contribfreetype? ( contrib ) contribhdf? ( contrib ) contribovis? ( contrib ) contribsfm? ( contrib eigen gflags glog ) contribxfeatures2d? ( contrib download ) examples? ( contribdnn ) java? ( python ) opengl? ( qt5 ) python? ( || ( python_targets_python3_8 python_targets_python3_9 ) ) tesseract? ( contrib ) ?? ( gtk3 qt5 ) -SLOT=0/4.5.2 -SRC_URI=https://github.com/opencv/opencv/archive/4.5.2.tar.gz -> opencv-4.5.2.tar.gz dnnsamples? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-res10_300x300-caffeemodel.tar.gz ) download? ( https://github.com/rossbridger/opencv-extdep/archive/4.4.0.tar.gz -> opencv-4.4.0_extdep.tar.gz ) contrib? ( https://github.com/opencv/opencv_contrib/archive/4.5.2.tar.gz -> opencv-4.5.2_contrib.tar.gz contribdnn? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-face_landmark_model.tar.gz ) contribxfeatures2d? ( https://dev.gentoo.org/~amynka/snap/vgg_boostdesc-3.2.0.tar.gz ) ) -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cmake-multilib 7f8d0fb6ae10906fe334997f977e838b eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=4618efaaffa8a8cd0c5d7cb8a6aee1e9 diff --git a/metadata/md5-cache/media-libs/opencv-4.5.2-r5 b/metadata/md5-cache/media-libs/opencv-4.5.2-r5 deleted file mode 100644 index 913801af93ac..000000000000 --- a/metadata/md5-cache/media-libs/opencv-4.5.2-r5 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install preinst prepare pretend setup test -DEPEND=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(-)?] =virtual/jre-1.8:* ) jpeg? ( virtual/jpeg: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(-)?] ) jpeg2k? ( media-libs/openjpeg: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(-)?] ) lapack? ( virtual/cblas >=virtual/lapack-3.10 ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openexr? ( =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) qt5? ( dev-qt/qtgui:5= dev-qt/qtwidgets:5= dev-qt/qttest:5= dev-qt/qtconcurrent:5= opengl? ( dev-qt/qtopengl:5= ) ) tesseract? ( app-text/tesseract[opencl=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) threads? ( dev-cpp/tbb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( media-libs/tiff: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(-)?] ) v4l? ( >=media-libs/libv4l-0.8.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(-)?] ) vaapi? ( x11-libs/libva[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vtk? ( sci-libs/vtk[rendering] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xine? ( media-libs/xine-lib ) eigen? ( || ( >=dev-cpp/eigen-3.3.8-r1:3 =virtual/jdk-1.8:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) java? ( >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit ) -DESCRIPTION=A collection of algorithms and sample code for various computer vision problems -EAPI=7 -HOMEPAGE=https://opencv.org -IUSE=contrib contribcvv contribdnn contribfreetype contribhdf contribovis contribsfm contribxfeatures2d cuda debug dnnsamples download +eigen examples +features2d ffmpeg gdal gflags glog gphoto2 gstreamer gtk3 ieee1394 jpeg jpeg2k lapack lto opencl openexr opengl openmp opencvapps png +python qt5 tesseract testprograms threads tiff vaapi v4l vtk webp xine cpu_flags_arm_neon cpu_flags_arm_vfpv3 cpu_flags_ppc_vsx cpu_flags_ppc_vsx3 cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_avx512f cpu_flags_x86_f16c cpu_flags_x86_fma3 cpu_flags_x86_popcnt cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 java 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_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86 -LICENSE=Apache-2.0 -RDEPEND=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(-)?] =virtual/jre-1.8:* ) jpeg? ( virtual/jpeg: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(-)?] ) jpeg2k? ( media-libs/openjpeg: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(-)?] ) lapack? ( virtual/cblas >=virtual/lapack-3.10 ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openexr? ( =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) qt5? ( dev-qt/qtgui:5= dev-qt/qtwidgets:5= dev-qt/qttest:5= dev-qt/qtconcurrent:5= opengl? ( dev-qt/qtopengl:5= ) ) tesseract? ( app-text/tesseract[opencl=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) threads? ( dev-cpp/tbb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( media-libs/tiff: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(-)?] ) v4l? ( >=media-libs/libv4l-0.8.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(-)?] ) vaapi? ( x11-libs/libva[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vtk? ( sci-libs/vtk[rendering] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xine? ( media-libs/xine-lib ) java? ( >=dev-java/java-config-2.2.0-r3 ) -REQUIRED_USE=cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) cuda? ( contrib tesseract? ( opencl ) ) dnnsamples? ( examples ) gflags? ( contrib ) glog? ( contrib ) contribcvv? ( contrib qt5 ) contribdnn? ( contrib ) contribfreetype? ( contrib ) contribhdf? ( contrib ) contribovis? ( contrib ) contribsfm? ( contrib eigen gflags glog ) contribxfeatures2d? ( contrib download ) examples? ( contribdnn ) java? ( python ) opengl? ( qt5 ) python? ( || ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) ) tesseract? ( contrib ) ?? ( gtk3 qt5 ) -SLOT=0/4.5.2 -SRC_URI=https://github.com/opencv/opencv/archive/4.5.2.tar.gz -> opencv-4.5.2.tar.gz dnnsamples? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-res10_300x300-caffeemodel.tar.gz ) download? ( https://github.com/rossbridger/opencv-extdep/archive/4.4.0.tar.gz -> opencv-4.4.0_extdep.tar.gz ) contrib? ( https://github.com/opencv/opencv_contrib/archive/4.5.2.tar.gz -> opencv-4.5.2_contrib.tar.gz contribdnn? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-face_landmark_model.tar.gz ) contribxfeatures2d? ( https://dev.gentoo.org/~amynka/snap/vgg_boostdesc-3.2.0.tar.gz ) ) -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cmake-multilib 7f8d0fb6ae10906fe334997f977e838b eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=77b48cb3bd4162c211c5a9e04993e5a1 diff --git a/metadata/md5-cache/media-libs/opencv-4.5.4 b/metadata/md5-cache/media-libs/opencv-4.5.4 deleted file mode 100644 index 50c5ffc08d20..000000000000 --- a/metadata/md5-cache/media-libs/opencv-4.5.4 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install preinst prepare pretend setup test -DEPEND=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(-)?] dev-libs/protobuf:=[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(-)?] cuda? ( dev-util/nvidia-cuda-toolkit:0= ) contribhdf? ( sci-libs/hdf5:= ) contribfreetype? ( media-libs/freetype:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/harfbuzz:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) contribovis? ( dev-games/ogre:0/1.12 ) ffmpeg? ( media-video/ffmpeg: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(-)?] ) gdal? ( sci-libs/gdal:= ) gflags? ( dev-cpp/gflags[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glog? ( dev-cpp/glog[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/gst-plugins-base:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk3? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/gtk+:3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( media-libs/libdc1394:=[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/libraw1394[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/jre-1.8:* ) jpeg? ( virtual/jpeg: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(-)?] ) jpeg2k? ( media-libs/openjpeg: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(-)?] ) lapack? ( virtual/cblas >=virtual/lapack-3.10 ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openexr? ( =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) qt5? ( dev-qt/qtgui:5= dev-qt/qtwidgets:5= dev-qt/qttest:5= dev-qt/qtconcurrent:5= opengl? ( dev-qt/qtopengl:5= ) ) tesseract? ( app-text/tesseract[opencl=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) threads? ( dev-cpp/tbb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( media-libs/tiff: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(-)?] ) v4l? ( >=media-libs/libv4l-0.8.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(-)?] ) vaapi? ( x11-libs/libva[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vtk? ( sci-libs/vtk[rendering] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xine? ( media-libs/xine-lib ) eigen? ( || ( >=dev-cpp/eigen-3.3.8-r1:3 =virtual/jdk-1.8:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) java? ( >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit ) -DESCRIPTION=A collection of algorithms and sample code for various computer vision problems -EAPI=7 -HOMEPAGE=https://opencv.org -IUSE=contrib contribcvv contribdnn contribfreetype contribhdf contribovis contribsfm contribxfeatures2d cuda debug dnnsamples download +eigen examples +features2d ffmpeg gdal gflags glog gphoto2 gstreamer gtk3 ieee1394 jpeg jpeg2k lapack lto opencl openexr opengl openmp opencvapps png +python qt5 tesseract testprograms threads tiff vaapi v4l vtk webp xine cpu_flags_arm_neon cpu_flags_arm_vfpv3 cpu_flags_ppc_vsx cpu_flags_ppc_vsx3 cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_avx512f cpu_flags_x86_f16c cpu_flags_x86_fma3 cpu_flags_x86_popcnt cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 java 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_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86 -LICENSE=Apache-2.0 -RDEPEND=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(-)?] dev-libs/protobuf:=[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(-)?] cuda? ( dev-util/nvidia-cuda-toolkit:0= ) contribhdf? ( sci-libs/hdf5:= ) contribfreetype? ( media-libs/freetype:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/harfbuzz:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) contribovis? ( dev-games/ogre:0/1.12 ) ffmpeg? ( media-video/ffmpeg: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(-)?] ) gdal? ( sci-libs/gdal:= ) gflags? ( dev-cpp/gflags[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glog? ( dev-cpp/glog[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/gst-plugins-base:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk3? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/gtk+:3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( media-libs/libdc1394:=[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/libraw1394[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/jre-1.8:* ) jpeg? ( virtual/jpeg: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(-)?] ) jpeg2k? ( media-libs/openjpeg: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(-)?] ) lapack? ( virtual/cblas >=virtual/lapack-3.10 ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openexr? ( =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) qt5? ( dev-qt/qtgui:5= dev-qt/qtwidgets:5= dev-qt/qttest:5= dev-qt/qtconcurrent:5= opengl? ( dev-qt/qtopengl:5= ) ) tesseract? ( app-text/tesseract[opencl=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) threads? ( dev-cpp/tbb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( media-libs/tiff: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(-)?] ) v4l? ( >=media-libs/libv4l-0.8.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(-)?] ) vaapi? ( x11-libs/libva[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vtk? ( sci-libs/vtk[rendering] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xine? ( media-libs/xine-lib ) java? ( >=dev-java/java-config-2.2.0-r3 ) -REQUIRED_USE=cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) cuda? ( contrib tesseract? ( opencl ) ) dnnsamples? ( examples ) gflags? ( contrib ) glog? ( contrib ) contribcvv? ( contrib qt5 ) contribdnn? ( contrib ) contribfreetype? ( contrib ) contribhdf? ( contrib ) contribovis? ( contrib ) contribsfm? ( contrib eigen gflags glog ) contribxfeatures2d? ( contrib download ) examples? ( contribdnn ) java? ( python ) opengl? ( qt5 ) python? ( || ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) ) tesseract? ( contrib ) ?? ( gtk3 qt5 ) -SLOT=0/4.5.4 -SRC_URI=https://github.com/opencv/opencv/archive/4.5.4.tar.gz -> opencv-4.5.4.tar.gz dnnsamples? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-res10_300x300-caffeemodel.tar.gz ) download? ( https://github.com/rossbridger/opencv-extdep/archive/4.4.0.tar.gz -> opencv-4.4.0_extdep.tar.gz ) contrib? ( https://github.com/opencv/opencv_contrib/archive/4.5.4.tar.gz -> opencv-4.5.4_contrib.tar.gz contribdnn? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-face_landmark_model.tar.gz ) contribxfeatures2d? ( https://dev.gentoo.org/~amynka/snap/vgg_boostdesc-3.2.0.tar.gz ) ) -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cmake-multilib 7f8d0fb6ae10906fe334997f977e838b eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=38954b63f3cc88d825f2269c006a7e5e diff --git a/metadata/md5-cache/media-libs/opencv-4.5.5 b/metadata/md5-cache/media-libs/opencv-4.5.5 deleted file mode 100644 index 92ee2b9c3842..000000000000 --- a/metadata/md5-cache/media-libs/opencv-4.5.5 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install preinst prepare pretend setup test -DEPEND=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(-)?] dev-libs/protobuf:=[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(-)?] cuda? ( dev-util/nvidia-cuda-toolkit:0= ) contribhdf? ( sci-libs/hdf5:= ) contribfreetype? ( media-libs/freetype:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/harfbuzz:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) contribovis? ( dev-games/ogre:0/1.12 ) ffmpeg? ( media-video/ffmpeg: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(-)?] ) gdal? ( sci-libs/gdal:= ) gflags? ( dev-cpp/gflags[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glog? ( dev-cpp/glog[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/gst-plugins-base:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk3? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/gtk+:3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( media-libs/libdc1394:=[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/libraw1394[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/jre-1.8:* ) jpeg? ( virtual/jpeg: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(-)?] ) jpeg2k? ( media-libs/openjpeg: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(-)?] ) lapack? ( virtual/cblas >=virtual/lapack-3.10 ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openexr? ( =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) qt5? ( dev-qt/qtgui:5= dev-qt/qtwidgets:5= dev-qt/qttest:5= dev-qt/qtconcurrent:5= opengl? ( dev-qt/qtopengl:5= ) ) tesseract? ( app-text/tesseract[opencl=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) threads? ( dev-cpp/tbb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( media-libs/tiff: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(-)?] ) v4l? ( >=media-libs/libv4l-0.8.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(-)?] ) vaapi? ( x11-libs/libva[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vtk? ( sci-libs/vtk[rendering] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xine? ( media-libs/xine-lib ) eigen? ( >=dev-cpp/eigen-3.3.8-r1:3 ) java? ( >=virtual/jdk-1.8:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) java? ( >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit ) -DESCRIPTION=A collection of algorithms and sample code for various computer vision problems -EAPI=7 -HOMEPAGE=https://opencv.org -IUSE=contrib contribcvv contribdnn contribfreetype contribhdf contribovis contribsfm contribxfeatures2d cuda debug dnnsamples download +eigen examples +features2d ffmpeg gdal gflags glog gphoto2 gstreamer gtk3 ieee1394 jpeg jpeg2k lapack lto opencl openexr opengl openmp opencvapps png +python qt5 tesseract testprograms threads tiff vaapi v4l vtk webp xine cpu_flags_arm_neon cpu_flags_arm_vfpv3 cpu_flags_ppc_vsx cpu_flags_ppc_vsx3 cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_avx512f cpu_flags_x86_f16c cpu_flags_x86_fma3 cpu_flags_x86_popcnt cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 java 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_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 -LICENSE=Apache-2.0 -RDEPEND=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(-)?] dev-libs/protobuf:=[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(-)?] cuda? ( dev-util/nvidia-cuda-toolkit:0= ) contribhdf? ( sci-libs/hdf5:= ) contribfreetype? ( media-libs/freetype:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/harfbuzz:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) contribovis? ( dev-games/ogre:0/1.12 ) ffmpeg? ( media-video/ffmpeg: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(-)?] ) gdal? ( sci-libs/gdal:= ) gflags? ( dev-cpp/gflags[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glog? ( dev-cpp/glog[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/gst-plugins-base:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk3? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/gtk+:3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( media-libs/libdc1394:=[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/libraw1394[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/jre-1.8:* ) jpeg? ( virtual/jpeg: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(-)?] ) jpeg2k? ( media-libs/openjpeg: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(-)?] ) lapack? ( virtual/cblas >=virtual/lapack-3.10 ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openexr? ( =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) qt5? ( dev-qt/qtgui:5= dev-qt/qtwidgets:5= dev-qt/qttest:5= dev-qt/qtconcurrent:5= opengl? ( dev-qt/qtopengl:5= ) ) tesseract? ( app-text/tesseract[opencl=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) threads? ( dev-cpp/tbb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( media-libs/tiff: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(-)?] ) v4l? ( >=media-libs/libv4l-0.8.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(-)?] ) vaapi? ( x11-libs/libva[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vtk? ( sci-libs/vtk[rendering] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xine? ( media-libs/xine-lib ) java? ( >=dev-java/java-config-2.2.0-r3 ) -REQUIRED_USE=cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) cuda? ( contrib tesseract? ( opencl ) ) dnnsamples? ( examples ) gflags? ( contrib ) glog? ( contrib ) contribcvv? ( contrib qt5 ) contribdnn? ( contrib ) contribfreetype? ( contrib ) contribhdf? ( contrib ) contribovis? ( contrib ) contribsfm? ( contrib eigen gflags glog ) contribxfeatures2d? ( contrib download ) examples? ( contribdnn ) java? ( python ) opengl? ( qt5 ) python? ( || ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) ) tesseract? ( contrib ) ?? ( gtk3 qt5 ) -SLOT=0/4.5.5 -SRC_URI=https://github.com/opencv/opencv/archive/4.5.5.tar.gz -> opencv-4.5.5.tar.gz dnnsamples? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-res10_300x300-caffeemodel.tar.gz ) download? ( https://github.com/rossbridger/opencv-extdep/archive/4.4.0.tar.gz -> opencv-4.4.0_extdep.tar.gz ) contrib? ( https://github.com/opencv/opencv_contrib/archive/4.5.5.tar.gz -> opencv-4.5.5_contrib.tar.gz contribdnn? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-face_landmark_model.tar.gz ) contribxfeatures2d? ( https://dev.gentoo.org/~amynka/snap/vgg_boostdesc-3.2.0.tar.gz ) ) -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cmake-multilib 7f8d0fb6ae10906fe334997f977e838b eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=109a6077967041e0e294b92c3e04a2ca diff --git a/metadata/md5-cache/media-libs/opencv-4.5.5-r1 b/metadata/md5-cache/media-libs/opencv-4.5.5-r1 index 69503b6948f6..bbb17bc7df4c 100644 --- a/metadata/md5-cache/media-libs/opencv-4.5.5-r1 +++ b/metadata/md5-cache/media-libs/opencv-4.5.5-r1 @@ -8,8 +8,8 @@ IUSE=contrib contribcvv contribdnn contribfreetype contribhdf contribovis contri KEYWORDS=amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=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(-)?] dev-libs/protobuf:=[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(-)?] cuda? ( dev-util/nvidia-cuda-toolkit:0= ) contribhdf? ( sci-libs/hdf5:= ) contribfreetype? ( media-libs/freetype:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/harfbuzz:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) contribovis? ( dev-games/ogre:0/1.12 ) ffmpeg? ( media-video/ffmpeg: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(-)?] ) gdal? ( sci-libs/gdal:= ) gflags? ( dev-cpp/gflags[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glog? ( dev-cpp/glog[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/gst-plugins-base:1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk3? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/gtk+:3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( media-libs/libdc1394:=[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/libraw1394[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/jre-1.8:* ) jpeg? ( virtual/jpeg: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(-)?] ) jpeg2k? ( media-libs/openjpeg: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(-)?] ) lapack? ( virtual/cblas >=virtual/lapack-3.10 ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openexr? ( dev-libs/imath:= media-libs/openexr:= ) opengl? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/glu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) png? ( media-libs/libpng:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) python? ( python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) qt5? ( dev-qt/qtgui:5= dev-qt/qtwidgets:5= dev-qt/qttest:5= dev-qt/qtconcurrent:5= opengl? ( dev-qt/qtopengl:5= ) ) tesseract? ( app-text/tesseract[opencl=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) threads? ( dev-cpp/tbb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( media-libs/tiff: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(-)?] ) v4l? ( >=media-libs/libv4l-0.8.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(-)?] ) vaapi? ( x11-libs/libva[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vtk? ( sci-libs/vtk[rendering] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xine? ( media-libs/xine-lib ) java? ( >=dev-java/java-config-2.2.0-r3 ) -REQUIRED_USE=cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) cuda? ( contrib tesseract? ( opencl ) ) dnnsamples? ( examples ) gflags? ( contrib ) glog? ( contrib ) contribcvv? ( contrib qt5 ) contribdnn? ( contrib ) contribfreetype? ( contrib ) contribhdf? ( contrib ) contribovis? ( contrib ) contribsfm? ( contrib eigen gflags glog ) contribxfeatures2d? ( contrib download ) examples? ( contribdnn ) java? ( python ) opengl? ( qt5 ) python? ( || ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) ) tesseract? ( contrib ) ?? ( gtk3 qt5 ) +REQUIRED_USE=cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) cuda? ( contrib tesseract? ( opencl ) ) dnnsamples? ( examples ) gflags? ( contrib ) glog? ( contrib ) contribcvv? ( contrib qt5 ) contribdnn? ( contrib ) contribfreetype? ( contrib ) contribhdf? ( contrib ) contribovis? ( contrib ) contribsfm? ( contrib eigen gflags glog ) contribxfeatures2d? ( contrib download ) examples? ( contribdnn ) java? ( python ) opengl? ( || ( gtk3 qt5 ) ) python? ( || ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) ) tesseract? ( contrib ) ?? ( gtk3 qt5 ) SLOT=0/4.5.5 SRC_URI=https://github.com/opencv/opencv/archive/4.5.5.tar.gz -> opencv-4.5.5.tar.gz dnnsamples? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-res10_300x300-caffeemodel.tar.gz ) download? ( https://github.com/rossbridger/opencv-extdep/archive/4.4.0.tar.gz -> opencv-4.4.0_extdep.tar.gz ) contrib? ( https://github.com/opencv/opencv_contrib/archive/4.5.5.tar.gz -> opencv-4.5.5_contrib.tar.gz contribdnn? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-face_landmark_model.tar.gz ) contribxfeatures2d? ( https://dev.gentoo.org/~amynka/snap/vgg_boostdesc-3.2.0.tar.gz ) ) _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cmake-multilib 7f8d0fb6ae10906fe334997f977e838b eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=7ee3ff0ab06aeae5ee0eb8c13f43fc06 +_md5_=c6e73a706249e7f988f63546ed23ffe0 diff --git a/metadata/md5-cache/media-libs/openexr-3.1.5 b/metadata/md5-cache/media-libs/openexr-3.1.5 new file mode 100644 index 000000000000..52be557ed2dc --- /dev/null +++ b/metadata/md5-cache/media-libs/openexr-3.1.5 @@ -0,0 +1,15 @@ +BDEPEND=doc? ( dev-python/breathe ) virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=~dev-libs/imath-3.1.5:= sys-libs/zlib !media-libs/openexr:3 !media-libs/ilmbase +DESCRIPTION=ILM's OpenEXR high dynamic-range image file format libraries +EAPI=8 +HOMEPAGE=https://www.openexr.com/ +IUSE=cpu_flags_x86_avx doc examples large-stack utils test threads +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 -ppc ~ppc64 ~riscv -sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris +LICENSE=BSD +RDEPEND=~dev-libs/imath-3.1.5:= sys-libs/zlib !media-libs/openexr:3 !media-libs/ilmbase +RESTRICT=!test? ( test ) +SLOT=0/30 +SRC_URI=https://github.com/AcademySoftwareFoundation/openexr/archive/refs/tags/v3.1.5.tar.gz -> openexr-3.1.5.tar.gz +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=f251d8b82c133b5e36bb129a69452ac6 diff --git a/metadata/md5-cache/media-libs/woff2-1.0.2-r4 b/metadata/md5-cache/media-libs/woff2-1.0.2-r4 deleted file mode 100644 index 1aea31caaa0f..000000000000 --- a/metadata/md5-cache/media-libs/woff2-1.0.2-r4 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/brotli:= -DESCRIPTION=Encode/decode WOFF2 font format -EAPI=7 -HOMEPAGE=https://github.com/google/woff2 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris -LICENSE=MIT -RDEPEND=app-arch/brotli:= -SLOT=0 -SRC_URI=https://github.com/google/woff2/archive/v1.0.2.tar.gz -> woff2-1.0.2.tar.gz -_eclasses_=cmake-utils e86bbd4030632b173a1d50a4916dfb41 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=ade74acf00402ad0f2b74a4e991f41c5 diff --git a/metadata/md5-cache/media-libs/woff2-1.0.2-r5 b/metadata/md5-cache/media-libs/woff2-1.0.2-r5 index 36a94f835944..139cf2553ee4 100644 --- a/metadata/md5-cache/media-libs/woff2-1.0.2-r5 +++ b/metadata/md5-cache/media-libs/woff2-1.0.2-r5 @@ -4,10 +4,10 @@ DEPEND=app-arch/brotli:= DESCRIPTION=Encode/decode WOFF2 font format EAPI=8 HOMEPAGE=https://github.com/google/woff2 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris LICENSE=MIT RDEPEND=app-arch/brotli:= SLOT=0 SRC_URI=https://github.com/google/woff2/archive/v1.0.2.tar.gz -> woff2-1.0.2.tar.gz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=75f593ad132a5198ecc181abea4a1601 +_md5_=362eb0df40c676708b3d6683da3eb943 diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index 5d17a9560825..dad16e6d97e6 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/lilypond-2.22.0-r1 b/metadata/md5-cache/media-sound/lilypond-2.22.0-r1 index 2f3f61d11a68..43cf0b1d5512 100644 --- a/metadata/md5-cache/media-sound/lilypond-2.22.0-r1 +++ b/metadata/md5-cache/media-sound/lilypond-2.22.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 RESTRICT=test SLOT=0 SRC_URI=http://lilypond.org/download/sources/v2.22/lilypond-2.22.0.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=eaecfc7f42346d4f8fca47068d490aae diff --git a/metadata/md5-cache/media-sound/lilypond-2.22.1-r1 b/metadata/md5-cache/media-sound/lilypond-2.22.1-r1 index 112af11ba48a..abdae61345d5 100644 --- a/metadata/md5-cache/media-sound/lilypond-2.22.1-r1 +++ b/metadata/md5-cache/media-sound/lilypond-2.22.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 RESTRICT=test SLOT=0 SRC_URI=http://lilypond.org/download/sources/v2.22/lilypond-2.22.1.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=1e2c12688ee3250e78361e7e3f582605 diff --git a/metadata/md5-cache/media-sound/lilypond-2.23.0-r1 b/metadata/md5-cache/media-sound/lilypond-2.23.0-r1 index c203a44bbc3b..bf0a9aa04a23 100644 --- a/metadata/md5-cache/media-sound/lilypond-2.23.0-r1 +++ b/metadata/md5-cache/media-sound/lilypond-2.23.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 RESTRICT=test SLOT=0 SRC_URI=http://lilypond.org/download/sources/v2.23/lilypond-2.23.0.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=c5ea62457649f9443f74e838e777cc32 diff --git a/metadata/md5-cache/media-sound/lilypond-2.23.2-r1 b/metadata/md5-cache/media-sound/lilypond-2.23.2-r1 index 201ee10169fa..9d927ce3e798 100644 --- a/metadata/md5-cache/media-sound/lilypond-2.23.2-r1 +++ b/metadata/md5-cache/media-sound/lilypond-2.23.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 RESTRICT=test SLOT=0 SRC_URI=http://lilypond.org/download/sources/v2.23/lilypond-2.23.2.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=774594d87b90fdbf8c61722f0bc6af4b diff --git a/metadata/md5-cache/media-sound/lilypond-9999 b/metadata/md5-cache/media-sound/lilypond-9999 index 69e961a56eae..1016f5e7d11d 100644 --- a/metadata/md5-cache/media-sound/lilypond-9999 +++ b/metadata/md5-cache/media-sound/lilypond-9999 @@ -11,5 +11,5 @@ RDEPEND=app-text/ghostscript-gpl dev-scheme/guile:12=[deprecated,regex] media-fo REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) RESTRICT=test SLOT=0 -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=774594d87b90fdbf8c61722f0bc6af4b diff --git a/metadata/md5-cache/media-sound/timidity++-2.15.0-r3 b/metadata/md5-cache/media-sound/timidity++-2.15.0-r3 index f52dfa75188d..f09f6bc35793 100644 --- a/metadata/md5-cache/media-sound/timidity++-2.15.0-r3 +++ b/metadata/md5-cache/media-sound/timidity++-2.15.0-r3 @@ -12,5 +12,5 @@ RDEPEND=alsa? ( media-libs/alsa-lib ) ao? ( >=media-libs/libao-0.8.5 ) emacs? ( REQUIRED_USE=tk? ( X ) SLOT=0 SRC_URI=mirror://sourceforge/timidity/TiMidity++-2.15.0.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=83916c65b7705e28c4b9959cc0b78e81 diff --git a/metadata/md5-cache/media-sound/wavbreaker-0.13 b/metadata/md5-cache/media-sound/wavbreaker-0.13 deleted file mode 100644 index 59e226a80ca1..000000000000 --- a/metadata/md5-cache/media-sound/wavbreaker-0.13 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=virtual/pkgconfig >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=dev-libs/glib media-libs/libao x11-libs/gtk+:3 mp3? ( media-sound/mpg123 ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=wavbreaker/wavmerge GTK+ utility to break or merge WAV files -EAPI=7 -HOMEPAGE=http://wavbreaker.sourceforge.net -IUSE=mp3 -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/glib media-libs/libao x11-libs/gtk+:3 mp3? ( media-sound/mpg123 ) -SLOT=0 -SRC_URI=mirror://sourceforge/wavbreaker/wavbreaker-0.13.tar.gz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=7e3923e55c0f9484c116aebee1365dc0 diff --git a/metadata/md5-cache/media-sound/wavbreaker-0.14 b/metadata/md5-cache/media-sound/wavbreaker-0.14 index f0e8e838cc56..f9a27af5f293 100644 --- a/metadata/md5-cache/media-sound/wavbreaker-0.14 +++ b/metadata/md5-cache/media-sound/wavbreaker-0.14 @@ -5,10 +5,10 @@ DESCRIPTION=wavbreaker/wavmerge GTK+ utility to break or merge WAV files EAPI=8 HOMEPAGE=https://wavbreaker.sourceforge.io/ https://github.com/thp/wavbreaker IUSE=mp3 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=dev-libs/glib media-libs/libao x11-libs/gtk+:3 mp3? ( media-sound/mpg123 ) SLOT=0 SRC_URI=https://github.com/thp/wavbreaker/archive/refs/tags/0.14.tar.gz -> wavbreaker-0.14.tar.gz _eclasses_=meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=9a1408de3dd191de4b3132e45a858745 +_md5_=4007d6980540378c952a1881bfe8c1c2 diff --git a/metadata/md5-cache/media-sound/xmms2-0.8_p20201016-r1 b/metadata/md5-cache/media-sound/xmms2-0.8_p20201016-r1 deleted file mode 100644 index 209e672757ea..000000000000 --- a/metadata/md5-cache/media-sound/xmms2-0.8_p20201016-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) virtual/pkgconfig perl? ( dev-perl/Pod-Parser ) python? ( python_single_target_python3_8? ( dev-python/cython[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/cython[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/cython[python_targets_python3_10(-)] ) ) test? ( valgrind? ( dev-util/valgrind ) ) -DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=dev-libs/glib:2 sys-libs/readline:= server? ( aac? ( media-libs/faad2 ) airplay? ( dev-libs/openssl:= ) alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) cdda? ( dev-libs/libcdio-paranoia:= dev-libs/libcdio:= media-libs/libdiscid ) curl? ( net-misc/curl ) ffmpeg? ( media-video/ffmpeg:= ) flac? ( media-libs/flac ) fluidsynth? ( media-sound/fluidsynth:= ) gme? ( media-libs/game-music-emu ) ices? ( media-libs/libogg media-libs/libshout media-libs/libvorbis ) jack? ( virtual/jack ) mac? ( media-sound/mac ) mad? ( media-libs/libmad ) mms? ( media-libs/libmms media-video/ffmpeg:= ) modplug? ( media-libs/libmodplug ) mp3? ( media-sound/mpg123 ) musepack? ( media-sound/musepack-tools ) ofa? ( dev-libs/expat media-libs/libofa sci-libs/fftw:3.0= ) opus? ( media-libs/libogg media-libs/opus media-libs/opusfile ) pulseaudio? ( media-sound/pulseaudio ) samba? ( net-fs/samba ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/libogg media-libs/speex ) tremor? ( media-libs/tremor ) vocoder? ( media-libs/libsamplerate sci-libs/fftw:3.0= ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) xml? ( dev-libs/libxml2 ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] net-misc/curl ) ) python? ( virtual/libcrypt:= ) cxx? ( dev-libs/boost ) test? ( dev-util/cunit ) -DESCRIPTION=X(cross)platform Music Multiplexing System, next generation of the XMMS player -EAPI=8 -HOMEPAGE=https://github.com/XMMS2 -IUSE=cxx mlib-update perl python server test aac airplay alsa ao asf cdda curl ffmpeg flac fluidsynth gme ices jack mac +mad mms modplug mp3 musepack ofa opus oss pulseaudio samba sid sndfile speex tremor vocoder +vorbis wavpack xml zeroconf +server valgrind python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~alpha amd64 ~arm ppc ~riscv x86 -LICENSE=GPL-2+ LGPL-2.1+ -RDEPEND=dev-libs/glib:2 sys-libs/readline:= server? ( aac? ( media-libs/faad2 ) airplay? ( dev-libs/openssl:= ) alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) cdda? ( dev-libs/libcdio-paranoia:= dev-libs/libcdio:= media-libs/libdiscid ) curl? ( net-misc/curl ) ffmpeg? ( media-video/ffmpeg:= ) flac? ( media-libs/flac ) fluidsynth? ( media-sound/fluidsynth:= ) gme? ( media-libs/game-music-emu ) ices? ( media-libs/libogg media-libs/libshout media-libs/libvorbis ) jack? ( virtual/jack ) mac? ( media-sound/mac ) mad? ( media-libs/libmad ) mms? ( media-libs/libmms media-video/ffmpeg:= ) modplug? ( media-libs/libmodplug ) mp3? ( media-sound/mpg123 ) musepack? ( media-sound/musepack-tools ) ofa? ( dev-libs/expat media-libs/libofa sci-libs/fftw:3.0= ) opus? ( media-libs/libogg media-libs/opus media-libs/opusfile ) pulseaudio? ( media-sound/pulseaudio ) samba? ( net-fs/samba ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/libogg media-libs/speex ) tremor? ( media-libs/tremor ) vocoder? ( media-libs/libsamplerate sci-libs/fftw:3.0= ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) xml? ( dev-libs/libxml2 ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] net-misc/curl ) ) python? ( virtual/libcrypt:= ) perl? ( dev-lang/perl dev-perl/glib-perl virtual/perl-Carp virtual/perl-IO virtual/perl-Scalar-List-Utils ) python? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( dev-python/pygobject[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pygobject[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject[python_targets_python3_10(-)] ) ) -REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) -RESTRICT=!test? ( test ) !server? ( test ) -SLOT=0 -SRC_URI=https://github.com/xmms2/xmms2-devel/archive/46da10f0e20c53fd2b40843617ed182c0cba4ebb.tar.gz -> xmms2-0.8_p20201016.tar.gz https://github.com/xmms2/s4/archive/652ac581df7a0bca04334da397f8bb4f86eb7b59.tar.gz -> xmms2-s4-0.8_p20201016.tar.gz https://waf.io/waf-2.0.22.tar.bz2 -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 perl-functions fea344a91ebf37efadf172c6a3de5a72 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=65042e16b7eb165f91ea77532f453dad diff --git a/metadata/md5-cache/media-video/Manifest.gz b/metadata/md5-cache/media-video/Manifest.gz index 8d9d2073c962..3bbf37456685 100644 Binary files a/metadata/md5-cache/media-video/Manifest.gz and b/metadata/md5-cache/media-video/Manifest.gz differ diff --git a/metadata/md5-cache/media-video/qmplay2-21.06.07-r2 b/metadata/md5-cache/media-video/qmplay2-21.06.07-r2 deleted file mode 100644 index 26e3c4640c93..000000000000 --- a/metadata/md5-cache/media-video/qmplay2-21.06.07-r2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-qt/linguist-tools:5 dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-video/ffmpeg || ( dev-qt/qtgui:5[X(-)] dev-qt/qtgui:5[xcb(-)] ) alsa? ( media-libs/alsa-lib ) cdio? ( dev-libs/libcdio[cddb] ) extensions? ( dev-qt/qtdeclarative:5 media-libs/taglib ) gme? ( media-libs/game-music-emu ) libass? ( media-libs/libass ) opengl? ( virtual/opengl ) pipewire? ( media-video/pipewire ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplayfp ) shaders? ( >=media-libs/shaderc-2020.1 ) vaapi? ( >=media-video/ffmpeg-4.1.3[vaapi] x11-libs/libva[drm,opengl] ) vdpau? ( media-video/ffmpeg[vdpau] ) videofilters? ( dev-qt/qtconcurrent:5 ) vulkan? ( >=dev-qt/qtgui-5.14.1:5[vulkan] >=media-libs/vulkan-loader-1.2.133 ) xv? ( x11-libs/libXv ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A Qt-based video player, which can play most formats and codecs -EAPI=7 -HOMEPAGE=https://github.com/zaps166/QMPlay2 -IUSE=avdevice +audiofilters +alsa cdio cuvid dbus extensions gme inputs libass modplug notifications opengl pipewire portaudio pulseaudio sid shaders vaapi vdpau +videofilters visualizations vulkan xv -KEYWORDS=~amd64 ~x86 -LICENSE=LGPL-3 -RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-video/ffmpeg || ( dev-qt/qtgui:5[X(-)] dev-qt/qtgui:5[xcb(-)] ) alsa? ( media-libs/alsa-lib ) cdio? ( dev-libs/libcdio[cddb] ) extensions? ( dev-qt/qtdeclarative:5 media-libs/taglib ) gme? ( media-libs/game-music-emu ) libass? ( media-libs/libass ) opengl? ( virtual/opengl ) pipewire? ( media-video/pipewire ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplayfp ) shaders? ( >=media-libs/shaderc-2020.1 ) vaapi? ( >=media-video/ffmpeg-4.1.3[vaapi] x11-libs/libva[drm,opengl] ) vdpau? ( media-video/ffmpeg[vdpau] ) videofilters? ( dev-qt/qtconcurrent:5 ) vulkan? ( >=dev-qt/qtgui-5.14.1:5[vulkan] >=media-libs/vulkan-loader-1.2.133 ) xv? ( x11-libs/libXv ) -REQUIRED_USE=audiofilters? ( || ( alsa pipewire portaudio pulseaudio ) ) shaders? ( vulkan ) -SLOT=0 -SRC_URI=https://github.com/zaps166/QMPlay2/releases/download/21.06.07/QMPlay2-src-21.06.07.tar.xz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=9d7be265836770f1365156d19ebbffbc diff --git a/metadata/md5-cache/media-video/qmplay2-22.03.19 b/metadata/md5-cache/media-video/qmplay2-22.03.19 new file mode 100644 index 000000000000..3c9cebec452e --- /dev/null +++ b/metadata/md5-cache/media-video/qmplay2-22.03.19 @@ -0,0 +1,15 @@ +BDEPEND=dev-qt/linguist-tools:5 dev-util/ninja >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-video/ffmpeg || ( dev-qt/qtgui:5[X(-)] dev-qt/qtgui:5[xcb(-)] ) alsa? ( media-libs/alsa-lib ) cdio? ( dev-libs/libcdio[cddb] ) extensions? ( dev-qt/qtdeclarative:5 ) gme? ( media-libs/game-music-emu ) libass? ( media-libs/libass ) opengl? ( virtual/opengl ) pipewire? ( media-video/pipewire ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplayfp ) shaders? ( >=media-libs/shaderc-2020.1 ) taglib? ( media-libs/taglib ) vaapi? ( >=media-video/ffmpeg-4.1.3[vaapi] x11-libs/libva ) vdpau? ( media-video/ffmpeg[vdpau] ) videofilters? ( dev-qt/qtconcurrent:5 ) vulkan? ( >=dev-qt/qtgui-5.14.1:5[vulkan] >=media-libs/vulkan-loader-1.2.133 ) xv? ( x11-libs/libXv ) +DESCRIPTION=A Qt-based video player, which can play most formats and codecs +EAPI=8 +HOMEPAGE=https://github.com/zaps166/QMPlay2 +IUSE=avdevice +audiofilters +alsa cdio cuvid extensions gme inputs libass modplug notifications opengl pipewire portaudio pulseaudio sid shaders +taglib vaapi vdpau videofilters visualizations vulkan xv +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-3 +RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-video/ffmpeg || ( dev-qt/qtgui:5[X(-)] dev-qt/qtgui:5[xcb(-)] ) alsa? ( media-libs/alsa-lib ) cdio? ( dev-libs/libcdio[cddb] ) extensions? ( dev-qt/qtdeclarative:5 ) gme? ( media-libs/game-music-emu ) libass? ( media-libs/libass ) opengl? ( virtual/opengl ) pipewire? ( media-video/pipewire ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplayfp ) shaders? ( >=media-libs/shaderc-2020.1 ) taglib? ( media-libs/taglib ) vaapi? ( >=media-video/ffmpeg-4.1.3[vaapi] x11-libs/libva ) vdpau? ( media-video/ffmpeg[vdpau] ) videofilters? ( dev-qt/qtconcurrent:5 ) vulkan? ( >=dev-qt/qtgui-5.14.1:5[vulkan] >=media-libs/vulkan-loader-1.2.133 ) xv? ( x11-libs/libXv ) +REQUIRED_USE=audiofilters? ( || ( alsa pipewire portaudio pulseaudio ) ) shaders? ( vulkan ) +SLOT=0 +SRC_URI=https://github.com/zaps166/QMPlay2/releases/download/22.03.19/QMPlay2-src-22.03.19.tar.xz +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=8a396fa019472b36583da6cb55782aa5 diff --git a/metadata/md5-cache/media-video/qmplay2-9999 b/metadata/md5-cache/media-video/qmplay2-9999 index e91bc287a4d8..c113d6893587 100644 --- a/metadata/md5-cache/media-video/qmplay2-9999 +++ b/metadata/md5-cache/media-video/qmplay2-9999 @@ -1,14 +1,14 @@ BDEPEND=dev-qt/linguist-tools:5 dev-util/ninja >=dev-util/cmake-3.20.5 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack -DEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-video/ffmpeg || ( dev-qt/qtgui:5[X(-)] dev-qt/qtgui:5[xcb(-)] ) alsa? ( media-libs/alsa-lib ) cdio? ( dev-libs/libcdio[cddb] ) extensions? ( dev-qt/qtdeclarative:5 ) gme? ( media-libs/game-music-emu ) libass? ( media-libs/libass ) opengl? ( virtual/opengl ) pipewire? ( media-video/pipewire ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplayfp ) shaders? ( >=media-libs/shaderc-2020.1 ) taglib? ( media-libs/taglib ) vaapi? ( >=media-video/ffmpeg-4.1.3[vaapi] x11-libs/libva[drm,opengl] ) vdpau? ( media-video/ffmpeg[vdpau] ) videofilters? ( dev-qt/qtconcurrent:5 ) vulkan? ( >=dev-qt/qtgui-5.14.1:5[vulkan] >=media-libs/vulkan-loader-1.2.133 ) xv? ( x11-libs/libXv ) +DEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-video/ffmpeg || ( dev-qt/qtgui:5[X(-)] dev-qt/qtgui:5[xcb(-)] ) alsa? ( media-libs/alsa-lib ) cdio? ( dev-libs/libcdio[cddb] ) extensions? ( dev-qt/qtdeclarative:5 ) gme? ( media-libs/game-music-emu ) libass? ( media-libs/libass ) opengl? ( virtual/opengl ) pipewire? ( media-video/pipewire ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplayfp ) shaders? ( >=media-libs/shaderc-2020.1 ) taglib? ( media-libs/taglib ) vaapi? ( >=media-video/ffmpeg-4.1.3[vaapi] x11-libs/libva ) vdpau? ( media-video/ffmpeg[vdpau] ) videofilters? ( dev-qt/qtconcurrent:5 ) vulkan? ( >=dev-qt/qtgui-5.14.1:5[vulkan] >=media-libs/vulkan-loader-1.2.133 ) xv? ( x11-libs/libXv ) DESCRIPTION=A Qt-based video player, which can play most formats and codecs EAPI=8 HOMEPAGE=https://github.com/zaps166/QMPlay2 IUSE=avdevice +audiofilters +alsa cdio cuvid extensions gme inputs libass modplug notifications opengl pipewire portaudio pulseaudio sid shaders +taglib vaapi vdpau videofilters visualizations vulkan xv LICENSE=LGPL-3 PROPERTIES=live -RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-video/ffmpeg || ( dev-qt/qtgui:5[X(-)] dev-qt/qtgui:5[xcb(-)] ) alsa? ( media-libs/alsa-lib ) cdio? ( dev-libs/libcdio[cddb] ) extensions? ( dev-qt/qtdeclarative:5 ) gme? ( media-libs/game-music-emu ) libass? ( media-libs/libass ) opengl? ( virtual/opengl ) pipewire? ( media-video/pipewire ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplayfp ) shaders? ( >=media-libs/shaderc-2020.1 ) taglib? ( media-libs/taglib ) vaapi? ( >=media-video/ffmpeg-4.1.3[vaapi] x11-libs/libva[drm,opengl] ) vdpau? ( media-video/ffmpeg[vdpau] ) videofilters? ( dev-qt/qtconcurrent:5 ) vulkan? ( >=dev-qt/qtgui-5.14.1:5[vulkan] >=media-libs/vulkan-loader-1.2.133 ) xv? ( x11-libs/libXv ) +RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-video/ffmpeg || ( dev-qt/qtgui:5[X(-)] dev-qt/qtgui:5[xcb(-)] ) alsa? ( media-libs/alsa-lib ) cdio? ( dev-libs/libcdio[cddb] ) extensions? ( dev-qt/qtdeclarative:5 ) gme? ( media-libs/game-music-emu ) libass? ( media-libs/libass ) opengl? ( virtual/opengl ) pipewire? ( media-video/pipewire ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplayfp ) shaders? ( >=media-libs/shaderc-2020.1 ) taglib? ( media-libs/taglib ) vaapi? ( >=media-video/ffmpeg-4.1.3[vaapi] x11-libs/libva ) vdpau? ( media-video/ffmpeg[vdpau] ) videofilters? ( dev-qt/qtconcurrent:5 ) vulkan? ( >=dev-qt/qtgui-5.14.1:5[vulkan] >=media-libs/vulkan-loader-1.2.133 ) xv? ( x11-libs/libXv ) REQUIRED_USE=audiofilters? ( || ( alsa pipewire portaudio pulseaudio ) ) shaders? ( vulkan ) SLOT=0 _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=f1aa881f2d52d70d3a67cbdf551517a1 +_md5_=8a396fa019472b36583da6cb55782aa5 diff --git a/metadata/md5-cache/net-analyzer/Manifest.gz b/metadata/md5-cache/net-analyzer/Manifest.gz index 2fb11b99392a..28b315473257 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/netdata-1.34.1 b/metadata/md5-cache/net-analyzer/netdata-1.34.1 new file mode 100644 index 000000000000..211f497c3407 --- /dev/null +++ b/metadata/md5-cache/net-analyzer/netdata-1.34.1 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=acct-group/netdata acct-user/netdata app-misc/jq >=app-shells/bash-4:0 || ( net-analyzer/openbsd-netcat net-analyzer/netcat ) net-libs/libwebsockets net-misc/curl net-misc/wget sys-apps/util-linux virtual/awk caps? ( sys-libs/libcap ) cups? ( net-print/cups ) dbengine? ( app-arch/lz4 dev-libs/judy dev-libs/openssl:= ) dev-libs/libuv cloud? ( dev-libs/protobuf:= ) compression? ( sys-libs/zlib ) ipmi? ( sys-libs/freeipmi ) jsonc? ( dev-libs/json-c:= ) kinesis? ( dev-libs/aws-sdk-cpp[kinesis] ) mongodb? ( dev-libs/mongo-c-driver ) nfacct? ( net-firewall/nfacct net-libs/libmnl ) nodejs? ( net-libs/nodejs ) prometheus? ( dev-libs/protobuf:= app-arch/snappy ) python? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) mysql? ( python_single_target_python3_8? ( dev-python/mysqlclient[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/mysqlclient[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/mysqlclient[python_targets_python3_10(-)] ) ) postgres? ( python_single_target_python3_8? ( dev-python/psycopg:2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/psycopg:2[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/psycopg:2[python_targets_python3_10(-)] ) ) tor? ( python_single_target_python3_8? ( net-libs/stem[python_targets_python3_8(-)] ) python_single_target_python3_9? ( net-libs/stem[python_targets_python3_9(-)] ) python_single_target_python3_10? ( net-libs/stem[python_targets_python3_10(-)] ) ) ) xen? ( app-emulation/xen-tools dev-libs/yajl ) virtual/pkgconfig +DESCRIPTION=Linux real time system monitoring, done right! +EAPI=8 +HOMEPAGE=https://github.com/netdata/netdata https://my-netdata.io/ +IUSE=caps cloud +compression cpu_flags_x86_sse2 cups +dbengine ipmi +jsonc kinesis +lto mongodb mysql nfacct nodejs postgres prometheus +python tor xen +filecaps python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +KEYWORDS=~amd64 ~ppc64 ~x86 +LICENSE=GPL-3+ MIT BSD +RDEPEND=acct-group/netdata acct-user/netdata app-misc/jq >=app-shells/bash-4:0 || ( net-analyzer/openbsd-netcat net-analyzer/netcat ) net-libs/libwebsockets net-misc/curl net-misc/wget sys-apps/util-linux virtual/awk caps? ( sys-libs/libcap ) cups? ( net-print/cups ) dbengine? ( app-arch/lz4 dev-libs/judy dev-libs/openssl:= ) dev-libs/libuv cloud? ( dev-libs/protobuf:= ) compression? ( sys-libs/zlib ) ipmi? ( sys-libs/freeipmi ) jsonc? ( dev-libs/json-c:= ) kinesis? ( dev-libs/aws-sdk-cpp[kinesis] ) mongodb? ( dev-libs/mongo-c-driver ) nfacct? ( net-firewall/nfacct net-libs/libmnl ) nodejs? ( net-libs/nodejs ) prometheus? ( dev-libs/protobuf:= app-arch/snappy ) python? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) mysql? ( python_single_target_python3_8? ( dev-python/mysqlclient[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/mysqlclient[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/mysqlclient[python_targets_python3_10(-)] ) ) postgres? ( python_single_target_python3_8? ( dev-python/psycopg:2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/psycopg:2[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/psycopg:2[python_targets_python3_10(-)] ) ) tor? ( python_single_target_python3_8? ( net-libs/stem[python_targets_python3_8(-)] ) python_single_target_python3_9? ( net-libs/stem[python_targets_python3_9(-)] ) python_single_target_python3_10? ( net-libs/stem[python_targets_python3_10(-)] ) ) ) xen? ( app-emulation/xen-tools dev-libs/yajl ) +REQUIRED_USE=mysql? ( python ) python? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) tor? ( python ) +SLOT=0 +SRC_URI=https://github.com/netdata/netdata/releases/download/v1.34.1/netdata-v1.34.1.tar.gz -> netdata-1.34.1.tar.gz +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 fcaps babe6282ea5c195981bd302af1adaf3a flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=fc69fc8eeb543912bf72e29c4dd31249 diff --git a/metadata/md5-cache/net-analyzer/netdata-9999 b/metadata/md5-cache/net-analyzer/netdata-9999 index 3aaea38c9e3f..9ff218beb4dd 100644 --- a/metadata/md5-cache/net-analyzer/netdata-9999 +++ b/metadata/md5-cache/net-analyzer/netdata-9999 @@ -1,14 +1,14 @@ -BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 filecaps? ( sys-libs/libcap ) virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst prepare setup unpack DEPEND=acct-group/netdata acct-user/netdata app-misc/jq >=app-shells/bash-4:0 || ( net-analyzer/openbsd-netcat net-analyzer/netcat ) net-libs/libwebsockets net-misc/curl net-misc/wget sys-apps/util-linux virtual/awk caps? ( sys-libs/libcap ) cups? ( net-print/cups ) dbengine? ( app-arch/lz4 dev-libs/judy dev-libs/openssl:= ) dev-libs/libuv cloud? ( dev-libs/protobuf:= ) compression? ( sys-libs/zlib ) ipmi? ( sys-libs/freeipmi ) jsonc? ( dev-libs/json-c:= ) kinesis? ( dev-libs/aws-sdk-cpp[kinesis] ) mongodb? ( dev-libs/mongo-c-driver ) nfacct? ( net-firewall/nfacct net-libs/libmnl ) nodejs? ( net-libs/nodejs ) prometheus? ( dev-libs/protobuf:= app-arch/snappy ) python? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) mysql? ( python_single_target_python3_8? ( dev-python/mysqlclient[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/mysqlclient[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/mysqlclient[python_targets_python3_10(-)] ) ) postgres? ( python_single_target_python3_8? ( dev-python/psycopg:2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/psycopg:2[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/psycopg:2[python_targets_python3_10(-)] ) ) tor? ( python_single_target_python3_8? ( net-libs/stem[python_targets_python3_8(-)] ) python_single_target_python3_9? ( net-libs/stem[python_targets_python3_9(-)] ) python_single_target_python3_10? ( net-libs/stem[python_targets_python3_10(-)] ) ) ) xen? ( app-emulation/xen-tools dev-libs/yajl ) virtual/pkgconfig DESCRIPTION=Linux real time system monitoring, done right! -EAPI=7 +EAPI=8 HOMEPAGE=https://github.com/netdata/netdata https://my-netdata.io/ IUSE=caps cloud +compression cpu_flags_x86_sse2 cups +dbengine ipmi +jsonc kinesis +lto mongodb mysql nfacct nodejs postgres prometheus +python tor xen +filecaps python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 LICENSE=GPL-3+ MIT BSD PROPERTIES=live -RDEPEND=acct-group/netdata acct-user/netdata app-misc/jq >=app-shells/bash-4:0 || ( net-analyzer/openbsd-netcat net-analyzer/netcat ) net-libs/libwebsockets net-misc/curl net-misc/wget sys-apps/util-linux virtual/awk caps? ( sys-libs/libcap ) cups? ( net-print/cups ) dbengine? ( app-arch/lz4 dev-libs/judy dev-libs/openssl:= ) dev-libs/libuv cloud? ( dev-libs/protobuf:= ) compression? ( sys-libs/zlib ) ipmi? ( sys-libs/freeipmi ) jsonc? ( dev-libs/json-c:= ) kinesis? ( dev-libs/aws-sdk-cpp[kinesis] ) mongodb? ( dev-libs/mongo-c-driver ) nfacct? ( net-firewall/nfacct net-libs/libmnl ) nodejs? ( net-libs/nodejs ) prometheus? ( dev-libs/protobuf:= app-arch/snappy ) python? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) mysql? ( python_single_target_python3_8? ( dev-python/mysqlclient[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/mysqlclient[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/mysqlclient[python_targets_python3_10(-)] ) ) postgres? ( python_single_target_python3_8? ( dev-python/psycopg:2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/psycopg:2[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/psycopg:2[python_targets_python3_10(-)] ) ) tor? ( python_single_target_python3_8? ( net-libs/stem[python_targets_python3_8(-)] ) python_single_target_python3_9? ( net-libs/stem[python_targets_python3_9(-)] ) python_single_target_python3_10? ( net-libs/stem[python_targets_python3_10(-)] ) ) ) xen? ( app-emulation/xen-tools dev-libs/yajl ) filecaps? ( sys-libs/libcap ) +RDEPEND=acct-group/netdata acct-user/netdata app-misc/jq >=app-shells/bash-4:0 || ( net-analyzer/openbsd-netcat net-analyzer/netcat ) net-libs/libwebsockets net-misc/curl net-misc/wget sys-apps/util-linux virtual/awk caps? ( sys-libs/libcap ) cups? ( net-print/cups ) dbengine? ( app-arch/lz4 dev-libs/judy dev-libs/openssl:= ) dev-libs/libuv cloud? ( dev-libs/protobuf:= ) compression? ( sys-libs/zlib ) ipmi? ( sys-libs/freeipmi ) jsonc? ( dev-libs/json-c:= ) kinesis? ( dev-libs/aws-sdk-cpp[kinesis] ) mongodb? ( dev-libs/mongo-c-driver ) nfacct? ( net-firewall/nfacct net-libs/libmnl ) nodejs? ( net-libs/nodejs ) prometheus? ( dev-libs/protobuf:= app-arch/snappy ) python? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) mysql? ( python_single_target_python3_8? ( dev-python/mysqlclient[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/mysqlclient[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/mysqlclient[python_targets_python3_10(-)] ) ) postgres? ( python_single_target_python3_8? ( dev-python/psycopg:2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/psycopg:2[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/psycopg:2[python_targets_python3_10(-)] ) ) tor? ( python_single_target_python3_8? ( net-libs/stem[python_targets_python3_8(-)] ) python_single_target_python3_9? ( net-libs/stem[python_targets_python3_9(-)] ) python_single_target_python3_10? ( net-libs/stem[python_targets_python3_10(-)] ) ) ) xen? ( app-emulation/xen-tools dev-libs/yajl ) REQUIRED_USE=mysql? ( python ) python? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) tor? ( python ) SLOT=0 -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff fcaps babe6282ea5c195981bd302af1adaf3a flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=9db6e008bd3b7dd60bcb7cd0fe57c6be +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 fcaps babe6282ea5c195981bd302af1adaf3a flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=fc69fc8eeb543912bf72e29c4dd31249 diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 3f3166661e1e..2949a8ca5e7a 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/libidn-1.38-r1 b/metadata/md5-cache/net-dns/libidn-1.38-r1 index 5da573cf6a63..ba8df2f6d77c 100644 --- a/metadata/md5-cache/net-dns/libidn-1.38-r1 +++ b/metadata/md5-cache/net-dns/libidn-1.38-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-3 LGPL-3 java? ( Apache-2.0 ) RDEPEND=java? ( >=virtual/jre-1.8:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/12 SRC_URI=mirror://gnu/libidn/libidn-1.38.tar.gz verify-sig? ( mirror://gnu/libidn/libidn-1.38.tar.gz.sig ) -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e mono-env 87888393b1c1b882d0543087e28ec0b0 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e mono-env 87888393b1c1b882d0543087e28ec0b0 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 _md5_=8328aaeebca4be44ded2ad8800111bda diff --git a/metadata/md5-cache/net-firewall/Manifest.gz b/metadata/md5-cache/net-firewall/Manifest.gz index 027b8a685dde..4bcb46d23da0 100644 Binary files a/metadata/md5-cache/net-firewall/Manifest.gz and b/metadata/md5-cache/net-firewall/Manifest.gz differ diff --git a/metadata/md5-cache/net-firewall/xtables-addons-3.18 b/metadata/md5-cache/net-firewall/xtables-addons-3.18 index 7c79a013217d..8d663ba5ed3b 100644 --- a/metadata/md5-cache/net-firewall/xtables-addons-3.18 +++ b/metadata/md5-cache/net-firewall/xtables-addons-3.18 @@ -4,10 +4,10 @@ DESCRIPTION=iptables extensions not yet accepted in the main kernel EAPI=7 HOMEPAGE=https://inai.de/projects/xtables-addons/ IUSE=xtables_addons_quota2 xtables_addons_psd xtables_addons_pknock xtables_addons_lscan xtables_addons_length2 xtables_addons_ipv4options xtables_addons_ipp2p xtables_addons_iface xtables_addons_gradm xtables_addons_geoip xtables_addons_fuzzy xtables_addons_condition xtables_addons_tarpit xtables_addons_sysrq xtables_addons_proto xtables_addons_logmark xtables_addons_ipmark xtables_addons_echo xtables_addons_dnetmap xtables_addons_dhcpmac xtables_addons_delude xtables_addons_chaos xtables_addons_account dist-kernel +modules -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=>=net-firewall/iptables-1.6.0 xtables_addons_geoip? ( app-arch/unzip dev-perl/Net-CIDR-Lite dev-perl/Text-CSV_XS virtual/perl-Getopt-Long ) modules? ( kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) ) SLOT=0 SRC_URI=https://inai.de/files/xtables-addons/xtables-addons-3.18.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd linux-mod 7d55f157d3072c067c44b09dac80bdf2 multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=ed99e5010d70e6e5446bbd39e13b3919 +_md5_=cf03dd80e47c0d923c0434ebd09f7fc2 diff --git a/metadata/md5-cache/net-firewall/xtables-addons-3.20 b/metadata/md5-cache/net-firewall/xtables-addons-3.20 new file mode 100644 index 000000000000..5d1cf9b27b6f --- /dev/null +++ b/metadata/md5-cache/net-firewall/xtables-addons-3.20 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup +DEPEND=>=net-firewall/iptables-1.6.0 virtual/linux-sources modules? ( kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) ) modules? ( sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) ) +DESCRIPTION=iptables extensions not yet accepted in the main kernel +EAPI=8 +HOMEPAGE=https://inai.de/projects/xtables-addons/ +IUSE=xtables_addons_quota2 xtables_addons_psd xtables_addons_pknock xtables_addons_lscan xtables_addons_length2 xtables_addons_ipv4options xtables_addons_ipp2p xtables_addons_iface xtables_addons_gradm xtables_addons_geoip xtables_addons_fuzzy xtables_addons_condition xtables_addons_tarpit xtables_addons_sysrq xtables_addons_proto xtables_addons_logmark xtables_addons_ipmark xtables_addons_echo xtables_addons_dnetmap xtables_addons_dhcpmac xtables_addons_delude xtables_addons_chaos xtables_addons_account dist-kernel +modules +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=net-firewall/iptables-1.6.0 xtables_addons_geoip? ( app-arch/unzip dev-perl/Net-CIDR-Lite dev-perl/Text-CSV_XS virtual/perl-Getopt-Long ) modules? ( kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) ) +SLOT=0 +SRC_URI=https://inai.de/files/xtables-addons/xtables-addons-3.20.tar.xz +_eclasses_=linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd linux-mod 7d55f157d3072c067c44b09dac80bdf2 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=cee0a9989c8f323d4c522137799cb2e5 diff --git a/metadata/md5-cache/net-irc/Manifest.gz b/metadata/md5-cache/net-irc/Manifest.gz index bb1c06f17c5f..1f1ef3b70813 100644 Binary files a/metadata/md5-cache/net-irc/Manifest.gz and b/metadata/md5-cache/net-irc/Manifest.gz differ diff --git a/metadata/md5-cache/net-irc/rbot-0.9.15_p20160325-r3 b/metadata/md5-cache/net-irc/rbot-0.9.15_p20160325-r3 index fea24c0df516..5820808a5db6 100644 --- a/metadata/md5-cache/net-irc/rbot-0.9.15_p20160325-r3 +++ b/metadata/md5-cache/net-irc/rbot-0.9.15_p20160325-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-rbot/rbot/archive/e358601cc521d8aced941eb928fae2d8c53cf0c2.tar.gz -> rbot-0.9.15_p20160325.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=94bfdf01e2f9c037191df752c44c6fb8 diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz index 3e809d30d47b..f9ad218a06aa 100644 Binary files a/metadata/md5-cache/net-libs/Manifest.gz and b/metadata/md5-cache/net-libs/Manifest.gz differ diff --git a/metadata/md5-cache/net-libs/libnma-1.8.38 b/metadata/md5-cache/net-libs/libnma-1.8.38 index 2a37d61fdf39..51dce8d099a7 100644 --- a/metadata/md5-cache/net-libs/libnma-1.8.38 +++ b/metadata/md5-cache/net-libs/libnma-1.8.38 @@ -5,11 +5,11 @@ DESCRIPTION=NetworkManager GUI library EAPI=8 HOMEPAGE=https://wiki.gnome.org/Projects/NetworkManager IUSE=gtk-doc +introspection +pkcs11 vala -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ RDEPEND=>=gui-libs/gtk-4.0:4 app-text/iso-codes net-misc/mobile-broadband-provider-info >=dev-libs/glib-2.38:2 >=x11-libs/gtk+-3.12:3[introspection?] >=net-misc/networkmanager-1.7[introspection?] pkcs11? ( >=app-crypt/gcr-3.14:= ) introspection? ( >=dev-libs/gobject-introspection-1.56:= ) !=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 +DEFINED_PHASES=configure install prepare setup +DEPEND=!mail-filter/libsieve !mail-client/mailx sys-libs/ncurses:= sys-libs/readline:= dev-libs/libltdl:0 virtual/libcrypt:= virtual/mta berkdb? ( sys-libs/db:= ) bidi? ( dev-libs/fribidi ) emacs? ( >=app-editors/emacs-23.1:* ) gdbm? ( sys-libs/gdbm:= ) guile? ( dev-scheme/guile:12/2.2-1 ) kerberos? ( virtual/krb5 ) kyotocabinet? ( dev-db/kyotocabinet ) ldap? ( net-nds/openldap:= ) mysql? ( dev-db/mysql-connector-c:= ) nls? ( sys-devel/gettext ) pam? ( sys-libs/pam:= ) postgres? ( dev-db/postgresql:= ) python? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) ) sasl? ( virtual/gsasl ) servers? ( virtual/libiconv dev-libs/libunistring:= ) ssl? ( net-libs/gnutls:= ) tcpd? ( sys-apps/tcp-wrappers ) tokyocabinet? ( dev-db/tokyocabinet ) +DESCRIPTION=A useful collection of mail servers, clients, and filters +EAPI=8 +HOMEPAGE=https://mailutils.org/ +IUSE=berkdb bidi +clients emacs gdbm sasl guile ipv6 kerberos kyotocabinet ldap mysql nls pam postgres python servers split-usr ssl static-libs +threads tcpd tokyocabinet python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-macos ~x64-macos +LICENSE=GPL-2 LGPL-2.1 +RDEPEND=!mail-filter/libsieve !mail-client/mailx sys-libs/ncurses:= sys-libs/readline:= dev-libs/libltdl:0 virtual/libcrypt:= virtual/mta berkdb? ( sys-libs/db:= ) bidi? ( dev-libs/fribidi ) emacs? ( >=app-editors/emacs-23.1:* ) gdbm? ( sys-libs/gdbm:= ) guile? ( dev-scheme/guile:12/2.2-1 ) kerberos? ( virtual/krb5 ) kyotocabinet? ( dev-db/kyotocabinet ) ldap? ( net-nds/openldap:= ) mysql? ( dev-db/mysql-connector-c:= ) nls? ( sys-devel/gettext ) pam? ( sys-libs/pam:= ) postgres? ( dev-db/postgresql:= ) python? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) ) sasl? ( virtual/gsasl ) servers? ( virtual/libiconv dev-libs/libunistring:= ) ssl? ( net-libs/gnutls:= ) tcpd? ( sys-apps/tcp-wrappers ) tokyocabinet? ( dev-db/tokyocabinet ) +REQUIRED_USE=python? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) servers? ( tcpd ldap ) +SLOT=0 +SRC_URI=mirror://gnu/mailutils/mailutils-3.15.tar.xz +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=4db4918b118f55c8c76873d57e519680 diff --git a/metadata/md5-cache/net-mail/mu-1.6.10 b/metadata/md5-cache/net-mail/mu-1.6.10 index b27a2af21536..6003ba88b69f 100644 --- a/metadata/md5-cache/net-mail/mu-1.6.10 +++ b/metadata/md5-cache/net-mail/mu-1.6.10 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=dev-libs/glib:2 dev-libs/gmime:3.0 >=dev-libs/xapian-1.4:= emacs? ( >=app-editors/emacs-25.3:* ) guile? ( >=dev-scheme/guile-2.2:* ) readline? ( sys-libs/readline:= ) SLOT=0 SRC_URI=https://github.com/djcb/mu/releases/download/1.6.10/mu-1.6.10.tar.xz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=f911fc0e48a966a7ace8bdf6a4747fea diff --git a/metadata/md5-cache/net-mail/mu-1.7.12 b/metadata/md5-cache/net-mail/mu-1.7.12 index e2311537b6d8..88fc8105a229 100644 --- a/metadata/md5-cache/net-mail/mu-1.7.12 +++ b/metadata/md5-cache/net-mail/mu-1.7.12 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=dev-libs/glib:2 dev-libs/gmime:3.0 >=dev-libs/xapian-1.4:= emacs? ( >=app-editors/emacs-25.3:* ) readline? ( sys-libs/readline:= ) SLOT=0 SRC_URI=https://dev.gentoo.org/~matthew/distfiles/mu-1.7.12.tar.xz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=64a69a5952117f879dc79f68504c309e diff --git a/metadata/md5-cache/net-mail/notmuch-0.32.2-r1 b/metadata/md5-cache/net-mail/notmuch-0.32.2-r1 index 9d889aa16550..4301add9c4d9 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.32.2-r1 +++ b/metadata/md5-cache/net-mail/notmuch-0.32.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=apidoc? ( doc ) nmbug? ( python ) python? ( || ( python_targets_pyp RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=https://notmuchmail.org/releases/notmuch-0.32.2.tar.xz test? ( https://notmuchmail.org/releases/test-databases/database-v1.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff desktop c0d27bf73aa08ca05b663dbd31fbef28 distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff desktop c0d27bf73aa08ca05b663dbd31fbef28 distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=642674e148be91bf0622c8c6a8ab0feb diff --git a/metadata/md5-cache/net-mail/notmuch-0.34.2 b/metadata/md5-cache/net-mail/notmuch-0.34.2 index dfa81cc65d82..12d5388a2159 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.34.2 +++ b/metadata/md5-cache/net-mail/notmuch-0.34.2 @@ -12,5 +12,5 @@ REQUIRED_USE=apidoc? ( doc ) nmbug? ( python ) python? ( || ( python_targets_pyp RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=https://notmuchmail.org/releases/notmuch-0.34.2.tar.xz test? ( https://notmuchmail.org/releases/test-databases/database-v1.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff desktop c0d27bf73aa08ca05b663dbd31fbef28 distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff desktop c0d27bf73aa08ca05b663dbd31fbef28 distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=da31259de190475d2bcde54df23a6ef3 diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index 55e99ac142f3..d76693c99b87 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/fakeidentd-2.6-r1 b/metadata/md5-cache/net-misc/fakeidentd-2.6-r1 index 3b5d23ca7672..77a349ca5c55 100644 --- a/metadata/md5-cache/net-misc/fakeidentd-2.6-r1 +++ b/metadata/md5-cache/net-misc/fakeidentd-2.6-r1 @@ -1,10 +1,10 @@ DEFINED_PHASES=compile install unpack DESCRIPTION=A static, secure identd. One source file only! -EAPI=6 +EAPI=8 HOMEPAGE=http://www.guru-group.fi/~too/sw/ KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ppc64 sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=http://www.guru-group.fi/~too/sw/identd.readme -> fakeidentd-2.6.readme http://www.guru-group.fi/~too/sw/releases/identd.c -> fakeidentd-2.6.c -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=26d72a320d765fa16d29bcd446dc38d3 +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=81351690f7053f30e4fa55c8fe9958f4 diff --git a/metadata/md5-cache/net-misc/htpdate-1.3.4 b/metadata/md5-cache/net-misc/htpdate-1.3.4 new file mode 100644 index 000000000000..88e36fa3153e --- /dev/null +++ b/metadata/md5-cache/net-misc/htpdate-1.3.4 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install prepare +DEPEND=ssl? ( dev-libs/openssl:0= ) +DESCRIPTION=Synchronize local workstation with time offered by remote webservers +EAPI=8 +HOMEPAGE=https://www.vervest.org/htp/ +IUSE=+ssl +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=ssl? ( dev-libs/openssl:0= ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/twekkel/htpdate/archive/refs/tags/v1.3.4.tar.gz -> htpdate-1.3.4.tar.gz +_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=8a6ab1d5fe19995f7fc0ccf97dbc0b9a diff --git a/metadata/md5-cache/net-misc/htpdate-9999 b/metadata/md5-cache/net-misc/htpdate-9999 index 57751dc6ce30..942024d773c4 100644 --- a/metadata/md5-cache/net-misc/htpdate-9999 +++ b/metadata/md5-cache/net-misc/htpdate-9999 @@ -2,7 +2,7 @@ BDEPEND=>=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile install prepare unpack DEPEND=ssl? ( dev-libs/openssl:0= ) DESCRIPTION=Synchronize local workstation with time offered by remote webservers -EAPI=7 +EAPI=8 HOMEPAGE=https://www.vervest.org/htp/ IUSE=+ssl LICENSE=GPL-2 @@ -11,4 +11,4 @@ RDEPEND=ssl? ( dev-libs/openssl:0= ) RESTRICT=test SLOT=0 _eclasses_=git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b3b7903b04f62f7d3f01d4c254427905 +_md5_=8a6ab1d5fe19995f7fc0ccf97dbc0b9a diff --git a/metadata/md5-cache/net-misc/mikutter-4.1.7 b/metadata/md5-cache/net-misc/mikutter-4.1.7 index 6a740a043387..84a7261d9fa4 100644 --- a/metadata/md5-cache/net-misc/mikutter-4.1.7 +++ b/metadata/md5-cache/net-misc/mikutter-4.1.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://mikutter.hachune.net/bin/mikutter-4.1.7.tar.gz https://raw.githubusercontent.com/toshia/twitter_api_keys/30071c3008e4616e723cf4e734fc79254019af09/twitter_api_keys.rb -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fc711a61d056d261f2314f092650e6e6 diff --git a/metadata/md5-cache/net-misc/mikutter-9999 b/metadata/md5-cache/net-misc/mikutter-9999 index d94b26f86a96..5932c9e970dd 100644 --- a/metadata/md5-cache/net-misc/mikutter-9999 +++ b/metadata/md5-cache/net-misc/mikutter-9999 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://raw.githubusercontent.com/toshia/twitter_api_keys/30071c3008e4616e723cf4e734fc79254019af09/twitter_api_keys.rb -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 estack 055c42df72f76a4f45ec92b35e83cd56 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=46a05265b3dc559c3e166e3f611cd3b0 diff --git a/metadata/md5-cache/net-misc/turbovnc-2.2.7-r2 b/metadata/md5-cache/net-misc/turbovnc-2.2.7-r2 index ee6af6085b27..2db6efd1eba6 100644 --- a/metadata/md5-cache/net-misc/turbovnc-2.2.7-r2 +++ b/metadata/md5-cache/net-misc/turbovnc-2.2.7-r2 @@ -1,6 +1,6 @@ BDEPEND=dev-util/ninja >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=app-arch/bzip2 media-libs/freetype >=media-libs/libjpeg-turbo-2.0.0:=[java?] sys-libs/pam sys-libs/zlib virtual/opengl x11-libs/libfontenc x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXfont2 x11-libs/libxkbfile x11-libs/pixman java? ( >=virtual/jdk-1.8:* x11-libs/libXi ) ssl? ( !gnutls? ( dev-libs/openssl:= ) gnutls? ( net-libs/gnutls:= ) ) !net-misc/tigervnc java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=app-arch/bzip2 media-libs/freetype >=media-libs/libjpeg-turbo-2.0.0:=[java?] sys-libs/pam sys-libs/zlib virtual/opengl x11-libs/libfontenc x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXfont2 x11-libs/libxkbfile x11-libs/pixman java? ( >=virtual/jdk-1.8:* x11-libs/libXi ) ssl? ( !gnutls? ( dev-libs/openssl:= ) gnutls? ( net-libs/gnutls:= ) ) !net-misc/tigervnc x11-libs/xtrans java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=A fast replacement for TigerVNC EAPI=8 HOMEPAGE=https://www.turbovnc.org/ @@ -11,4 +11,4 @@ RDEPEND=app-arch/bzip2 media-libs/freetype >=media-libs/libjpeg-turbo-2.0.0:=[ja SLOT=0 SRC_URI=https://sourceforge.net/projects/turbovnc/files/2.2.7/turbovnc-2.2.7.tar.gz/download -> turbovnc-2.2.7.tar.gz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 desktop c0d27bf73aa08ca05b663dbd31fbef28 flag-o-matic a500d7cc40da3de38c361e889153bdf7 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=d6f4bb34011c7de1c75811546aa5cebb +_md5_=36d0a7c612ae9725ded56848245b84f1 diff --git a/metadata/md5-cache/net-misc/yt-dlp-2022.3.8.2 b/metadata/md5-cache/net-misc/yt-dlp-2022.3.8.2 deleted file mode 100644 index 521b0043cd19..000000000000 --- a/metadata/md5-cache/net-misc/yt-dlp-2022.3.8.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/pycryptodome[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !net-misc/youtube-dl[-yt-dlp(-)] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install postinst prepare test -DESCRIPTION=youtube-dl fork with additional features and fixes -EAPI=8 -HOMEPAGE=https://github.com/yt-dlp/yt-dlp -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv x86 ~x64-macos -LICENSE=Unlicense -RDEPEND=dev-python/pycryptodome[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !net-misc/youtube-dl[-yt-dlp(-)] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/y/yt-dlp/yt-dlp-2022.3.8.2.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=bbee8bae1a2de9d4122cd5c8364e5296 diff --git a/metadata/md5-cache/net-vpn/Manifest.gz b/metadata/md5-cache/net-vpn/Manifest.gz index 5019ba231498..42b746cfccdf 100644 Binary files a/metadata/md5-cache/net-vpn/Manifest.gz and b/metadata/md5-cache/net-vpn/Manifest.gz differ diff --git a/metadata/md5-cache/net-vpn/networkmanager-openconnect-1.2.8 b/metadata/md5-cache/net-vpn/networkmanager-openconnect-1.2.8 index 8debb9b0eeb8..e26cca68fc0d 100644 --- a/metadata/md5-cache/net-vpn/networkmanager-openconnect-1.2.8 +++ b/metadata/md5-cache/net-vpn/networkmanager-openconnect-1.2.8 @@ -5,10 +5,10 @@ DESCRIPTION=NetworkManager OpenConnect plugin EAPI=8 HOMEPAGE=https://wiki.gnome.org/Projects/NetworkManager https://gitlab.gnome.org/GNOME/NetworkManager-openconnect IUSE=gtk -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ RDEPEND=>=net-misc/networkmanager-1.2:= >=dev-libs/glib-2.34:2 >=dev-libs/dbus-glib-0.74 dev-libs/libxml2:2 >=net-vpn/openconnect-3.02:= gtk? ( >=app-crypt/libsecret-0.18 >=app-crypt/gcr-3.4:= >=x11-libs/gtk+-3.12:3 >=gui-libs/gtk-4.0:4 >=net-libs/libnma-1.8.36 ) acct-group/nm-openconnect acct-user/nm-openconnect SLOT=0 SRC_URI=mirror://gnome/sources/NetworkManager-openconnect/1.2/NetworkManager-openconnect-1.2.8.tar.xz _eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 4f729d9211b2e3c00a285d6301a557e1 gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=3fee8592d449822b893f69ec9298a6cc +_md5_=9471eeb2d50db71afe43cb68abb4552a diff --git a/metadata/md5-cache/net-vpn/tor-0.4.6.10 b/metadata/md5-cache/net-vpn/tor-0.4.6.10 index 09ddd31eb466..0a458bad6856 100644 --- a/metadata/md5-cache/net-vpn/tor-0.4.6.10 +++ b/metadata/md5-cache/net-vpn/tor-0.4.6.10 @@ -11,5 +11,5 @@ RDEPEND=acct-user/tor acct-group/tor dev-libs/libevent:=[ssl] sys-libs/zlib caps RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.torproject.org/dist/tor-0.4.6.10.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.4.6.10.tar.gz verify-sig? ( https://dist.torproject.org/tor-0.4.6.10.tar.gz.sha256sum https://dist.torproject.org/tor-0.4.6.10.tar.gz.sha256sum.asc ) -_eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 -_md5_=5732e128cede6b352a447d9be66e8f9d +_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 +_md5_=abf3ed1e05c3f1207def4c20627b2c98 diff --git a/metadata/md5-cache/net-vpn/tor-0.4.6.7 b/metadata/md5-cache/net-vpn/tor-0.4.6.7 deleted file mode 100644 index 282505a7726e..000000000000 --- a/metadata/md5-cache/net-vpn/tor-0.4.6.7 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=verify-sig? ( sec-keys/openpgp-keys-tor ) virtual/pkgconfig verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=configure install setup unpack -DEPEND=dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) test? ( dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) || ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) ) -DESCRIPTION=Anonymizing overlay network for TCP -EAPI=7 -HOMEPAGE=https://www.torproject.org/ -IUSE=caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd verify-sig -KEYWORDS=amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~ppc-macos -LICENSE=BSD GPL-2 -RDEPEND=acct-user/tor acct-group/tor dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) selinux? ( sec-policy/selinux-tor ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://www.torproject.org/dist/tor-0.4.6.7.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.4.6.7.tar.gz verify-sig? ( https://dist.torproject.org/tor-0.4.6.7.tar.gz.asc ) -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=1d7b2a11fc21b400c5c72e0b29851dd3 diff --git a/metadata/md5-cache/net-vpn/tor-0.4.6.8 b/metadata/md5-cache/net-vpn/tor-0.4.6.8 deleted file mode 100644 index 194b38f08355..000000000000 --- a/metadata/md5-cache/net-vpn/tor-0.4.6.8 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=verify-sig? ( sec-keys/openpgp-keys-tor ) virtual/pkgconfig verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=configure install setup unpack -DEPEND=dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) test? ( dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) || ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) ) -DESCRIPTION=Anonymizing overlay network for TCP -EAPI=7 -HOMEPAGE=https://www.torproject.org/ -IUSE=caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd verify-sig -KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~ppc-macos -LICENSE=BSD GPL-2 -RDEPEND=acct-user/tor acct-group/tor dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) selinux? ( sec-policy/selinux-tor ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://www.torproject.org/dist/tor-0.4.6.8.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.4.6.8.tar.gz verify-sig? ( https://dist.torproject.org/tor-0.4.6.8.tar.gz.asc ) -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=d4bd8f9bd9b3a8eaf6fe5badb5172361 diff --git a/metadata/md5-cache/net-vpn/tor-0.4.6.9 b/metadata/md5-cache/net-vpn/tor-0.4.6.9 deleted file mode 100644 index 6c922ed8279b..000000000000 --- a/metadata/md5-cache/net-vpn/tor-0.4.6.9 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=verify-sig? ( sec-keys/openpgp-keys-tor ) virtual/pkgconfig verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=configure install setup unpack -DEPEND=dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) test? ( dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) || ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) ) -DESCRIPTION=Anonymizing overlay network for TCP -EAPI=8 -HOMEPAGE=https://www.torproject.org/ -IUSE=caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd verify-sig -KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~ppc-macos -LICENSE=BSD GPL-2 -RDEPEND=acct-user/tor acct-group/tor dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) selinux? ( sec-policy/selinux-tor ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://www.torproject.org/dist/tor-0.4.6.9.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.4.6.9.tar.gz verify-sig? ( https://dist.torproject.org/tor-0.4.6.9.tar.gz.asc ) -_eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 -_md5_=ebf68dd7b18a5a042df1667e2e57e90b diff --git a/metadata/md5-cache/net-vpn/tor-0.4.7.4_alpha b/metadata/md5-cache/net-vpn/tor-0.4.7.4_alpha deleted file mode 100644 index 593a6e1863dc..000000000000 --- a/metadata/md5-cache/net-vpn/tor-0.4.7.4_alpha +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=verify-sig? ( >=sec-keys/openpgp-keys-tor-20220216 ) virtual/pkgconfig verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=configure install setup unpack -DEPEND=dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) test? ( dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) || ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) ) -DESCRIPTION=Anonymizing overlay network for TCP -EAPI=8 -HOMEPAGE=https://www.torproject.org/ -IUSE=caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd verify-sig -LICENSE=BSD GPL-2 -RDEPEND=acct-user/tor acct-group/tor dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) dev-libs/openssl:0=[-bindist(-)] lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) selinux? ( sec-policy/selinux-tor ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://www.torproject.org/dist/tor-0.4.7.4-alpha.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.4.7.4-alpha.tar.gz verify-sig? ( https://dist.torproject.org/tor-0.4.7.4-alpha.tar.gz.sha256sum https://dist.torproject.org/tor-0.4.7.4-alpha.tar.gz.sha256sum.asc ) -_eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 -_md5_=38ad6d9f2b2f8e02b7443a13b9d16d31 diff --git a/metadata/md5-cache/net-vpn/tor-0.4.7.5_alpha b/metadata/md5-cache/net-vpn/tor-0.4.7.5_alpha index dfa8b8ee372f..2c68d7091a3d 100644 --- a/metadata/md5-cache/net-vpn/tor-0.4.7.5_alpha +++ b/metadata/md5-cache/net-vpn/tor-0.4.7.5_alpha @@ -10,5 +10,5 @@ RDEPEND=acct-user/tor acct-group/tor dev-libs/libevent:=[ssl] sys-libs/zlib caps RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.torproject.org/dist/tor-0.4.7.5-alpha.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.4.7.5-alpha.tar.gz verify-sig? ( https://dist.torproject.org/tor-0.4.7.5-alpha.tar.gz.sha256sum https://dist.torproject.org/tor-0.4.7.5-alpha.tar.gz.sha256sum.asc ) -_eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 -_md5_=38ad6d9f2b2f8e02b7443a13b9d16d31 +_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 +_md5_=14f8c99eea4bbf2a58813c390627bb94 diff --git a/metadata/md5-cache/net-vpn/tor-0.4.7.6_rc b/metadata/md5-cache/net-vpn/tor-0.4.7.6_rc index dd2da39c6914..d8aaaa5d7f96 100644 --- a/metadata/md5-cache/net-vpn/tor-0.4.7.6_rc +++ b/metadata/md5-cache/net-vpn/tor-0.4.7.6_rc @@ -10,5 +10,5 @@ RDEPEND=acct-user/tor acct-group/tor dev-libs/libevent:=[ssl] sys-libs/zlib caps RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.torproject.org/dist/tor-0.4.7.6-rc.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.4.7.6-rc.tar.gz verify-sig? ( https://dist.torproject.org/tor-0.4.7.6-rc.tar.gz.sha256sum https://dist.torproject.org/tor-0.4.7.6-rc.tar.gz.sha256sum.asc ) -_eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 -_md5_=38ad6d9f2b2f8e02b7443a13b9d16d31 +_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 +_md5_=14f8c99eea4bbf2a58813c390627bb94 diff --git a/metadata/md5-cache/net-wireless/Manifest.gz b/metadata/md5-cache/net-wireless/Manifest.gz index 6d6d94adbb79..1091c93c8874 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/bluez-5.62-r2 b/metadata/md5-cache/net-wireless/bluez-5.62-r2 deleted file mode 100644 index c9b7f4b36c08..000000000000 --- a/metadata/md5-cache/net-wireless/bluez-5.62-r2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-python/docutils virtual/pkgconfig test? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( >=dev-python/dbus-python-1[python_targets_python3_8(-)] dev-python/pygobject:3[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/dbus-python-1[python_targets_python3_9(-)] dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/dbus-python-1[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] ) ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 virtual/pkgconfig virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=>=dev-libs/glib-2.28: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(-)?] btpclient? ( >=dev-libs/ell-0.39 ) cups? ( net-print/cups:= ) mesh? ( >=dev-libs/ell-0.39 >=dev-libs/json-c-0.13:= sys-libs/readline:0= ) midi? ( media-libs/alsa-lib ) obex? ( dev-libs/libical:= ) readline? ( sys-libs/readline:0= ) systemd? ( sys-apps/systemd ) >=sys-apps/dbus-1.6:= udev? ( >=virtual/udev-172 ) -DESCRIPTION=Bluetooth Tools and System Daemons for Linux -EAPI=8 -HOMEPAGE=http://www.bluez.org -IUSE=btpclient cups doc debug deprecated extra-tools experimental +mesh midi +obex +readline selinux systemd test test-programs +udev python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=amd64 arm arm64 ~hppa ~mips ppc ppc64 ~riscv x86 -LICENSE=GPL-2+ LGPL-2.1+ -RDEPEND=>=dev-libs/glib-2.28: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(-)?] btpclient? ( >=dev-libs/ell-0.39 ) cups? ( net-print/cups:= ) mesh? ( >=dev-libs/ell-0.39 >=dev-libs/json-c-0.13:= sys-libs/readline:0= ) midi? ( media-libs/alsa-lib ) obex? ( dev-libs/libical:= ) readline? ( sys-libs/readline:0= ) systemd? ( sys-apps/systemd ) >=sys-apps/dbus-1.6:= udev? ( >=virtual/udev-172 ) selinux? ( sec-policy/selinux-bluetooth ) test-programs? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( >=dev-python/dbus-python-1[python_targets_python3_8(-)] dev-python/pygobject:3[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/dbus-python-1[python_targets_python3_9(-)] dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/dbus-python-1[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] ) ) -REQUIRED_USE=extra-tools? ( deprecated readline ) test? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) test-programs? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) -RESTRICT=!test? ( test ) -SLOT=0/3 -SRC_URI=https://www.kernel.org/pub/linux/bluetooth/bluez-5.62.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 -_md5_=d179cd4ce3ab5da8279c32f239b6831b diff --git a/metadata/md5-cache/net-wireless/bluez-5.62-r3 b/metadata/md5-cache/net-wireless/bluez-5.62-r3 deleted file mode 100644 index 54f675e8c8f0..000000000000 --- a/metadata/md5-cache/net-wireless/bluez-5.62-r3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-python/docutils virtual/pkgconfig test? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( >=dev-python/dbus-python-1[python_targets_python3_8(-)] dev-python/pygobject:3[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/dbus-python-1[python_targets_python3_9(-)] dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/dbus-python-1[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] ) ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 virtual/pkgconfig virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=>=dev-libs/glib-2.28: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(-)?] btpclient? ( >=dev-libs/ell-0.39 ) cups? ( net-print/cups:= ) mesh? ( >=dev-libs/ell-0.39 >=dev-libs/json-c-0.13:= sys-libs/readline:0= ) midi? ( media-libs/alsa-lib ) obex? ( dev-libs/libical:= ) readline? ( sys-libs/readline:0= ) systemd? ( sys-apps/systemd ) >=sys-apps/dbus-1.6:= udev? ( >=virtual/udev-172 ) -DESCRIPTION=Bluetooth Tools and System Daemons for Linux -EAPI=8 -HOMEPAGE=http://www.bluez.org -IUSE=btpclient cups doc debug deprecated extra-tools experimental +mesh midi +obex +readline selinux systemd test test-programs +udev python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv x86 -LICENSE=GPL-2+ LGPL-2.1+ -RDEPEND=>=dev-libs/glib-2.28: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(-)?] btpclient? ( >=dev-libs/ell-0.39 ) cups? ( net-print/cups:= ) mesh? ( >=dev-libs/ell-0.39 >=dev-libs/json-c-0.13:= sys-libs/readline:0= ) midi? ( media-libs/alsa-lib ) obex? ( dev-libs/libical:= ) readline? ( sys-libs/readline:0= ) systemd? ( sys-apps/systemd ) >=sys-apps/dbus-1.6:= udev? ( >=virtual/udev-172 ) selinux? ( sec-policy/selinux-bluetooth ) test-programs? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( >=dev-python/dbus-python-1[python_targets_python3_8(-)] dev-python/pygobject:3[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/dbus-python-1[python_targets_python3_9(-)] dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/dbus-python-1[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] ) ) -REQUIRED_USE=extra-tools? ( deprecated readline ) test? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) test-programs? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) -RESTRICT=!test? ( test ) -SLOT=0/3 -SRC_URI=https://www.kernel.org/pub/linux/bluetooth/bluez-5.62.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 -_md5_=0ff6638ff275f7876686759e41394d23 diff --git a/metadata/md5-cache/net-wireless/bluez-5.63-r1 b/metadata/md5-cache/net-wireless/bluez-5.63-r1 deleted file mode 100644 index fd76fe981b39..000000000000 --- a/metadata/md5-cache/net-wireless/bluez-5.63-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-python/docutils virtual/pkgconfig test? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( >=dev-python/dbus-python-1[python_targets_python3_8(-)] dev-python/pygobject:3[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/dbus-python-1[python_targets_python3_9(-)] dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/dbus-python-1[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] ) ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 virtual/pkgconfig virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=>=dev-libs/glib-2.28: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(-)?] btpclient? ( >=dev-libs/ell-0.39 ) cups? ( net-print/cups:= ) mesh? ( >=dev-libs/ell-0.39 >=dev-libs/json-c-0.13:= sys-libs/readline:0= ) midi? ( media-libs/alsa-lib ) obex? ( dev-libs/libical:= ) readline? ( sys-libs/readline:0= ) systemd? ( sys-apps/systemd ) >=sys-apps/dbus-1.6:= udev? ( >=virtual/udev-172 ) -DESCRIPTION=Bluetooth Tools and System Daemons for Linux -EAPI=8 -HOMEPAGE=http://www.bluez.org -IUSE=btpclient cups doc debug deprecated extra-tools experimental +mesh midi +obex +readline selinux systemd test test-programs +udev python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~x86 -LICENSE=GPL-2+ LGPL-2.1+ -RDEPEND=>=dev-libs/glib-2.28: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(-)?] btpclient? ( >=dev-libs/ell-0.39 ) cups? ( net-print/cups:= ) mesh? ( >=dev-libs/ell-0.39 >=dev-libs/json-c-0.13:= sys-libs/readline:0= ) midi? ( media-libs/alsa-lib ) obex? ( dev-libs/libical:= ) readline? ( sys-libs/readline:0= ) systemd? ( sys-apps/systemd ) >=sys-apps/dbus-1.6:= udev? ( >=virtual/udev-172 ) selinux? ( sec-policy/selinux-bluetooth ) test-programs? ( python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) python_single_target_python3_8? ( >=dev-python/dbus-python-1[python_targets_python3_8(-)] dev-python/pygobject:3[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/dbus-python-1[python_targets_python3_9(-)] dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/dbus-python-1[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] ) ) -REQUIRED_USE=extra-tools? ( deprecated readline ) test? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) test-programs? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) -RESTRICT=!test? ( test ) -SLOT=0/3 -SRC_URI=https://www.kernel.org/pub/linux/bluetooth/bluez-5.63.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 -_md5_=fff6301748a3cb06d63ba146bebeaefe diff --git a/metadata/md5-cache/sci-astronomy/Manifest.gz b/metadata/md5-cache/sci-astronomy/Manifest.gz index f6283b41c653..0c44ad2c1dff 100644 Binary files a/metadata/md5-cache/sci-astronomy/Manifest.gz and b/metadata/md5-cache/sci-astronomy/Manifest.gz differ diff --git a/metadata/md5-cache/sci-astronomy/stellarium-0.21.2 b/metadata/md5-cache/sci-astronomy/stellarium-0.22.1 similarity index 52% rename from metadata/md5-cache/sci-astronomy/stellarium-0.21.2 rename to metadata/md5-cache/sci-astronomy/stellarium-0.22.1 index bb97392bf110..16c19e4b0166 100644 --- a/metadata/md5-cache/sci-astronomy/stellarium-0.21.2 +++ b/metadata/md5-cache/sci-astronomy/stellarium-0.22.1 @@ -1,15 +1,15 @@ BDEPEND=|| ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) doc? ( app-doc/doxygen[dot] ) nls? ( dev-qt/linguist-tools:5 ) dev-util/ninja >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=dev-libs/qtcompress:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtscript:5 dev-qt/qtwidgets:5 media-fonts/dejavu sys-libs/zlib virtual/opengl gps? ( dev-qt/qtpositioning:5 dev-qt/qtserialport:5 sci-geosciences/gpsd:=[cxx] ) media? ( dev-qt/qtmultimedia:5[widgets] ) telescope? ( dev-qt/qtserialport:5 sci-libs/indilib:= ) dev-qt/qtconcurrent:5 test? ( dev-qt/qttest:5 ) +DEPEND=dev-libs/qtcompress:= dev-qt/qtcharts:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtscript:5 dev-qt/qtwidgets:5 media-fonts/dejavu sys-libs/zlib virtual/opengl gps? ( dev-qt/qtpositioning:5 dev-qt/qtserialport:5 sci-geosciences/gpsd:=[cxx] ) media? ( dev-qt/qtmultimedia:5[widgets] ) telescope? ( dev-qt/qtserialport:5 sci-libs/indilib:= ) webengine? ( dev-qt/qtwebengine:5[widgets] ) dev-qt/qtconcurrent:5 test? ( dev-qt/qttest:5 ) DESCRIPTION=3D photo-realistic skies in real time EAPI=8 HOMEPAGE=https://stellarium.org/ -IUSE=debug deep-sky doc gps media nls stars telescope test test -KEYWORDS=amd64 ppc ppc64 ~riscv x86 +IUSE=debug deep-sky doc gps media nls stars telescope test webengine test +KEYWORDS=~amd64 ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ SGI-B-2.0 -RDEPEND=dev-libs/qtcompress:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtscript:5 dev-qt/qtwidgets:5 media-fonts/dejavu sys-libs/zlib virtual/opengl gps? ( dev-qt/qtpositioning:5 dev-qt/qtserialport:5 sci-geosciences/gpsd:=[cxx] ) media? ( dev-qt/qtmultimedia:5[widgets] ) telescope? ( dev-qt/qtserialport:5 sci-libs/indilib:= ) +RDEPEND=dev-libs/qtcompress:= dev-qt/qtcharts:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtscript:5 dev-qt/qtwidgets:5 media-fonts/dejavu sys-libs/zlib virtual/opengl gps? ( dev-qt/qtpositioning:5 dev-qt/qtserialport:5 sci-geosciences/gpsd:=[cxx] ) media? ( dev-qt/qtmultimedia:5[widgets] ) telescope? ( dev-qt/qtserialport:5 sci-libs/indilib:= ) webengine? ( dev-qt/qtwebengine:5[widgets] ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -SRC_URI=https://github.com/Stellarium/stellarium/releases/download/v0.21.2/stellarium-0.21.2.tar.gz deep-sky? ( https://github.com/Stellarium/stellarium-data/releases/download/dso-3.13/catalog-3.13.dat -> stellarium-dso-catalog-3.13.dat ) doc? ( https://github.com/Stellarium/stellarium/releases/download/v0.21.2/stellarium_user_guide-0.21.2-1.pdf ) stars? ( https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_4_1v0_2.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_5_2v0_1.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_6_2v0_1.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_7_2v0_1.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_8_2v0_1.cat ) +SRC_URI=https://github.com/Stellarium/stellarium/releases/download/v0.22.1/stellarium-0.22.1.tar.gz deep-sky? ( https://github.com/Stellarium/stellarium-data/releases/download/dso-3.15/catalog-3.15.dat -> stellarium-dso-catalog-3.15.dat ) doc? ( https://github.com/Stellarium/stellarium/releases/download/v0.22.1/stellarium_user_guide-0.22.1-1.pdf ) stars? ( https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_4_1v0_2.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_5_2v0_1.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_6_2v0_1.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_7_2v0_1.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_8_2v0_1.cat ) _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 desktop c0d27bf73aa08ca05b663dbd31fbef28 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=fe79c72415565e5ff8982cff21b2acfb +_md5_=c198fd3524d2040495d3ae75156192c3 diff --git a/metadata/md5-cache/sci-biology/GBrowse-2.48-r1 b/metadata/md5-cache/sci-biology/GBrowse-2.48-r1 deleted file mode 100644 index 962321953af7..000000000000 --- a/metadata/md5-cache/sci-biology/GBrowse-2.48-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare prerm setup test unpack -DEPEND=dev-perl/Module-Build dev-perl/Capture-Tiny !=sci-biology/bioperl-1.6.9 >=dev-perl/Bio-Graphics-2.09 >=dev-perl/GD-2.07 >=dev-perl/CGI-Session-4.02 dev-perl/IO-String dev-perl/JSON dev-perl/libwww-perl dev-perl/Statistics-Descriptive !minimal? ( dev-perl/Bio-Das >=dev-perl/Bio-SamTools-1.20 dev-perl/Crypt-SSLeay dev-perl/DB_File-Lock dev-perl/DBI mysql? ( dev-perl/DBD-mysql ) postgres? ( dev-perl/DBD-Pg ) sqlite? ( dev-perl/DBD-SQLite ) dev-perl/FCGI dev-perl/File-NFSLock dev-perl/GD-SVG dev-perl/Net-OpenID-Consumer dev-perl/Net-SMTP-SSL ) dev-lang/perl:=[-build(-)] app-admin/webapp-config -DESCRIPTION=Generic Model Organism Database Project - The Generic Genome Browser -EAPI=5 -HOMEPAGE=http://gmod.org/wiki/GBrowse -IUSE=minimal mysql postgres +sqlite vhosts -KEYWORDS=~amd64 ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=!=sci-biology/bioperl-1.6.9 >=dev-perl/Bio-Graphics-2.09 >=dev-perl/GD-2.07 >=dev-perl/CGI-Session-4.02 dev-perl/IO-String dev-perl/JSON dev-perl/libwww-perl dev-perl/Statistics-Descriptive !minimal? ( dev-perl/Bio-Das >=dev-perl/Bio-SamTools-1.20 dev-perl/Crypt-SSLeay dev-perl/DB_File-Lock dev-perl/DBI mysql? ( dev-perl/DBD-mysql ) postgres? ( dev-perl/DBD-Pg ) sqlite? ( dev-perl/DBD-SQLite ) dev-perl/FCGI dev-perl/File-NFSLock dev-perl/GD-SVG dev-perl/Net-OpenID-Consumer dev-perl/Net-SMTP-SSL ) dev-lang/perl:=[-build(-)] app-admin/webapp-config -SLOT=0 -SRC_URI=mirror://cpan/authors/id/L/LD/LDS/GBrowse-2.48.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 8eed4e2982026c684ff7c19cd4c88ed0 preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 697382d119fd3d195f110b7979184285 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 webapp d872f28d7595b70dd46545199ef35fb0 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=088b19055886b41078acab0f96df204a diff --git a/metadata/md5-cache/sci-biology/Manifest.gz b/metadata/md5-cache/sci-biology/Manifest.gz index 55546ae7b000..494796144687 100644 Binary files a/metadata/md5-cache/sci-biology/Manifest.gz and b/metadata/md5-cache/sci-biology/Manifest.gz differ diff --git a/metadata/md5-cache/sci-electronics/Manifest.gz b/metadata/md5-cache/sci-electronics/Manifest.gz index e3790ef0eed1..5a984394ecf9 100644 Binary files a/metadata/md5-cache/sci-electronics/Manifest.gz and b/metadata/md5-cache/sci-electronics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-electronics/kicad-6.0.4 b/metadata/md5-cache/sci-electronics/kicad-6.0.4 index dc9d0fc1eb26..21c0cdc2be3d 100644 --- a/metadata/md5-cache/sci-electronics/kicad-6.0.4 +++ b/metadata/md5-cache/sci-electronics/kicad-6.0.4 @@ -1,15 +1,15 @@ BDEPEND=>=dev-lang/swig-3.0 doc? ( app-doc/doxygen ) dev-util/ninja >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup test unpack -DEPEND=!sci-electronics/kicad-i18n >=dev-libs/boost-1.61:=[context,nls] media-libs/freeglut media-libs/glew:0= >=media-libs/glm-0.9.9.1 media-libs/mesa[X(+)] >=x11-libs/cairo-1.8.8:= >=x11-libs/pixman-0.30 x11-libs/wxGTK:3.0-gtk3[X,opengl] python_single_target_python3_8? ( >=dev-libs/boost-1.61:=[context,nls,python,python_targets_python3_8(-)] dev-python/wxpython:4.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-libs/boost-1.61:=[context,nls,python,python_targets_python3_9(-)] dev-python/wxpython:4.0[python_targets_python3_9(-)] ) python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) ngspice? ( >sci-electronics/ngspice-27[shared] ) nls? ( sys-devel/gettext ) occ? ( >=sci-libs/opencascade-7.3.0:0= ) +DEPEND=!sci-electronics/kicad-i18n >=dev-libs/boost-1.61:=[context,nls] media-libs/freeglut media-libs/glew:0= >=media-libs/glm-0.9.9.1 media-libs/mesa[X(+)] >=x11-libs/cairo-1.8.8:= >=x11-libs/pixman-0.30 x11-libs/wxGTK:3.0-gtk3[X,opengl] python_single_target_python3_8? ( >=dev-libs/boost-1.61:=[context,nls,python,python_targets_python3_8(-)] dev-python/wxpython:4.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-libs/boost-1.61:=[context,nls,python,python_targets_python3_9(-)] dev-python/wxpython:4.0[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-libs/boost-1.61:=[context,nls,python,python_targets_python3_10(-)] dev-python/wxpython:4.0[python_targets_python3_10(-)] ) python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) ngspice? ( >sci-electronics/ngspice-27[shared] ) nls? ( sys-devel/gettext ) occ? ( >=sci-libs/opencascade-7.3.0:0= ) DESCRIPTION=Electronic Schematic and PCB design tools EAPI=8 HOMEPAGE=https://www.kicad.org -IUSE=doc examples +ngspice nls openmp +occ +pcm python_single_target_python3_8 python_single_target_python3_9 +IUSE=doc examples +ngspice nls openmp +occ +pcm python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 KEYWORDS=~amd64 ~arm64 ~riscv ~x86 LICENSE=GPL-2+ GPL-3+ Boost-1.0 BSD -RDEPEND=!sci-electronics/kicad-i18n >=dev-libs/boost-1.61:=[context,nls] media-libs/freeglut media-libs/glew:0= >=media-libs/glm-0.9.9.1 media-libs/mesa[X(+)] >=x11-libs/cairo-1.8.8:= >=x11-libs/pixman-0.30 x11-libs/wxGTK:3.0-gtk3[X,opengl] python_single_target_python3_8? ( >=dev-libs/boost-1.61:=[context,nls,python,python_targets_python3_8(-)] dev-python/wxpython:4.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-libs/boost-1.61:=[context,nls,python,python_targets_python3_9(-)] dev-python/wxpython:4.0[python_targets_python3_9(-)] ) python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) ngspice? ( >sci-electronics/ngspice-27[shared] ) nls? ( sys-devel/gettext ) occ? ( >=sci-libs/opencascade-7.3.0:0= ) sci-electronics/electronics-menu -REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) +RDEPEND=!sci-electronics/kicad-i18n >=dev-libs/boost-1.61:=[context,nls] media-libs/freeglut media-libs/glew:0= >=media-libs/glm-0.9.9.1 media-libs/mesa[X(+)] >=x11-libs/cairo-1.8.8:= >=x11-libs/pixman-0.30 x11-libs/wxGTK:3.0-gtk3[X,opengl] python_single_target_python3_8? ( >=dev-libs/boost-1.61:=[context,nls,python,python_targets_python3_8(-)] dev-python/wxpython:4.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-libs/boost-1.61:=[context,nls,python,python_targets_python3_9(-)] dev-python/wxpython:4.0[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-libs/boost-1.61:=[context,nls,python,python_targets_python3_10(-)] dev-python/wxpython:4.0[python_targets_python3_10(-)] ) python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) ngspice? ( >sci-electronics/ngspice-27[shared] ) nls? ( sys-devel/gettext ) occ? ( >=sci-libs/opencascade-7.3.0:0= ) sci-electronics/electronics-menu +REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://gitlab.com/kicad/code/kicad/-/archive/6.0.4/kicad-6.0.4.tar.gz -> kicad-6.0.4.tar.gz _eclasses_=check-reqs 82234bf011d5453330773cd5fc3f0199 cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=f823dcebb78d95600055c64d05727050 +_md5_=77a2d4aa5cb5ce4b50e3c59320d90f3b diff --git a/metadata/md5-cache/sci-electronics/kicad-9999 b/metadata/md5-cache/sci-electronics/kicad-9999 index 64e2bccd7379..cb5c0f3405c0 100644 --- a/metadata/md5-cache/sci-electronics/kicad-9999 +++ b/metadata/md5-cache/sci-electronics/kicad-9999 @@ -11,4 +11,4 @@ RDEPEND=!sci-electronics/kicad-i18n >=dev-libs/boost-1.61:=[context,nls] media-l REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) SLOT=0 _eclasses_=check-reqs 82234bf011d5453330773cd5fc3f0199 cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=09341d3691dc1d9da9d22ab71c93224c +_md5_=da1d9edf70ee9fc15a138d7c63ba0a58 diff --git a/metadata/md5-cache/sci-electronics/klayout-0.27 b/metadata/md5-cache/sci-electronics/klayout-0.27 index 22db415cb6b4..2ceeae949f9c 100644 --- a/metadata/md5-cache/sci-electronics/klayout-0.27 +++ b/metadata/md5-cache/sci-electronics/klayout-0.27 @@ -11,5 +11,5 @@ RDEPEND=dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5[w REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) || ( ruby_targets_ruby26 ) SLOT=0 SRC_URI=https://www.klayout.org/downloads/source/klayout-0.27.tar.gz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c52b652742bd3de97d72ac8ae0a7bcf0 diff --git a/metadata/md5-cache/sci-electronics/klayout-0.27.3 b/metadata/md5-cache/sci-electronics/klayout-0.27.3 index 4c47d800cbc3..1008f6846561 100644 --- a/metadata/md5-cache/sci-electronics/klayout-0.27.3 +++ b/metadata/md5-cache/sci-electronics/klayout-0.27.3 @@ -11,5 +11,5 @@ RDEPEND=dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5[w REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) || ( ruby_targets_ruby27 ) SLOT=0 SRC_URI=https://www.klayout.org/downloads/source/klayout-0.27.3.tar.gz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f239887cb4045139582a3e5a9671489b diff --git a/metadata/md5-cache/sci-electronics/klayout-0.27.7 b/metadata/md5-cache/sci-electronics/klayout-0.27.7 index db025ff94687..178420249ae9 100644 --- a/metadata/md5-cache/sci-electronics/klayout-0.27.7 +++ b/metadata/md5-cache/sci-electronics/klayout-0.27.7 @@ -11,5 +11,5 @@ RDEPEND=dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5[w REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) || ( ruby_targets_ruby27 ) SLOT=0 SRC_URI=https://www.klayout.org/downloads/source/klayout-0.27.7.tar.gz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=eda4d5d2b589862f9a54b438d3675122 diff --git a/metadata/md5-cache/sci-electronics/klayout-9999 b/metadata/md5-cache/sci-electronics/klayout-9999 index fd538c5cdf3e..6fdd57a014ed 100644 --- a/metadata/md5-cache/sci-electronics/klayout-9999 +++ b/metadata/md5-cache/sci-electronics/klayout-9999 @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5[widgets] dev-qt/qtnetwork:5[ssl] dev-qt/qtprintsupport:5 dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 dev-qt/qtxmlpatterns:5 sys-libs/zlib python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) || ( ruby_targets_ruby27 ) SLOT=0 -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=20d4a7f3be6413a87537df5e5760cb99 diff --git a/metadata/md5-cache/sci-geosciences/Manifest.gz b/metadata/md5-cache/sci-geosciences/Manifest.gz index 91fa79d7df4f..b4ebf6dd1dd6 100644 Binary files a/metadata/md5-cache/sci-geosciences/Manifest.gz and b/metadata/md5-cache/sci-geosciences/Manifest.gz differ diff --git a/metadata/md5-cache/sci-geosciences/gpxsee-10.6 b/metadata/md5-cache/sci-geosciences/gpxsee-10.6 new file mode 100644 index 000000000000..a94da57b2b0a --- /dev/null +++ b/metadata/md5-cache/sci-geosciences/gpxsee-10.6 @@ -0,0 +1,13 @@ +BDEPEND=dev-qt/linguist-tools:5 +DEFINED_PHASES=compile install postinst postrm preinst prepare +DEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtconcurrent:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5 dev-qt/qtpositioning:5 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=A viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea files +EAPI=7 +HOMEPAGE=https://www.gpxsee.org/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtconcurrent:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5 dev-qt/qtpositioning:5 +SLOT=0 +SRC_URI=https://github.com/tumic0/GPXSee/archive/10.6.tar.gz -> gpxsee-10.6.tar.gz +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 multilib 4a33c9008e5ee30cb8840a3fdc24df2b plocale 7ce00136a77130df46fbbd5966f98a61 qmake-utils f5eb2f69fffe94292aaaf802fb21c8d1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=d0af26b65d873492fffe03bc504ff266 diff --git a/metadata/md5-cache/sci-geosciences/grass-8.0.1-r1 b/metadata/md5-cache/sci-geosciences/grass-8.0.1-r1 index 25e2c021834f..116631ffe2d4 100644 --- a/metadata/md5-cache/sci-geosciences/grass-8.0.1-r1 +++ b/metadata/md5-cache/sci-geosciences/grass-8.0.1-r1 @@ -12,4 +12,4 @@ REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 SLOT=0/8.0 SRC_URI=https://grass.osgeo.org/grass80/source/grass-8.0.1.tar.gz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wxwidgets c09e9b94378cadaf6ef86ec1534c0fd6 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=9afce51641bfa967523c028bee518ca7 +_md5_=281d6fbfcab4d89fcb6b8a937dea6fc3 diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz index df6c2b0d3a0c..cf235e7e6311 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/libsigrok-0.5.2-r2 b/metadata/md5-cache/sci-libs/libsigrok-0.5.2-r2 index 7668d643d0b8..b63a231417d4 100644 --- a/metadata/md5-cache/sci-libs/libsigrok-0.5.2-r2 +++ b/metadata/md5-cache/sci-libs/libsigrok-0.5.2-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=java? ( cxx ) python? ( cxx || ( python_targets_python3_8 python_ta RESTRICT=!test? ( test ) SLOT=0/4 SRC_URI=https://sigrok.org/download/source/libsigrok/libsigrok-0.5.2.tar.gz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=f4846f284983e8c4a5683a6233d289df diff --git a/metadata/md5-cache/sci-libs/libsigrok-0.5.2-r3 b/metadata/md5-cache/sci-libs/libsigrok-0.5.2-r3 index dc5527e31e5c..76520799dd3f 100644 --- a/metadata/md5-cache/sci-libs/libsigrok-0.5.2-r3 +++ b/metadata/md5-cache/sci-libs/libsigrok-0.5.2-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=java? ( cxx ) python? ( cxx || ( python_targets_python3_8 python_ta RESTRICT=!test? ( test ) SLOT=0/4 SRC_URI=https://sigrok.org/download/source/libsigrok/libsigrok-0.5.2.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=34ec9317480ea1ccd30693aaf2ef8800 diff --git a/metadata/md5-cache/sci-libs/libsigrok-9999 b/metadata/md5-cache/sci-libs/libsigrok-9999 index 0e50b7e01412..43e460642e41 100644 --- a/metadata/md5-cache/sci-libs/libsigrok-9999 +++ b/metadata/md5-cache/sci-libs/libsigrok-9999 @@ -11,5 +11,5 @@ RDEPEND=java? ( >=virtual/jre-1.8:* ) !static-libs? ( >=dev-libs/glib-2.32.0 >=d REQUIRED_USE=java? ( cxx ) python? ( cxx || ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) ) ruby? ( cxx || ( ruby_targets_ruby26 ) ) RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=fa8fe0a64e585a118576448c1d086815 diff --git a/metadata/md5-cache/sci-mathematics/Manifest.gz b/metadata/md5-cache/sci-mathematics/Manifest.gz index 8a0d22cb2d09..9d6281ac6c46 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/agda-2.6.1.2 b/metadata/md5-cache/sci-mathematics/agda-2.6.1.2 index 9d462154cf4b..479e09e99a5a 100644 --- a/metadata/md5-cache/sci-mathematics/agda-2.6.1.2 +++ b/metadata/md5-cache/sci-mathematics/agda-2.6.1.2 @@ -10,5 +10,5 @@ PDEPEND=stdlib? ( ~sci-mathematics/agda-stdlib-2.6.1.2.1.4 ) RDEPEND=>=dev-haskell/aeson-1.1.2.0:=[profile?] =dev-haskell/async-2.2:=[profile?] =dev-haskell/blaze-html-0.8:=[profile?] =dev-haskell/boxes-0.1.3:=[profile?] =dev-haskell/data-hash-0.2.0.0:=[profile?] =dev-haskell/edit-distance-0.2.1.2:=[profile?] =dev-haskell/equivalence-0.3.2:=[profile?] =dev-haskell/exceptions-0.8:=[profile?] =dev-haskell/geniplate-mirror-0.6.0.6:=[profile?] =dev-haskell/gitrev-1.3.1:=[profile?] =dev-haskell/hashable-1.2.1.0:=[profile?] =dev-haskell/hashtables-1.2.0.2:=[profile?] =dev-haskell/haskeline-0.7.2.3:=[profile?] =dev-haskell/ieee754-0.7.8:=[profile?] =dev-haskell/mtl-2.2.1:=[profile?] =dev-haskell/murmur-hash-0.1:=[profile?] =dev-haskell/regex-tdfa-1.3.1.0:=[profile?] =dev-haskell/split-0.2.0.0:=[profile?] =dev-haskell/stm-2.4.4:=[profile?] =dev-haskell/strict-0.3.2:=[profile?] =dev-haskell/text-1.2.3.1:=[profile?] =dev-haskell/unordered-containers-0.2.5.0:=[profile?] =dev-haskell/uri-encode-1.5.0.4:=[profile?] =dev-haskell/zlib-0.6:=[profile?] =dev-lang/ghc-8.0.2:= enable-cluster-counting? ( >=dev-haskell/text-icu-0.7:=[profile?] =app-editors/emacs-23.1:* app-emacs/haskell-mode ) SLOT=0/2.6.1.2 SRC_URI=https://hackage.haskell.org/package/Agda-2.6.1.2/Agda-2.6.1.2.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff ghc-package 6344fef4405bc9a6cca6a0a39eee4a32 haskell-cabal ebeaf198ca6bf70c43b10488b7cdcdcf multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff ghc-package 6344fef4405bc9a6cca6a0a39eee4a32 haskell-cabal ebeaf198ca6bf70c43b10488b7cdcdcf multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=1f3460c80b1eeef5a25db800e151e56d diff --git a/metadata/md5-cache/sci-mathematics/agda-stdlib-2.6.1.2.1.4 b/metadata/md5-cache/sci-mathematics/agda-stdlib-2.6.1.2.1.4 index d5babdfdc347..078d1fcf6187 100644 --- a/metadata/md5-cache/sci-mathematics/agda-stdlib-2.6.1.2.1.4 +++ b/metadata/md5-cache/sci-mathematics/agda-stdlib-2.6.1.2.1.4 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=sci-mathematics/agda-2.6.1.2:=[profile?] SLOT=0 SRC_URI=https://github.com/agda/agda-stdlib/archive/v1.4.tar.gz -> agda-stdlib-2.6.1.2.1.4.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff ghc-package 6344fef4405bc9a6cca6a0a39eee4a32 haskell-cabal ebeaf198ca6bf70c43b10488b7cdcdcf multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff ghc-package 6344fef4405bc9a6cca6a0a39eee4a32 haskell-cabal ebeaf198ca6bf70c43b10488b7cdcdcf multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=592624cf25722d12d36034a11cf539f8 diff --git a/metadata/md5-cache/sci-mathematics/alectryon-1.4.0-r1 b/metadata/md5-cache/sci-mathematics/alectryon-1.4.0-r1 index 67968308ac2e..4c9c107fc30e 100644 --- a/metadata/md5-cache/sci-mathematics/alectryon-1.4.0-r1 +++ b/metadata/md5-cache/sci-mathematics/alectryon-1.4.0-r1 @@ -11,5 +11,5 @@ RDEPEND=dev-python/beautifulsoup4[python_targets_python3_8(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) SLOT=0 SRC_URI=https://github.com/cpitclaudel/alectryon/archive/v1.4.0.tar.gz -> alectryon-1.4.0.tar.gz -_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d elisp-common f9c72486dbcb18b633c9d0949211d86e multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d elisp-common e7aaa047873789f549ea3df2f04b2145 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=edb68aaf22f745e31752e00a3ff3a7db diff --git a/metadata/md5-cache/sci-mathematics/coq-serapi-0.15.0-r1 b/metadata/md5-cache/sci-mathematics/coq-serapi-0.15.0-r1 index a1026774ef14..45f50c9deb8b 100644 --- a/metadata/md5-cache/sci-mathematics/coq-serapi-0.15.0-r1 +++ b/metadata/md5-cache/sci-mathematics/coq-serapi-0.15.0-r1 @@ -11,5 +11,5 @@ RDEPEND=>=sci-mathematics/coq-8.15.0:= >=dev-ml/ppx_sexp_conv-0.13.0:= coq-serapi-0.15.0.tar.gz -_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common f9c72486dbcb18b633c9d0949211d86e multiprocessing 61c959fc55c15c00bbb1079d6a71370b +_eclasses_=dune c8f275f00adf2380fe0a57d8a249885c elisp-common e7aaa047873789f549ea3df2f04b2145 multiprocessing 61c959fc55c15c00bbb1079d6a71370b _md5_=aa22554fb5cf6418da88ccc2ab89bd92 diff --git a/metadata/md5-cache/sci-mathematics/fricas-1.3.6 b/metadata/md5-cache/sci-mathematics/fricas-1.3.6 index b35218a64dbd..6cc1bc093ae0 100644 --- a/metadata/md5-cache/sci-mathematics/fricas-1.3.6 +++ b/metadata/md5-cache/sci-mathematics/fricas-1.3.6 @@ -10,5 +10,5 @@ RDEPEND=X? ( x11-libs/libXpm x11-libs/libICE ) emacs? ( >=app-editors/emacs-23.1 RESTRICT=strip SLOT=0 SRC_URI=mirror://sourceforge/fricas/fricas-1.3.6-full.tar.bz2 -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=e6cab1953113fb8f580268ea62aa9803 diff --git a/metadata/md5-cache/sci-mathematics/fricas-1.3.7 b/metadata/md5-cache/sci-mathematics/fricas-1.3.7 index 03045caf9ada..87c996293a6b 100644 --- a/metadata/md5-cache/sci-mathematics/fricas-1.3.7 +++ b/metadata/md5-cache/sci-mathematics/fricas-1.3.7 @@ -10,5 +10,5 @@ RDEPEND=X? ( x11-libs/libXpm x11-libs/libICE ) emacs? ( >=app-editors/emacs-23.1 RESTRICT=strip SLOT=0 SRC_URI=mirror://sourceforge/fricas/fricas-1.3.7-full.tar.bz2 -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3dca7f89ec651d65bce6ca05b4fce110 diff --git a/metadata/md5-cache/sci-mathematics/geomview-1.9.5-r1 b/metadata/md5-cache/sci-mathematics/geomview-1.9.5-r1 index 258dfe570a5c..aacc332aaec9 100644 --- a/metadata/md5-cache/sci-mathematics/geomview-1.9.5-r1 +++ b/metadata/md5-cache/sci-mathematics/geomview-1.9.5-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=virtual/glu virtual/opengl x11-libs/motif:0 emacs? ( >=app-editors/emacs-23.1:* ) zlib? ( sys-libs/zlib ) x11-misc/xdg-utils SLOT=0 SRC_URI=mirror://sourceforge/geomview/geomview-1.9.5.tar.bz2 https://dev.gentoo.org/~jlec/distfiles/geomview.png.tar -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=1832af9bce2969c9d5ec5ff33060e9d3 diff --git a/metadata/md5-cache/sci-mathematics/gretl-2021d b/metadata/md5-cache/sci-mathematics/gretl-2021d index fc7d0cac7ffd..fc5662c65d4a 100644 --- a/metadata/md5-cache/sci-mathematics/gretl-2021d +++ b/metadata/md5-cache/sci-mathematics/gretl-2021d @@ -11,5 +11,5 @@ RDEPEND=dev-libs/glib:2= >=dev-libs/gmp-4.0.1:0= dev-libs/json-glib:0= dev-libs/ REQUIRED_USE=emacs? ( gtk ) SLOT=0/40 SRC_URI=mirror://sourceforge/project/gretl/gretl/2021d/gretl-2021d.tar.xz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=691d4864e48fe91f8c339691d3f76868 diff --git a/metadata/md5-cache/sci-mathematics/maxima-5.42.1-r1 b/metadata/md5-cache/sci-mathematics/maxima-5.42.1-r1 index 4e4dc1172982..9b4cea0d1055 100644 --- a/metadata/md5-cache/sci-mathematics/maxima-5.42.1-r1 +++ b/metadata/md5-cache/sci-mathematics/maxima-5.42.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=!app-emacs/imaxima virtual/libcrypt:= X? ( x11-misc/xdg-utils sci-visualization/gnuplot[gd] tk? ( dev-lang/tk:0 ) ) emacs? ( >=app-editors/emacs-23.1:* virtual/latex-base app-emacs/auctex app-text/ghostscript-gpl dev-texlive/texlive-latexrecommended ) clisp? ( dev-lisp/clisp:= ) clozurecl? ( dev-lisp/clozurecl:= app-misc/rlwrap ) ecls? ( dev-lisp/ecls:= app-misc/rlwrap ) gcl? ( dev-lisp/gcl:= ) cmucl? ( dev-lisp/cmucl:= app-misc/rlwrap ) sbcl? ( dev-lisp/sbcl:= app-misc/rlwrap ) !clisp? ( !clozurecl? ( !ecls? ( !gcl? ( !cmucl? ( !sbcl? ( arm? ( dev-lisp/gcl:= ) !arm? ( dev-lisp/sbcl:= app-misc/rlwrap ) ) ) ) ) ) ) SLOT=0 SRC_URI=mirror://sourceforge/maxima/maxima-5.42.1.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=7101a0ceb8e755f412c111d62efcf9ee diff --git a/metadata/md5-cache/sci-mathematics/maxima-5.45.1-r2 b/metadata/md5-cache/sci-mathematics/maxima-5.45.1-r2 index 9feb94e83734..94491d5c9cd3 100644 --- a/metadata/md5-cache/sci-mathematics/maxima-5.45.1-r2 +++ b/metadata/md5-cache/sci-mathematics/maxima-5.45.1-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/maxima/maxima-5.45.1.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=b5e459f501b7bd44ea4fc5ab8580ddd1 diff --git a/metadata/md5-cache/sci-mathematics/maxima-5.46.0 b/metadata/md5-cache/sci-mathematics/maxima-5.46.0 index f82c22fd1e79..786a642889dc 100644 --- a/metadata/md5-cache/sci-mathematics/maxima-5.46.0 +++ b/metadata/md5-cache/sci-mathematics/maxima-5.46.0 @@ -12,5 +12,5 @@ REQUIRED_USE=vtk? ( ^^ ( python_single_target_python3_8 python_single_target_pyt RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/maxima/maxima-5.46.0.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=82d127906353798cdd792be7b62ac7ca diff --git a/metadata/md5-cache/sci-mathematics/pspp-1.2.0-r1 b/metadata/md5-cache/sci-mathematics/pspp-1.2.0-r1 index e841d9106760..ed91c2c3f230 100644 --- a/metadata/md5-cache/sci-mathematics/pspp-1.2.0-r1 +++ b/metadata/md5-cache/sci-mathematics/pspp-1.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=test? ( cairo ) RESTRICT=!test? ( test ) SLOT=0/1.2.0 SRC_URI=mirror://gnu/pspp/pspp-1.2.0.tar.gz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=5a1ef997b5a067861c3946ad29582b2a diff --git a/metadata/md5-cache/sci-mathematics/singular-4.2.0_p1 b/metadata/md5-cache/sci-mathematics/singular-4.2.0_p1 index a6f13d7cb03e..04ec91457dbd 100644 --- a/metadata/md5-cache/sci-mathematics/singular-4.2.0_p1 +++ b/metadata/md5-cache/sci-mathematics/singular-4.2.0_p1 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2 GPL-3 RDEPEND=dev-libs/gmp:0 dev-libs/ntl:= emacs? ( >=app-editors/emacs-23.1:* ) sci-mathematics/flint sci-libs/cddlib dev-lang/perl readline? ( sys-libs/readline ) SLOT=0 SRC_URI=ftp://jim.mathematik.uni-kl.de/pub/Math/Singular/SOURCES/4-2-0/singular-4.2.0p1.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=91d26230905826486e83bb27e60570dc diff --git a/metadata/md5-cache/sci-mathematics/singular-4.2.0_p3-r1 b/metadata/md5-cache/sci-mathematics/singular-4.2.0_p3-r1 index f70f441b5b5b..172389e28dc9 100644 --- a/metadata/md5-cache/sci-mathematics/singular-4.2.0_p3-r1 +++ b/metadata/md5-cache/sci-mathematics/singular-4.2.0_p3-r1 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2 GPL-3 RDEPEND=dev-libs/gmp:0 dev-libs/ntl:= emacs? ( >=app-editors/emacs-23.1:* ) sci-mathematics/flint sci-libs/cddlib dev-lang/perl readline? ( sys-libs/readline ) SLOT=0 SRC_URI=ftp://jim.mathematik.uni-kl.de/pub/Math/Singular/SOURCES/4-2-0/singular-4.2.0p3.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=98108dc7ef87bc09ebda9784899a7177 diff --git a/metadata/md5-cache/sci-mathematics/singular-4.2.1 b/metadata/md5-cache/sci-mathematics/singular-4.2.1 index c0628e082e85..22b91679c1c7 100644 --- a/metadata/md5-cache/sci-mathematics/singular-4.2.1 +++ b/metadata/md5-cache/sci-mathematics/singular-4.2.1 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2 GPL-3 RDEPEND=dev-libs/gmp:0 dev-libs/ntl:= emacs? ( >=app-editors/emacs-23.1:* ) sci-mathematics/flint sci-libs/cddlib dev-lang/perl readline? ( sys-libs/readline ) SLOT=0 SRC_URI=ftp://jim.mathematik.uni-kl.de/pub/Math/Singular/SOURCES/4-2-1/singular-4.2.1.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=c167bd991ffcdbbce70ab54104853305 diff --git a/metadata/md5-cache/sci-mathematics/singular-4.2.1_p3-r1 b/metadata/md5-cache/sci-mathematics/singular-4.2.1_p3-r1 index b3e95a4ed041..fd9d3195d93c 100644 --- a/metadata/md5-cache/sci-mathematics/singular-4.2.1_p3-r1 +++ b/metadata/md5-cache/sci-mathematics/singular-4.2.1_p3-r1 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2 GPL-3 RDEPEND=dev-lang/perl dev-libs/gmp:0 dev-libs/ntl:= sci-libs/cddlib sci-mathematics/flint emacs? ( >=app-editors/emacs-23.1:* ) polymake? ( sci-mathematics/polymake ) readline? ( sys-libs/readline ) SLOT=0 SRC_URI=ftp://jim.mathematik.uni-kl.de/pub/Math/Singular/SOURCES/4-2-1/singular-4.2.1p3.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1f34beeb0c1467e9927eaa3231c267b4 diff --git a/metadata/md5-cache/sci-mathematics/twelf-1.7.1-r2 b/metadata/md5-cache/sci-mathematics/twelf-1.7.1-r2 index 3ad820ad3bb9..635fea006701 100644 --- a/metadata/md5-cache/sci-mathematics/twelf-1.7.1-r2 +++ b/metadata/md5-cache/sci-mathematics/twelf-1.7.1-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/mlton-20180207 doc? ( virtual/latex-base app-text/texi2html ) RESTRICT=test SLOT=0/1.7.1 SRC_URI=http://twelf.plparty.org/releases/twelf-src-1.7.1.tar.gz -_eclasses_=elisp-common f9c72486dbcb18b633c9d0949211d86e +_eclasses_=elisp-common e7aaa047873789f549ea3df2f04b2145 _md5_=71800e353bd7603fad6982201a69f30a diff --git a/metadata/md5-cache/sci-physics/Manifest.gz b/metadata/md5-cache/sci-physics/Manifest.gz index 03982424915f..8131813892c4 100644 Binary files a/metadata/md5-cache/sci-physics/Manifest.gz and b/metadata/md5-cache/sci-physics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-physics/root-6.24.06-r2 b/metadata/md5-cache/sci-physics/root-6.24.06-r2 index 3c7973b5525e..1712a0c68449 100644 --- a/metadata/md5-cache/sci-physics/root-6.24.06-r2 +++ b/metadata/md5-cache/sci-physics/root-6.24.06-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( c++11 c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asim RESTRICT=!test? ( test ) SLOT=6.24/06 SRC_URI=https://root.cern/download/root_v6.24.06.source.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cuda 15edbf8fd9df209322f42c06ecf59a96 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 fortran-2 72d28c6872beb1e7cb99684b0ae4715d multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cuda 15edbf8fd9df209322f42c06ecf59a96 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 fortran-2 72d28c6872beb1e7cb99684b0ae4715d multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=f71f4e35e28877ad3eef87a391bcbc6f diff --git a/metadata/md5-cache/sci-physics/root-6.26.02 b/metadata/md5-cache/sci-physics/root-6.26.02 index f10be9f353f7..e7451751a863 100644 --- a/metadata/md5-cache/sci-physics/root-6.26.02 +++ b/metadata/md5-cache/sci-physics/root-6.26.02 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asimage !o RESTRICT=!test? ( test ) SLOT=6.26/02 SRC_URI=https://root.cern/download/root_v6.26.02.source.tar.gz -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cuda 15edbf8fd9df209322f42c06ecf59a96 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 fortran-2 72d28c6872beb1e7cb99684b0ae4715d multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cuda 15edbf8fd9df209322f42c06ecf59a96 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 fortran-2 72d28c6872beb1e7cb99684b0ae4715d multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=7e2ecdfc29c2566e2f769b1043f502e1 diff --git a/metadata/md5-cache/sci-physics/root-6.26.9999 b/metadata/md5-cache/sci-physics/root-6.26.9999 index ed7cc0cb4721..90f2f66cda11 100644 --- a/metadata/md5-cache/sci-physics/root-6.26.9999 +++ b/metadata/md5-cache/sci-physics/root-6.26.9999 @@ -11,5 +11,5 @@ RDEPEND=app-arch/lz4 app-arch/zstd app-arch/xz-utils fortran? ( dev-lang/cfortra REQUIRED_USE=^^ ( c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asimage !opengl !qt5 ) davix? ( ssl xml ) python? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) qt5? ( root7 ) root7? ( || ( c++17 ) ) tmva? ( gsl ) uring? ( root7 ) RESTRICT=!test? ( test ) SLOT=6.26/9999 -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cuda 15edbf8fd9df209322f42c06ecf59a96 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 fortran-2 72d28c6872beb1e7cb99684b0ae4715d git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cuda 15edbf8fd9df209322f42c06ecf59a96 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 fortran-2 72d28c6872beb1e7cb99684b0ae4715d git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=e12ca4409cead82facc40b9ceedf0fda diff --git a/metadata/md5-cache/sci-physics/root-9999 b/metadata/md5-cache/sci-physics/root-9999 index b931de3d47d7..17bea1772055 100644 --- a/metadata/md5-cache/sci-physics/root-9999 +++ b/metadata/md5-cache/sci-physics/root-9999 @@ -11,5 +11,5 @@ RDEPEND=app-arch/lz4 app-arch/zstd app-arch/xz-utils fortran? ( dev-lang/cfortra REQUIRED_USE=^^ ( c++11 c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asimage !opengl !qt5 ) davix? ( ssl xml ) python? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) qt5? ( root7 ) root7? ( || ( c++14 c++17 ) ) tmva? ( gsl ) uring? ( root7 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cuda 15edbf8fd9df209322f42c06ecf59a96 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 fortran-2 72d28c6872beb1e7cb99684b0ae4715d git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 cuda 15edbf8fd9df209322f42c06ecf59a96 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 fortran-2 72d28c6872beb1e7cb99684b0ae4715d git-r3 b9ac6f96d2a88edb5b351df634dc5e53 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=2cf5d0578d5e39ae9157e18f28db3224 diff --git a/metadata/md5-cache/sci-physics/thepeg-2.0.4-r1 b/metadata/md5-cache/sci-physics/thepeg-2.0.4-r1 index d470b19dabb2..7a17e49e3c6c 100644 --- a/metadata/md5-cache/sci-physics/thepeg-2.0.4-r1 +++ b/metadata/md5-cache/sci-physics/thepeg-2.0.4-r1 @@ -11,5 +11,5 @@ RDEPEND=sci-libs/gsl:0= emacs? ( >=app-editors/emacs-23.1:* ) fastjet? ( sci-phy RESTRICT=!test? ( test ) SLOT=0/20 SRC_URI=https://www.hepforge.org/archive/thepeg/ThePEG-2.0.4.tar.bz2 test? ( hepmc? ( https://www.hepforge.org/archive/lhapdf/pdfsets/current/cteq6ll.LHpdf https://www.hepforge.org/archive/lhapdf/pdfsets/current/cteq5l.LHgrid https://www.hepforge.org/archive/lhapdf/pdfsets/current/GRV98nlo.LHgrid https://www.hepforge.org/archive/lhapdf/pdfsets/current/MRST2001nlo.LHgrid ) ) -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1445f8319a7da2c9476ed742b6b60b43 diff --git a/metadata/md5-cache/sci-physics/thepeg-2.2.2 b/metadata/md5-cache/sci-physics/thepeg-2.2.2 index 892650eefe5d..966da0856018 100644 --- a/metadata/md5-cache/sci-physics/thepeg-2.2.2 +++ b/metadata/md5-cache/sci-physics/thepeg-2.2.2 @@ -11,5 +11,5 @@ RDEPEND=sci-libs/gsl:0= emacs? ( >=app-editors/emacs-23.1:* ) fastjet? ( sci-phy RESTRICT=!test? ( test ) SLOT=0/20 SRC_URI=https://www.hepforge.org/archive/thepeg/ThePEG-2.2.2.tar.bz2 test? ( hepmc? ( https://www.hepforge.org/archive/lhapdf/pdfsets/current/cteq6ll.LHpdf https://www.hepforge.org/archive/lhapdf/pdfsets/current/cteq5l.LHgrid https://www.hepforge.org/archive/lhapdf/pdfsets/current/GRV98nlo.LHgrid https://www.hepforge.org/archive/lhapdf/pdfsets/current/MRST2001nlo.LHgrid ) ) -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 a71433e535af8faae0c0f6c861a32054 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3ce082a73aa828d860acfa4b7a173b00 diff --git a/metadata/md5-cache/sci-visualization/Manifest.gz b/metadata/md5-cache/sci-visualization/Manifest.gz index 1ed26108d8dc..e626d7a79078 100644 Binary files a/metadata/md5-cache/sci-visualization/Manifest.gz and b/metadata/md5-cache/sci-visualization/Manifest.gz differ diff --git a/metadata/md5-cache/sci-visualization/epix-1.2.19 b/metadata/md5-cache/sci-visualization/epix-1.2.19 index e6e62fb71f21..1fd9c37b086b 100644 --- a/metadata/md5-cache/sci-visualization/epix-1.2.19 +++ b/metadata/md5-cache/sci-visualization/epix-1.2.19 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=virtual/latex-base dev-texlive/texlive-pstricks dev-texlive/texlive-pictures dev-texlive/texlive-latexextra dev-texlive/texlive-latexrecommended emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=https://mathcs.holycross.edu/~ahwang/epix/epix-1.2.19_withpdf.tar.bz2 -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common f9c72486dbcb18b633c9d0949211d86e gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common e7aaa047873789f549ea3df2f04b2145 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=8480bbdb077f2795290ba57c3ecd8c7e diff --git a/metadata/md5-cache/sci-visualization/gle-4.2.5-r2 b/metadata/md5-cache/sci-visualization/gle-4.2.5-r2 index e143ea56e7e5..31cc58b1cf35 100644 --- a/metadata/md5-cache/sci-visualization/gle-4.2.5-r2 +++ b/metadata/md5-cache/sci-visualization/gle-4.2.5-r2 @@ -10,5 +10,5 @@ LICENSE=BSD-2 emacs? ( GPL-2 ) RDEPEND=sys-libs/ncurses:= emacs? ( >=app-editors/emacs-23.1:* ) jpeg? ( virtual/jpeg:0 ) png? ( media-libs/libpng:= ) tiff? ( media-libs/tiff:= ) X? ( x11-libs/libX11 ) app-text/ghostscript-gpl virtual/latex-base vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) SLOT=0 SRC_URI=mirror://sourceforge/glx/gle-graphics-4.2.5f-src.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=3fba299da069af0a718b02dc01c55d4a diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index 56cc3a4788a8..a22ec231a9c8 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/baobab-42.0 b/metadata/md5-cache/sys-apps/baobab-42.0 index 143c4fa774a9..31c482b0f896 100644 --- a/metadata/md5-cache/sys-apps/baobab-42.0 +++ b/metadata/md5-cache/sys-apps/baobab-42.0 @@ -4,10 +4,10 @@ DEPEND=>=dev-libs/glib-2.44:2 >=gui-libs/gtk-4.4.0:4 >=gui-libs/libadwaita-1.0.0 DESCRIPTION=Disk usage browser for GNOME EAPI=8 HOMEPAGE=https://wiki.gnome.org/Apps/Baobab -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2+ FDL-1.1+ RDEPEND=>=dev-libs/glib-2.44:2 >=gui-libs/gtk-4.4.0:4 >=gui-libs/libadwaita-1.0.0:1= SLOT=0 SRC_URI=mirror://gnome/sources/baobab/42/baobab-42.0.tar.xz _eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vala 9badd41d5aab740ae5ac301c4416c5f8 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=5fe70004083e308ce6ebb2c6be0bf459 +_md5_=941a47bca4c385aa710a3371ef62d232 diff --git a/metadata/md5-cache/sys-apps/edid-decode-0_pre20211012 b/metadata/md5-cache/sys-apps/edid-decode-0_pre20211012 deleted file mode 100644 index 1f5f7a7fce50..000000000000 --- a/metadata/md5-cache/sys-apps/edid-decode-0_pre20211012 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile install -DESCRIPTION=Decode EDID data in a human-readable format -EAPI=8 -HOMEPAGE=https://git.linuxtv.org/edid-decode.git/ -IUSE=examples -KEYWORDS=amd64 ~arm64 x86 -LICENSE=MIT -SLOT=0 -SRC_URI=https://dev.gentoo.org/~conikost/files/edid-decode-0_pre20211012.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=379fef224a5dce1cfe5d8474d444e990 diff --git a/metadata/md5-cache/sys-apps/edid-decode-0_pre20220319 b/metadata/md5-cache/sys-apps/edid-decode-0_pre20220319 index bb853497757d..0b38cc6937d4 100644 --- a/metadata/md5-cache/sys-apps/edid-decode-0_pre20220319 +++ b/metadata/md5-cache/sys-apps/edid-decode-0_pre20220319 @@ -3,9 +3,9 @@ DESCRIPTION=Decode EDID data in a human-readable format EAPI=8 HOMEPAGE=https://git.linuxtv.org/edid-decode.git/ IUSE=examples -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=MIT SLOT=0 SRC_URI=https://dev.gentoo.org/~conikost/files/edid-decode-0_pre20220319.tar.gz _eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=cd51ad6132aae4ed0a6d0ced310f3d79 +_md5_=6c30774d03d207994b4d7b9e089992b7 diff --git a/metadata/md5-cache/sys-apps/i2c-tools-4.2 b/metadata/md5-cache/sys-apps/i2c-tools-4.2 index 08c184a411cf..7ba672f4ee3b 100644 --- a/metadata/md5-cache/sys-apps/i2c-tools-4.2 +++ b/metadata/md5-cache/sys-apps/i2c-tools-4.2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare -DEPEND=python? ( python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) ) +DEPEND=python? ( python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) ) DESCRIPTION=I2C tools for bus probing, chip dumping, EEPROM decoding, and more EAPI=7 HOMEPAGE=https://www.kernel.org/pub/software/utils/i2c-tools -IUSE=perl python python_targets_python3_8 python_targets_python3_9 +IUSE=perl python python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=amd64 arm arm64 ~mips ppc ppc64 ~riscv ~sparc x86 LICENSE=GPL-2 -RDEPEND=python? ( python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) ) perl? ( dev-lang/perl ) -REQUIRED_USE=python? ( || ( python_targets_python3_8 python_targets_python3_9 ) ) +RDEPEND=python? ( python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) ) perl? ( dev-lang/perl ) +REQUIRED_USE=python? ( || ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) ) SLOT=0 SRC_URI=https://www.kernel.org/pub/software/utils/i2c-tools/i2c-tools-4.2.tar.xz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=caa312ddfa76658f27767bdda31a25d4 +_md5_=62cda38f8a908999f8130ec659c86000 diff --git a/metadata/md5-cache/sys-apps/man-db-2.10.2-r1 b/metadata/md5-cache/sys-apps/man-db-2.10.2-r1 index 3f67f4398faf..ad029e8155a0 100644 --- a/metadata/md5-cache/sys-apps/man-db-2.10.2-r1 +++ b/metadata/md5-cache/sys-apps/man-db-2.10.2-r1 @@ -5,11 +5,11 @@ DESCRIPTION=A man replacement that utilizes dbm instead of flat files EAPI=7 HOMEPAGE=https://gitlab.com/cjwatson/man-db https://www.nongnu.org/man-db/ IUSE=+manpager nls +seccomp selinux static-libs zlib -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-3 PDEPEND=manpager? ( app-text/manpager ) RDEPEND=>=dev-libs/libpipeline-1.5.0 sys-apps/groff sys-libs/gdbm:= seccomp? ( sys-libs/libseccomp ) zlib? ( sys-libs/zlib ) acct-group/man acct-user/man selinux? ( sec-policy/selinux-mandb ) virtual/tmpfiles SLOT=0 SRC_URI=mirror://nongnu/man-db/man-db-2.10.2.tar.xz _eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 systemd 2736b403a83f194b59b767f3b344c2c1 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=95b22b5afbf8986bddc8876e7348d14e +_md5_=e4a1d0ad5dd7cbe77438482a66180905 diff --git a/metadata/md5-cache/sys-apps/man2html-1.6g b/metadata/md5-cache/sys-apps/man2html-1.6g index 5715230e5644..d1fdd2869045 100644 --- a/metadata/md5-cache/sys-apps/man2html-1.6g +++ b/metadata/md5-cache/sys-apps/man2html-1.6g @@ -7,5 +7,5 @@ LICENSE=GPL-2 RDEPEND=!sys-apps/man SLOT=0 SRC_URI=http://primates.ximian.com/~flucifredi/man/man-1.6g.tar.gz -_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=78f5a0629bef64f5d4152cd79d3e8d0a +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=eb7320850fd05ee99b912821b6d89985 diff --git a/metadata/md5-cache/sys-apps/qingy-1.0.0-r5 b/metadata/md5-cache/sys-apps/qingy-1.0.0-r5 index 514cae3122c6..5ea987ebe1d1 100644 --- a/metadata/md5-cache/sys-apps/qingy-1.0.0-r5 +++ b/metadata/md5-cache/sys-apps/qingy-1.0.0-r5 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=sys-libs/ncurses-5.7-r7:= opensslcrypt? ( dev-libs/openssl:0= ) crypt? ( >=dev-libs/libgcrypt-1.2.1:0= ) emacs? ( >=app-editors/emacs-23.1:* ) pam? ( >=sys-libs/pam-0.75-r11 ) X? ( x11-libs/libX11:= x11-libs/libXScrnSaver:= ) pam? ( sys-auth/pambase ) SLOT=0 SRC_URI=mirror://sourceforge/qingy/qingy-1.0.0.tar.bz2 mirror://gentoo/qingy-gentoo-theme-2.1.tar.bz2 https://dev.gentoo.org/~gienah/2big4tree/sys-apps/qingy/qingy-1.0.0-screensavers.patch.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b pam e44a1dd98f13e1ad76de01e919bde1f1 preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b pam e44a1dd98f13e1ad76de01e919bde1f1 preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=03a189b468844c8735782db495f9d52b diff --git a/metadata/md5-cache/sys-apps/systemd-utils-250.4-r1 b/metadata/md5-cache/sys-apps/systemd-utils-250.4-r3 similarity index 56% rename from metadata/md5-cache/sys-apps/systemd-utils-250.4-r1 rename to metadata/md5-cache/sys-apps/systemd-utils-250.4-r3 index 34b569f32392..26fc0687a3d3 100644 --- a/metadata/md5-cache/sys-apps/systemd-utils-250.4-r1 +++ b/metadata/md5-cache/sys-apps/systemd-utils-250.4-r3 @@ -1,17 +1,17 @@ BDEPEND=|| ( ( >=dev-lang/python-3.10.0_p1-r1:3.10 dev-python/jinja[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.9-r1:3.9 dev-python/jinja[python_targets_python3_9(-)] ) ( >=dev-lang/python-3.8.12_p1-r1:3.8 dev-python/jinja[python_targets_python3_8(-)] ) ) app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets dev-libs/libxslt dev-util/gperf >=sys-apps/coreutils-8.16 sys-devel/gettext virtual/pkgconfig >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=sys-apps/acl:0= >=sys-apps/kmod-15:0= selinux? ( sys-libs/libselinux:0= ) udev? ( >=sys-apps/util-linux-2.30:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libcap:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/libcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !udev? ( >=sys-apps/util-linux-2.30:0= sys-libs/libcap:0= virtual/libcrypt:= ) boot? ( >=sys-boot/gnu-efi-3.0.2 ) >=sys-kernel/linux-headers-3.11 +DEPEND=selinux? ( sys-libs/libselinux:0= ) tmpfiles? ( acl? ( sys-apps/acl:0= ) ) udev? ( >=sys-apps/util-linux-2.30:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libcap:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/libcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] acl? ( sys-apps/acl:0= ) kmod? ( >=sys-apps/kmod-15:0= ) ) !udev? ( >=sys-apps/util-linux-2.30:0= sys-libs/libcap:0= virtual/libcrypt:= ) boot? ( >=sys-boot/gnu-efi-3.0.2 ) >=sys-kernel/linux-headers-3.11 DESCRIPTION=Utilities taken from systemd EAPI=8 HOMEPAGE=https://systemd.io/ -IUSE=boot selinux sysusers +tmpfiles test +udev abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 split-usr +IUSE=+acl boot +kmod selinux sysusers +tmpfiles test +udev 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 LICENSE=GPL-2 LGPL-2.1 MIT public-domain PDEPEND=udev? ( >=sys-fs/udev-init-scripts-34 ) -RDEPEND=sys-apps/acl:0= >=sys-apps/kmod-15:0= selinux? ( sys-libs/libselinux:0= ) udev? ( >=sys-apps/util-linux-2.30:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libcap:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/libcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !udev? ( >=sys-apps/util-linux-2.30:0= sys-libs/libcap:0= virtual/libcrypt:= ) boot? ( !=sys-apps/util-linux-2.30:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libcap:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/libcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] acl? ( sys-apps/acl:0= ) kmod? ( >=sys-apps/kmod-15:0= ) ) !udev? ( >=sys-apps/util-linux-2.30:0= sys-libs/libcap:0= virtual/libcrypt:= ) boot? ( ! systemd-stable-250.4.tar.gz elibc_musl? ( https://dev.gentoo.org/~floppym/dist/systemd-musl-patches-250.4.tar.gz ) _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic a500d7cc40da3de38c361e889153bdf7 meson 2d8a51910bc57e004c37aa55c7d99ce4 meson-multilib 84c0d4019bf29be0d9d0a2d98fb8b0d9 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 usr-ldscript 5c738dce357b54d5a90e30094d2f983c -_md5_=9e6d48dbc23186b2fdf4aa2faeece06f +_md5_=8f908acfb597225c7eac27ac74426ec1 diff --git a/metadata/md5-cache/sys-boot/Manifest.gz b/metadata/md5-cache/sys-boot/Manifest.gz index 52530df4ae92..2b3362ef5e77 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/plymouth-0.9.5-r1 b/metadata/md5-cache/sys-boot/plymouth-0.9.5-r2 similarity index 65% rename from metadata/md5-cache/sys-boot/plymouth-0.9.5-r1 rename to metadata/md5-cache/sys-boot/plymouth-0.9.5-r2 index 71eb5a40e735..11cd44530ea5 100644 --- a/metadata/md5-cache/sys-boot/plymouth-0.9.5-r1 +++ b/metadata/md5-cache/sys-boot/plymouth-0.9.5-r2 @@ -1,14 +1,14 @@ BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 virtual/pkgconfig DEFINED_PHASES=configure install postinst prepare -DEPEND=>=media-libs/libpng-1.2.16:= gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) elibc_musl? ( sys-libs/rpmatch-standalone ) app-text/docbook-xsl-stylesheets dev-libs/libxslt virtual/pkgconfig +DEPEND=>=media-libs/libpng-1.2.16:= drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) pango? ( >=x11-libs/pango-1.21 ) elibc_musl? ( sys-libs/rpmatch-standalone ) app-text/docbook-xsl-stylesheets dev-libs/libxslt virtual/pkgconfig DESCRIPTION=Graphical boot animation (splash) and logger EAPI=7 HOMEPAGE=https://cgit.freedesktop.org/plymouth/ -IUSE=debug +gtk +libkms +pango +split-usr static-libs +udev +IUSE=debug +drm +gtk +pango +split-usr static-libs +udev KEYWORDS=~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 -RDEPEND=>=media-libs/libpng-1.2.16:= gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) udev? ( virtual/udev ) !=media-libs/libpng-1.2.16:= drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) pango? ( >=x11-libs/pango-1.21 ) udev? ( virtual/udev ) !=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 virtual/pkgconfig DEFINED_PHASES=configure install postinst prepare -DEPEND=>=media-libs/libpng-1.2.16:= gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) elibc_musl? ( sys-libs/rpmatch-standalone ) app-text/docbook-xsl-stylesheets dev-libs/libxslt virtual/pkgconfig +DEPEND=>=media-libs/libpng-1.2.16:= drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) pango? ( >=x11-libs/pango-1.21 ) elibc_musl? ( sys-libs/rpmatch-standalone ) app-text/docbook-xsl-stylesheets dev-libs/libxslt virtual/pkgconfig DESCRIPTION=Graphical boot animation (splash) and logger EAPI=7 HOMEPAGE=https://cgit.freedesktop.org/plymouth/ -IUSE=debug +gtk +libkms +pango +split-usr static-libs +udev +IUSE=debug +drm +gtk +pango +split-usr static-libs +udev KEYWORDS=~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 -RDEPEND=>=media-libs/libpng-1.2.16:= gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) udev? ( virtual/udev ) !=media-libs/libpng-1.2.16:= drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) pango? ( >=x11-libs/pango-1.21 ) udev? ( virtual/udev ) !=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 virtual/pkgconfig DEFINED_PHASES=configure install postinst prepare -DEPEND=>=media-libs/libpng-1.2.16:= gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) elibc_musl? ( sys-libs/rpmatch-standalone ) app-text/docbook-xsl-stylesheets dev-libs/libxslt virtual/pkgconfig +DEPEND=>=media-libs/libpng-1.2.16:= drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) pango? ( >=x11-libs/pango-1.21 ) elibc_musl? ( sys-libs/rpmatch-standalone ) app-text/docbook-xsl-stylesheets dev-libs/libxslt virtual/pkgconfig DESCRIPTION=Graphical boot animation (splash) and logger EAPI=7 HOMEPAGE=https://cgit.freedesktop.org/plymouth/ -IUSE=debug +gtk +libkms +pango +split-usr static-libs +udev +IUSE=debug +drm +gtk +pango +split-usr static-libs +udev KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=>=media-libs/libpng-1.2.16:= gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) udev? ( virtual/udev ) !=media-libs/libpng-1.2.16:= drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) pango? ( >=x11-libs/pango-1.21 ) udev? ( virtual/udev ) !=dev-vcs/git-1.8.2.1[curl] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 virtual/pkgconfig DEFINED_PHASES=configure install postinst prepare unpack -DEPEND=>=media-libs/libpng-1.2.16:= gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) elibc_musl? ( sys-libs/rpmatch-standalone ) app-text/docbook-xsl-stylesheets dev-libs/libxslt virtual/pkgconfig +DEPEND=>=media-libs/libpng-1.2.16:= drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) pango? ( >=x11-libs/pango-1.21 ) elibc_musl? ( sys-libs/rpmatch-standalone ) app-text/docbook-xsl-stylesheets dev-libs/libxslt virtual/pkgconfig DESCRIPTION=Graphical boot animation (splash) and logger EAPI=7 HOMEPAGE=https://cgit.freedesktop.org/plymouth/ -IUSE=debug +gtk +libkms +pango +split-usr static-libs +udev +IUSE=debug +drm +gtk +pango +split-usr static-libs +udev LICENSE=GPL-2 PROPERTIES=live -RDEPEND=>=media-libs/libpng-1.2.16:= gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) udev? ( virtual/udev ) !=media-libs/libpng-1.2.16:= drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) pango? ( >=x11-libs/pango-1.21 ) udev? ( virtual/udev ) !=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) dev-util/ninja >=dev-util/cmake-3.20.5 +BDEPEND=|| ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-lang/python-3.9.9-r1:3.9 >=dev-lang/python-3.8.12_p1-r1:3.8 ) dev-util/ninja >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install prepare setup test DEPEND=>=dev-libs/boost-1.65.1:= >=dev-libs/crypto++-8.2.0:= net-misc/curl:= >=sys-fs/fuse-2.8.6:0 dev-libs/openssl:0= test? ( dev-cpp/gtest ) DESCRIPTION=Encrypted FUSE filesystem that conceals metadata @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cryfs/cryfs/releases/download/0.10.3/cryfs-0.10.3.tar.xz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=ff03185285323065429e886648e7b990 +_md5_=2bcc4dbda58ec28d7840e040cb885ca6 diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index b750c9c6d509..68d1e9c88317 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.18_rc3 b/metadata/md5-cache/sys-kernel/git-sources-5.18_rc3 new file mode 100644 index 000000000000..d7792a518e91 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/git-sources-5.18_rc3 @@ -0,0 +1,15 @@ +BDEPEND=!build? ( sys-apps/sed ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=>=sys-devel/patch-2.7.6-r4 +DESCRIPTION=The very latest -git version of the Linux kernel +EAPI=8 +HOMEPAGE=https://www.kernel.org +IUSE=symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( app-arch/cpio dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=5.18_rc3 +SRC_URI=https://git.kernel.org/torvalds/p/v5.18-rc3/v5.17 -> patch-5.18-rc3.patch https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.17.tar.xz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 b4d5583ac9c087a13f067ef82e3e5e03 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=5edff652b0d9a14a578a8a1f6e4bd8cf diff --git a/metadata/md5-cache/sys-kernel/raspberrypi-sources-5.15.32_p20220331 b/metadata/md5-cache/sys-kernel/raspberrypi-sources-5.15.32_p20220331 new file mode 100644 index 000000000000..0b613cd73762 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/raspberrypi-sources-5.15.32_p20220331 @@ -0,0 +1,14 @@ +BDEPEND=!build? ( sys-apps/sed ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Raspberry Pi kernel sources +EAPI=8 +HOMEPAGE=https://github.com/raspberrypi/linux +IUSE=symlink build +KEYWORDS=~arm ~arm64 +LICENSE=GPL-2 +RDEPEND=!build? ( app-arch/cpio dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=5.15.32_p20220331 +SRC_URI=https://github.com/raspberrypi/linux/archive/1.20220331.tar.gz -> linux-5.15.32_p20220331-raspberrypi.tar.gz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.15-1.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.15-1.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.15-1.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.15-1.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.15-1.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.15-1.extras.tar.xz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 b4d5583ac9c087a13f067ef82e3e5e03 linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=8380effcc48246da73e26d7c7a9a8076 diff --git a/metadata/md5-cache/virtual/Manifest.gz b/metadata/md5-cache/virtual/Manifest.gz index b6495fdd1941..a0065efee37a 100644 Binary files a/metadata/md5-cache/virtual/Manifest.gz and b/metadata/md5-cache/virtual/Manifest.gz differ diff --git a/metadata/md5-cache/virtual/mailx-4 b/metadata/md5-cache/virtual/mailx-4 new file mode 100644 index 000000000000..48a891921d6c --- /dev/null +++ b/metadata/md5-cache/virtual/mailx-4 @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual for mail implementations +EAPI=8 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +RDEPEND=|| ( net-mail/mailutils[clients] mail-client/mailx mail-client/s-nail ) +SLOT=0 +_md5_=da2a500379ea07523c5719a42cf7b5af diff --git a/metadata/md5-cache/virtual/ruby-ssl-11 b/metadata/md5-cache/virtual/ruby-ssl-11 index 575ee69c1ebe..4962f1b437f2 100644 --- a/metadata/md5-cache/virtual/ruby-ssl-11 +++ b/metadata/md5-cache/virtual/ruby-ssl-11 @@ -7,5 +7,5 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6[ssl] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7[ssl] ) ruby_targets_ruby30? ( dev-lang/ruby:3.0[ssl] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) SLOT=0 -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a7c9798dab54d218de8fd939a3a2ade0 diff --git a/metadata/md5-cache/virtual/ruby-ssl-12 b/metadata/md5-cache/virtual/ruby-ssl-12 index 56a7b7de48da..cc1699120379 100644 --- a/metadata/md5-cache/virtual/ruby-ssl-12 +++ b/metadata/md5-cache/virtual/ruby-ssl-12 @@ -8,5 +8,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~ RDEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6[ssl] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7[ssl] ) ruby_targets_ruby30? ( dev-lang/ruby:3.0[ssl] ) ruby_targets_ruby31? ( dev-lang/ruby:3.1[ssl] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) SLOT=0 -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=096e1fd18d44ed91e3409a822da8b0c8 diff --git a/metadata/md5-cache/virtual/rubygems-15 b/metadata/md5-cache/virtual/rubygems-15 index 89974a8849e3..76b5cb592154 100644 --- a/metadata/md5-cache/virtual/rubygems-15 +++ b/metadata/md5-cache/virtual/rubygems-15 @@ -7,5 +7,5 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/rubygems-3.0.1[ruby_targets_ruby26] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) REQUIRED_USE=|| ( ruby_targets_ruby26 ) SLOT=0 -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=adbb34996e8906fbb77f3ed4118cda69 diff --git a/metadata/md5-cache/virtual/rubygems-16 b/metadata/md5-cache/virtual/rubygems-16 index f8d6c5b7852e..2e0c38b24f76 100644 --- a/metadata/md5-cache/virtual/rubygems-16 +++ b/metadata/md5-cache/virtual/rubygems-16 @@ -8,5 +8,5 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/rubygems-3.0.1[ruby_targets_ruby26] ) ruby_targets_ruby27? ( >=dev-ruby/rubygems-3.1.0[ruby_targets_ruby27] ) ruby_targets_ruby30? ( >=dev-ruby/rubygems-3.2.0[ruby_targets_ruby30] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) SLOT=0 -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7afbb8422dae1ca0cd3f3912529a4e44 diff --git a/metadata/md5-cache/virtual/rubygems-17 b/metadata/md5-cache/virtual/rubygems-17 index 76b4f08aaf0a..89502948fde1 100644 --- a/metadata/md5-cache/virtual/rubygems-17 +++ b/metadata/md5-cache/virtual/rubygems-17 @@ -8,5 +8,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~ RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/rubygems-3.0.1[ruby_targets_ruby26] ) ruby_targets_ruby27? ( >=dev-ruby/rubygems-3.1.0[ruby_targets_ruby27] ) ruby_targets_ruby30? ( >=dev-ruby/rubygems-3.2.0[ruby_targets_ruby30] ) ruby_targets_ruby31? ( >=dev-ruby/rubygems-3.3.0[ruby_targets_ruby31] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) SLOT=0 -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4b0303fc01d1b65a8af5ef87f995325a diff --git a/metadata/md5-cache/www-apache/Manifest.gz b/metadata/md5-cache/www-apache/Manifest.gz index 89b300620808..3b684675cde4 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/passenger-6.0.11 b/metadata/md5-cache/www-apache/passenger-6.0.11 index f9882f6ac2ab..1f4534abf04c 100644 --- a/metadata/md5-cache/www-apache/passenger-6.0.11 +++ b/metadata/md5-cache/www-apache/passenger-6.0.11 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.11.tar.gz -_eclasses_=apache-module 4d0ccd357b5f2d92599030b72f6efb62 depend.apache 416d1c5005c5f4594e79812fb7323f0d edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=apache-module 4d0ccd357b5f2d92599030b72f6efb62 depend.apache 416d1c5005c5f4594e79812fb7323f0d edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=be5a40e4ba1a00f954ccf8f4962f7a0c diff --git a/metadata/md5-cache/www-apache/passenger-6.0.12 b/metadata/md5-cache/www-apache/passenger-6.0.12 index 8522e16caa28..596155248948 100644 --- a/metadata/md5-cache/www-apache/passenger-6.0.12 +++ b/metadata/md5-cache/www-apache/passenger-6.0.12 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.12.tar.gz -_eclasses_=apache-module 4d0ccd357b5f2d92599030b72f6efb62 depend.apache 416d1c5005c5f4594e79812fb7323f0d edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=apache-module 4d0ccd357b5f2d92599030b72f6efb62 depend.apache 416d1c5005c5f4594e79812fb7323f0d edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=634cd8c8c99b28581eb673654af2c280 diff --git a/metadata/md5-cache/www-apache/passenger-6.0.13 b/metadata/md5-cache/www-apache/passenger-6.0.13 index a83bbad9ff63..cec8568babc0 100644 --- a/metadata/md5-cache/www-apache/passenger-6.0.13 +++ b/metadata/md5-cache/www-apache/passenger-6.0.13 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.13.tar.gz -_eclasses_=apache-module 4d0ccd357b5f2d92599030b72f6efb62 depend.apache 416d1c5005c5f4594e79812fb7323f0d edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=apache-module 4d0ccd357b5f2d92599030b72f6efb62 depend.apache 416d1c5005c5f4594e79812fb7323f0d edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=535ff9436bb107b76dd4d6746a8bd28e diff --git a/metadata/md5-cache/www-apache/passenger-6.0.8 b/metadata/md5-cache/www-apache/passenger-6.0.8 index 9d754fdae158..8a928528a23a 100644 --- a/metadata/md5-cache/www-apache/passenger-6.0.8 +++ b/metadata/md5-cache/www-apache/passenger-6.0.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.8.tar.gz -_eclasses_=apache-module 4d0ccd357b5f2d92599030b72f6efb62 depend.apache 416d1c5005c5f4594e79812fb7323f0d desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=apache-module 4d0ccd357b5f2d92599030b72f6efb62 depend.apache 416d1c5005c5f4594e79812fb7323f0d desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=31b13d821b42605a49e47c8392b967dd diff --git a/metadata/md5-cache/www-apps/Manifest.gz b/metadata/md5-cache/www-apps/Manifest.gz index 79f480a65b14..be24e48c3de5 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/jekyll-4.1.1 b/metadata/md5-cache/www-apps/jekyll-4.1.1 index 66ca1b8dff52..35796ccbcc6f 100644 --- a/metadata/md5-cache/www-apps/jekyll-4.1.1 +++ b/metadata/md5-cache/www-apps/jekyll-4.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jekyll/jekyll/archive/v4.1.1.tar.gz -> jekyll-4.1.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=81bdfb689d8ace8db9770399f0d6ca04 diff --git a/metadata/md5-cache/www-apps/jekyll-4.2.0 b/metadata/md5-cache/www-apps/jekyll-4.2.0 index 5a27b7091137..ceb24ca707d5 100644 --- a/metadata/md5-cache/www-apps/jekyll-4.2.0 +++ b/metadata/md5-cache/www-apps/jekyll-4.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( 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 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=cae9f7dca05c3fbc2f411a2ae832237b diff --git a/metadata/md5-cache/www-apps/jekyll-4.2.0-r1 b/metadata/md5-cache/www-apps/jekyll-4.2.0-r1 index 616dde6904e5..1a630d5bc7f4 100644 --- a/metadata/md5-cache/www-apps/jekyll-4.2.0-r1 +++ b/metadata/md5-cache/www-apps/jekyll-4.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( 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 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7867c592d59f625ac40606a95b76f6a6 diff --git a/metadata/md5-cache/www-apps/jekyll-coffeescript-2.0.0 b/metadata/md5-cache/www-apps/jekyll-coffeescript-2.0.0 index ae98c25c175c..c73246e9df67 100644 --- a/metadata/md5-cache/www-apps/jekyll-coffeescript-2.0.0 +++ b/metadata/md5-cache/www-apps/jekyll-coffeescript-2.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jekyll/jekyll-coffeescript/archive/v2.0.0.tar.gz -> jekyll-coffeescript-2.0.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=1066b81d4ba870485bd9d5ee1f9c7c3b diff --git a/metadata/md5-cache/www-apps/jekyll-sass-converter-2.1.0 b/metadata/md5-cache/www-apps/jekyll-sass-converter-2.1.0 index 73d09eefa339..f3e438c5ad0a 100644 --- a/metadata/md5-cache/www-apps/jekyll-sass-converter-2.1.0 +++ b/metadata/md5-cache/www-apps/jekyll-sass-converter-2.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jekyll/jekyll-sass-converter/archive/v2.1.0.tar.gz -> jekyll-sass-converter-2.1.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4e977c737dc7f1f5c94c91a333b5d7a3 diff --git a/metadata/md5-cache/www-apps/jekyll-sitemap-1.4.0 b/metadata/md5-cache/www-apps/jekyll-sitemap-1.4.0 index 3e5a53100c4d..62ae9ab9880c 100644 --- a/metadata/md5-cache/www-apps/jekyll-sitemap-1.4.0 +++ b/metadata/md5-cache/www-apps/jekyll-sitemap-1.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jekyll/jekyll-sitemap/archive/v1.4.0.tar.gz -> jekyll-sitemap-1.4.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=83975df9f34ff2c2766810daf81781b7 diff --git a/metadata/md5-cache/www-apps/jekyll-watch-2.2.1-r1 b/metadata/md5-cache/www-apps/jekyll-watch-2.2.1-r1 index bbb7b2c81836..70ada861b6ea 100644 --- a/metadata/md5-cache/www-apps/jekyll-watch-2.2.1-r1 +++ b/metadata/md5-cache/www-apps/jekyll-watch-2.2.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jekyll/jekyll-watch/archive/v2.2.1.tar.gz -> jekyll-watch-2.2.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=faa3481cc57531afe75f91288c8b5f9b diff --git a/metadata/md5-cache/www-apps/nanoc-4.11.12 b/metadata/md5-cache/www-apps/nanoc-4.11.12 index d3abd2d45e4d..c9d64913cfb7 100644 --- a/metadata/md5-cache/www-apps/nanoc-4.11.12 +++ b/metadata/md5-cache/www-apps/nanoc-4.11.12 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.11.12.tar.gz -> nanoc-4.11.12.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=00b115d4e9692e1db9a75091e947596e diff --git a/metadata/md5-cache/www-apps/nanoc-4.12.2 b/metadata/md5-cache/www-apps/nanoc-4.12.2 index 4b21ef80363d..800d76993443 100644 --- a/metadata/md5-cache/www-apps/nanoc-4.12.2 +++ b/metadata/md5-cache/www-apps/nanoc-4.12.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.12.2.tar.gz -> nanoc-4.12.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=dedad9787f298166afdde6668e19f045 diff --git a/metadata/md5-cache/www-apps/nanoc-4.12.3 b/metadata/md5-cache/www-apps/nanoc-4.12.3 index 8c61f19f6e80..ed1e48551416 100644 --- a/metadata/md5-cache/www-apps/nanoc-4.12.3 +++ b/metadata/md5-cache/www-apps/nanoc-4.12.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.12.3.tar.gz -> nanoc-4.12.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=b30df7c302544350de2cfd5ecaabe9bc diff --git a/metadata/md5-cache/www-apps/nanoc-4.12.5 b/metadata/md5-cache/www-apps/nanoc-4.12.5 index 8daf21c79a57..b2fbc9ea8f35 100644 --- a/metadata/md5-cache/www-apps/nanoc-4.12.5 +++ b/metadata/md5-cache/www-apps/nanoc-4.12.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.12.5.tar.gz -> nanoc-4.12.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=0f9a61a1a65a0e65164ae7bb57893dae diff --git a/metadata/md5-cache/www-apps/nanoc-checking-1.0.1 b/metadata/md5-cache/www-apps/nanoc-checking-1.0.1 index 508ed5e6b9ab..07c6cff04b3e 100644 --- a/metadata/md5-cache/www-apps/nanoc-checking-1.0.1 +++ b/metadata/md5-cache/www-apps/nanoc-checking-1.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/nanoc-checking-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=12fd155b7b08150790cf920f2f242028 diff --git a/metadata/md5-cache/www-apps/nanoc-checking-1.0.2 b/metadata/md5-cache/www-apps/nanoc-checking-1.0.2 index 1e90229c5c03..2fb9775d1d2f 100644 --- a/metadata/md5-cache/www-apps/nanoc-checking-1.0.2 +++ b/metadata/md5-cache/www-apps/nanoc-checking-1.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/nanoc-checking-1.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=35d9e8dbe08ece71037169cb6a3cc281 diff --git a/metadata/md5-cache/www-apps/nanoc-cli-4.12.2 b/metadata/md5-cache/www-apps/nanoc-cli-4.12.2 index 63ed418bbeca..9e3c82a54cac 100644 --- a/metadata/md5-cache/www-apps/nanoc-cli-4.12.2 +++ b/metadata/md5-cache/www-apps/nanoc-cli-4.12.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.12.2.tar.gz -> nanoc-4.12.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7a971ab8c8ab2e0f6b1fa676f3422f5b diff --git a/metadata/md5-cache/www-apps/nanoc-cli-4.12.3 b/metadata/md5-cache/www-apps/nanoc-cli-4.12.3 index a7be6d954b9d..9d97d87d80fb 100644 --- a/metadata/md5-cache/www-apps/nanoc-cli-4.12.3 +++ b/metadata/md5-cache/www-apps/nanoc-cli-4.12.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.12.3.tar.gz -> nanoc-4.12.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=08fa0efe3966d3408335ce34987535d5 diff --git a/metadata/md5-cache/www-apps/nanoc-cli-4.12.5 b/metadata/md5-cache/www-apps/nanoc-cli-4.12.5 index fb42b3fc80c0..6f197953a8ff 100644 --- a/metadata/md5-cache/www-apps/nanoc-cli-4.12.5 +++ b/metadata/md5-cache/www-apps/nanoc-cli-4.12.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.12.5.tar.gz -> nanoc-4.12.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=08fa0efe3966d3408335ce34987535d5 diff --git a/metadata/md5-cache/www-apps/nanoc-core-4.11.12 b/metadata/md5-cache/www-apps/nanoc-core-4.11.12 index 7fddb87339b7..debe4d1e509a 100644 --- a/metadata/md5-cache/www-apps/nanoc-core-4.11.12 +++ b/metadata/md5-cache/www-apps/nanoc-core-4.11.12 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.11.12.tar.gz -> nanoc-core-4.11.12.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fa47af58425809a1d7096da0b01506aa diff --git a/metadata/md5-cache/www-apps/nanoc-core-4.12.2 b/metadata/md5-cache/www-apps/nanoc-core-4.12.2 index fa7566acf251..789c513d2eb5 100644 --- a/metadata/md5-cache/www-apps/nanoc-core-4.12.2 +++ b/metadata/md5-cache/www-apps/nanoc-core-4.12.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.12.2.tar.gz -> nanoc-core-4.12.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d2279824a1c7c62af1df1192c60d5e37 diff --git a/metadata/md5-cache/www-apps/nanoc-core-4.12.3 b/metadata/md5-cache/www-apps/nanoc-core-4.12.3 index b76d0b93d796..611be18063f3 100644 --- a/metadata/md5-cache/www-apps/nanoc-core-4.12.3 +++ b/metadata/md5-cache/www-apps/nanoc-core-4.12.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.12.3.tar.gz -> nanoc-core-4.12.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=d261cfe998253f16c662c521a6e4286a diff --git a/metadata/md5-cache/www-apps/nanoc-core-4.12.5 b/metadata/md5-cache/www-apps/nanoc-core-4.12.5 index f500260ec332..0ad19c434961 100644 --- a/metadata/md5-cache/www-apps/nanoc-core-4.12.5 +++ b/metadata/md5-cache/www-apps/nanoc-core-4.12.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.12.5.tar.gz -> nanoc-core-4.12.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=fc23effc971b7663f90b5bd338077616 diff --git a/metadata/md5-cache/www-apps/nanoc-deploying-1.0.1 b/metadata/md5-cache/www-apps/nanoc-deploying-1.0.1 index f5c65c770a4f..7d42cac0f1a0 100644 --- a/metadata/md5-cache/www-apps/nanoc-deploying-1.0.1 +++ b/metadata/md5-cache/www-apps/nanoc-deploying-1.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/nanoc-deploying-1.0.1.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=bbf7a79ced46985cb005fd9d46cf0849 diff --git a/metadata/md5-cache/www-apps/nanoc-spec-0.0.2 b/metadata/md5-cache/www-apps/nanoc-spec-0.0.2 index 91ccf5ea6c41..917c9e9452c2 100644 --- a/metadata/md5-cache/www-apps/nanoc-spec-0.0.2 +++ b/metadata/md5-cache/www-apps/nanoc-spec-0.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/nanoc-spec-0.0.2.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=6e059093b4b0ea3f9f9b1e3ebe785bf6 diff --git a/metadata/md5-cache/www-apps/redmine-4.1.5 b/metadata/md5-cache/www-apps/redmine-4.1.5 index 12ca3507e5a9..98e24628c096 100644 --- a/metadata/md5-cache/www-apps/redmine-4.1.5 +++ b/metadata/md5-cache/www-apps/redmine-4.1.5 @@ -11,5 +11,5 @@ RDEPEND=acct-group/redmine acct-user/redmine ruby_targets_ruby26? ( dev-lang/rub REQUIRED_USE=|| ( ruby_targets_ruby26 ) SLOT=0 SRC_URI=https://www.redmine.org/releases/redmine-4.1.5.tar.gz -_eclasses_=depend.apache 416d1c5005c5f4594e79812fb7323f0d estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=depend.apache 416d1c5005c5f4594e79812fb7323f0d estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=ae135468e865595c97590eaabdc31b63 diff --git a/metadata/md5-cache/www-apps/redmine-4.2.3 b/metadata/md5-cache/www-apps/redmine-4.2.3 index 44ac47df57a4..2f6380dfe90b 100644 --- a/metadata/md5-cache/www-apps/redmine-4.2.3 +++ b/metadata/md5-cache/www-apps/redmine-4.2.3 @@ -11,5 +11,5 @@ RDEPEND=acct-group/redmine acct-user/redmine imagemagick? ( media-gfx/imagemagic REQUIRED_USE=|| ( ruby_targets_ruby26 ) SLOT=0 SRC_URI=https://www.redmine.org/releases/redmine-4.2.3.tar.gz -_eclasses_=depend.apache 416d1c5005c5f4594e79812fb7323f0d estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=depend.apache 416d1c5005c5f4594e79812fb7323f0d estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3ffe84e28e18efcecf3e4234f0080438 diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz index 78613eaba3c7..1595cbb72769 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/microsoft-edge-beta-100.0.1185.27 b/metadata/md5-cache/www-client/microsoft-edge-beta-101.0.1210.19 similarity index 95% rename from metadata/md5-cache/www-client/microsoft-edge-beta-100.0.1185.27 rename to metadata/md5-cache/www-client/microsoft-edge-beta-101.0.1210.19 index 85d3ce404fef..681e89210742 100644 --- a/metadata/md5-cache/www-client/microsoft-edge-beta-100.0.1185.27 +++ b/metadata/md5-cache/www-client/microsoft-edge-beta-101.0.1210.19 @@ -8,6 +8,6 @@ LICENSE=microsoft-edge RDEPEND=app-accessibility/at-spi2-atk:2 app-accessibility/at-spi2-core:2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-fonts/liberation-fonts media-libs/alsa-lib media-libs/mesa[gbm(+)] net-misc/curl[ssl] net-print/cups sys-apps/dbus sys-apps/util-linux sys-libs/glibc x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libxshmfence x11-libs/pango x11-misc/xdg-utils mip? ( app-crypt/libsecret ) RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_100.0.1185.27-1_amd64.deb +SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_101.0.1210.19-1_amd64.deb _eclasses_=chromium-2 fe5bb568da464344d16c90acb1c6e91e desktop c0d27bf73aa08ca05b663dbd31fbef28 linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd multilib 4a33c9008e5ee30cb8840a3fdc24df2b pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 697382d119fd3d195f110b7979184285 xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=7b79a8f51cfe4d4f62e90c71634a4fd3 diff --git a/metadata/md5-cache/www-servers/Manifest.gz b/metadata/md5-cache/www-servers/Manifest.gz index 52bc9c23aa1d..65e43418a865 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/adsf-1.4.3 b/metadata/md5-cache/www-servers/adsf-1.4.3 index e24d1aae9e60..b711e8029683 100644 --- a/metadata/md5-cache/www-servers/adsf-1.4.3 +++ b/metadata/md5-cache/www-servers/adsf-1.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ddfreyne/adsf/archive/1.4.3.tar.gz -> adsf-1.4.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=4c454e31df1dc1ba75765500bd74cf48 diff --git a/metadata/md5-cache/www-servers/adsf-1.4.5 b/metadata/md5-cache/www-servers/adsf-1.4.5 index 67b74c70b598..bec3fbdc1961 100644 --- a/metadata/md5-cache/www-servers/adsf-1.4.5 +++ b/metadata/md5-cache/www-servers/adsf-1.4.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ddfreyne/adsf/archive/1.4.5.tar.gz -> adsf-1.4.5.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=c97d2de6872157110bad48ad96fab9d6 diff --git a/metadata/md5-cache/www-servers/adsf-1.4.6 b/metadata/md5-cache/www-servers/adsf-1.4.6 index e5bd74315e1b..43aedddf8903 100644 --- a/metadata/md5-cache/www-servers/adsf-1.4.6 +++ b/metadata/md5-cache/www-servers/adsf-1.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ddfreyne/adsf/archive/1.4.6.tar.gz -> adsf-1.4.6.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=3b5cf99fde3c709a1e1b3ac8fe2f43f0 diff --git a/metadata/md5-cache/www-servers/adsf-1.4.6-r1 b/metadata/md5-cache/www-servers/adsf-1.4.6-r1 index ba352df790b0..6ff86d14a79f 100644 --- a/metadata/md5-cache/www-servers/adsf-1.4.6-r1 +++ b/metadata/md5-cache/www-servers/adsf-1.4.6-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ddfreyne/adsf/archive/1.4.6.tar.gz -> adsf-1.4.6.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=2256ec29195e6352d6e7ed311bfe37f2 diff --git a/metadata/md5-cache/www-servers/puma-5.6.4 b/metadata/md5-cache/www-servers/puma-5.6.4 index adbabccbfc7a..3ffd6a937e71 100644 --- a/metadata/md5-cache/www-servers/puma-5.6.4 +++ b/metadata/md5-cache/www-servers/puma-5.6.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/puma/puma/archive/v5.6.4.tar.gz -> puma-5.6.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=44904e2aadf5c62c1ba901f2e4c2c80d diff --git a/metadata/md5-cache/www-servers/thin-1.8.1 b/metadata/md5-cache/www-servers/thin-1.8.1 index d7cd7aa18ff4..7d8637b3db56 100644 --- a/metadata/md5-cache/www-servers/thin-1.8.1 +++ b/metadata/md5-cache/www-servers/thin-1.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/macournoyer/thin/archive/v1.8.1.tar.gz -> thin-1.8.1.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-fakegem 08015e64ff76dc2e2b177418bc2acb08 ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=782c59f9bd200d700bba09d21cec9e63 diff --git a/metadata/md5-cache/www-servers/tomcat-10.0.17 b/metadata/md5-cache/www-servers/tomcat-10.0.17 deleted file mode 100644 index 4639a891debf..000000000000 --- a/metadata/md5-cache/www-servers/tomcat-10.0.17 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=dev-java/eclipse-ecj:4.15 dev-java/glassfish-xmlrpc-api:0 dev-java/jakartaee-migration:0 ~dev-java/tomcat-servlet-api-10.0.17:5.0 dev-java/wsdl4j:0 app-admin/pwgen dev-java/ant-core >=virtual/jdk-1.8:* test? ( dev-java/ant-junit:0 dev-java/easymock:3.2 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=Tomcat Servlet-5.0/JSP-3.0/EL-4.0/WebSocket-2.0/JASIC-2.0 Container -EAPI=8 -HOMEPAGE=https://tomcat.apache.org/ -IUSE=extra-webapps doc source test -KEYWORDS=amd64 ~amd64-linux -LICENSE=Apache-2.0 -RDEPEND=dev-java/eclipse-ecj:4.15 dev-java/glassfish-xmlrpc-api:0 dev-java/jakartaee-migration:0 ~dev-java/tomcat-servlet-api-10.0.17:5.0 dev-java/wsdl4j:0 acct-group/tomcat acct-user/tomcat virtual/jre >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=test !test? ( test ) -SLOT=10 -SRC_URI=mirror://apache/tomcat/tomcat-9/v10.0.17/src/apache-tomcat-10.0.17-src.tar.gz https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd/6.2.0/biz.aQute.bnd-6.2.0.jar https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/6.2.0/biz.aQute.bndlib-6.2.0.jar -_eclasses_=java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=788829f0d5069577bef81d13c5c2914a diff --git a/metadata/md5-cache/www-servers/tomcat-10.0.18 b/metadata/md5-cache/www-servers/tomcat-10.0.18 index d6aa16b037b0..5a073af1a888 100644 --- a/metadata/md5-cache/www-servers/tomcat-10.0.18 +++ b/metadata/md5-cache/www-servers/tomcat-10.0.18 @@ -4,11 +4,11 @@ DESCRIPTION=Tomcat Servlet-5.0/JSP-3.0/EL-4.0/WebSocket-2.0/JASIC-2.0 Container EAPI=8 HOMEPAGE=https://tomcat.apache.org/ IUSE=extra-webapps doc source test -KEYWORDS=~amd64 ~amd64-linux +KEYWORDS=amd64 ~amd64-linux LICENSE=Apache-2.0 RDEPEND=dev-java/eclipse-ecj:4.15 dev-java/glassfish-xmlrpc-api:0 dev-java/jakartaee-migration:0 ~dev-java/tomcat-servlet-api-10.0.18:5.0 dev-java/wsdl4j:0 acct-group/tomcat acct-user/tomcat virtual/jre >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) RESTRICT=test !test? ( test ) SLOT=10 SRC_URI=mirror://apache/tomcat/tomcat-9/v10.0.18/src/apache-tomcat-10.0.18-src.tar.gz https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd/6.2.0/biz.aQute.bnd-6.2.0.jar https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/6.2.0/biz.aQute.bndlib-6.2.0.jar _eclasses_=java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=9618f2c5d2758a2c959b09053fb36870 +_md5_=788829f0d5069577bef81d13c5c2914a diff --git a/metadata/md5-cache/www-servers/tomcat-8.5.76 b/metadata/md5-cache/www-servers/tomcat-8.5.76 deleted file mode 100644 index 89d22745e9fe..000000000000 --- a/metadata/md5-cache/www-servers/tomcat-8.5.76 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup test -DEPEND=dev-java/eclipse-ecj:4.5 ~dev-java/tomcat-servlet-api-8.5.76:3.1 app-admin/pwgen dev-java/ant-core >=virtual/jdk-1.8:* doc? ( dev-java/glassfish-xmlrpc-api:0 dev-java/wsdl4j:0 ) test? ( >=dev-java/ant-junit-1.9:0 dev-java/easymock:3.2 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=Tomcat Servlet-3.1/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container -EAPI=8 -HOMEPAGE=https://tomcat.apache.org/ -IUSE=extra-webapps doc source test -KEYWORDS=amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=Apache-2.0 -RDEPEND=dev-java/eclipse-ecj:4.5 ~dev-java/tomcat-servlet-api-8.5.76:3.1 acct-group/tomcat acct-user/tomcat >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=test !test? ( test ) -SLOT=8.5 -SRC_URI=mirror://apache/tomcat/tomcat-8/v8.5.76/src/apache-tomcat-8.5.76-src.tar.gz -_eclasses_=java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=50639ff0b0bb42a6ce9031bcd9b03854 diff --git a/metadata/md5-cache/www-servers/tomcat-8.5.77 b/metadata/md5-cache/www-servers/tomcat-8.5.77 index 3d71c7fc9dd1..9cae7402b222 100644 --- a/metadata/md5-cache/www-servers/tomcat-8.5.77 +++ b/metadata/md5-cache/www-servers/tomcat-8.5.77 @@ -4,11 +4,11 @@ DESCRIPTION=Tomcat Servlet-3.1/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container EAPI=8 HOMEPAGE=https://tomcat.apache.org/ IUSE=extra-webapps doc source test -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris +KEYWORDS=amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris LICENSE=Apache-2.0 RDEPEND=dev-java/eclipse-ecj:4.5 ~dev-java/tomcat-servlet-api-8.5.77:3.1 acct-group/tomcat acct-user/tomcat >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) RESTRICT=test !test? ( test ) SLOT=8.5 SRC_URI=mirror://apache/tomcat/tomcat-8/v8.5.77/src/apache-tomcat-8.5.77-src.tar.gz _eclasses_=java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e70f597e1236ec325d1bb7c28c945121 +_md5_=50639ff0b0bb42a6ce9031bcd9b03854 diff --git a/metadata/md5-cache/www-servers/tomcat-9.0.59 b/metadata/md5-cache/www-servers/tomcat-9.0.59 deleted file mode 100644 index ab4badd1f747..000000000000 --- a/metadata/md5-cache/www-servers/tomcat-9.0.59 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=dev-java/eclipse-ecj:4.15 dev-java/glassfish-xmlrpc-api:0 ~dev-java/tomcat-servlet-api-9.0.59:4.0 dev-java/wsdl4j:0 app-admin/pwgen >=dev-java/ant-core-1.9.13 >=virtual/jdk-1.8:* test? ( >=dev-java/ant-junit-1.9:0 dev-java/easymock:3.2 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container -EAPI=8 -HOMEPAGE=https://tomcat.apache.org/ -IUSE=extra-webapps doc source test -KEYWORDS=amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=Apache-2.0 -RDEPEND=dev-java/eclipse-ecj:4.15 dev-java/glassfish-xmlrpc-api:0 ~dev-java/tomcat-servlet-api-9.0.59:4.0 dev-java/wsdl4j:0 acct-group/tomcat acct-user/tomcat >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=test !test? ( test ) -SLOT=9 -SRC_URI=mirror://apache/tomcat/tomcat-9/v9.0.59/src/apache-tomcat-9.0.59-src.tar.gz https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd/6.2.0/biz.aQute.bnd-6.2.0.jar https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/6.2.0/biz.aQute.bndlib-6.2.0.jar -_eclasses_=java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=8c2d37f1ed5dd1515d09c7e5968ded68 diff --git a/metadata/md5-cache/www-servers/tomcat-9.0.60 b/metadata/md5-cache/www-servers/tomcat-9.0.60 index 529ea8c09667..bfdd82d70133 100644 --- a/metadata/md5-cache/www-servers/tomcat-9.0.60 +++ b/metadata/md5-cache/www-servers/tomcat-9.0.60 @@ -4,11 +4,11 @@ DESCRIPTION=Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container EAPI=8 HOMEPAGE=https://tomcat.apache.org/ IUSE=extra-webapps doc source test -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris +KEYWORDS=amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris LICENSE=Apache-2.0 RDEPEND=dev-java/eclipse-ecj:4.15 dev-java/glassfish-xmlrpc-api:0 ~dev-java/tomcat-servlet-api-9.0.60:4.0 dev-java/wsdl4j:0 acct-group/tomcat acct-user/tomcat >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) RESTRICT=test !test? ( test ) SLOT=9 SRC_URI=mirror://apache/tomcat/tomcat-9/v9.0.60/src/apache-tomcat-9.0.60-src.tar.gz https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd/6.2.0/biz.aQute.bnd-6.2.0.jar https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/6.2.0/biz.aQute.bndlib-6.2.0.jar _eclasses_=java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=cae9752a9a84bb5aabad3bd81bb93554 +_md5_=8c2d37f1ed5dd1515d09c7e5968ded68 diff --git a/metadata/md5-cache/www-servers/uwsgi-2.0.19.1-r109 b/metadata/md5-cache/www-servers/uwsgi-2.0.19.1-r109 index bbfed839b273..de4116ce678f 100644 --- a/metadata/md5-cache/www-servers/uwsgi-2.0.19.1-r109 +++ b/metadata/md5-cache/www-servers/uwsgi-2.0.19.1-r109 @@ -11,5 +11,5 @@ RDEPEND=sys-libs/zlib virtual/libcrypt:= caps? ( sys-libs/libcap ) json? ( !yajl REQUIRED_USE=|| ( cgi mono perl go lua php python python-asyncio python-gevent ruby ) uwsgi_plugins_logcrypto? ( ssl ) uwsgi_plugins_sslrouter? ( ssl ) routing? ( pcre ) uwsgi_plugins_emperor_zeromq? ( zeromq ) uwsgi_plugins_forkptyrouter? ( uwsgi_plugins_corerouter ) uwsgi_plugins_router_xmldir? ( xml !expat ) lua? ( ^^ ( lua_single_target_lua5-1 ) ) python? ( || ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) ) python-asyncio? ( python ) python-gevent? ( python ) expat? ( xml ) php? ( || ( php_targets_php7-3 php_targets_php7-4 ) ) SLOT=0 SRC_URI=https://github.com/unbit/uwsgi/archive/2.0.19.1.tar.gz -> uwsgi-2.0.19.1.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e lua-single f2c2fb82c912dd65d53bdae3613a331f lua-utils e69ff116248d78546ae1a234c086fe80 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b pax-utils 91d47e5d20627c717aa878b9167c62a8 php-ext-source-r3 3c26d87acac034aedf8bf126f7010c8a python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e lua-single f2c2fb82c912dd65d53bdae3613a331f lua-utils e69ff116248d78546ae1a234c086fe80 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b pax-utils 91d47e5d20627c717aa878b9167c62a8 php-ext-source-r3 3c26d87acac034aedf8bf126f7010c8a python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=268606ac3613ce637a5a208ea8558cf2 diff --git a/metadata/md5-cache/x11-base/Manifest.gz b/metadata/md5-cache/x11-base/Manifest.gz index 58c990ea5876..ee8a2ac88158 100644 Binary files a/metadata/md5-cache/x11-base/Manifest.gz and b/metadata/md5-cache/x11-base/Manifest.gz differ diff --git a/metadata/md5-cache/x11-base/xwayland-9999 b/metadata/md5-cache/x11-base/xwayland-9999 new file mode 100644 index 000000000000..17d13aebde45 --- /dev/null +++ b/metadata/md5-cache/x11-base/xwayland-9999 @@ -0,0 +1,13 @@ +BDEPEND=sys-devel/flex dev-util/wayland-scanner >=dev-util/meson-0.59.4 >=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/libbsd dev-libs/openssl:= >=dev-libs/wayland-1.20 >=dev-libs/wayland-protocols-1.22 media-fonts/font-util >=media-libs/libepoxy-1.5.4[X,egl(+)] media-libs/libglvnd[X] >=media-libs/mesa-21.1[X(+),egl(+),gbm(+)] >=x11-libs/libdrm-2.4.89 >=x11-libs/libXau-1.0.4 x11-libs/libxcvt >=x11-libs/libXdmcp-1.0.2 >=x11-libs/libXfont2-2.0.1 x11-libs/libxkbfile >=x11-libs/libxshmfence-1.1 >=x11-libs/pixman-0.27.2 >=x11-misc/xkeyboard-config-2.4.1-r3 unwind? ( sys-libs/libunwind ) video_cards_nvidia? ( gui-libs/egl-wayland ) x11-base/xorg-proto >=x11-libs/xtrans-1.3.5 +DESCRIPTION=Standalone X server running under Wayland +EAPI=7 +HOMEPAGE=https://wayland.freedesktop.org/xserver.html +IUSE=selinux video_cards_nvidia unwind xcsecurity +LICENSE=MIT +PROPERTIES=live +RDEPEND=dev-libs/libbsd dev-libs/openssl:= >=dev-libs/wayland-1.20 >=dev-libs/wayland-protocols-1.22 media-fonts/font-util >=media-libs/libepoxy-1.5.4[X,egl(+)] media-libs/libglvnd[X] >=media-libs/mesa-21.1[X(+),egl(+),gbm(+)] >=x11-libs/libdrm-2.4.89 >=x11-libs/libXau-1.0.4 x11-libs/libxcvt >=x11-libs/libXdmcp-1.0.2 >=x11-libs/libXfont2-2.0.1 x11-libs/libxkbfile >=x11-libs/libxshmfence-1.1 >=x11-libs/pixman-0.27.2 >=x11-misc/xkeyboard-config-2.4.1-r3 unwind? ( sys-libs/libunwind ) video_cards_nvidia? ( gui-libs/egl-wayland ) x11-apps/xkbcomp !<=x11-base/xorg-server-1.20.11 selinux? ( sec-policy/selinux-xserver ) +SLOT=0 +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=d26203b9f665ee1afc86ead72594dd6b diff --git a/metadata/md5-cache/x11-drivers/Manifest.gz b/metadata/md5-cache/x11-drivers/Manifest.gz index 53cf336aeae9..efe69d539189 100644 Binary files a/metadata/md5-cache/x11-drivers/Manifest.gz and b/metadata/md5-cache/x11-drivers/Manifest.gz differ diff --git a/metadata/md5-cache/x11-drivers/xf86-video-vmware-13.3.0 b/metadata/md5-cache/x11-drivers/xf86-video-vmware-13.3.0-r1 similarity index 69% rename from metadata/md5-cache/x11-drivers/xf86-video-vmware-13.3.0 rename to metadata/md5-cache/x11-drivers/xf86-video-vmware-13.3.0-r1 index b4b5c53b573a..fbc426cd3277 100644 --- a/metadata/md5-cache/x11-drivers/xf86-video-vmware-13.3.0 +++ b/metadata/md5-cache/x11-drivers/xf86-video-vmware-13.3.0-r1 @@ -1,13 +1,13 @@ BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm prepare unpack -DEPEND=kernel_linux? ( x11-libs/libdrm[libkms,video_cards_vmware] media-libs/mesa[xa] ) x11-base/xorg-proto x11-base/xorg-server[-minimal] x11-libs/libdrm >=x11-base/xorg-server-1.20[xorg] >=x11-libs/libpciaccess-0.14 +DEPEND=kernel_linux? ( x11-libs/libdrm[video_cards_vmware] media-libs/mesa[xa] ) x11-base/xorg-proto x11-base/xorg-server[-minimal] x11-libs/libdrm >=x11-base/xorg-server-1.20[xorg] >=x11-libs/libpciaccess-0.14 DESCRIPTION=VMware SVGA video driver EAPI=7 HOMEPAGE=https://www.x.org/wiki/ https://gitlab.freedesktop.org/xorg/driver/xf86-video-vmware KEYWORDS=amd64 x86 LICENSE=MIT -RDEPEND=kernel_linux? ( x11-libs/libdrm[libkms,video_cards_vmware] media-libs/mesa[xa] ) x11-base/xorg-server:= x11-base/xorg-server[-minimal] x11-libs/libdrm >=x11-base/xorg-server-1.20[xorg] >=x11-libs/libpciaccess-0.14 +RDEPEND=kernel_linux? ( x11-libs/libdrm[video_cards_vmware] media-libs/mesa[xa] ) x11-base/xorg-server:= x11-base/xorg-server[-minimal] x11-libs/libdrm >=x11-base/xorg-server-1.20[xorg] >=x11-libs/libpciaccess-0.14 SLOT=0 SRC_URI=https://www.x.org/releases/individual/driver/xf86-video-vmware-13.3.0.tar.bz2 _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c xorg-3 833caab4719b3738365b4707c7ffa5c6 -_md5_=20e83983eedff868e961a28292495da6 +_md5_=bb9dd0ebf4399e6f492e6d0d67fc7a40 diff --git a/metadata/md5-cache/x11-libs/Manifest.gz b/metadata/md5-cache/x11-libs/Manifest.gz index ba780a5c5996..a6c67707b655 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/libdrm-9999 b/metadata/md5-cache/x11-libs/libdrm-9999 index bcc80b86fa28..da76a0426914 100644 --- a/metadata/md5-cache/x11-libs/libdrm-9999 +++ b/metadata/md5-cache/x11-libs/libdrm-9999 @@ -4,11 +4,11 @@ DEPEND=video_cards_intel? ( >=x11-libs/libpciaccess-0.13.1-r1:=[abi_x86_32(-)?,a DESCRIPTION=X.Org libdrm library EAPI=7 HOMEPAGE=https://dri.freedesktop.org/ https://gitlab.freedesktop.org/mesa/drm -IUSE=video_cards_amdgpu video_cards_exynos video_cards_freedreno video_cards_intel video_cards_nouveau video_cards_omap video_cards_radeon video_cards_tegra video_cards_vc4 video_cards_vivante video_cards_vmware libkms valgrind abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +IUSE=video_cards_amdgpu video_cards_exynos video_cards_freedreno video_cards_intel video_cards_nouveau video_cards_omap video_cards_radeon video_cards_tegra video_cards_vc4 video_cards_vivante video_cards_vmware valgrind abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 LICENSE=MIT PROPERTIES=live RDEPEND=video_cards_intel? ( >=x11-libs/libpciaccess-0.13.1-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 _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 meson 2d8a51910bc57e004c37aa55c7d99ce4 meson-multilib 84c0d4019bf29be0d9d0a2d98fb8b0d9 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=dc5f2558590cd425833114bab8768fac +_md5_=c7d7b14f8f360d9c5feab91d08c5b49d diff --git a/metadata/md5-cache/x11-plugins/Manifest.gz b/metadata/md5-cache/x11-plugins/Manifest.gz index 226ed626a36d..82bbed064b69 100644 Binary files a/metadata/md5-cache/x11-plugins/Manifest.gz and b/metadata/md5-cache/x11-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/x11-plugins/gkrellm-leds-0.8.2-r2 b/metadata/md5-cache/x11-plugins/gkrellm-leds-0.8.2-r2 index ca6f9ec5f2cc..0d184d175c10 100644 --- a/metadata/md5-cache/x11-plugins/gkrellm-leds-0.8.2-r2 +++ b/metadata/md5-cache/x11-plugins/gkrellm-leds-0.8.2-r2 @@ -1,5 +1,5 @@ BDEPEND=virtual/pkgconfig virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 -DEFINED_PHASES=configure install prepare +DEFINED_PHASES=install prepare DEPEND=app-admin/gkrellm:2[X] x11-libs/libXtst x11-base/xorg-proto DESCRIPTION=GKrellM2 plugin for monitoring keyboard LEDs EAPI=8 @@ -10,4 +10,4 @@ RDEPEND=app-admin/gkrellm:2[X] x11-libs/libXtst SLOT=2 SRC_URI=http://heim.ifi.uio.no/~oyvinha/e107_files/downloads/gkleds-0.8.2.tar.gz _eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 gkrellm-plugin 44870b869ece4d2afff1e3169c00c367 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e88c9096605f8c13798291ac3b47a0e3 +_md5_=f8508dbc58bce0e629189f90e4ba8efa diff --git a/metadata/md5-cache/x11-wm/Manifest.gz b/metadata/md5-cache/x11-wm/Manifest.gz index ba892d9ce078..2f871d93f811 100644 Binary files a/metadata/md5-cache/x11-wm/Manifest.gz and b/metadata/md5-cache/x11-wm/Manifest.gz differ diff --git a/metadata/md5-cache/x11-wm/ratpoison-1.4.9-r2 b/metadata/md5-cache/x11-wm/ratpoison-1.4.9-r2 index 8a75e409b11f..8597067c662a 100644 --- a/metadata/md5-cache/x11-wm/ratpoison-1.4.9-r2 +++ b/metadata/md5-cache/x11-wm/ratpoison-1.4.9-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) history? ( sys-libs/readline:= ) xft? ( x11-libs/libXft ) xrandr? ( x11-libs/libXrandr ) dev-perl/Pod-Parser x11-libs/libX11 x11-libs/libXtst SLOT=0 SRC_URI=http://download.savannah.gnu.org/releases/ratpoison/ratpoison-1.4.9.tar.xz -_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp-common f9c72486dbcb18b633c9d0949211d86e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 elisp-common e7aaa047873789f549ea3df2f04b2145 multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=a851fe855d5c6640d700103d8ffa463a diff --git a/metadata/md5-cache/x11-wm/ratpoison-9999 b/metadata/md5-cache/x11-wm/ratpoison-9999 index 252c26a86a78..7568171ad63f 100644 --- a/metadata/md5-cache/x11-wm/ratpoison-9999 +++ b/metadata/md5-cache/x11-wm/ratpoison-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) history? ( sys-libs/readline:= ) xft? ( x11-libs/libXft ) xrandr? ( x11-libs/libXrandr ) dev-perl/Pod-Parser x11-libs/libX11 x11-libs/libXtst SLOT=0 -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common f9c72486dbcb18b633c9d0949211d86e git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 elisp-common e7aaa047873789f549ea3df2f04b2145 git-r3 b9ac6f96d2a88edb5b351df634dc5e53 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=7c417b5cfeb38de16b221e5427c0e14e diff --git a/metadata/md5-cache/x11-wm/sawfish-1.12.90-r2 b/metadata/md5-cache/x11-wm/sawfish-1.12.90-r2 index 5cfd83f417ec..d4eaffffc94e 100644 --- a/metadata/md5-cache/x11-wm/sawfish-1.12.90-r2 +++ b/metadata/md5-cache/x11-wm/sawfish-1.12.90-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 Artistic-2 RDEPEND=>=dev-libs/librep-0.92.1 >=x11-libs/rep-gtk-0.90.7 x11-libs/gdk-pixbuf-xlib >=x11-libs/gdk-pixbuf-2.42.0:2 >=x11-libs/gtk+-2.24.0:2 x11-libs/libICE x11-libs/libXext x11-libs/libXft x11-libs/libXrender x11-libs/libXtst x11-libs/pango[X] emacs? ( >=app-editors/emacs-23.1:* ) kde? ( kde-frameworks/kdelibs4support ) nls? ( sys-devel/gettext ) xinerama? ( x11-libs/libXinerama ) SLOT=0 SRC_URI=https://download.tuxfamily.org/sawfish/sawfish_1.12.90.tar.xz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=94d95bab4aabefb6eabda87a6cef2f85 diff --git a/metadata/md5-cache/x11-wm/stumpwm-18.05 b/metadata/md5-cache/x11-wm/stumpwm-18.05 index 041e8369db4c..f0c8068f2018 100644 --- a/metadata/md5-cache/x11-wm/stumpwm-18.05 +++ b/metadata/md5-cache/x11-wm/stumpwm-18.05 @@ -11,5 +11,5 @@ RDEPEND=dev-lisp/alexandria dev-lisp/cl-ppcre dev-lisp/clx >=dev-lisp/sbcl-1.3.0 RESTRICT=strip mirror SLOT=0 SRC_URI=https://github.com/stumpwm/stumpwm/archive/18.05.tar.gz -> stumpwm-18.05.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 common-lisp-3 747af8b5a3e934f3087352abaaaa4518 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common f9c72486dbcb18b633c9d0949211d86e epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 common-lisp-3 747af8b5a3e934f3087352abaaaa4518 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common e7aaa047873789f549ea3df2f04b2145 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e _md5_=e2c849f502e85d1cbedbf65c3b17a593 diff --git a/metadata/md5-cache/x11-wm/subtle-0.11.3244-r1 b/metadata/md5-cache/x11-wm/subtle-0.11.3244-r1 index b57458fd5b4c..447195af641c 100644 --- a/metadata/md5-cache/x11-wm/subtle-0.11.3244-r1 +++ b/metadata/md5-cache/x11-wm/subtle-0.11.3244-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://dev.gentoo.org/~radhermit/dist/subtle-0.11.3244.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng 840098b934fa20199984384b02780370 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 4a33c9008e5ee30cb8840a3fdc24df2b ruby-ng e4c8836049bf65af19ab322fe5a81005 ruby-utils 707c7b16c28e3483e51d7ec7f7b0d5ed toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=49a1326fcd33328d94a226525b20afa0 diff --git a/metadata/news/2022-04-17-systemd-utils-update-needed/2022-04-17-systemd-utils-update-needed.en.txt b/metadata/news/2022-04-17-systemd-utils-update-needed/2022-04-17-systemd-utils-update-needed.en.txt new file mode 100644 index 000000000000..22262edda025 --- /dev/null +++ b/metadata/news/2022-04-17-systemd-utils-update-needed/2022-04-17-systemd-utils-update-needed.en.txt @@ -0,0 +1,12 @@ +Title: sys-apps/systemd-utils update needed +Author: Mike Gilbert +Posted: 2022-04-17 +Revision: 1 +News-Item-Format: 2.0 +Display-If-Installed: =sys-apps/systemd-utils-250.4 + +The currently installed version of sys-apps/systemd-utils may cause +kernel modules to fail to load on boot. + +Please upgrade to >=sys-apps/systemd-utils-250.4-r1 as soon as possible, +and certainly before rebooting your system. diff --git a/metadata/news/Manifest.files.gz b/metadata/news/Manifest.files.gz index ca24cc5e2c59..893e2ea77df9 100644 Binary files a/metadata/news/Manifest.files.gz and b/metadata/news/Manifest.files.gz differ diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 35153d774b2c..adec49f44a30 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Sun, 17 Apr 2022 20:09:33 +0000 +Tue, 19 Apr 2022 12:09:07 +0000 diff --git a/metadata/news/timestamp.commit b/metadata/news/timestamp.commit index b080b1990ebc..9e550fb5072c 100644 --- a/metadata/news/timestamp.commit +++ b/metadata/news/timestamp.commit @@ -1 +1 @@ -930b96b94ebad678ef11b1d8aa5fd8aa609f198f 1649753577 2022-04-12T08:52:57+00:00 +b2f594c5cdfab4e0b7138fa294be29cdae185b21 1650236840 2022-04-17T23:07:20+00:00 diff --git a/metadata/projects.xml b/metadata/projects.xml index c8ddaa6923a1..cc06d7b5f839 100644 --- a/metadata/projects.xml +++ b/metadata/projects.xml @@ -285,17 +285,6 @@ General maintenance - - security-audit@gentoo.org - Security Audit Project - https://wiki.gentoo.org/wiki/Project:Auditing - The Security Audit Project is focused upon auditing packages for security issues. The aim of the project is to audit as many of the packages available through Gentoo Linux stable Portage tree as possible for potential flaws. - - zx2c4@gentoo.org - Jason A. Donenfeld - Lead - - base-system@gentoo.org Base System @@ -1766,6 +1755,20 @@ Ulrich Müller + + loong@gentoo.org + LoongArch Development + https://wiki.gentoo.org/wiki/Project:LoongArch + The LoongArch Development Project is devoted to keeping Gentoo in good shape on the LoongArch architecture. + + dilfridge@gentoo.org + Andreas K. Hüttel + + + xen0n@gentoo.org + WANG Xuerui + + lua@gentoo.org Lua Project @@ -3178,7 +3181,6 @@ Security Project https://wiki.gentoo.org/wiki/Project:Security The Security Project's mission is to ensure that vulnerabilities in software accessible through the Portage tree are found and fixed in a timely manner, so that our users remain protected against known vulnerabilities. - ajak@gentoo.org diff --git a/metadata/timestamp b/metadata/timestamp index 7b05ac727696..e4f4893aa3bc 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Sun Apr 17 08:09:32 PM UTC 2022 +Tue Apr 19 12:09:07 PM UTC 2022 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 455dce45a67e..cb6e8d00b94e 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Sun, 17 Apr 2022 20:30:01 +0000 +Tue, 19 Apr 2022 12:30:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index 05a88889ee9a..14273236fff9 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -05016b7429c5beea45667fbc7dbaa2de3d197991 1650225946 2022-04-17T20:05:46+00:00 +f1394019e23364160898c3e27fa52b41c1dcc740 1650369882 2022-04-19T12:04:42+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index be6e45c83e6b..3f28322fb141 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1650226201 Sun 17 Apr 2022 08:10:01 PM UTC +1650369901 Tue 19 Apr 2022 12:05:01 PM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index 1033a0854ed0..adec49f44a30 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Sun, 17 Apr 2022 20:09:32 +0000 +Tue, 19 Apr 2022 12:09:07 +0000 diff --git a/net-analyzer/Manifest.gz b/net-analyzer/Manifest.gz index 7929f244106d..5a28a4ad4505 100644 Binary files a/net-analyzer/Manifest.gz and b/net-analyzer/Manifest.gz differ diff --git a/net-analyzer/netdata/Manifest b/net-analyzer/netdata/Manifest index 92045cdca905..f2d613d78483 100644 --- a/net-analyzer/netdata/Manifest +++ b/net-analyzer/netdata/Manifest @@ -1,3 +1,4 @@ DIST netdata-1.32.1.tar.gz 22472431 BLAKE2B e05e4f29930493ad0c31373dabff57a3fd4f178730848fe4153aebb6219055ef0edda59577fe0c6cc9bd5cf3444b055e8330744f75581804f316f343fc692710 SHA512 869829eadcec4dd9c05cc6b6279830691b6cf9345cdcc0834e90d71f3bbee508c658d16bd379c51ce470c4e735e7c8d607dc045f45a60da2aa3dac36f37b5757 DIST netdata-1.33.0.tar.gz 22470692 BLAKE2B fc0feed8a93876ca7ec304d8ff95312de19f81fccb5ec564e324751488fe6bb10033c815d456238503bcefdd31ec213d61191e21a5ee6671e23183aec7f298d9 SHA512 31b7ce97a3e756fddc358501d98b5ccf056dbe8d22585628873753f30041533d8926b8549a6f1c795c20b33952ec24df2a3ccdce85d6b1da984964bf08a5a66d DIST netdata-1.33.1.tar.gz 22611080 BLAKE2B 01838efcfc99ce644f04af1cde3dcbc5844cf2eaff8afb44503effd017b4dcd9ed990cd2ad6f285f81c72a0bae91586fa21c0306ad932252503ee755b949d7e3 SHA512 f6586426bd0fe1ac3d903ec279b27177b1d232f5ca1fc28b01f052a5f2f57846d2d6369c9d5a1872fb97e31f86f1f7a11c600beda590447f9ca30c93e7ac262c +DIST netdata-1.34.1.tar.gz 22356370 BLAKE2B d166b121e567c9cd0e7929326a5c5049af953f396e7bc38f86b06a83bca9bb823fb4842585d87e237596fec9fe091e50fade2a3cf17e6426de33cbfecc2c92dd SHA512 777b0f4efa0b64dd150a097cb2ec1c3155506ada9c1e5289b6acda5e34c9262f796795608b52e70c9310a5cbda03c0568e1391c6861c7f3ea84aa9ca84ed9a0c diff --git a/net-analyzer/netdata/netdata-1.34.1.ebuild b/net-analyzer/netdata/netdata-1.34.1.ebuild new file mode 100644 index 000000000000..a7abbd226016 --- /dev/null +++ b/net-analyzer/netdata/netdata-1.34.1.ebuild @@ -0,0 +1,159 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python{3_8,3_9,3_10} ) + +inherit autotools fcaps flag-o-matic linux-info python-single-r1 systemd toolchain-funcs + +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://github.com/netdata/${PN}.git" + inherit git-r3 +else + SRC_URI="https://github.com/netdata/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${PN}-v${PV}" + KEYWORDS="~amd64 ~ppc64 ~x86" +fi + +DESCRIPTION="Linux real time system monitoring, done right!" +HOMEPAGE="https://github.com/netdata/netdata https://my-netdata.io/" + +LICENSE="GPL-3+ MIT BSD" +SLOT="0" +IUSE="caps cloud +compression cpu_flags_x86_sse2 cups +dbengine ipmi +jsonc kinesis +lto mongodb mysql nfacct nodejs postgres prometheus +python tor xen" +REQUIRED_USE=" + mysql? ( python ) + python? ( ${PYTHON_REQUIRED_USE} ) + tor? ( python )" + +# most unconditional dependencies are for plugins.d/charts.d.plugin: +RDEPEND=" + acct-group/netdata + acct-user/netdata + app-misc/jq + >=app-shells/bash-4:0 + || ( + net-analyzer/openbsd-netcat + net-analyzer/netcat + ) + net-libs/libwebsockets + net-misc/curl + net-misc/wget + sys-apps/util-linux + virtual/awk + caps? ( sys-libs/libcap ) + cups? ( net-print/cups ) + dbengine? ( + app-arch/lz4 + dev-libs/judy + dev-libs/openssl:= + ) + dev-libs/libuv + cloud? ( dev-libs/protobuf:= ) + compression? ( sys-libs/zlib ) + ipmi? ( sys-libs/freeipmi ) + jsonc? ( dev-libs/json-c:= ) + kinesis? ( dev-libs/aws-sdk-cpp[kinesis] ) + mongodb? ( dev-libs/mongo-c-driver ) + nfacct? ( + net-firewall/nfacct + net-libs/libmnl + ) + nodejs? ( net-libs/nodejs ) + prometheus? ( + dev-libs/protobuf:= + app-arch/snappy + ) + python? ( + ${PYTHON_DEPS} + $(python_gen_cond_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]') + mysql? ( $(python_gen_cond_dep 'dev-python/mysqlclient[${PYTHON_USEDEP}]') ) + postgres? ( $(python_gen_cond_dep 'dev-python/psycopg:2[${PYTHON_USEDEP}]') ) + tor? ( $(python_gen_cond_dep 'net-libs/stem[${PYTHON_USEDEP}]') ) + ) + xen? ( + app-emulation/xen-tools + dev-libs/yajl + )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +FILECAPS=( + 'cap_dac_read_search,cap_sys_ptrace+ep' 'usr/libexec/netdata/plugins.d/apps.plugin' +) + +pkg_setup() { + use python && python-single-r1_pkg_setup + linux-info_pkg_setup +} + +src_prepare() { + default + eautoreconf +} + +src_configure() { + if use ppc64; then + # bundled dlib does not support vsx on big-endian + # https://github.com/davisking/dlib/issues/397 + [[ $(tc-endian) == big ]] && append-flags -mno-vsx + fi + + econf \ + --localstatedir="${EPREFIX}"/var \ + --with-user=netdata \ + --without-bundled-protobuf \ + $(use_enable cloud) \ + $(use_enable jsonc) \ + $(use_enable cups plugin-cups) \ + $(use_enable dbengine) \ + $(use_enable nfacct plugin-nfacct) \ + $(use_enable ipmi plugin-freeipmi) \ + $(use_enable kinesis backend-kinesis) \ + $(use_enable lto lto) \ + $(use_enable mongodb backend-mongodb) \ + $(use_enable prometheus backend-prometheus-remote-write) \ + $(use_enable xen plugin-xenstat) \ + $(use_enable cpu_flags_x86_sse2 x86-sse) \ + $(use_with compression zlib) +} + +src_compile() { + emake clean + default +} + +src_install() { + default + + rm -rf "${D}/var/cache" || die + + keepdir /var/log/netdata + fowners -Rc netdata:netdata /var/log/netdata + keepdir /var/lib/netdata + keepdir /var/lib/netdata/registry + fowners -Rc netdata:netdata /var/lib/netdata + + fowners -Rc root:netdata /usr/share/${PN} + + newinitd system/netdata-openrc ${PN} + systemd_dounit system/netdata.service + insinto /etc/netdata + doins system/netdata.conf +} + +pkg_postinst() { + fcaps_pkg_postinst + + if use nfacct ; then + fcaps 'cap_net_admin' 'usr/libexec/netdata/plugins.d/nfacct.plugin' + fi + + if use xen ; then + fcaps 'cap_dac_override' 'usr/libexec/netdata/plugins.d/xenstat.plugin' + fi + + if use ipmi ; then + fcaps 'cap_dac_override' 'usr/libexec/netdata/plugins.d/freeipmi.plugin' + fi +} diff --git a/net-analyzer/netdata/netdata-9999.ebuild b/net-analyzer/netdata/netdata-9999.ebuild index 427b0ff777e1..a7abbd226016 100644 --- a/net-analyzer/netdata/netdata-9999.ebuild +++ b/net-analyzer/netdata/netdata-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PYTHON_COMPAT=( python{3_8,3_9,3_10} ) inherit autotools fcaps flag-o-matic linux-info python-single-r1 systemd toolchain-funcs @@ -10,8 +10,8 @@ if [[ ${PV} == *9999 ]] ; then EGIT_REPO_URI="https://github.com/netdata/${PN}.git" inherit git-r3 else - SRC_URI="https://github.com/netdata/${PN}/releases/download/${PV}/${PN}-${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN}-${PV}" + SRC_URI="https://github.com/netdata/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${PN}-v${PV}" KEYWORDS="~amd64 ~ppc64 ~x86" fi diff --git a/net-firewall/Manifest.gz b/net-firewall/Manifest.gz index cc3353bf4481..b105b614e69b 100644 Binary files a/net-firewall/Manifest.gz and b/net-firewall/Manifest.gz differ diff --git a/net-firewall/xtables-addons/Manifest b/net-firewall/xtables-addons/Manifest index cfa575df5668..af630a4dddf4 100644 --- a/net-firewall/xtables-addons/Manifest +++ b/net-firewall/xtables-addons/Manifest @@ -1,2 +1,3 @@ DIST xtables-addons-3.13.tar.xz 327104 BLAKE2B 110719a7425060a79df0643ea35cf28ac62af811dde0f6744cf75b632809ff02518366e12ecdf8b017648b85843e689735629fc099b23b21b1999afa3a2e5c69 SHA512 0a9874269dafefe2fc364b41d3f5fb2108ba83dc49457f3aa436b814c8c65fb00f48f664576c8ccf183939edffa854fcf9f9c82a801ac90c0e2b9dc1426e1d85 DIST xtables-addons-3.18.tar.xz 328624 BLAKE2B 9662773c4bd5464ca789975762233299ca194977d5605a3c5f9a8a5a15f51afa4c33c8c17fd622af301a0f377542b6497eac5ce7e23719d238de5df51a9554b1 SHA512 b334642ce9b6ec3fc775ddbe6b66d70467fdcbfe30dcb165dac203f9d7fcd222dfd8c91e10befa3666bf572115dc75ed32d8ece05ed2947a4ed21d1d09032b8f +DIST xtables-addons-3.20.tar.xz 333232 BLAKE2B bc6df6d6e56bd539dc649d312fe84a5fe9e4743d6b1f72f3b3bb4689cea91cef9051754d30e530fa3140b877a67b2f84490740e669993669a1ee515d0a434b8d SHA512 0a38c12159dd555a31f24dc5a74d012b27723925df827edffe2343f6b8e61e838b5dc4776bafe37587e9622b9da1e9cd4220e4f576d58e78eb21ad18a419fb2e diff --git a/net-firewall/xtables-addons/xtables-addons-3.18.ebuild b/net-firewall/xtables-addons/xtables-addons-3.18.ebuild index 7ec917766690..e6a368f9d8bc 100644 --- a/net-firewall/xtables-addons/xtables-addons-3.18.ebuild +++ b/net-firewall/xtables-addons/xtables-addons-3.18.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -13,7 +13,7 @@ SRC_URI="https://inai.de/files/xtables-addons/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" MODULES="quota2 psd pknock lscan length2 ipv4options ipp2p iface gradm geoip fuzzy condition tarpit sysrq proto logmark ipmark echo dnetmap dhcpmac delude chaos account" diff --git a/net-firewall/xtables-addons/xtables-addons-3.20.ebuild b/net-firewall/xtables-addons/xtables-addons-3.20.ebuild new file mode 100644 index 000000000000..5cbe698ab496 --- /dev/null +++ b/net-firewall/xtables-addons/xtables-addons-3.20.ebuild @@ -0,0 +1,189 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MODULES_OPTIONAL_USE=modules +MODULES_OPTIONAL_USE_IUSE_DEFAULT=1 +inherit linux-info linux-mod multilib toolchain-funcs + +DESCRIPTION="iptables extensions not yet accepted in the main kernel" +HOMEPAGE="https://inai.de/projects/xtables-addons/" +SRC_URI="https://inai.de/files/xtables-addons/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +MODULES="quota2 psd pknock lscan length2 ipv4options ipp2p iface gradm geoip fuzzy condition tarpit sysrq proto logmark ipmark echo dnetmap dhcpmac delude chaos account" + +for mod in ${MODULES}; do + IUSE="${IUSE} xtables_addons_${mod}" +done + +DEPEND=">=net-firewall/iptables-1.6.0" + +RDEPEND="${DEPEND} + xtables_addons_geoip? ( + app-arch/unzip + dev-perl/Net-CIDR-Lite + dev-perl/Text-CSV_XS + virtual/perl-Getopt-Long + ) +" + +DEPEND="${DEPEND} + virtual/linux-sources" + +SKIP_MODULES="" + +XA_check4internal_module() { + local mod=${1} + local version=${3} + local kconfigname=${3} + + if use xtables_addons_${mod} && kernel_is -gt ${version}; then + ewarn "${kconfigname} should be provided by the kernel. Skipping its build..." + if ! linux_chkconfig_present ${kconfigname}; then + ewarn "Please enable ${kconfigname} target in your kernel + configuration or disable checksum module in ${PN}." + fi + # SKIP_MODULES in case we need to disable building of everything + # like having this USE disabled + SKIP_MODULES+=" ${mod}" + fi +} + +pkg_setup() { + if use modules; then + get_version + check_modules_supported + CONFIG_CHECK="NF_CONNTRACK NF_CONNTRACK_MARK ~CONNECTOR" + ERROR_CONNECTOR="Please, enable CONFIG_CONNECTOR if you wish to receive userspace notifications from pknock through netlink/connector" + linux-mod_pkg_setup + + if ! linux_chkconfig_present IPV6; then + SKIP_IPV6_MODULES="ip6table_rawpost" + ewarn "No IPV6 support in kernel. Disabling: ${SKIP_IPV6_MODULES}" + fi + kernel_is -lt 4 18 && die "${P} requires kernel version >= 4.18" + fi +} + +# Helper for maintainer: cheks if all possible MODULES are listed. +XA_qa_check() { + local all_modules + all_modules=$(sed -n '/^build_/{s/build_\(.*\)=.*/\L\1/;G;s/\n/ /;s/ $//;h}; ${x;p}' "${S}/mconfig") + if [[ ${all_modules} != ${MODULES} ]]; then + ewarn "QA: Modules in mconfig differ from \$MODULES in ebuild." + ewarn "Please, update MODULES in ebuild." + ewarn "'${all_modules}'" + fi +} + +# Is there any use flag set? +XA_has_something_to_build() { + local mod + for mod in ${MODULES}; do + use xtables_addons_${mod} && return + done + + eerror "All modules are disabled. What do you want me to build?" + eerror "Please, set XTABLES_ADDONS to any combination of" + eerror "${MODULES}" + die "All modules are disabled." +} + +# Parse Kbuid files and generates list of sources +XA_get_module_name() { + [[ $# != 1 ]] && die "XA_get_sources_for_mod: needs exactly one argument." + local mod objdir build_mod sources_list + mod=${1} + objdir=${S}/extensions + # Take modules name from mconfig + build_mod=$(sed -n "s/\(build_${mod}\)=.*/\1/Ip" "${S}/mconfig") + # strip .o, = and everything before = and print + sources_list=$(sed -n "/^obj-[$][{]${build_mod}[}]/\ + {s:obj-[^+]\+ [+]=[[:space:]]*::;s:[.]o::g;p}" \ + "${objdir}/Kbuild") + + if [[ -d ${S}/extensions/${sources_list} ]]; then + objdir=${S}/extensions/${sources_list} + sources_list=$(sed -n "/^obj-m/\ + {s:obj-[^+]\+ [+]=[[:space:]]*::;s:[.]o::g;p}" \ + "${objdir}/Kbuild") + fi + for mod_src in ${sources_list}; do + has ${mod_src} ${SKIP_IPV6_MODULES} || \ + echo " ${mod_src}(xtables_addons:${S}/extensions:${objdir})" + done +} + +# Die on modules known to fail on certain kernel version. +XA_known_failure() { + local module_name=$1 + local KV_max=$2 + + if use xtables_addons_${module_name} && kernel_is ge ${KV_max//./ }; then + eerror + eerror "XTABLES_ADDONS=${module_name} fails to build on linux ${KV_max} or above." + eerror "Either remove XTABLES_ADDONS=${module_name} or use an earlier version of the kernel." + eerror + die + fi +} + +src_prepare() { + XA_qa_check + XA_has_something_to_build + + # Bug #553630#c2. echo fails on linux-4 and above. + # This appears to be fixed, at least as of linux-4.2 + # XA_known_failure "echo" 4 + + local mod module_name + if use modules; then + MODULE_NAMES="compat_xtables(xtables_addons:${S}/extensions:)" + fi + for mod in ${MODULES}; do + if ! has ${mod} ${SKIP_MODULES} && use xtables_addons_${mod}; then + sed "s/\(build_${mod}=\).*/\1m/I" -i mconfig || die + if use modules; then + for module_name in $(XA_get_module_name ${mod}); do + MODULE_NAMES+=" ${module_name}" + done + fi + else + sed "s/\(build_${mod}=\).*/\1n/I" -i mconfig || die + fi + done + einfo "${MODULE_NAMES}" # for debugging + + sed -e 's/depmod -a/true/' -i Makefile.in || die + sed -e '/^all-local:/{s: modules::}' \ + -e '/^install-exec-local:/{s: modules_install::}' \ + -i extensions/Makefile.in || die + + use xtables_addons_geoip || sed -e '/^SUBDIRS/{s/geoip//}' -i Makefile.in + + eapply_user +} + +src_configure() { + set_arch_to_kernel # .. or it'll look for /arch/amd64/Makefile + econf --prefix="${EPREFIX}/" \ + --libexecdir="${EPREFIX}/$(get_libdir)/" \ + --with-kbuild="${KV_OUT_DIR}" +} + +src_compile() { + emake CFLAGS="${CFLAGS}" CC="$(tc-getCC)" V=1 + use modules && BUILD_PARAMS="V=1" BUILD_TARGETS="modules" linux-mod_src_compile +} + +src_install() { + emake DESTDIR="${D}" install + use modules && linux-mod_src_install + dodoc -r README doc/* + find "${ED}" -type f -name '*.la' -exec rm -rf '{}' '+' +} diff --git a/net-im/Manifest.gz b/net-im/Manifest.gz index 1116622775b3..ac391d2aa9c3 100644 Binary files a/net-im/Manifest.gz and b/net-im/Manifest.gz differ diff --git a/net-im/biboumi/metadata.xml b/net-im/biboumi/metadata.xml index cbe709768d65..294112cad842 100644 --- a/net-im/biboumi/metadata.xml +++ b/net-im/biboumi/metadata.xml @@ -1,5 +1,5 @@ - + Florian Schmaus diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz index e6802ec4fe67..db249ecc9e82 100644 Binary files a/net-libs/Manifest.gz and b/net-libs/Manifest.gz differ diff --git a/net-libs/libnma/libnma-1.8.38.ebuild b/net-libs/libnma/libnma-1.8.38.ebuild index 024459425f6e..7ef151147acc 100644 --- a/net-libs/libnma/libnma-1.8.38.ebuild +++ b/net-libs/libnma/libnma-1.8.38.ebuild @@ -13,7 +13,7 @@ SLOT="0" # pkcs11 default enabled as it's a small dep often already present by libnma users, and it was default enabled as IUSE=+gcr in nm-applet before IUSE="gtk-doc +introspection +pkcs11 vala" REQUIRED_USE="vala? ( introspection )" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" DEPEND=" >=gui-libs/gtk-4.0:4 diff --git a/net-mail/Manifest.gz b/net-mail/Manifest.gz index a772ead00ee5..d1659ec6afbe 100644 Binary files a/net-mail/Manifest.gz and b/net-mail/Manifest.gz differ diff --git a/net-mail/mailbase/files/mailcap-r1 b/net-mail/mailbase/files/mailcap-r1 deleted file mode 100644 index 0ffdcca3783f..000000000000 --- a/net-mail/mailbase/files/mailcap-r1 +++ /dev/null @@ -1,19 +0,0 @@ -application/pdf; xdg-open '%s'; needsterminal -application/postscript; xdg-open '%s'; needsterminal -application/x-info; info --subnodes -o /dev/stdout -f '%s' 2>/dev/null; copiousoutput; description=GNU Info document -application/x-gtar; tar tvzf -; print=tar tvzf - | print text/plain:-; copiousoutput -application/x-tar; tar tvf -; print=tar tvf - | print text/plain:-; copiousoutput -application/x-troff-man; nroff -mandoc -Tutf8; copiousoutput; print=nroff -mandoc -Tutf8 | print text/plain:- - -audio/*; xdg-open '%s'; needsterminal -image/*; xdg-open '%s'; needsterminal - -text/html; lynx -dump '%s'; copiousoutput; description=HTML Text; nametemplate=%s.html -text/troff; man -l '%s'; needsterminal; description=Man page -text/*; less '%s'; needsterminal -text/*; gview '%s'; edit=gvim -f '%s'; compose=gvim -f '%s'; test=test "$DISPLAY" != "" -text/*; view '%s'; edit=vim '%s'; compose=vim '%s'; needsterminal -text/*; more '%s'; needsterminal - -*/*; less '%s'; needsterminal -*/*; false; print=lpr '%s' diff --git a/net-mail/mailbase/files/mailcap-r2 b/net-mail/mailbase/files/mailcap-r2 deleted file mode 100644 index 5ecd40a4201a..000000000000 --- a/net-mail/mailbase/files/mailcap-r2 +++ /dev/null @@ -1,36 +0,0 @@ -# Database binding MIME types to programs that can process them. -# This file is generally used by mail clients to view attachments. -# -# Users should add their own rules to their ~/.mailcap file. That file will be -# processed first before falling back to this one. -# -# For more information, see the mailcap(5) man page. - -# NB: Do not quote %s. Clients will handle expanding it with proper quoting, -# so adding quotes ourselves just confuses things. - -application/pdf; xdg-open %s; needsterminal -application/postscript; xdg-open %s; needsterminal -application/x-info; info --subnodes -o /dev/stdout -f %s 2>/dev/null; copiousoutput; description=GNU Info document -application/x-gtar; tar tvzf -; print=tar tvzf - | print text/plain:-; copiousoutput -application/x-tar; tar tvf -; print=tar tvf - | print text/plain:-; copiousoutput -application/x-troff-man; nroff -mandoc -Tutf8; copiousoutput; print=nroff -mandoc -Tutf8 | print text/plain:- -# It'd be nice to limit this to compressed formats (e.g. x-*), but the file -# format doesn't support that, and less has good fallbacks already. -application/*; less %s; copiousoutput; needsterminal - -audio/*; xdg-open %s; needsterminal -image/*; xdg-open %s; needsterminal - -text/html; lynx -dump -assume_charset=%{charset} %s; copiousoutput; description=HTML Text; nametemplate=%s.html -text/troff; man -l %s; needsterminal; description=Man page -text/*; less %s; needsterminal -text/*; gview %s; edit=gvim -f %s; compose=gvim -f %s; test=test "$DISPLAY" != "" -text/*; view %s; edit=vim %s; compose=vim %s; needsterminal -text/*; more %s; needsterminal - -# NB: This is an extension in the hope that it might be useful to some programs. -# RFC1524 does not support * for the type (the string before the /), only for -# the subtype (the string after the /). -*/*; less %s; needsterminal -*/*; false; print=lpr %s diff --git a/net-mail/mailbase/mailbase-1.6-r1.ebuild b/net-mail/mailbase/mailbase-1.6-r1.ebuild deleted file mode 100644 index c8ddcc3a5694..000000000000 --- a/net-mail/mailbase/mailbase-1.6-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit pam - -DESCRIPTION="MTA layout package" -SRC_URI="" -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" -S=${WORKDIR} - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="pam" - -RDEPEND=" - acct-group/mail - acct-user/mail - acct-user/postmaster - pam? ( sys-libs/pam ) - ! - + diff --git a/net-misc/htpdate/Manifest b/net-misc/htpdate/Manifest index bc32a5ca9454..019b6469ab48 100644 --- a/net-misc/htpdate/Manifest +++ b/net-misc/htpdate/Manifest @@ -1,2 +1,3 @@ DIST htpdate-1.2.2.tar.gz 13625 BLAKE2B 11813def81e3cce1194120a21cf99e8ad288b0f604aab201850f03b6ca786d19792b9586c9d805aa1945bbc651e6afc5099b5c7cb6ea354473a4b3bab01397e3 SHA512 00d52b291004ddb3d0282aef78c5fbe5d9397dbf171a6646803ee7ba4bd0514af6089f7e48a92397dd1b0fbae5ba314f5165c9902028438e16d3516b65724de0 DIST htpdate-1.3.3.tar.gz 16302 BLAKE2B eb19462e1e5d02fe3cda7f4d2c954e2fe4b8dfcc299dc9094466a8652250ce27d37b2cf85716435639580e48295a92ad65521e0420cecac875c9b6e8074d425a SHA512 5d4892ea3626b80e5d529de873f675616dfef156e91d1e574225f91f9496503f55da43aa4f3522cb2b55da7c41dba7d97b3cc557a2704945577ec0243d8bd7f8 +DIST htpdate-1.3.4.tar.gz 16312 BLAKE2B 9ebff6df6de69fa310a6459099cff2bf5ec28ac2bb486a29121b87b93505f6bb31b4debc510dc82b7d7b7cce217d9002ec7606fcf4fa863d7b2cfc78dfc6e8d5 SHA512 634317966f1e5c5d78a889a398e77f89505a5918efa076e2cd1184341f25d963b7f1c135afee7d5489bd8a20b2421d9dfea312e09b5e6bdd389626bfd4d2d960 diff --git a/net-misc/htpdate/htpdate-1.3.4.ebuild b/net-misc/htpdate/htpdate-1.3.4.ebuild new file mode 100644 index 000000000000..31e1a7d493bf --- /dev/null +++ b/net-misc/htpdate/htpdate-1.3.4.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit readme.gentoo-r1 toolchain-funcs + +DESCRIPTION="Synchronize local workstation with time offered by remote webservers" +HOMEPAGE="https://www.vervest.org/htp/" +if [[ "${PV}" == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/twekkel/htpdate" +else + SRC_URI="https://github.com/twekkel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux" +fi +IUSE="+ssl" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="ssl? ( dev-libs/openssl:0= )" +RDEPEND="${DEPEND}" + +# Test suite tries to connect to the Internet +RESTRICT="test" + +DOC_CONTENTS="If you would like to run htpdate as a daemon, set +appropriate http servers in /etc/conf.d/htpdate!" + +PATCHES=( ) + +src_prepare() { + default + + # Use more standard adjtimex() to fix uClibc builds. + sed -i 's:ntp_adjtime:adjtimex:g' htpdate.[8c] || die + # Don't compress man pages by default + sed '/gzip/d' -i Makefile || die +} + +src_compile() { + emake CFLAGS="-Wall ${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)" \ + $(usex ssl "https" '') +} + +src_install() { + emake DESTDIR="${D}" STRIP="/bin/true" bindir='$(prefix)/sbin' install + dodoc README.md Changelog + + newconfd "${FILESDIR}"/htpdate.conf htpdate + newinitd "${FILESDIR}"/htpdate.init-r1 htpdate + + readme.gentoo_create_doc +} diff --git a/net-misc/htpdate/htpdate-9999.ebuild b/net-misc/htpdate/htpdate-9999.ebuild index eedff8c28a70..31e1a7d493bf 100644 --- a/net-misc/htpdate/htpdate-9999.ebuild +++ b/net-misc/htpdate/htpdate-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit readme.gentoo-r1 toolchain-funcs diff --git a/net-misc/turbovnc/files/turbovnc-2.2.7-fix-musl-compilation.patch b/net-misc/turbovnc/files/turbovnc-2.2.7-fix-musl-compilation.patch new file mode 100644 index 000000000000..c9f5f0397b4c --- /dev/null +++ b/net-misc/turbovnc/files/turbovnc-2.2.7-fix-musl-compilation.patch @@ -0,0 +1,51 @@ +See bug https://bugs.gentoo.org/836723 + +There are 2 compilation errors: + +/var/tmp/portage/net-misc/turbovnc-2.2.7-r2/work/turbovnc-2.2.7/unix/Xvnc/programs/Xserver/os/access.c: In function 'GetLocalClientCreds': +/var/tmp/portage/net-misc/turbovnc-2.2.7-r2/work/turbovnc-2.2.7/unix/Xvnc/programs/Xserver/os/access.c:1178:18: error: storage size of 'peercred' isn't known + 1178 | struct ucred peercred; + | ^~~~~~~~ + +/var/tmp/portage/net-misc/turbovnc-2.2.7-r2/work/turbovnc-2.2.7/unix/Xvnc/programs/Xserver/Xext/xf86bigfont.c:48:10: fatal error: asm/page.h: No such file or directory + 48 | #include + | ^~~~~~~~~~~~ + + +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -69,6 +69,8 @@ + boolean_number(TVNC_BUILDSERVER) + report_option(TVNC_BUILDSERVER "TurboVNC Server") + ++option(BUILDING_ON_MUSL "Define GNU macros on musl" 0) ++ + if(TVNC_BUILDNATIVE OR TVNC_BUILDSERVER) + set(USEC 1) + endif() +--- a/unix/Xvnc/programs/Xserver/os/CMakeLists.txt ++++ b/unix/Xvnc/programs/Xserver/os/CMakeLists.txt +@@ -13,6 +13,10 @@ + add_definitions(-DBSD44SOCKETS) + endif() + ++if(BUILDING_ON_MUSL) ++ add_definitions(-D_GNU_SOURCE) ++endif() ++ + set(EXTRASRCS "") + if(CMAKE_SYSTEM_NAME STREQUAL "SunOS") + add_definitions(-DSECURE_RPC) +--- a/unix/Xvnc/programs/Xserver/Xext/CMakeLists.txt ++++ b/unix/Xvnc/programs/Xserver/Xext/CMakeLists.txt +@@ -8,6 +8,10 @@ + endif() + endforeach() + ++if(BUILDING_ON_MUSL) ++ add_definitions(-D__GNU_LIBRARY__=2) ++endif() ++ + disable_compiler_warnings() + handle_type_puns() + diff --git a/net-misc/turbovnc/turbovnc-2.2.7-r2.ebuild b/net-misc/turbovnc/turbovnc-2.2.7-r2.ebuild index 5b1a5561d896..1764dc4c265b 100644 --- a/net-misc/turbovnc/turbovnc-2.2.7-r2.ebuild +++ b/net-misc/turbovnc/turbovnc-2.2.7-r2.ebuild @@ -14,7 +14,7 @@ SLOT="0" KEYWORDS="~amd64" IUSE="gnutls +ssl" -DEPEND=" +COMMON_DEPEND=" app-arch/bzip2 media-libs/freetype >=media-libs/libjpeg-turbo-2.0.0:=[java?] @@ -40,9 +40,15 @@ DEPEND=" !net-misc/tigervnc " RDEPEND=" - ${DEPEND} + ${COMMON_DEPEND} x11-apps/xkbcomp " +DEPEND=" + ${COMMON_DEPEND} + x11-libs/xtrans +" + +PATCHES=( "${FILESDIR}"/"${P}"-fix-musl-compilation.patch ) src_prepare() { use java && java-pkg-opt-2_src_prepare @@ -57,6 +63,7 @@ src_configure() { -DTVNC_BUILDNATIVE=$(usex java) -DXKB_BIN_DIRECTORY=/usr/bin -DXKB_DFLT_RULES=base + -DBUILDING_ON_MUSL=$(usex elibc_musl) # bug #836723 ) if use ssl ; then diff --git a/net-misc/yt-dlp/Manifest b/net-misc/yt-dlp/Manifest index 7a70fb56c439..0f6540a68c2a 100644 --- a/net-misc/yt-dlp/Manifest +++ b/net-misc/yt-dlp/Manifest @@ -1,2 +1 @@ -DIST yt-dlp-2022.3.8.2.tar.gz 2454754 BLAKE2B f07c1eb8d0e1f936298d6516e518f366558107ba9ae65f7c0b52bdcd185b27e501d0d0ffb20e923a94ce5f42c88ae335069876946c411232b9dfc1309ae796ca SHA512 bd6c105f65415e2229781bb1e859167686a5f5f6886e98f9693acc127d4f9124aa2d55f32835f82509f6ab5a82601a5d612ac608063ef9041769fa91e3539c44 DIST yt-dlp-2022.4.8.tar.gz 2257195 BLAKE2B 1d83ef14900789d0af0fc80bafcd6d80ca3162ede818d74382598161014c1a4c4450c0cdf57cdc79f3c5e2970a46004619eeffa9dfdb0d7af128bbe2a023ebf8 SHA512 b2d865682ba44dbd168cd76089105fc1d7ff2d79ba884c9626b3a4009c05f07eccaed2b8801318e89e3e197affc70aad68c1813590eef2a5148ded9c037bf0ce diff --git a/net-misc/yt-dlp/yt-dlp-2022.3.8.2.ebuild b/net-misc/yt-dlp/yt-dlp-2022.3.8.2.ebuild deleted file mode 100644 index 15fd9ad97135..000000000000 --- a/net-misc/yt-dlp/yt-dlp-2022.3.8.2.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) -inherit bash-completion-r1 distutils-r1 optfeature - -DESCRIPTION="youtube-dl fork with additional features and fixes" -HOMEPAGE="https://github.com/yt-dlp/yt-dlp" -SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz" - -LICENSE="Unlicense" -SLOT="0" -KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv x86 ~x64-macos" - -RDEPEND=" - dev-python/pycryptodome[${PYTHON_USEDEP}] - !net-misc/youtube-dl[-yt-dlp(-)]" - -distutils_enable_tests pytest - -python_prepare_all() { - distutils-r1_python_prepare_all - - # adjust requires for pycryptodome and optional dependencies (bug #828466) - sed -ri requirements.txt \ - -e "s/^(pycryptodome)x/\1/" \ - -e "/^(brotli.*|mutagen|websockets)/d" || die -} - -python_test() { - epytest -m 'not download' -p no:markdown -} - -python_install_all() { - dodoc README.md Changelog.md supportedsites.md - doman yt-dlp.1 - - dobashcomp completions/bash/yt-dlp - - insinto /usr/share/fish/vendor_completions.d - doins completions/fish/yt-dlp.fish - - insinto /usr/share/zsh/site-functions - doins completions/zsh/_yt-dlp - - rm -r "${ED}"/usr/share/doc/yt_dlp || die - - newbin - youtube-dl <<-EOF - #!/usr/bin/env sh - exec yt-dlp --compat-options youtube-dl "\${@}" - EOF -} - -pkg_postinst() { - optfeature "various features (merging tracks, streamed content)" media-video/ffmpeg - has_version media-video/atomicparsley || # allow fallback but don't advertise - optfeature "embedding metadata thumbnails in MP4/M4A files" media-libs/mutagen - - if [[ ! ${REPLACING_VERSIONS} ]]; then - elog 'A wrapper using "yt-dlp --compat-options youtube-dl" was installed' - elog 'as "youtube-dl". This is strictly for compatibility and it is' - elog 'recommended to use "yt-dlp" directly, it may be removed in the future.' - fi -} diff --git a/net-vpn/Manifest.gz b/net-vpn/Manifest.gz index 89f01da74008..241a2e67e458 100644 Binary files a/net-vpn/Manifest.gz and b/net-vpn/Manifest.gz differ diff --git a/net-vpn/networkmanager-openconnect/networkmanager-openconnect-1.2.8.ebuild b/net-vpn/networkmanager-openconnect/networkmanager-openconnect-1.2.8.ebuild index 145fe1c4dd0c..3ce7b7a9443e 100644 --- a/net-vpn/networkmanager-openconnect/networkmanager-openconnect-1.2.8.ebuild +++ b/net-vpn/networkmanager-openconnect/networkmanager-openconnect-1.2.8.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager https://gitlab.gnome.or LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" IUSE="gtk" DEPEND=" diff --git a/net-vpn/tor/Manifest b/net-vpn/tor/Manifest index f67d67cae673..820db150395c 100644 --- a/net-vpn/tor/Manifest +++ b/net-vpn/tor/Manifest @@ -1,15 +1,6 @@ DIST tor-0.4.6.10.tar.gz 7811644 BLAKE2B 4bdf8ab8ac992866ffc18711de0ad9e19b496398dfdace4d3902273822666dcfda3acd825ee22251cd8d671ff563702c6f24fe8670719a2c75d144cfe9219f68 SHA512 7d3ca14f260f8d18c020f629fee93a9e941962f99d7b6106d81b1f302152e4be14f5f719c06a34257c2bedf1612c53da21c26750b2608034bd6c6cf0c82192a9 DIST tor-0.4.6.10.tar.gz.sha256sum 85 BLAKE2B 1c51a80a0bdc34c31725ba6d632ae16ddec1c4aadd4c5ce8ff5ccd4dc9b051f76ddebbe1f1dc2c6f86194bf6badc95222ae14be100bbc24b75bc53f525cb8378 SHA512 97b49664f9f998b00fdd80f956bd5ab9588cd75d09041a0b946fdabd9f10c471eb49aa4bbb4d19bde45a554c1f2ef60d76ff58aa1dc74d4e7d930df77ac68262 DIST tor-0.4.6.10.tar.gz.sha256sum.asc 488 BLAKE2B 4f17ba1b555eeaa0aadad9348420979c1c83d3ce3cc4fa7e1cc6f453e75ae0bb43db19b883efcc329de5b52b91cda0f740ed949674f64e8cbfc0eb343ca2819b SHA512 3d814c0b3533cf2b2ff421dc92f254596f2af7206bbefdc15a71a906c667dd3606b2c37ada3d36df6011fd0b4d5fe78860f8845fae9e19bd9e3ba5745f45130b -DIST tor-0.4.6.7.tar.gz 7790727 BLAKE2B da6b0fe0de6a334713cf881dece6ef5a932b0f4374a7dde1e1cb78b4b43944fd6156d84bd98c8be734a7cf81b99cb36187544028c3e4800d38d11d7286d19e12 SHA512 e5f9e235fc4b96f5e63e0bfa4ca412d0d11299a31cb77cae1c199b276d0dfbf3656657ddf910b22625dd49eb726d487666e80e8889db78c9edebbab0d80d9e03 -DIST tor-0.4.6.7.tar.gz.asc 833 BLAKE2B 2054c094cc8ce28bfc8822fa6b0ac5a028b41c96160d135da53112c4fcb7ae048e8d48b58f164dd33c6c7dd851aaa71173b2aa36f70411fc7cc2b67d346ce00b SHA512 d45caaa4795d05f1f1a558192c5eedff608c74be0ef933e0ff7a4f68123a109e38e7fe26222c66dfc8966a07f458eeadf77d7f4731d88389595b59413140e9a3 -DIST tor-0.4.6.8.tar.gz 7796485 BLAKE2B 3475597c9f46c83c736bf5f3db2a4f44a38c4f4c4998903d1fe89fc75a7090f4eaa8faafbbd44d728d5e8915f195eb3e284141925b16fca9bf6001844f52863d SHA512 ff008ddf10c2a4c9e0d0da28558c7a97a6d42615c8bcad25a74567e3aafaba49df1699e379fd674f93305d222748d16b2f21d0da9a8fd3444b659747e1f1d07b -DIST tor-0.4.6.8.tar.gz.asc 833 BLAKE2B 6f1825e3f5e2d70c5078d27990633137c7551fa80f5d202e56cfcb2a88d6b5b653ec6c349c7dc152f6c7313e6330182ce22a42be3f7aa63aced0586ee673addf SHA512 5000c111688d76d357c371532f7edbb01280273e5dc9bc18fa524517fcb1efda1403071536f06d61b8b8a73e26505d6e74cd84bd611f63f2a56e4b944f76b2e9 -DIST tor-0.4.6.9.tar.gz 7797677 BLAKE2B 7d6add30867a3b18471bece559acbf6782b516229b8ab2c764f4a581fcbe3c2fa748f2708c60bf0f8a1165bc1fdd930fe00adaf7c1f546e6a7e98bdc0f1abb21 SHA512 67b3c0c0515d4150dd91db6dd4efe19b15a2e8ddac2a34069d61dfaf79d90585f3ca4071483362619719a7cbc6198d67d1ff73acdefa8cc8462bc1e2a7ba264f -DIST tor-0.4.6.9.tar.gz.asc 833 BLAKE2B 1028464261cd02502408fff7354b92c68f51ce4ec27a16c190f4d16ec4164fb2f81d8018a6c400b22691dda8a29aa5af41b7e8fc9c72f551c8a1e85976ab1223 SHA512 1a34ae6f3b2d58a1a3d71b7a953cb1f8b0ef30430f016d67978a9323f7da42132a7cc2540245e115311951d524bbb67287d1af5c456a72564a4b49971962116f -DIST tor-0.4.7.4-alpha.tar.gz 7855828 BLAKE2B c30f131254a55e0fcea82361b491730ec4cae2de9bba33bd4f2d68a71b658478ab2344727096c34a7216a13617ea70b7288b8c1f1e80ffcaeb03aba6b462c0ec SHA512 8956424cec7d9ec223ea974e2d13e1f50e3003a9a7535bff109504ce3a9cb8e62add4dd5b716990b8e8fe258fd9854fe5ae00a914dfa7c7e2f79b3d703363db0 -DIST tor-0.4.7.4-alpha.tar.gz.sha256sum 91 BLAKE2B d3e9416c33e286225b3f41f57bb4cb01ba724a4142b301d3a9fde61c6191c83252a3f1ea7100d26cffc6a0eb4466517b61a167a9f19627679ff5299434dd07e3 SHA512 08d06eb70f2894117b83a934a4df334cd2c7db2f4a51a10233e9e71f94a8aba4a0262476e20480444e232116cd184635d53ec5f4a81f8de78cd1bfd75158eecd -DIST tor-0.4.7.4-alpha.tar.gz.sha256sum.asc 716 BLAKE2B f65ea8b99a957cb2bfea6a5da664864df68a521268f0c15dee02a738498af7ccc8c0b7299bfe413ee16011f3ea414b694482e8c45c691c1e6585648621cd02a6 SHA512 f8353d9c1d3b9a14767fff8c795acf8914c5970a3b146b0b05010b6a6a01901faa27098a18f08119c0256be43c9e5d43dfe12b36ac2d00d8e2506349884317db DIST tor-0.4.7.5-alpha.tar.gz 7876166 BLAKE2B f6389401adf0b3fae548f27a13b5a9f20fcad7a4fea7ea7dde159d10a49032d03e1b82a8eaf494df2e20958e510bc9aacc24d2f5ea71aa354614d726396117b4 SHA512 db93ecdeaa600ad6ac5a3c07d7cf0a00c6f89cbe4e407ac7070ad1de958329b0019145b25bc9671bbe1a12bcf3397ffa493abfa147293480616cb82923c09f1d DIST tor-0.4.7.5-alpha.tar.gz.sha256sum 91 BLAKE2B 97d7a909cf2f7a94b9ba5ad143c7d3c368f3352be16e61e181b34acde8fea3d314220914ab9b589ad926d360e0bc3bf3012722f7ddfff96909d57d8359fd5c1d SHA512 f86bd14c4964f4deb4aac748dd31a623dd40800d2494b6c627a14d58818f2b7d2d64054f18e0d5f5368e13e2f8242ff46c40447559c22085321710236e21ae98 DIST tor-0.4.7.5-alpha.tar.gz.sha256sum.asc 716 BLAKE2B 41c5b1242c31d67d17ac9d2ebfd1d6cccb603f83beea0f7b86bf669b6ab6a497fd7331d4eab00a4da9eb5a0cf774df259df428f88bbed751bce23ae4f9dfdab0 SHA512 fa5839e5beaa4decb7ae5410f4261017cbd3308faa773f225a8fcb0c91f90dc7a259c098f3aab511223709ce638dc22e68c5f5235f7e17cafe51c0fd22663437 diff --git a/net-vpn/tor/tor-0.4.6.10.ebuild b/net-vpn/tor/tor-0.4.6.10.ebuild index f84054aac604..0e0a28e5d34e 100644 --- a/net-vpn/tor/tor-0.4.6.10.ebuild +++ b/net-vpn/tor/tor-0.4.6.10.ebuild @@ -4,7 +4,7 @@ EAPI="8" PYTHON_COMPAT=( python3_{8,9} ) -inherit flag-o-matic python-any-r1 readme.gentoo-r1 systemd verify-sig +inherit python-any-r1 readme.gentoo-r1 systemd verify-sig MY_PV="$(ver_rs 4 -)" MY_PF="${PN}-${MY_PV}" diff --git a/net-vpn/tor/tor-0.4.6.7.ebuild b/net-vpn/tor/tor-0.4.6.7.ebuild deleted file mode 100644 index 919dc32f7fa3..000000000000 --- a/net-vpn/tor/tor-0.4.6.7.ebuild +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{8,9} ) -inherit flag-o-matic python-any-r1 readme.gentoo-r1 systemd verify-sig - -MY_PV="$(ver_rs 4 -)" -MY_PF="${PN}-${MY_PV}" -DESCRIPTION="Anonymizing overlay network for TCP" -HOMEPAGE="https://www.torproject.org/" -SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz - https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz - verify-sig? ( https://dist.torproject.org/${MY_PF}.tar.gz.asc )" -S="${WORKDIR}/${MY_PF}" - -LICENSE="BSD GPL-2" -SLOT="0" -if [[ ${PV} != *_alpha* && ${PV} != *_beta* && ${PV} != *_rc* ]]; then - KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~ppc-macos" -fi -IUSE="caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd" -VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/torproject.org.asc - -BDEPEND="verify-sig? ( sec-keys/openpgp-keys-tor )" -DEPEND=" - dev-libs/libevent:=[ssl] - sys-libs/zlib - caps? ( sys-libs/libcap ) - man? ( app-text/asciidoc ) - dev-libs/openssl:0=[-bindist(-)] - lzma? ( app-arch/xz-utils ) - scrypt? ( app-crypt/libscrypt ) - seccomp? ( >=sys-libs/libseccomp-2.4.1 ) - systemd? ( sys-apps/systemd ) - zstd? ( app-arch/zstd )" -RDEPEND=" - acct-user/tor - acct-group/tor - ${DEPEND} - selinux? ( sec-policy/selinux-tor )" - -# bug #764260 -DEPEND+=" - test? ( - ${DEPEND} - ${PYTHON_DEPS} - )" - -PATCHES=( - "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch -) - -DOCS=() - -RESTRICT="!test? ( test )" - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_configure() { - use doc && DOCS+=( README ChangeLog ReleaseNotes doc/HACKING ) - export ac_cv_lib_cap_cap_init=$(usex caps) - econf \ - --localstatedir="${EPREFIX}/var" \ - --disable-all-bugs-are-fatal \ - --enable-system-torrc \ - --disable-android \ - --disable-html-manual \ - --disable-libfuzzer \ - --enable-missing-doc-warnings \ - --disable-module-dirauth \ - --enable-pic \ - --disable-rust \ - --disable-restart-debugging \ - --disable-zstd-advanced-apis \ - $(use_enable man asciidoc) \ - $(use_enable man manpage) \ - $(use_enable lzma) \ - $(use_enable scrypt libscrypt) \ - $(use_enable seccomp) \ - $(use_enable server module-relay) \ - $(use_enable systemd) \ - $(use_enable tor-hardening gcc-hardening) \ - $(use_enable tor-hardening linker-hardening) \ - $(use_enable test unittests) \ - $(use_enable test coverage) \ - $(use_enable zstd) -} - -src_install() { - default - readme.gentoo_create_doc - - newconfd "${FILESDIR}"/tor.confd tor - newinitd "${FILESDIR}"/tor.initd-r9 tor - systemd_dounit "${FILESDIR}"/tor.service - - keepdir /var/lib/tor - - fperms 750 /var/lib/tor - fowners tor:tor /var/lib/tor - - insinto /etc/tor/ - newins "${FILESDIR}"/torrc-r2 torrc -} diff --git a/net-vpn/tor/tor-0.4.6.8.ebuild b/net-vpn/tor/tor-0.4.6.8.ebuild deleted file mode 100644 index 7eb05f3e6404..000000000000 --- a/net-vpn/tor/tor-0.4.6.8.ebuild +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{8,9} ) -inherit flag-o-matic python-any-r1 readme.gentoo-r1 systemd verify-sig - -MY_PV="$(ver_rs 4 -)" -MY_PF="${PN}-${MY_PV}" -DESCRIPTION="Anonymizing overlay network for TCP" -HOMEPAGE="https://www.torproject.org/" -SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz - https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz - verify-sig? ( https://dist.torproject.org/${MY_PF}.tar.gz.asc )" -S="${WORKDIR}/${MY_PF}" - -LICENSE="BSD GPL-2" -SLOT="0" -if [[ ${PV} != *_alpha* && ${PV} != *_beta* && ${PV} != *_rc* ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~ppc-macos" -fi -IUSE="caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd" -VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/torproject.org.asc - -BDEPEND="verify-sig? ( sec-keys/openpgp-keys-tor )" -DEPEND=" - dev-libs/libevent:=[ssl] - sys-libs/zlib - caps? ( sys-libs/libcap ) - man? ( app-text/asciidoc ) - dev-libs/openssl:0=[-bindist(-)] - lzma? ( app-arch/xz-utils ) - scrypt? ( app-crypt/libscrypt ) - seccomp? ( >=sys-libs/libseccomp-2.4.1 ) - systemd? ( sys-apps/systemd ) - zstd? ( app-arch/zstd )" -RDEPEND=" - acct-user/tor - acct-group/tor - ${DEPEND} - selinux? ( sec-policy/selinux-tor )" - -# bug #764260 -DEPEND+=" - test? ( - ${DEPEND} - ${PYTHON_DEPS} - )" - -PATCHES=( - "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch -) - -DOCS=() - -RESTRICT="!test? ( test )" - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_configure() { - use doc && DOCS+=( README ChangeLog ReleaseNotes doc/HACKING ) - export ac_cv_lib_cap_cap_init=$(usex caps) - econf \ - --localstatedir="${EPREFIX}/var" \ - --disable-all-bugs-are-fatal \ - --enable-system-torrc \ - --disable-android \ - --disable-html-manual \ - --disable-libfuzzer \ - --enable-missing-doc-warnings \ - --disable-module-dirauth \ - --enable-pic \ - --disable-rust \ - --disable-restart-debugging \ - --disable-zstd-advanced-apis \ - $(use_enable man asciidoc) \ - $(use_enable man manpage) \ - $(use_enable lzma) \ - $(use_enable scrypt libscrypt) \ - $(use_enable seccomp) \ - $(use_enable server module-relay) \ - $(use_enable systemd) \ - $(use_enable tor-hardening gcc-hardening) \ - $(use_enable tor-hardening linker-hardening) \ - $(use_enable test unittests) \ - $(use_enable test coverage) \ - $(use_enable zstd) -} - -src_install() { - default - readme.gentoo_create_doc - - newconfd "${FILESDIR}"/tor.confd tor - newinitd "${FILESDIR}"/tor.initd-r9 tor - systemd_dounit "${FILESDIR}"/tor.service - - keepdir /var/lib/tor - - fperms 750 /var/lib/tor - fowners tor:tor /var/lib/tor - - insinto /etc/tor/ - newins "${FILESDIR}"/torrc-r2 torrc -} diff --git a/net-vpn/tor/tor-0.4.6.9.ebuild b/net-vpn/tor/tor-0.4.6.9.ebuild deleted file mode 100644 index d102418e073e..000000000000 --- a/net-vpn/tor/tor-0.4.6.9.ebuild +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="8" - -PYTHON_COMPAT=( python3_{8,9} ) -inherit flag-o-matic python-any-r1 readme.gentoo-r1 systemd verify-sig - -MY_PV="$(ver_rs 4 -)" -MY_PF="${PN}-${MY_PV}" -DESCRIPTION="Anonymizing overlay network for TCP" -HOMEPAGE="https://www.torproject.org/" -SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz - https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz - verify-sig? ( https://dist.torproject.org/${MY_PF}.tar.gz.asc )" -S="${WORKDIR}/${MY_PF}" - -LICENSE="BSD GPL-2" -SLOT="0" -if [[ ${PV} != *_alpha* && ${PV} != *_beta* && ${PV} != *_rc* ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~ppc-macos" -fi -IUSE="caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd" -VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/torproject.org.asc - -BDEPEND="verify-sig? ( sec-keys/openpgp-keys-tor )" -DEPEND=" - dev-libs/libevent:=[ssl] - sys-libs/zlib - caps? ( sys-libs/libcap ) - man? ( app-text/asciidoc ) - dev-libs/openssl:0=[-bindist(-)] - lzma? ( app-arch/xz-utils ) - scrypt? ( app-crypt/libscrypt ) - seccomp? ( >=sys-libs/libseccomp-2.4.1 ) - systemd? ( sys-apps/systemd ) - zstd? ( app-arch/zstd )" -RDEPEND=" - acct-user/tor - acct-group/tor - ${DEPEND} - selinux? ( sec-policy/selinux-tor )" - -# bug #764260 -DEPEND+=" - test? ( - ${DEPEND} - ${PYTHON_DEPS} - )" - -PATCHES=( - "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch -) - -DOCS=() - -RESTRICT="!test? ( test )" - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_configure() { - use doc && DOCS+=( README ChangeLog ReleaseNotes doc/HACKING ) - export ac_cv_lib_cap_cap_init=$(usex caps) - econf \ - --localstatedir="${EPREFIX}/var" \ - --disable-all-bugs-are-fatal \ - --enable-system-torrc \ - --disable-android \ - --disable-html-manual \ - --disable-libfuzzer \ - --enable-missing-doc-warnings \ - --disable-module-dirauth \ - --enable-pic \ - --disable-rust \ - --disable-restart-debugging \ - --disable-zstd-advanced-apis \ - $(use_enable man asciidoc) \ - $(use_enable man manpage) \ - $(use_enable lzma) \ - $(use_enable scrypt libscrypt) \ - $(use_enable seccomp) \ - $(use_enable server module-relay) \ - $(use_enable systemd) \ - $(use_enable tor-hardening gcc-hardening) \ - $(use_enable tor-hardening linker-hardening) \ - $(use_enable test unittests) \ - $(use_enable test coverage) \ - $(use_enable zstd) -} - -src_install() { - default - readme.gentoo_create_doc - - newconfd "${FILESDIR}"/tor.confd tor - newinitd "${FILESDIR}"/tor.initd-r9 tor - systemd_dounit "${FILESDIR}"/tor.service - - keepdir /var/lib/tor - - fperms 750 /var/lib/tor - fowners tor:tor /var/lib/tor - - insinto /etc/tor/ - newins "${FILESDIR}"/torrc-r2 torrc -} diff --git a/net-vpn/tor/tor-0.4.7.4_alpha.ebuild b/net-vpn/tor/tor-0.4.7.4_alpha.ebuild deleted file mode 100644 index a117b5a80dea..000000000000 --- a/net-vpn/tor/tor-0.4.7.4_alpha.ebuild +++ /dev/null @@ -1,122 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="8" - -PYTHON_COMPAT=( python3_{8,9} ) -inherit flag-o-matic python-any-r1 readme.gentoo-r1 systemd verify-sig - -MY_PV="$(ver_rs 4 -)" -MY_PF="${PN}-${MY_PV}" -DESCRIPTION="Anonymizing overlay network for TCP" -HOMEPAGE="https://www.torproject.org/" -SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz - https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz - verify-sig? ( - https://dist.torproject.org/${MY_PF}.tar.gz.sha256sum - https://dist.torproject.org/${MY_PF}.tar.gz.sha256sum.asc - )" -S="${WORKDIR}/${MY_PF}" - -LICENSE="BSD GPL-2" -SLOT="0" -if [[ ${PV} != *_alpha* && ${PV} != *_beta* && ${PV} != *_rc* ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~ppc-macos" -fi -IUSE="caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd" -VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/torproject.org.asc - -BDEPEND="verify-sig? ( >=sec-keys/openpgp-keys-tor-20220216 )" -DEPEND=" - dev-libs/libevent:=[ssl] - sys-libs/zlib - caps? ( sys-libs/libcap ) - man? ( app-text/asciidoc ) - dev-libs/openssl:0=[-bindist(-)] - lzma? ( app-arch/xz-utils ) - scrypt? ( app-crypt/libscrypt ) - seccomp? ( >=sys-libs/libseccomp-2.4.1 ) - systemd? ( sys-apps/systemd ) - zstd? ( app-arch/zstd )" -RDEPEND=" - acct-user/tor - acct-group/tor - ${DEPEND} - selinux? ( sec-policy/selinux-tor )" - -# bug #764260 -DEPEND+=" - test? ( - ${DEPEND} - ${PYTHON_DEPS} - )" - -PATCHES=( - "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch -) - -DOCS=() - -RESTRICT="!test? ( test )" - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_unpack() { - if use verify-sig; then - cd "${DISTDIR}" || die - verify-sig_verify_detached ${MY_PF}.tar.gz.sha256sum{,.asc} - verify-sig_verify_unsigned_checksums \ - ${MY_PF}.tar.gz.sha256sum sha256 ${MY_PF}.tar.gz - cd "${WORKDIR}" || die - fi - - default -} - -src_configure() { - use doc && DOCS+=( README ChangeLog ReleaseNotes doc/HACKING ) - export ac_cv_lib_cap_cap_init=$(usex caps) - econf \ - --localstatedir="${EPREFIX}/var" \ - --disable-all-bugs-are-fatal \ - --enable-system-torrc \ - --disable-android \ - --disable-html-manual \ - --disable-libfuzzer \ - --enable-missing-doc-warnings \ - --disable-module-dirauth \ - --enable-pic \ - --disable-restart-debugging \ - --disable-zstd-advanced-apis \ - $(use_enable man asciidoc) \ - $(use_enable man manpage) \ - $(use_enable lzma) \ - $(use_enable scrypt libscrypt) \ - $(use_enable seccomp) \ - $(use_enable server module-relay) \ - $(use_enable systemd) \ - $(use_enable tor-hardening gcc-hardening) \ - $(use_enable tor-hardening linker-hardening) \ - $(use_enable test unittests) \ - $(use_enable test coverage) \ - $(use_enable zstd) -} - -src_install() { - default - readme.gentoo_create_doc - - newconfd "${FILESDIR}"/tor.confd tor - newinitd "${FILESDIR}"/tor.initd-r9 tor - systemd_dounit "${FILESDIR}"/tor.service - - keepdir /var/lib/tor - - fperms 750 /var/lib/tor - fowners tor:tor /var/lib/tor - - insinto /etc/tor/ - newins "${FILESDIR}"/torrc-r2 torrc -} diff --git a/net-vpn/tor/tor-0.4.7.5_alpha.ebuild b/net-vpn/tor/tor-0.4.7.5_alpha.ebuild index a117b5a80dea..aa699f12c38b 100644 --- a/net-vpn/tor/tor-0.4.7.5_alpha.ebuild +++ b/net-vpn/tor/tor-0.4.7.5_alpha.ebuild @@ -4,7 +4,7 @@ EAPI="8" PYTHON_COMPAT=( python3_{8,9} ) -inherit flag-o-matic python-any-r1 readme.gentoo-r1 systemd verify-sig +inherit python-any-r1 readme.gentoo-r1 systemd verify-sig MY_PV="$(ver_rs 4 -)" MY_PF="${PN}-${MY_PV}" diff --git a/net-vpn/tor/tor-0.4.7.6_rc.ebuild b/net-vpn/tor/tor-0.4.7.6_rc.ebuild index a117b5a80dea..aa699f12c38b 100644 --- a/net-vpn/tor/tor-0.4.7.6_rc.ebuild +++ b/net-vpn/tor/tor-0.4.7.6_rc.ebuild @@ -4,7 +4,7 @@ EAPI="8" PYTHON_COMPAT=( python3_{8,9} ) -inherit flag-o-matic python-any-r1 readme.gentoo-r1 systemd verify-sig +inherit python-any-r1 readme.gentoo-r1 systemd verify-sig MY_PV="$(ver_rs 4 -)" MY_PF="${PN}-${MY_PV}" diff --git a/net-wireless/Manifest.gz b/net-wireless/Manifest.gz index 505f292e2865..cb9e7344b951 100644 Binary files a/net-wireless/Manifest.gz and b/net-wireless/Manifest.gz differ diff --git a/net-wireless/bluez/Manifest b/net-wireless/bluez/Manifest index 6183ed41d707..1f5ef5199e6c 100644 --- a/net-wireless/bluez/Manifest +++ b/net-wireless/bluez/Manifest @@ -1,3 +1 @@ -DIST bluez-5.62.tar.xz 2149348 BLAKE2B db99b36a230fc0be15275d2eda9864b686326ba50648f66b19087ea4309a76d234ab4f1dcb6975f1513a898978b1d5b9332542f5dcee22efd898b79658434a70 SHA512 8fb0b81e1d929d3eee3d70f457ce75dbcff4c2a8a728247fc950bbe11e84d83582345bfd433d2e2df7b5588eb0e42f286658a83c7332be84819d9df49a5707e8 -DIST bluez-5.63.tar.xz 2169168 BLAKE2B 5393bb045a3cf05de164417ce7c98e271742ba752a58aa1ac43a758f2ad8608508e24ff59783d97aa6d5aebdc77e66d9aca94a6c8378cd3fd48fd22ce9d3b89d SHA512 1b8ce7b1bd9611873c27a762a60df580edeefe5424e8733a2067b9afb1a47915f9319849bc1eeee148f5b1f33977b7975e05867e8dbdf73d33cd68e6b99ca75b DIST bluez-5.64.tar.xz 2175148 BLAKE2B 828c620330d1993d5c5c2a865f2d27a29425e3583aac01a1a782290a805ee0fd6456b6832c804ad323dd8714fa9329487b2616ed08f1f491ea29403ee05dba2d SHA512 f11f9974b29c5c6fce3890d7e42425c1cb02e42c1b8f49c5cc4b249234e67b64317d0e5e82721e2fbf1b53269c8569a9c869d59ce42b5e927f6622f0753e53cd diff --git a/net-wireless/bluez/bluez-5.62-r2.ebuild b/net-wireless/bluez/bluez-5.62-r2.ebuild deleted file mode 100644 index 70c9a7547c55..000000000000 --- a/net-wireless/bluez/bluez-5.62-r2.ebuild +++ /dev/null @@ -1,285 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) - -inherit autotools linux-info python-single-r1 readme.gentoo-r1 systemd udev multilib-minimal - -DESCRIPTION="Bluetooth Tools and System Daemons for Linux" -HOMEPAGE="http://www.bluez.org" -SRC_URI="https://www.kernel.org/pub/linux/bluetooth/${P}.tar.xz" - -LICENSE="GPL-2+ LGPL-2.1+" -SLOT="0/3" -KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 ~riscv x86" -IUSE="btpclient cups doc debug deprecated extra-tools experimental +mesh midi +obex +readline selinux systemd test test-programs +udev" - -# Since this release all remaining extra-tools need readline support, but this could -# change in the future, hence, this REQUIRED_USE constraint could be dropped -# again in the future. -REQUIRED_USE=" - extra-tools? ( deprecated readline ) - test? ( ${PYTHON_REQUIRED_USE} ) - test-programs? ( ${PYTHON_REQUIRED_USE} ) -" - -TEST_DEPS="${PYTHON_DEPS} - $(python_gen_cond_dep ' - >=dev-python/dbus-python-1[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - ') -" -BDEPEND=" - dev-python/docutils - virtual/pkgconfig - test? ( ${TEST_DEPS} ) -" -DEPEND=" - >=dev-libs/glib-2.28:2[${MULTILIB_USEDEP}] - btpclient? ( >=dev-libs/ell-0.39 ) - cups? ( net-print/cups:= ) - mesh? ( - >=dev-libs/ell-0.39 - >=dev-libs/json-c-0.13:= - sys-libs/readline:0= - ) - midi? ( media-libs/alsa-lib ) - obex? ( dev-libs/libical:= ) - readline? ( sys-libs/readline:0= ) - systemd? ( sys-apps/systemd ) - >=sys-apps/dbus-1.6:= - udev? ( >=virtual/udev-172 ) -" -RDEPEND="${DEPEND} - selinux? ( sec-policy/selinux-bluetooth ) - test-programs? ( ${TEST_DEPS} ) -" - -RESTRICT="!test? ( test )" - -PATCHES=( - # Try both udevadm paths to cover udev/systemd vs. eudev locations (#539844) - # http://www.spinics.net/lists/linux-bluetooth/msg58739.html - # https://bugs.gentoo.org/539844 - "${FILESDIR}"/${PN}-udevadm-path-r1.patch - - # Fedora patches - # http://www.spinics.net/lists/linux-bluetooth/msg40136.html - "${FILESDIR}"/0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch -) - -pkg_setup() { - # From http://www.linuxfromscratch.org/blfs/view/svn/general/bluez.html - # to prevent bugs like: - # https://bugzilla.kernel.org/show_bug.cgi?id=196621 - CONFIG_CHECK="~NET ~BT ~BT_RFCOMM ~BT_RFCOMM_TTY ~BT_BNEP ~BT_BNEP_MC_FILTER - ~BT_BNEP_PROTO_FILTER ~BT_HIDP ~CRYPTO_USER_API_HASH ~CRYPTO_USER_API_SKCIPHER ~RFKILL" - # https://bugzilla.kernel.org/show_bug.cgi?id=196621 - # https://bugzilla.kernel.org/show_bug.cgi?id=206815 - if use mesh || use test; then - CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_USER - ~CRYPTO_USER_API ~CRYPTO_USER_API_AEAD ~CRYPTO_AES ~CRYPTO_CCM ~CRYPTO_AEAD ~CRYPTO_CMAC" - fi - linux-info_pkg_setup - - if use test || use test-programs; then - python-single-r1_pkg_setup - fi - - if ! use udev; then - ewarn - ewarn "You are installing ${PN} with USE=-udev. This means various bluetooth" - ewarn "devices and adapters from Apple, Dell, Logitech etc. will not work," - ewarn "and hid2hci will not be available." - ewarn - fi -} - -src_prepare() { - default - - # http://www.spinics.net/lists/linux-bluetooth/msg38490.html - if ! use systemd; then - eapply "${FILESDIR}"/0001-Allow-using-obexd-without-systemd-in-the-user-session-r2.patch - fi - - eautoreconf - - if use cups; then - # Only not .am to not need to run eautoreconf only because of this - sed -i \ - -e "s:cupsdir = \$(libdir)/cups:cupsdir = $(cups-config --serverbin):" \ - Makefile.{in,tools} || die - fi - - multilib_copy_sources -} - -multilib_src_configure() { - local myconf=( - # readline is automagic when client is enabled - # --enable-client always needs readline, bug #504038 - # --enable-mesh is handled in the same way - ac_cv_header_readline_readline_h=$(multilib_native_usex readline) - ac_cv_header_readline_readline_h=$(multilib_native_usex mesh) - ) - - if ! multilib_is_native_abi; then - myconf+=( - # deps not used for the library - {DBUS,GLIB}_{CFLAGS,LIBS}=' ' - ) - fi - - econf \ - --localstatedir=/var \ - --disable-android \ - --enable-datafiles \ - --enable-optimization \ - $(use_enable debug) \ - --enable-pie \ - --enable-threads \ - --enable-library \ - --enable-tools \ - --enable-manpages \ - --enable-monitor \ - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \ - --with-systemduserunitdir="$(systemd_get_userunitdir)" \ - $(multilib_native_use_enable btpclient) \ - $(multilib_native_use_enable btpclient external-ell) \ - $(multilib_native_use_enable cups) \ - $(multilib_native_use_enable deprecated) \ - $(multilib_native_use_enable experimental) \ - $(multilib_native_use_enable mesh) \ - $(multilib_native_use_enable mesh external-ell) \ - $(multilib_native_use_enable midi) \ - $(multilib_native_use_enable obex) \ - $(multilib_native_use_enable readline client) \ - $(multilib_native_use_enable systemd) \ - $(multilib_native_use_enable test-programs test) \ - $(multilib_native_use_enable udev) \ - $(multilib_native_use_enable udev hid2hci) \ - $(multilib_native_use_enable udev sixaxis) -} - -multilib_src_compile() { - if multilib_is_native_abi; then - default - else - emake -f Makefile -f - libs \ - <<<'libs: $(lib_LTLIBRARIES)' - fi -} - -multilib_src_test() { - multilib_is_native_abi && default -} - -multilib_src_install() { - if multilib_is_native_abi; then - emake DESTDIR="${D}" install - - # Only install extra-tools when relevant USE flag is enabled - if use extra-tools; then - ewarn "Upstream doesn't support using this tools and their bugs are" - ewarn "likely to be ignored forever, also they can break without" - ewarn "previous announcement." - ewarn "Upstream also states all this tools are not really needed," - ewarn "then, if you still need to rely on them, you must ask them" - ewarn "to either install that tool by default or add the needed" - ewarn "functionality to the existing 'official' tools." - ewarn "Please report this issues to:" - ewarn "http://www.bluez.org/development/lists/" - - # Upstream doesn't install this, bug #524640 - # http://permalink.gmane.org/gmane.linux.bluez.kernel/53115 - # http://comments.gmane.org/gmane.linux.bluez.kernel/54564 - dobin tools/btmgmt - # gatttool is only built with readline, bug #530776 - # https://bugzilla.redhat.com/show_bug.cgi?id=1141909 - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=720486 - # https://bugs.archlinux.org/task/37686 - dobin attrib/gatttool - # https://bugzilla.redhat.com/show_bug.cgi?id=1699680 - dobin tools/avinfo - fi - - # Not installed by default after being built, bug #666756 - use btpclient && dobin tools/btpclient - - # Unittests are not that useful once installed, so make them optional - if use test-programs; then - # Drop python2 only test tools - # https://bugzilla.kernel.org/show_bug.cgi?id=206819 - rm "${ED}"/usr/$(get_libdir)/bluez/test/simple-player || die - # https://bugzilla.kernel.org/show_bug.cgi?id=206821 - rm "${ED}"/usr/$(get_libdir)/bluez/test/test-hfp || die - # https://bugzilla.kernel.org/show_bug.cgi?id=206823 - rm "${ED}"/usr/$(get_libdir)/bluez/test/test-sap-server || die - - python_fix_shebang "${ED}"/usr/$(get_libdir)/bluez/test - - for i in $(find "${ED}"/usr/$(get_libdir)/bluez/test -maxdepth 1 -type f ! -name "*.*"); do - dosym "${i}" /usr/bin/bluez-"${i##*/}" - done - fi - else - emake DESTDIR="${D}" \ - install-pkgincludeHEADERS \ - install-libLTLIBRARIES \ - install-pkgconfigDATA - fi -} - -multilib_src_install_all() { - # We need to ensure obexd can be spawned automatically by systemd - # when user-session is enabled: - # http://marc.info/?l=linux-bluetooth&m=148096094716386&w=2 - # https://bugs.gentoo.org/show_bug.cgi?id=577842 - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=804908 - # https://bugs.archlinux.org/task/45816 - # https://bugzilla.redhat.com/show_bug.cgi?id=1318441 - # https://bugzilla.redhat.com/show_bug.cgi?id=1389347 - if use systemd; then - dosym obex.service /usr/lib/systemd/user/dbus-org.bluez.obex.service - fi - - find "${D}" -name '*.la' -type f -delete || die - - keepdir /var/lib/bluetooth - - # Upstream don't want people to play with them - # But we keep installing them due to 'historical' reasons - insinto /etc/bluetooth - local d - for d in input network; do - doins profiles/${d}/${d}.conf - done - # Setup auto enable as Fedora does for allowing to use - # keyboards/mouse as soon as possible - sed -i 's/#\[Policy\]$/\[Policy\]/; s/#AutoEnable=false/AutoEnable=true/' src/main.conf || die - doins src/main.conf - - newinitd "${FILESDIR}"/bluetooth-init.d-r5 bluetooth - newconfd "${FILESDIR}"/bluetooth-conf.d bluetooth - - einstalldocs - use doc && dodoc doc/*.txt - # Install .json files as examples to be used by meshctl - if use mesh; then - dodoc tools/mesh-gatt/*.json - local DOC_CONTENTS="Some example .json files were installed into - /usr/share/doc/${PF} to be used with meshctl. Feel free to - uncompress and copy them to ~/.config/meshctl to use them." - readme.gentoo_create_doc - fi -} - -pkg_postinst() { - use udev && udev_reload - systemd_reenable bluetooth.service - - has_version net-dialup/ppp || elog "To use dial up networking you must install net-dialup/ppp" - use mesh && readme.gentoo_print_elog -} diff --git a/net-wireless/bluez/bluez-5.62-r3.ebuild b/net-wireless/bluez/bluez-5.62-r3.ebuild deleted file mode 100644 index 71035af2f830..000000000000 --- a/net-wireless/bluez/bluez-5.62-r3.ebuild +++ /dev/null @@ -1,295 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) - -inherit autotools linux-info python-single-r1 readme.gentoo-r1 systemd udev multilib-minimal - -DESCRIPTION="Bluetooth Tools and System Daemons for Linux" -HOMEPAGE="http://www.bluez.org" -SRC_URI="https://www.kernel.org/pub/linux/bluetooth/${P}.tar.xz" - -LICENSE="GPL-2+ LGPL-2.1+" -SLOT="0/3" -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv x86" -IUSE="btpclient cups doc debug deprecated extra-tools experimental +mesh midi +obex +readline selinux systemd test test-programs +udev" - -# Since this release all remaining extra-tools need readline support, but this could -# change in the future, hence, this REQUIRED_USE constraint could be dropped -# again in the future. -# btpclient needs mesh, bug #790587 -REQUIRED_USE=" - extra-tools? ( deprecated readline ) - test? ( ${PYTHON_REQUIRED_USE} ) - test-programs? ( ${PYTHON_REQUIRED_USE} ) -" - -TEST_DEPS="${PYTHON_DEPS} - $(python_gen_cond_dep ' - >=dev-python/dbus-python-1[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - ') -" -BDEPEND=" - dev-python/docutils - virtual/pkgconfig - test? ( ${TEST_DEPS} ) -" -DEPEND=" - >=dev-libs/glib-2.28:2[${MULTILIB_USEDEP}] - btpclient? ( >=dev-libs/ell-0.39 ) - cups? ( net-print/cups:= ) - mesh? ( - >=dev-libs/ell-0.39 - >=dev-libs/json-c-0.13:= - sys-libs/readline:0= - ) - midi? ( media-libs/alsa-lib ) - obex? ( dev-libs/libical:= ) - readline? ( sys-libs/readline:0= ) - systemd? ( sys-apps/systemd ) - >=sys-apps/dbus-1.6:= - udev? ( >=virtual/udev-172 ) -" -RDEPEND="${DEPEND} - selinux? ( sec-policy/selinux-bluetooth ) - test-programs? ( ${TEST_DEPS} ) -" - -RESTRICT="!test? ( test )" - -PATCHES=( - # Try both udevadm paths to cover udev/systemd vs. eudev locations (#539844) - # http://www.spinics.net/lists/linux-bluetooth/msg58739.html - # https://bugs.gentoo.org/539844 - "${FILESDIR}"/${PN}-udevadm-path-r1.patch - - # Fedora patches - # http://www.spinics.net/lists/linux-bluetooth/msg40136.html - "${FILESDIR}"/0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch - - # This reverts commit ac2c2e10b3adb432a572b618c6f53cabb6b3c80b. It - # causes problems with Logitech MX wireless input devices (see - # https://github.com/bluez/bluez/issues/220 ) - "${FILESDIR}"/0001-Revert-attrib-Make-use-of-bt_att_resend.patch - - # gatt-client: Fix disconnecting due to GattCharacteristic1.MTU - # (from 'master') - "${FILESDIR}"/${P}-fix-disconnecting.patch -) - -pkg_setup() { - # From http://www.linuxfromscratch.org/blfs/view/svn/general/bluez.html - # to prevent bugs like: - # https://bugzilla.kernel.org/show_bug.cgi?id=196621 - CONFIG_CHECK="~NET ~BT ~BT_RFCOMM ~BT_RFCOMM_TTY ~BT_BNEP ~BT_BNEP_MC_FILTER - ~BT_BNEP_PROTO_FILTER ~BT_HIDP ~CRYPTO_USER_API_HASH ~CRYPTO_USER_API_SKCIPHER ~RFKILL" - # https://bugzilla.kernel.org/show_bug.cgi?id=196621 - # https://bugzilla.kernel.org/show_bug.cgi?id=206815 - if use mesh || use test; then - CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_USER - ~CRYPTO_USER_API ~CRYPTO_USER_API_AEAD ~CRYPTO_AES ~CRYPTO_CCM ~CRYPTO_AEAD ~CRYPTO_CMAC" - fi - linux-info_pkg_setup - - if use test || use test-programs; then - python-single-r1_pkg_setup - fi - - if ! use udev; then - ewarn - ewarn "You are installing ${PN} with USE=-udev. This means various bluetooth" - ewarn "devices and adapters from Apple, Dell, Logitech etc. will not work," - ewarn "and hid2hci will not be available." - ewarn - fi -} - -src_prepare() { - default - - # http://www.spinics.net/lists/linux-bluetooth/msg38490.html - if ! use systemd; then - eapply "${FILESDIR}"/0001-Allow-using-obexd-without-systemd-in-the-user-session-r2.patch - fi - - eautoreconf - - if use cups; then - # Only not .am to not need to run eautoreconf only because of this - sed -i \ - -e "s:cupsdir = \$(libdir)/cups:cupsdir = $(cups-config --serverbin):" \ - Makefile.{in,tools} || die - fi - - multilib_copy_sources -} - -multilib_src_configure() { - local myconf=( - # readline is automagic when client is enabled - # --enable-client always needs readline, bug #504038 - # --enable-mesh is handled in the same way - ac_cv_header_readline_readline_h=$(multilib_native_usex readline) - ac_cv_header_readline_readline_h=$(multilib_native_usex mesh) - ) - - if ! multilib_is_native_abi; then - myconf+=( - # deps not used for the library - {DBUS,GLIB}_{CFLAGS,LIBS}=' ' - ) - fi - - econf \ - --localstatedir=/var \ - --disable-android \ - --enable-datafiles \ - --enable-optimization \ - $(use_enable debug) \ - --enable-pie \ - --enable-threads \ - --enable-library \ - --enable-tools \ - --enable-manpages \ - --enable-monitor \ - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \ - --with-systemduserunitdir="$(systemd_get_userunitdir)" \ - $(multilib_native_use_enable btpclient) \ - $(multilib_native_use_enable btpclient external-ell) \ - $(multilib_native_use_enable cups) \ - $(multilib_native_use_enable deprecated) \ - $(multilib_native_use_enable experimental) \ - $(multilib_native_use_enable mesh) \ - $(multilib_native_use_enable mesh external-ell) \ - $(multilib_native_use_enable midi) \ - $(multilib_native_use_enable obex) \ - $(multilib_native_use_enable readline client) \ - $(multilib_native_use_enable systemd) \ - $(multilib_native_use_enable test-programs test) \ - $(multilib_native_use_enable udev) \ - $(multilib_native_use_enable udev hid2hci) \ - $(multilib_native_use_enable udev sixaxis) -} - -multilib_src_compile() { - if multilib_is_native_abi; then - default - else - emake -f Makefile -f - libs \ - <<<'libs: $(lib_LTLIBRARIES)' - fi -} - -multilib_src_test() { - multilib_is_native_abi && default -} - -multilib_src_install() { - if multilib_is_native_abi; then - emake DESTDIR="${D}" install - - # Only install extra-tools when relevant USE flag is enabled - if use extra-tools; then - ewarn "Upstream doesn't support using this tools and their bugs are" - ewarn "likely to be ignored forever, also they can break without" - ewarn "previous announcement." - ewarn "Upstream also states all this tools are not really needed," - ewarn "then, if you still need to rely on them, you must ask them" - ewarn "to either install that tool by default or add the needed" - ewarn "functionality to the existing 'official' tools." - ewarn "Please report this issues to:" - ewarn "http://www.bluez.org/development/lists/" - - # Upstream doesn't install this, bug #524640 - # http://permalink.gmane.org/gmane.linux.bluez.kernel/53115 - # http://comments.gmane.org/gmane.linux.bluez.kernel/54564 - dobin tools/btmgmt - # gatttool is only built with readline, bug #530776 - # https://bugzilla.redhat.com/show_bug.cgi?id=1141909 - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=720486 - # https://bugs.archlinux.org/task/37686 - dobin attrib/gatttool - # https://bugzilla.redhat.com/show_bug.cgi?id=1699680 - dobin tools/avinfo - fi - - # Not installed by default after being built, bug #666756 - use btpclient && dobin tools/btpclient - - # Unittests are not that useful once installed, so make them optional - if use test-programs; then - # Drop python2 only test tools - # https://bugzilla.kernel.org/show_bug.cgi?id=206819 - rm "${ED}"/usr/$(get_libdir)/bluez/test/simple-player || die - # https://bugzilla.kernel.org/show_bug.cgi?id=206821 - rm "${ED}"/usr/$(get_libdir)/bluez/test/test-hfp || die - # https://bugzilla.kernel.org/show_bug.cgi?id=206823 - rm "${ED}"/usr/$(get_libdir)/bluez/test/test-sap-server || die - - python_fix_shebang "${ED}"/usr/$(get_libdir)/bluez/test - - for i in $(find "${ED}"/usr/$(get_libdir)/bluez/test -maxdepth 1 -type f ! -name "*.*"); do - dosym "${i}" /usr/bin/bluez-"${i##*/}" - done - fi - else - emake DESTDIR="${D}" \ - install-pkgincludeHEADERS \ - install-libLTLIBRARIES \ - install-pkgconfigDATA - fi -} - -multilib_src_install_all() { - # We need to ensure obexd can be spawned automatically by systemd - # when user-session is enabled: - # http://marc.info/?l=linux-bluetooth&m=148096094716386&w=2 - # https://bugs.gentoo.org/show_bug.cgi?id=577842 - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=804908 - # https://bugs.archlinux.org/task/45816 - # https://bugzilla.redhat.com/show_bug.cgi?id=1318441 - # https://bugzilla.redhat.com/show_bug.cgi?id=1389347 - if use systemd; then - dosym obex.service /usr/lib/systemd/user/dbus-org.bluez.obex.service - fi - - find "${D}" -name '*.la' -type f -delete || die - - keepdir /var/lib/bluetooth - - # Upstream don't want people to play with them - # But we keep installing them due to 'historical' reasons - insinto /etc/bluetooth - local d - for d in input network; do - doins profiles/${d}/${d}.conf - done - # Setup auto enable as Fedora does for allowing to use - # keyboards/mouse as soon as possible - sed -i 's/#\[Policy\]$/\[Policy\]/; s/#AutoEnable=false/AutoEnable=true/' src/main.conf || die - doins src/main.conf - - newinitd "${FILESDIR}"/bluetooth-init.d-r5 bluetooth - newconfd "${FILESDIR}"/bluetooth-conf.d bluetooth - - einstalldocs - use doc && dodoc doc/*.txt - # Install .json files as examples to be used by meshctl - if use mesh; then - dodoc tools/mesh-gatt/*.json - local DOC_CONTENTS="Some example .json files were installed into - /usr/share/doc/${PF} to be used with meshctl. Feel free to - uncompress and copy them to ~/.config/meshctl to use them." - readme.gentoo_create_doc - fi -} - -pkg_postinst() { - use udev && udev_reload - systemd_reenable bluetooth.service - - has_version net-dialup/ppp || elog "To use dial up networking you must install net-dialup/ppp" - use mesh && readme.gentoo_print_elog -} diff --git a/net-wireless/bluez/bluez-5.63-r1.ebuild b/net-wireless/bluez/bluez-5.63-r1.ebuild deleted file mode 100644 index baad2b48deaf..000000000000 --- a/net-wireless/bluez/bluez-5.63-r1.ebuild +++ /dev/null @@ -1,295 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) - -inherit autotools linux-info python-single-r1 readme.gentoo-r1 systemd udev multilib-minimal - -DESCRIPTION="Bluetooth Tools and System Daemons for Linux" -HOMEPAGE="http://www.bluez.org" -SRC_URI="https://www.kernel.org/pub/linux/bluetooth/${P}.tar.xz" - -LICENSE="GPL-2+ LGPL-2.1+" -SLOT="0/3" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~x86" -IUSE="btpclient cups doc debug deprecated extra-tools experimental +mesh midi +obex +readline selinux systemd test test-programs +udev" - -# Since this release all remaining extra-tools need readline support, but this could -# change in the future, hence, this REQUIRED_USE constraint could be dropped -# again in the future. -# btpclient needs mesh, bug #790587 -REQUIRED_USE=" - extra-tools? ( deprecated readline ) - test? ( ${PYTHON_REQUIRED_USE} ) - test-programs? ( ${PYTHON_REQUIRED_USE} ) -" - -TEST_DEPS="${PYTHON_DEPS} - $(python_gen_cond_dep ' - >=dev-python/dbus-python-1[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - ') -" -BDEPEND=" - dev-python/docutils - virtual/pkgconfig - test? ( ${TEST_DEPS} ) -" -DEPEND=" - >=dev-libs/glib-2.28:2[${MULTILIB_USEDEP}] - btpclient? ( >=dev-libs/ell-0.39 ) - cups? ( net-print/cups:= ) - mesh? ( - >=dev-libs/ell-0.39 - >=dev-libs/json-c-0.13:= - sys-libs/readline:0= - ) - midi? ( media-libs/alsa-lib ) - obex? ( dev-libs/libical:= ) - readline? ( sys-libs/readline:0= ) - systemd? ( sys-apps/systemd ) - >=sys-apps/dbus-1.6:= - udev? ( >=virtual/udev-172 ) -" -RDEPEND="${DEPEND} - selinux? ( sec-policy/selinux-bluetooth ) - test-programs? ( ${TEST_DEPS} ) -" - -RESTRICT="!test? ( test )" - -PATCHES=( - # Try both udevadm paths to cover udev/systemd vs. eudev locations (#539844) - # http://www.spinics.net/lists/linux-bluetooth/msg58739.html - # https://bugs.gentoo.org/539844 - # https://github.com/bluez/bluez/issues/268 - "${FILESDIR}"/${PN}-udevadm-path-r1.patch - - # https://github.com/bluez/bluez/issues/267 - "${FILESDIR}"/${PN}-5.63-musl-limits.patch - - # Fedora patches - # http://www.spinics.net/lists/linux-bluetooth/msg40136.html - "${FILESDIR}"/0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch - - # https://github.com/bluez/bluez/issues/220 - "${FILESDIR}"/0001-hog-Fix-read-order-of-attributes-rediffed.patch - "${FILESDIR}"/0002-hog-Add-input-queue-while-uhid-device-has-not-been-c-rediffed.patch -) - -pkg_setup() { - # From http://www.linuxfromscratch.org/blfs/view/svn/general/bluez.html - # to prevent bugs like: - # https://bugzilla.kernel.org/show_bug.cgi?id=196621 - CONFIG_CHECK="~NET ~BT ~BT_RFCOMM ~BT_RFCOMM_TTY ~BT_BNEP ~BT_BNEP_MC_FILTER - ~BT_BNEP_PROTO_FILTER ~BT_HIDP ~CRYPTO_USER_API_HASH ~CRYPTO_USER_API_SKCIPHER ~RFKILL" - # https://bugzilla.kernel.org/show_bug.cgi?id=196621 - # https://bugzilla.kernel.org/show_bug.cgi?id=206815 - if use mesh || use test; then - CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_USER - ~CRYPTO_USER_API ~CRYPTO_USER_API_AEAD ~CRYPTO_AES ~CRYPTO_CCM ~CRYPTO_AEAD ~CRYPTO_CMAC - ~CRYPTO_MD5 ~CRYPTO_SHA1 ~KEY_DH_OPERATIONS" - fi - linux-info_pkg_setup - - if use test || use test-programs; then - python-single-r1_pkg_setup - fi - - if ! use udev; then - ewarn - ewarn "You are installing ${PN} with USE=-udev. This means various bluetooth" - ewarn "devices and adapters from Apple, Dell, Logitech etc. will not work," - ewarn "and hid2hci will not be available." - ewarn - fi -} - -src_prepare() { - default - - # http://www.spinics.net/lists/linux-bluetooth/msg38490.html - if ! use systemd; then - eapply "${FILESDIR}"/0001-Allow-using-obexd-without-systemd-in-the-user-session-r2.patch - fi - - eautoreconf - - if use cups; then - # Only not .am to not need to run eautoreconf only because of this - sed -i \ - -e "s:cupsdir = \$(libdir)/cups:cupsdir = $(cups-config --serverbin):" \ - Makefile.{in,tools} || die - fi - - multilib_copy_sources -} - -multilib_src_configure() { - local myconf=( - # readline is automagic when client is enabled - # --enable-client always needs readline, bug #504038 - # --enable-mesh is handled in the same way - ac_cv_header_readline_readline_h=$(multilib_native_usex readline) - ac_cv_header_readline_readline_h=$(multilib_native_usex mesh) - ) - - if ! multilib_is_native_abi; then - myconf+=( - # deps not used for the library - {DBUS,GLIB}_{CFLAGS,LIBS}=' ' - ) - fi - - econf \ - --localstatedir=/var \ - --disable-android \ - --enable-datafiles \ - --enable-optimization \ - $(use_enable debug) \ - --enable-pie \ - --enable-threads \ - --enable-library \ - --enable-tools \ - --enable-manpages \ - --enable-monitor \ - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \ - --with-systemduserunitdir="$(systemd_get_userunitdir)" \ - $(multilib_native_use_enable btpclient) \ - $(multilib_native_use_enable btpclient external-ell) \ - $(multilib_native_use_enable cups) \ - $(multilib_native_use_enable deprecated) \ - $(multilib_native_use_enable experimental) \ - $(multilib_native_use_enable mesh) \ - $(multilib_native_use_enable mesh external-ell) \ - $(multilib_native_use_enable midi) \ - $(multilib_native_use_enable obex) \ - $(multilib_native_use_enable readline client) \ - $(multilib_native_use_enable systemd) \ - $(multilib_native_use_enable test-programs test) \ - $(multilib_native_use_enable udev) \ - $(multilib_native_use_enable udev hid2hci) \ - $(multilib_native_use_enable udev sixaxis) -} - -multilib_src_compile() { - if multilib_is_native_abi; then - default - else - emake -f Makefile -f - libs \ - <<<'libs: $(lib_LTLIBRARIES)' - fi -} - -multilib_src_test() { - multilib_is_native_abi && default -} - -multilib_src_install() { - if multilib_is_native_abi; then - emake DESTDIR="${D}" install - - # Only install extra-tools when relevant USE flag is enabled - if use extra-tools; then - ewarn "Upstream doesn't support using this tools and their bugs are" - ewarn "likely to be ignored forever, also they can break without" - ewarn "previous announcement." - ewarn "Upstream also states all this tools are not really needed," - ewarn "then, if you still need to rely on them, you must ask them" - ewarn "to either install that tool by default or add the needed" - ewarn "functionality to the existing 'official' tools." - ewarn "Please report this issues to:" - ewarn "http://www.bluez.org/development/lists/" - - # Upstream doesn't install this, bug #524640 - # http://permalink.gmane.org/gmane.linux.bluez.kernel/53115 - # http://comments.gmane.org/gmane.linux.bluez.kernel/54564 - dobin tools/btmgmt - # gatttool is only built with readline, bug #530776 - # https://bugzilla.redhat.com/show_bug.cgi?id=1141909 - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=720486 - # https://bugs.archlinux.org/task/37686 - dobin attrib/gatttool - # https://bugzilla.redhat.com/show_bug.cgi?id=1699680 - dobin tools/avinfo - fi - - # Not installed by default after being built, bug #666756 - use btpclient && dobin tools/btpclient - - # Unittests are not that useful once installed, so make them optional - if use test-programs; then - # Drop python2 only test tools - # https://bugzilla.kernel.org/show_bug.cgi?id=206819 - rm "${ED}"/usr/$(get_libdir)/bluez/test/simple-player || die - # https://bugzilla.kernel.org/show_bug.cgi?id=206821 - rm "${ED}"/usr/$(get_libdir)/bluez/test/test-hfp || die - # https://bugzilla.kernel.org/show_bug.cgi?id=206823 - rm "${ED}"/usr/$(get_libdir)/bluez/test/test-sap-server || die - - python_fix_shebang "${ED}"/usr/$(get_libdir)/bluez/test - - for i in $(find "${ED}"/usr/$(get_libdir)/bluez/test -maxdepth 1 -type f ! -name "*.*"); do - dosym "${i}" /usr/bin/bluez-"${i##*/}" - done - fi - else - emake DESTDIR="${D}" \ - install-pkgincludeHEADERS \ - install-libLTLIBRARIES \ - install-pkgconfigDATA - fi -} - -multilib_src_install_all() { - # We need to ensure obexd can be spawned automatically by systemd - # when user-session is enabled: - # http://marc.info/?l=linux-bluetooth&m=148096094716386&w=2 - # https://bugs.gentoo.org/show_bug.cgi?id=577842 - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=804908 - # https://bugs.archlinux.org/task/45816 - # https://bugzilla.redhat.com/show_bug.cgi?id=1318441 - # https://bugzilla.redhat.com/show_bug.cgi?id=1389347 - if use systemd; then - dosym obex.service /usr/lib/systemd/user/dbus-org.bluez.obex.service - fi - - find "${D}" -name '*.la' -type f -delete || die - - keepdir /var/lib/bluetooth - - # Upstream don't want people to play with them - # But we keep installing them due to 'historical' reasons - insinto /etc/bluetooth - local d - for d in input network; do - doins profiles/${d}/${d}.conf - done - # Setup auto enable as Fedora does for allowing to use - # keyboards/mouse as soon as possible - sed -i 's/#\[Policy\]$/\[Policy\]/; s/#AutoEnable=false/AutoEnable=true/' src/main.conf || die - doins src/main.conf - - newinitd "${FILESDIR}"/bluetooth-init.d-r5 bluetooth - newconfd "${FILESDIR}"/bluetooth-conf.d bluetooth - - einstalldocs - use doc && dodoc doc/*.txt - # Install .json files as examples to be used by meshctl - if use mesh; then - dodoc tools/mesh-gatt/*.json - local DOC_CONTENTS="Some example .json files were installed into - /usr/share/doc/${PF} to be used with meshctl. Feel free to - uncompress and copy them to ~/.config/meshctl to use them." - readme.gentoo_create_doc - fi -} - -pkg_postinst() { - use udev && udev_reload - systemd_reenable bluetooth.service - - has_version net-dialup/ppp || elog "To use dial up networking you must install net-dialup/ppp" - use mesh && readme.gentoo_print_elog -} diff --git a/net-wireless/bluez/files/0001-Revert-attrib-Make-use-of-bt_att_resend.patch b/net-wireless/bluez/files/0001-Revert-attrib-Make-use-of-bt_att_resend.patch deleted file mode 100644 index a8475b0c4273..000000000000 --- a/net-wireless/bluez/files/0001-Revert-attrib-Make-use-of-bt_att_resend.patch +++ /dev/null @@ -1,188 +0,0 @@ -From 697866e210e4e2dce14c95f7a7243e9b9128d01f Mon Sep 17 00:00:00 2001 -From: Adam Williamson -Date: Sun, 7 Nov 2021 15:10:53 -0800 -Subject: [PATCH] Revert "attrib: Make use of bt_att_resend" - -This reverts commit ac2c2e10b3adb432a572b618c6f53cabb6b3c80b. It -causes problems with Logitech MX wireless input devices (see -https://github.com/bluez/bluez/issues/220 and -https://bugzilla.redhat.com/show_bug.cgi?id=2019970 ). ---- - attrib/gattrib.c | 95 +++++++++++++++++++++++++++++++++++++----------- - 1 file changed, 73 insertions(+), 22 deletions(-) - -diff --git a/attrib/gattrib.c b/attrib/gattrib.c -index 270a37ebe..bc7d4f22c 100644 ---- a/attrib/gattrib.c -+++ b/attrib/gattrib.c -@@ -41,8 +41,13 @@ struct _GAttrib { - struct queue *track_ids; - }; - -+struct id_pair { -+ unsigned int org_id; -+ unsigned int pend_id; -+}; -+ - struct attrib_callbacks { -- unsigned int id; -+ struct id_pair *id; - GAttribResultFunc result_func; - GAttribNotifyFunc notify_func; - GDestroyNotify destroy_func; -@@ -51,6 +56,32 @@ struct attrib_callbacks { - uint16_t notify_handle; - }; - -+static bool find_with_org_id(const void *data, const void *user_data) -+{ -+ const struct id_pair *p = data; -+ unsigned int orig_id = PTR_TO_UINT(user_data); -+ -+ return (p->org_id == orig_id); -+} -+ -+static struct id_pair *store_id(GAttrib *attrib, unsigned int org_id, -+ unsigned int pend_id) -+{ -+ struct id_pair *t; -+ -+ t = new0(struct id_pair, 1); -+ if (!t) -+ return NULL; -+ -+ t->org_id = org_id; -+ t->pend_id = pend_id; -+ -+ if (queue_push_tail(attrib->track_ids, t)) -+ return t; -+ -+ return NULL; -+} -+ - GAttrib *g_attrib_new(GIOChannel *io, guint16 mtu, bool ext_signed) - { - gint fd; -@@ -119,6 +150,9 @@ static void attrib_callbacks_destroy(void *data) - if (cb->destroy_func) - cb->destroy_func(cb->user_data); - -+ if (queue_remove(cb->parent->track_ids, cb->id)) -+ free(cb->id); -+ - free(data); - } - -@@ -148,7 +182,7 @@ void g_attrib_unref(GAttrib *attrib) - bt_att_unref(attrib->att); - - queue_destroy(attrib->callbacks, attrib_callbacks_destroy); -- queue_destroy(attrib->track_ids, NULL); -+ queue_destroy(attrib->track_ids, free); - - free(attrib->buf); - -@@ -261,6 +295,7 @@ guint g_attrib_send(GAttrib *attrib, guint id, const guint8 *pdu, guint16 len, - struct attrib_callbacks *cb = NULL; - bt_att_response_func_t response_cb = NULL; - bt_att_destroy_func_t destroy_cb = NULL; -+ unsigned int pend_id; - - if (!attrib) - return 0; -@@ -282,47 +317,62 @@ guint g_attrib_send(GAttrib *attrib, guint id, const guint8 *pdu, guint16 len, - - } - -- if (id == 0) -- id = bt_att_send(attrib->att, pdu[0], (void *) pdu + 1, -- len - 1, response_cb, cb, destroy_cb); -- else { -- int err; -- -- err = bt_att_resend(attrib->att, id, pdu[0], (void *) pdu + 1, -- len - 1, response_cb, cb, destroy_cb); -- if (err) -- return 0; -- } -+ pend_id = bt_att_send(attrib->att, pdu[0], (void *) pdu + 1, len - 1, -+ response_cb, cb, destroy_cb); - -- if (!id) -- return id; -+ /* -+ * We store here pair as it is easier to handle it in response and in -+ * case where user request us to use specific id request - see below. -+ */ -+ if (id == 0) -+ id = pend_id; - - /* - * If user what us to use given id, lets keep track on that so we give - * user a possibility to cancel ongoing request. - */ -- if (cb) { -- cb->id = id; -- queue_push_tail(attrib->track_ids, UINT_TO_PTR(id)); -- } -+ if (cb) -+ cb->id = store_id(attrib, id, pend_id); - - return id; - } - - gboolean g_attrib_cancel(GAttrib *attrib, guint id) - { -+ struct id_pair *p; -+ - if (!attrib) - return FALSE; - -+ /* -+ * If request belongs to gattrib and is not yet done it has to be on -+ * the tracking id queue -+ * -+ * FIXME: It can happen that on the queue there is id_pair with -+ * given id which was provided by the user. In the same time it might -+ * happen that other attrib user got dynamic allocated req_id with same -+ * value as the one provided by the other user. -+ * In such case there are two clients having same request id and in -+ * this point of time we don't know which one calls cancel. For -+ * now we cancel request in which id was specified by the user. -+ */ -+ p = queue_remove_if(attrib->track_ids, find_with_org_id, -+ UINT_TO_PTR(id)); -+ if (!p) -+ return FALSE; -+ -+ id = p->pend_id; -+ free(p); -+ - return bt_att_cancel(attrib->att, id); - } - - static void cancel_request(void *data, void *user_data) - { -- unsigned int id = PTR_TO_UINT(data); -+ struct id_pair *p = data; - GAttrib *attrib = user_data; - -- bt_att_cancel(attrib->att, id); -+ bt_att_cancel(attrib->att, p->pend_id); - } - - gboolean g_attrib_cancel_all(GAttrib *attrib) -@@ -330,8 +380,9 @@ gboolean g_attrib_cancel_all(GAttrib *attrib) - if (!attrib) - return FALSE; - -+ /* Cancel only request which belongs to gattrib */ - queue_foreach(attrib->track_ids, cancel_request, attrib); -- queue_remove_all(attrib->track_ids, NULL, NULL, NULL); -+ queue_remove_all(attrib->track_ids, NULL, NULL, free); - - return TRUE; - } --- -2.33.1 - diff --git a/net-wireless/bluez/files/0001-hog-Fix-read-order-of-attributes-rediffed.patch b/net-wireless/bluez/files/0001-hog-Fix-read-order-of-attributes-rediffed.patch deleted file mode 100644 index cd6dc44b5d3e..000000000000 --- a/net-wireless/bluez/files/0001-hog-Fix-read-order-of-attributes-rediffed.patch +++ /dev/null @@ -1,542 +0,0 @@ -From 7fe38a17f6bee713fde587487fc224b0ae390e8f Mon Sep 17 00:00:00 2001 -From: Luiz Augusto von Dentz -Date: Mon, 10 Jan 2022 17:35:15 -0800 -Subject: [PATCH 1/2] hog: Fix read order of attributes - -The Report Map must be read after all other attributes otherwise the -Kernel driver may start using UHID_SET_REPORT which requires the -report->id to be known in order to resolve the attribute to send to. - -Fixes: https://github.com/bluez/bluez/issues/220 ---- - profiles/input/hog-lib.c | 191 ++++++++++++++++++++++++--------------- - 1 file changed, 119 insertions(+), 72 deletions(-) - -diff --git a/profiles/input/hog-lib.c b/profiles/input/hog-lib.c -index d37caa1f1..beb19af70 100644 ---- a/profiles/input/hog-lib.c -+++ b/profiles/input/hog-lib.c -@@ -90,6 +90,7 @@ struct bt_hog { - uint16_t getrep_id; - unsigned int setrep_att; - uint16_t setrep_id; -+ unsigned int report_map_id; - struct bt_scpp *scpp; - struct bt_dis *dis; - struct queue *bas; -@@ -146,13 +147,34 @@ static bool set_and_store_gatt_req(struct bt_hog *hog, - return queue_push_head(hog->gatt_op, req); - } - --static void destroy_gatt_req(struct gatt_request *req) -+static void destroy_gatt_req(void *data) - { -- queue_remove(req->hog->gatt_op, req); -+ struct gatt_request *req = data; -+ - bt_hog_unref(req->hog); - free(req); - } - -+static void read_report_map(struct bt_hog *hog); -+ -+static void remove_gatt_req(struct gatt_request *req, uint8_t status) -+{ -+ struct bt_hog *hog = req->hog; -+ -+ queue_remove(hog->gatt_op, req); -+ -+ if (!status && queue_isempty(hog->gatt_op)) { -+ /* Report Map must be read last since that can result -+ * in uhid being created and the driver may start to -+ * use UHID_SET_REPORT which requires the report->id to -+ * be known what attribute to send to. -+ */ -+ read_report_map(hog); -+ } -+ -+ destroy_gatt_req(req); -+} -+ - static void write_char(struct bt_hog *hog, GAttrib *attrib, uint16_t handle, - const uint8_t *value, size_t vlen, - GAttribResultFunc func, -@@ -178,27 +200,31 @@ static void write_char(struct bt_hog *hog, GAttrib *attrib, uint16_t handle, - } - } - --static void read_char(struct bt_hog *hog, GAttrib *attrib, uint16_t handle, -- GAttribResultFunc func, gpointer user_data) -+static unsigned int read_char(struct bt_hog *hog, GAttrib *attrib, -+ uint16_t handle, GAttribResultFunc func, -+ gpointer user_data) - { - struct gatt_request *req; - unsigned int id; - - req = create_request(hog, user_data); - if (!req) -- return; -+ return 0; - - id = gatt_read_char(attrib, handle, func, req); - if (!id) { - error("hog: Could not read char"); -- return; -+ return 0; - } - - if (!set_and_store_gatt_req(hog, req, id)) { - error("hog: Failed to queue read char req"); - g_attrib_cancel(attrib, id); - free(req); -+ return 0; - } -+ -+ return id; - } - - static void discover_desc(struct bt_hog *hog, GAttrib *attrib, -@@ -343,16 +369,14 @@ static void report_ccc_written_cb(guint8 status, const guint8 *pdu, - struct report *report = req->user_data; - struct bt_hog *hog = report->hog; - -- destroy_gatt_req(req); -- - if (status != 0) { - error("Write report characteristic descriptor failed: %s", - att_ecode2str(status)); -- return; -+ goto remove; - } - - if (report->notifyid) -- return; -+ goto remove; - - report->notifyid = g_attrib_register(hog->attrib, - ATT_OP_HANDLE_NOTIFY, -@@ -360,6 +384,9 @@ static void report_ccc_written_cb(guint8 status, const guint8 *pdu, - report_value_cb, report, NULL); - - DBG("Report characteristic descriptor written: notifications enabled"); -+ -+remove: -+ remove_gatt_req(req, status); - } - - static void write_ccc(struct bt_hog *hog, GAttrib *attrib, uint16_t handle, -@@ -379,14 +406,15 @@ static void ccc_read_cb(guint8 status, const guint8 *pdu, guint16 len, - struct gatt_request *req = user_data; - struct report *report = req->user_data; - -- destroy_gatt_req(req); -- - if (status != 0) { - error("Error reading CCC value: %s", att_ecode2str(status)); -- return; -+ goto remove; - } - - write_ccc(report->hog, report->hog->attrib, report->ccc_handle, report); -+ -+remove: -+ remove_gatt_req(req, status); - } - - static const char *type_to_string(uint8_t type) -@@ -409,17 +437,15 @@ static void report_reference_cb(guint8 status, const guint8 *pdu, - struct gatt_request *req = user_data; - struct report *report = req->user_data; - -- destroy_gatt_req(req); -- - if (status != 0) { - error("Read Report Reference descriptor failed: %s", - att_ecode2str(status)); -- return; -+ goto remove; - } - - if (plen != 3) { - error("Malformed ATT read response"); -- return; -+ goto remove; - } - - report->id = pdu[1]; -@@ -432,6 +458,9 @@ static void report_reference_cb(guint8 status, const guint8 *pdu, - if (report->type == HOG_REPORT_TYPE_INPUT) - read_char(report->hog, report->hog->attrib, report->ccc_handle, - ccc_read_cb, report); -+ -+remove: -+ remove_gatt_req(req, status); - } - - static void external_report_reference_cb(guint8 status, const guint8 *pdu, -@@ -442,12 +471,10 @@ static void discover_external_cb(uint8_t status, GSList *descs, void *user_data) - struct gatt_request *req = user_data; - struct bt_hog *hog = req->user_data; - -- destroy_gatt_req(req); -- - if (status != 0) { - error("Discover external descriptors failed: %s", - att_ecode2str(status)); -- return; -+ goto remove; - } - - for ( ; descs; descs = descs->next) { -@@ -457,6 +484,9 @@ static void discover_external_cb(uint8_t status, GSList *descs, void *user_data) - external_report_reference_cb, - hog); - } -+ -+remove: -+ remove_gatt_req(req, status); - } - - static void discover_external(struct bt_hog *hog, GAttrib *attrib, -@@ -480,12 +510,10 @@ static void discover_report_cb(uint8_t status, GSList *descs, void *user_data) - struct report *report = req->user_data; - struct bt_hog *hog = report->hog; - -- destroy_gatt_req(req); -- - if (status != 0) { - error("Discover report descriptors failed: %s", - att_ecode2str(status)); -- return; -+ goto remove; - } - - for ( ; descs; descs = descs->next) { -@@ -501,6 +529,9 @@ static void discover_report_cb(uint8_t status, GSList *descs, void *user_data) - break; - } - } -+ -+remove: -+ remove_gatt_req(req, status); - } - - static void discover_report(struct bt_hog *hog, GAttrib *attrib, -@@ -519,11 +550,9 @@ static void report_read_cb(guint8 status, const guint8 *pdu, guint16 len, - struct gatt_request *req = user_data; - struct report *report = req->user_data; - -- destroy_gatt_req(req); -- - if (status != 0) { - error("Error reading Report value: %s", att_ecode2str(status)); -- return; -+ goto remove; - } - - if (report->value) -@@ -531,6 +560,9 @@ static void report_read_cb(guint8 status, const guint8 *pdu, guint16 len, - - report->value = g_memdup2(pdu, len); - report->len = len; -+ -+remove: -+ remove_gatt_req(req, status); - } - - static int report_chrc_cmp(const void *data, const void *user_data) -@@ -572,12 +604,11 @@ static void external_service_char_cb(uint8_t status, GSList *chars, - struct report *report; - GSList *l; - -- destroy_gatt_req(req); -- - if (status != 0) { - const char *str = att_ecode2str(status); -+ - DBG("Discover external service characteristic failed: %s", str); -- return; -+ goto remove; - } - - for (l = chars; l; l = g_slist_next(l)) { -@@ -595,6 +626,9 @@ static void external_service_char_cb(uint8_t status, GSList *chars, - end = (next ? next->handle - 1 : primary->range.end); - discover_report(hog, hog->attrib, start, end, report); - } -+ -+remove: -+ remove_gatt_req(req, status); - } - - static void external_report_reference_cb(guint8 status, const guint8 *pdu, -@@ -605,17 +639,15 @@ static void external_report_reference_cb(guint8 status, const guint8 *pdu, - uint16_t uuid16; - bt_uuid_t uuid; - -- destroy_gatt_req(req); -- - if (status != 0) { - error("Read External Report Reference descriptor failed: %s", - att_ecode2str(status)); -- return; -+ goto remove; - } - - if (plen != 3) { - error("Malformed ATT read response"); -- return; -+ goto remove; - } - - uuid16 = get_le16(&pdu[1]); -@@ -624,11 +656,14 @@ static void external_report_reference_cb(guint8 status, const guint8 *pdu, - - /* Do not discover if is not a Report */ - if (uuid16 != HOG_REPORT_UUID) -- return; -+ goto remove; - - bt_uuid16_create(&uuid, uuid16); - discover_char(hog, hog->attrib, 0x0001, 0xffff, &uuid, - external_service_char_cb, hog); -+ -+remove: -+ remove_gatt_req(req, status); - } - - static int report_cmp(gconstpointer a, gconstpointer b) -@@ -687,12 +722,10 @@ static void output_written_cb(guint8 status, const guint8 *pdu, - { - struct gatt_request *req = user_data; - -- destroy_gatt_req(req); -- -- if (status != 0) { -+ if (status != 0) - error("Write output report failed: %s", att_ecode2str(status)); -- return; -- } -+ -+ remove_gatt_req(req, status); - } - - static void forward_report(struct uhid_event *ev, void *user_data) -@@ -1056,7 +1089,7 @@ static void report_map_read_cb(guint8 status, const guint8 *pdu, guint16 plen, - uint8_t value[HOG_REPORT_MAP_MAX_SIZE]; - ssize_t vlen; - -- destroy_gatt_req(req); -+ remove_gatt_req(req, status); - - DBG("HoG inspecting report map"); - -@@ -1081,6 +1114,19 @@ static void report_map_read_cb(guint8 status, const guint8 *pdu, guint16 plen, - } - } - -+static void read_report_map(struct bt_hog *hog) -+{ -+ uint16_t handle; -+ -+ if (!hog->report_map_attr || hog->uhid_created || hog->report_map_id) -+ return; -+ -+ handle = gatt_db_attribute_get_handle(hog->report_map_attr); -+ -+ hog->report_map_id = read_char(hog, hog->attrib, handle, -+ report_map_read_cb, hog); -+} -+ - static void info_read_cb(guint8 status, const guint8 *pdu, guint16 plen, - gpointer user_data) - { -@@ -1089,18 +1135,16 @@ static void info_read_cb(guint8 status, const guint8 *pdu, guint16 plen, - uint8_t value[HID_INFO_SIZE]; - ssize_t vlen; - -- destroy_gatt_req(req); -- - if (status != 0) { - error("HID Information read failed: %s", - att_ecode2str(status)); -- return; -+ goto remove; - } - - vlen = dec_read_resp(pdu, plen, value, sizeof(value)); - if (vlen != 4) { - error("ATT protocol error"); -- return; -+ goto remove; - } - - hog->bcdhid = get_le16(&value[0]); -@@ -1109,6 +1153,9 @@ static void info_read_cb(guint8 status, const guint8 *pdu, guint16 plen, - - DBG("bcdHID: 0x%04X bCountryCode: 0x%02X Flags: 0x%02X", - hog->bcdhid, hog->bcountrycode, hog->flags); -+ -+remove: -+ remove_gatt_req(req, status); - } - - static void proto_mode_read_cb(guint8 status, const guint8 *pdu, guint16 plen, -@@ -1119,18 +1166,16 @@ static void proto_mode_read_cb(guint8 status, const guint8 *pdu, guint16 plen, - uint8_t value; - ssize_t vlen; - -- destroy_gatt_req(req); -- - if (status != 0) { - error("Protocol Mode characteristic read failed: %s", - att_ecode2str(status)); -- return; -+ goto remove; - } - - vlen = dec_read_resp(pdu, plen, &value, sizeof(value)); - if (vlen < 0) { - error("ATT protocol error"); -- return; -+ goto remove; - } - - if (value == HOG_PROTO_MODE_BOOT) { -@@ -1142,6 +1187,9 @@ static void proto_mode_read_cb(guint8 status, const guint8 *pdu, guint16 plen, - sizeof(nval), NULL, NULL); - } else if (value == HOG_PROTO_MODE_REPORT) - DBG("HoG is operating in Report Protocol Mode"); -+ -+remove: -+ remove_gatt_req(req, status); - } - - static void char_discovered_cb(uint8_t status, GSList *chars, void *user_data) -@@ -1155,14 +1203,12 @@ static void char_discovered_cb(uint8_t status, GSList *chars, void *user_data) - GSList *l; - uint16_t info_handle = 0, proto_mode_handle = 0; - -- destroy_gatt_req(req); -- - DBG("HoG inspecting characteristics"); - - if (status != 0) { -- const char *str = att_ecode2str(status); -- DBG("Discover all characteristics failed: %s", str); -- return; -+ DBG("Discover all characteristics failed: %s", -+ att_ecode2str(status)); -+ goto remove; - } - - bt_uuid16_create(&report_uuid, HOG_REPORT_UUID); -@@ -1211,6 +1257,9 @@ static void char_discovered_cb(uint8_t status, GSList *chars, void *user_data) - - if (info_handle) - read_char(hog, hog->attrib, info_handle, info_read_cb, hog); -+ -+remove: -+ remove_gatt_req(req, status); - } - - static void report_free(void *data) -@@ -1221,10 +1270,12 @@ static void report_free(void *data) - g_free(report); - } - --static void cancel_gatt_req(struct gatt_request *req) -+static bool cancel_gatt_req(const void *data, const void *user_data) - { -- if (g_attrib_cancel(req->hog->attrib, req->id)) -- destroy_gatt_req(req); -+ struct gatt_request *req = (void *) data; -+ const struct bt_hog *hog = user_data; -+ -+ return g_attrib_cancel(hog->attrib, req->id); - } - - static void hog_free(void *data) -@@ -1386,13 +1437,9 @@ static void foreach_hog_chrc(struct gatt_db_attribute *attr, void *user_data) - * UHID to optimize reconnection. - */ - uhid_create(hog, report_map.value, report_map.length); -- } else { -- read_char(hog, hog->attrib, value_handle, -- report_map_read_cb, hog); - } - - gatt_db_service_foreach_desc(attr, foreach_hog_external, hog); -- return; - } - - bt_uuid16_create(&info_uuid, HOG_INFO_UUID); -@@ -1552,12 +1599,9 @@ static void find_included_cb(uint8_t status, GSList *services, void *user_data) - - DBG(""); - -- destroy_gatt_req(req); -- - if (status) { -- const char *str = att_ecode2str(status); -- DBG("Find included failed: %s", str); -- return; -+ DBG("Find included failed: %s", att_ecode2str(status)); -+ goto remove; - } - - for (l = services; l; l = l->next) { -@@ -1566,6 +1610,9 @@ static void find_included_cb(uint8_t status, GSList *services, void *user_data) - DBG("included: handle %x, uuid %s", - include->handle, include->uuid); - } -+ -+remove: -+ remove_gatt_req(req, status); - } - - static void hog_attach_scpp(struct bt_hog *hog, struct gatt_primary *primary) -@@ -1640,17 +1687,14 @@ static void primary_cb(uint8_t status, GSList *services, void *user_data) - - DBG(""); - -- destroy_gatt_req(req); -- - if (status) { -- const char *str = att_ecode2str(status); -- DBG("Discover primary failed: %s", str); -- return; -+ DBG("Discover primary failed: %s", att_ecode2str(status)); -+ goto remove; - } - - if (!services) { - DBG("No primary service found"); -- return; -+ goto remove; - } - - for (l = services; l; l = l->next) { -@@ -1674,6 +1718,9 @@ static void primary_cb(uint8_t status, GSList *services, void *user_data) - if (strcmp(primary->uuid, HOG_UUID) == 0) - hog_attach_hog(hog, primary); - } -+ -+remove: -+ remove_gatt_req(req, status); - } - - bool bt_hog_attach(struct bt_hog *hog, void *gatt) -@@ -1790,7 +1837,7 @@ void bt_hog_detach(struct bt_hog *hog) - if (hog->dis) - bt_dis_detach(hog->dis); - -- queue_foreach(hog->gatt_op, (void *) cancel_gatt_req, NULL); -+ queue_remove_all(hog->gatt_op, cancel_gatt_req, hog, destroy_gatt_req); - g_attrib_unref(hog->attrib); - hog->attrib = NULL; - uhid_destroy(hog); --- -2.34.1 - diff --git a/net-wireless/bluez/files/0002-hog-Add-input-queue-while-uhid-device-has-not-been-c-rediffed.patch b/net-wireless/bluez/files/0002-hog-Add-input-queue-while-uhid-device-has-not-been-c-rediffed.patch deleted file mode 100644 index f39775785f4a..000000000000 --- a/net-wireless/bluez/files/0002-hog-Add-input-queue-while-uhid-device-has-not-been-c-rediffed.patch +++ /dev/null @@ -1,90 +0,0 @@ -From 33d13bbc5703185ab3f15e4429df324987f3f225 Mon Sep 17 00:00:00 2001 -From: Luiz Augusto von Dentz -Date: Wed, 12 Jan 2022 14:07:36 -0800 -Subject: [PATCH 2/2] hog: Add input queue while uhid device has not been - created - -Since report map is only read after all reports it is possible to start -receiving notifications before uhid has been created, so this adds a -queue to store the events while the report map is pending and once uhid -has been created dequeue the events. ---- - profiles/input/hog-lib.c | 32 +++++++++++++++++++++++++++++--- - 1 file changed, 29 insertions(+), 3 deletions(-) - -diff --git a/profiles/input/hog-lib.c b/profiles/input/hog-lib.c -index beb19af70..0b375feb8 100644 ---- a/profiles/input/hog-lib.c -+++ b/profiles/input/hog-lib.c -@@ -98,6 +98,7 @@ struct bt_hog { - struct queue *gatt_op; - struct gatt_db *gatt_db; - struct gatt_db_attribute *report_map_attr; -+ struct queue *input; - }; - - struct report_map { -@@ -355,11 +356,18 @@ static void report_value_cb(const guint8 *pdu, guint16 len, gpointer user_data) - ev.u.input.size = len; - } - -- err = bt_uhid_send(hog->uhid, &ev); -- if (err < 0) { -- error("bt_uhid_send: %s (%d)", strerror(-err), -err); -+ /* If uhid had not been created yet queue up the input */ -+ if (!hog->uhid_created) { -+ if (!hog->input) -+ hog->input = queue_new(); -+ -+ queue_push_tail(hog->input, g_memdup(&ev, sizeof(ev))); - return; - } -+ -+ err = bt_uhid_send(hog->uhid, &ev); -+ if (err < 0) -+ error("bt_uhid_send: %s (%d)", strerror(-err), -err); - } - - static void report_ccc_written_cb(guint8 status, const guint8 *pdu, -@@ -993,6 +1001,21 @@ static char *item2string(char *str, uint8_t *buf, uint8_t len) - return str; - } - -+static bool input_dequeue(const void *data, const void *match_data) -+{ -+ const struct uhid_event *ev = data; -+ const struct bt_hog *hog = match_data; -+ int err; -+ -+ err = bt_uhid_send(hog->uhid, ev); -+ if (err < 0) { -+ error("bt_uhid_send: %s (%d)", strerror(-err), -err); -+ return false; -+ } -+ -+ return true; -+} -+ - static void uhid_create(struct bt_hog *hog, uint8_t *report_map, - ssize_t report_map_len) - { -@@ -1072,6 +1095,8 @@ static void uhid_create(struct bt_hog *hog, uint8_t *report_map, - hog->uhid_created = true; - - DBG("HoG created uHID device"); -+ -+ queue_remove_all(hog->input, input_dequeue, hog, free); - } - - static void db_report_map_write_value_cb(struct gatt_db_attribute *attr, -@@ -1284,6 +1309,7 @@ static void hog_free(void *data) - - bt_hog_detach(hog); - -+ queue_destroy(hog->input, free); - queue_destroy(hog->bas, (void *) bt_bas_unref); - g_slist_free_full(hog->instances, hog_free); - --- -2.34.1 - diff --git a/net-wireless/bluez/files/bluez-5.62-fix-disconnecting.patch b/net-wireless/bluez/files/bluez-5.62-fix-disconnecting.patch deleted file mode 100644 index 8eff9dc006dd..000000000000 --- a/net-wireless/bluez/files/bluez-5.62-fix-disconnecting.patch +++ /dev/null @@ -1,54 +0,0 @@ -From ebf2d7935690c00c7fd12768177e2023fc63c9fe Mon Sep 17 00:00:00 2001 -From: Javier de San Pedro -Date: Sat, 27 Nov 2021 23:21:36 +0100 -Subject: gatt-client: Fix disconnecting due to GattCharacteristic1.MTU - -After the MTU dbus property patches in 5.62 we are seeing bluetoothd -terminate frequently with "Disconnected from D-Bus. Exiting." msgs. -Apparently this is because bluetoothd sent an invalid reply to a D-Bus -Property Get (for GattCharacteristic1's MTU). -Multiple issues in bluez Github.com project reported similar behavior; -at least #235 (see Fixes:), #219, and likely #238. - -When the Characteristic1 object is still cached/alive, but the -underlying att connection is not (e.g. someone just called Disconnect), -the property getter (characteristic_get_mtu) right now returns false. -However, gdbus seems to ignore the return value and sends the empty reply -message anyway (rather than a dbus error?), and this seems to cause -the dbus connection to be terminated (due to the ill-formed reply?). -bluetoothd then aborts. - -This patch makes the property value BT_ATT_DEFAULT_LE_MTU if the -underlying att object does not exist, rather than returning an invalid -message. This is consistent with the existing PropertyChanged signal -behavior (we will emit a PropertyChange only if a larger MTU is -exchanged), and fixes the issue on my machines. -An alternative could be to change gdbus behavior, but I'm not sure if we -are allowed to return an error here anyway without causing problems in -other dbus libraries/wrappers. - -Fixes: aaa0c4996ae9 ("gatt: Add implementation of GattCharacteristic1.MTU") -Fixes: https://github.com/bluez/bluez/issues/235 ---- - src/gatt-client.c | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -diff --git a/src/gatt-client.c b/src/gatt-client.c -index de18bea97..6ee984db9 100644 ---- a/src/gatt-client.c -+++ b/src/gatt-client.c -@@ -883,10 +883,7 @@ static gboolean characteristic_get_mtu(const GDBusPropertyTable *property, - uint16_t mtu; - - att = bt_gatt_client_get_att(gatt); -- if (!att) -- return FALSE; -- -- mtu = bt_att_get_mtu(att); -+ mtu = att ? bt_att_get_mtu(att) : BT_ATT_DEFAULT_LE_MTU; - - dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT16, &mtu); - --- -cgit 1.2.3-1.el7 - diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index a6701020c395..d58af24cfd42 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/arch/alpha/package.use.mask b/profiles/arch/alpha/package.use.mask index 9102346f8a5f..631eabb1f5e9 100644 --- a/profiles/arch/alpha/package.use.mask +++ b/profiles/arch/alpha/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Matt Turner (2022-04-18) +# app-text/nuspell is not keyworded +app-text/enchant nuspell + # Matt Turner (2022-04-16) # sys-auth/seatd is not keyworded dev-libs/weston seatd diff --git a/profiles/arch/arm/package.use.mask b/profiles/arch/arm/package.use.mask index 4034a3d22ea1..64a70b3dadac 100644 --- a/profiles/arch/arm/package.use.mask +++ b/profiles/arch/arm/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Matt Turner (2022-04-18) +# app-text/nuspell is not keyworded +app-text/enchant nuspell + # Adel Kara Slimane (2022-03-14) # Untested useflag on other arches, needs keywording media-video/ffmpeg vmaf diff --git a/profiles/arch/arm64/package.use.mask b/profiles/arch/arm64/package.use.mask index e30bc8103f11..85f1547acbba 100644 --- a/profiles/arch/arm64/package.use.mask +++ b/profiles/arch/arm64/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Matt Turner (2022-04-18) +# app-text/nuspell is not keyworded +app-text/enchant nuspell + # Adel Kara Slimane (2022-03-14) # Untested useflag on other arches, needs keywording media-video/ffmpeg vmaf diff --git a/profiles/arch/hppa/package.use.mask b/profiles/arch/hppa/package.use.mask index 3b3b89939204..b96d263b1284 100644 --- a/profiles/arch/hppa/package.use.mask +++ b/profiles/arch/hppa/package.use.mask @@ -4,6 +4,10 @@ # NOTE: When masking a USE flag due to missing keywords, please file a keyword # request bug for the hppa arch. +# Matt Turner (2022-04-18) +# app-text/nuspell is not keyworded +app-text/enchant nuspell + # Lars Wendler (2022-04-01) # gnome-base/librsvg missing keywords media-libs/freetype svg diff --git a/profiles/arch/ia64/package.use.mask b/profiles/arch/ia64/package.use.mask index adc60a31c090..3302882b0146 100644 --- a/profiles/arch/ia64/package.use.mask +++ b/profiles/arch/ia64/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Matt Turner (2022-04-18) +# app-text/nuspell is not keyworded +app-text/enchant nuspell + # Matt Turner (2022-04-16) # net-misc/freerdp is not keyworded dev-libs/weston rdp diff --git a/profiles/arch/mips/package.use.mask b/profiles/arch/mips/package.use.mask index bc6c5cb3127f..8c2459b45e47 100644 --- a/profiles/arch/mips/package.use.mask +++ b/profiles/arch/mips/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Matt Turner (2022-04-18) +# app-text/nuspell is not keyworded +app-text/enchant nuspell + # Adel Kara Slimane (2022-03-14) # Untested useflag on other arches, needs keywording media-video/ffmpeg vmaf diff --git a/profiles/arch/powerpc/package.use.mask b/profiles/arch/powerpc/package.use.mask index 9b81c363f5b3..2479b6843d57 100644 --- a/profiles/arch/powerpc/package.use.mask +++ b/profiles/arch/powerpc/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Matt Turner (2022-04-18) +# app-text/nuspell is not keyworded +app-text/enchant nuspell + # Adel Kara Slimane (2022-03-14) # Untested useflag on other arches, needs keywording media-video/ffmpeg vmaf diff --git a/profiles/arch/riscv/package.use.mask b/profiles/arch/riscv/package.use.mask index e56b475c4880..c48167d18023 100644 --- a/profiles/arch/riscv/package.use.mask +++ b/profiles/arch/riscv/package.use.mask @@ -1,6 +1,10 @@ # Copyright 2019-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Matt Turner (2022-04-18) +# app-text/nuspell is not keyworded +app-text/enchant nuspell + # Jakov Smolić (2022-04-07) # Depends on sys-cluster/ceph which pulls in valgrind, which is # unavailable on riscv currently diff --git a/profiles/arch/s390/package.mask b/profiles/arch/s390/package.mask index c666a0c11158..a3155b7509b2 100644 --- a/profiles/arch/s390/package.mask +++ b/profiles/arch/s390/package.mask @@ -4,8 +4,3 @@ # Arthur Zamarin (2022-03-20) # sys-libs/libunwind doesn't work on s390 sys-libs/libunwind - -# Sam James (2021-11-05) -# Perl segfaults during build on s390(x). Presumably related to -# now truly respecting CFLAGS. bug #821577 ->=dev-lang/perl-5.34.0-r5 diff --git a/profiles/arch/sparc/package.use.mask b/profiles/arch/sparc/package.use.mask index 2ed9f67e2226..e7b2542e7273 100644 --- a/profiles/arch/sparc/package.use.mask +++ b/profiles/arch/sparc/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Matt Turner (2022-04-18) +# app-text/nuspell is not keyworded +app-text/enchant nuspell + # Matt Turner (2022-04-16) # net-misc/freerdp is not keyworded dev-libs/weston rdp diff --git a/profiles/package.mask b/profiles/package.mask index b46a90885dfb..ea0884cf36ac 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -33,6 +33,20 @@ #--- END OF EXAMPLES --- +# Volkmar W. Pogatzki (2022-04-17) +# Unused java libraries. Removal in 30 days. +dev-java/boot-bin +dev-java/eclipsito +dev-java/gcj-jdk +dev-java/japitools +dev-java/jboss-marshalling +dev-java/jdbc-mssqlserver +dev-java/jsr250 +dev-java/maven-hawtjni-plugin +dev-java/mimepull +dev-java/oracle-javamail +dev-java/xjavac + # David Seifert (2022-04-17) # Dead library, part of >=sys-fs/e2fsprogs-1.46.5 now, bug #806875, # removal on 2022-05-17. @@ -59,8 +73,7 @@ sys-cluster/singularity # at least some UX issues with 2.35.2+ with the new "safe directory" mechanism). # Earlier versions are still safe as long as you do not use git commands # on a local repository controlled by a user you do not trust. -=dev-vcs/git-2.35.2 -=dev-vcs/git-2.35.3 +>=dev-vcs/git-2.35.2 # Conrad Kostecki (2022-04-13) # Abandoned by upstream, does not work correctly anymore. @@ -276,12 +289,6 @@ sys-cluster/lustre # to a fresher gcc branch. (2022-03-19) -# Unmaintained, no revdeps in tree, not even on latest version, EAPI 5, -# typical 'webapp' smell, last upstream release more than 9 years ago. -# Bug #402849, #513594, #690042, #828702, removal on 2022-04-18. -sci-biology/GBrowse - # Michał Górny (2022-03-18) # The new version breaks building docs w/o Internet access (because it # tries to fetch and install all dependencies locally). diff --git a/profiles/targets/desktop/package.use b/profiles/targets/desktop/package.use index 5742b3ba9958..3cc4cc0d28f1 100644 --- a/profiles/targets/desktop/package.use +++ b/profiles/targets/desktop/package.use @@ -1,6 +1,10 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Andreas K. Hüttel (2022-04-18) +# Avoid a circular dependency, bug 764623 +dev-lang/python -bluetooth + # Andreas Sturmlechner (2021-12-18) # Required by media-gfx/digikam media-gfx/exiv2 xmp diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 19eea77289d3..f620c3092aaf 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1076,6 +1076,7 @@ app-text/ebook-tools:lit2epub - Install lit2epub script app-text/editorconfig-core-c:cli - Install command line interface. app-text/enchant:aspell - Adds support for app-text/aspell spell checker app-text/enchant:hunspell - Adds support for app-text/hunspell spell checker +app-text/enchant:nuspell - Adds support for app-text/nuspell spell checker app-text/enchant:voikko - Adds support for dev-libs/libvoikko spell checker app-text/evince:dvi - Enable the built-in DVI viewer app-text/evince:nautilus - Enable property page extension in gnome-base/nautilus @@ -4275,9 +4276,9 @@ media-libs/libsdl2:video - Control video support (disable at your own risk) media-libs/libsdl2:vulkan - Enable Vulkan support media-libs/libtgvoip:dsp - Enable signal processing (echo cancellation, noise suppression, and automatic gain control) media-libs/libvisio:tools - Build conversion tools +media-libs/libvmaf:embed-models - Compile default vmaf models into the library (needs app-editors/vim-core) media-libs/libvpx:highbitdepth - Enable 10 and 12 bit support for VP9. media-libs/libvpx:postproc - Enable additional post processing filters -media-libs/libvpx:svc - Enable spatial-svc support (experimental) media-libs/libwebp:swap-16bit-csp - Enable byte swapping for 16 bit colorspace media-libs/libzmf:tools - Build conversion tools media-libs/lilv:dyn-manifest - Add LV2 Dynamic Manifest support. See http://lv2plug.in/ns/ext/dynmanifest/ @@ -4844,7 +4845,6 @@ media-sound/vorbis-tools:kate - Adds support for Ogg Kate subtitles via libkate. media-sound/vorbis-tools:ogg123 - Build ogg123 player, needs libao and curl media-sound/wildmidi:player - Install the wildmidi player media-sound/xmms2:airplay - Support for airplay format -media-sound/xmms2:asf - Support for Advanced Systems Format (ASF) by using bundled libasf media-sound/xmms2:fluidsynth - Enable fluidsynth support (MIDI) media-sound/xmms2:gme - Support for various game audio formats using media-libs/game-music-emu media-sound/xmms2:ices - Icecast source output plugin @@ -7281,7 +7281,7 @@ sci-libs/dealii:adolc - Adds support for ADOL-C (sci-libs/adolc) sci-libs/dealii:arpack - Adds support for ARPACK (sci-libs/arpack) sci-libs/dealii:assimp - Add support for assimp (media-libs/assimp) sci-libs/dealii:cuda - Add support for cuda (dev-util/nvidia-cuda-sdk) -sci-libs/dealii:debug - Build an additional debug library with extra debug codepaths, like asserts and extra output. If you want to get meaningful backtraces see +sci-libs/dealii:debug - Build an additional debug library with extra debug codepaths, like asserts and extra output. If you want to get meaningful backtraces see sci-libs/dealii:ginkgo - Add support for ginkgo (sci-libs/ginkgo) sci-libs/dealii:gmsh - Add support for gmsh (sci-libs/gmsh) sci-libs/dealii:metis - Add support for metis (sci-libs/metis) @@ -7923,6 +7923,7 @@ sys-apps/systemd:tpm - Enable TPM support sys-apps/systemd:vanilla - Disable Gentoo-specific behavior and compatibility quirks sys-apps/systemd:xkb - Depend on x11-libs/libxkbcommon to allow logind to control the X11 keymap sys-apps/systemd-utils:boot - Enable systemd-boot (UEFI boot manager) +sys-apps/systemd-utils:kmod - Enable kernel module loading via sys-apps/kmod sys-apps/systemd-utils:sysusers - Enable systemd-sysusers sys-apps/systemd-utils:tmpfiles - Enable systemd-tmpfiles sys-apps/systemd-utils:udev - Enable systemd-udev (userspace device manager) @@ -8029,7 +8030,7 @@ sys-boot/lilo:device-mapper - Enable support for device-mapper from sys-fs/lvm2 sys-boot/lilo:minimal - Do not install the dolilo helper script sys-boot/lilo:pxeserial - Avoid character echo on PXE serial console sys-boot/netboot:bootrom - Install the bootrom binary for creation of rom files, which can be used for booting via floppy or rom. -sys-boot/plymouth:libkms - Provides abstraction to the DRM drivers (intel, nouveau and vmwgfx at this moment) +sys-boot/plymouth:drm - Provides abstraction to the DRM drivers (intel, nouveau and vmwgfx at this moment) sys-boot/plymouth:pango - Adds support for printing text on splash screen and text prompts, e.g. for password sys-boot/plymouth:split-usr - Enable this if /bin and /usr/bin are separate directories sys-boot/refind:btrfs - Builds the EFI binary btrfs filesystem driver diff --git a/sci-astronomy/Manifest.gz b/sci-astronomy/Manifest.gz index 3561802fb307..95c6497cdab4 100644 Binary files a/sci-astronomy/Manifest.gz and b/sci-astronomy/Manifest.gz differ diff --git a/sci-astronomy/stellarium/Manifest b/sci-astronomy/stellarium/Manifest index dccc451abef6..0492885198ac 100644 --- a/sci-astronomy/stellarium/Manifest +++ b/sci-astronomy/stellarium/Manifest @@ -3,8 +3,9 @@ DIST stars_5_2v0_1.cat 42580300 BLAKE2B eb6528c0577b3f2001a8b03cc5a4e08fa4e75723 DIST stars_6_2v0_1.cat 148352404 BLAKE2B c605b284b3d768cb1619ada3f58d406fa7737f09949e8926d6c14b82a85927d124d7fcb50c6d6c357d21b003938cc0b28937f2adb28ae268bb5c85d575f5e0ff SHA512 794279407595f44bbc1e492086063d98068bf332202a5448cd83dd7afbdcf7c6c3ff2878f3016369ebb5a98552874eb4eddb38e2c40e9a163c6231b640e02977 DIST stars_7_2v0_1.cat 305710678 BLAKE2B 1cc9b4a6bc35a9339e495f7e0da4f7e90a0e92b05b5de8599be1bbdd2a8053cbcec44b0e58bc9248364666db9cdf23449edf236e3f21fdc0e8f1a4a706afc919 SHA512 43b866eb793e8812c9d5502101a6c985d2055fb88bdbda274726bcd51e1527ecf342b22acd673318c9c8e88cac68eace18de8f27d29ffe64933fd32a5b84c5e3 DIST stars_8_2v0_1.cat 559068934 BLAKE2B c040a369cdf6885759998e1315b554d21a5e2b9b149a67967a8af45606aebf57bec407fab5ce1904978af0dc529aa6bddd267331ca45f58617bbf56d5ca99dee SHA512 06d4fa298b9dff8452f550377df99fcaa5e7107cfc7b75c9a4769b3cb6d97a822a54213c706102c1d7ef2dabc16df32a85f46b2f6d6c6f76a4e919353b739de4 -DIST stellarium-0.21.2.tar.gz 387061883 BLAKE2B 74878961efb01088c5c7c3031d989cccce5db2e072890d01a37a8b40d30838d7ee06f440abcd8279f14677f12c42f29d129499cf2e73c0bd2e771f201007d123 SHA512 91f4e263bcda25ba356decc99f46a3e278be24bcab25519522deac0ed540205ab8320365bb40a56b7f231635bf5b026b4f87f00eeb68a26eab2b7e37d38567bf DIST stellarium-0.21.3.tar.gz 390176992 BLAKE2B 9a6ba3ab6e1b0a61916c844d271bb2181f7b6482dfaaf24e9160dd00cec297e80fc2af167f77aaf248c4dcb358ff64c5cdc138626f37030529146f1e822813e8 SHA512 6553f0229f837742e8b9db2715ecb96d69fe46aa7f057d86fb2547540d86f2cb767ca4a6bb5ff18037642113b42fec3f2850e037275fc732aae63da8031bbd0e +DIST stellarium-0.22.1.tar.gz 407700439 BLAKE2B 7a01bf63892ab800988896748f44961832756cb993884ab1d45e454035db72d6494a536936ccc338f1c0322e20ec5b282a2c3764b77f1c16cf2ee47f1a57a979 SHA512 31d0294c78c3254261dd2a5e46022342f9f3046f920efd8e4f1353eecf79116f50a968479768c12a8419ed3f9182fd3694a78b5ea2ab27ad67e6ef6d17aaa137 DIST stellarium-dso-catalog-3.13.dat 28683353 BLAKE2B 6d7587f98ccb06a83e6befb1d569c9639170c8a430901c1c6098a86a33fe8934cd4454a87b51752636a15ab1a96fd3ebd77cbd5d9e4260436ec2e4e4795f98b0 SHA512 3880ec776798599640fb083b0c9ebbccadef44f640fb2214052161ddbeb06bf5b0babc0c31d9ac02aa40e52e290d4f5613c11a6dadd83fd61114dbfb49ebe855 -DIST stellarium_user_guide-0.21.2-1.pdf 31351844 BLAKE2B f8a35dcc1c0d9a40ec8d640b3cc2ee1f5e154b0f06507e0ef9ccbabdc05add2c00704e611932710a60f2b21730c8398e52be0cb142428de77eec304489591db9 SHA512 7e0bb33583ac4e89ea3cd7be5585cc00d9ac473d99d4e0862be1a74edb66cbd13661bd5d7787b60a945e302e33e190cc30a51df10d363e1af49002129f8e399f +DIST stellarium-dso-catalog-3.15.dat 28683372 BLAKE2B c2ba23a6b169815ed20d97113887f663a9b730774cc2e8402e4149ff25b8d0107166c806814d3fb46ccc1f1859a901508f652234b8ddff3ea7d4710b21b65c93 SHA512 2f43696b093bcc35288b51fdacf89380ee878296fa596c10404c89004efbd08104e7d04e193499eed711ad7d13dd7fe8af805167e3b10d6b2c2b02fca42ad041 DIST stellarium_user_guide-0.21.3-1.pdf 31253904 BLAKE2B 3e8a0395a29c2fac164379ea315cd21d102b2b400d9eeacdb37cf85f00816f0678edabb9b779db135f4c43ee4cfcc6307ee59f4a149aa33e878c11fe26551266 SHA512 83137fe09bdc279bec23b78694d5e1efe9238733f8adf2cb8ed7e37f0eee60b0475c4c93b5bc85a04b92a175284c24354c36b6a93014216387211c9b031cdf7c +DIST stellarium_user_guide-0.22.1-1.pdf 36226017 BLAKE2B 628c57f1efa6238e5c12588ed4b0532816e8708f16d40fad0d87f72550af5efa500ae0edbc20e243488c59dfc94b47efe588d47419e7d29b1fd6ff9e4cec5438 SHA512 07d965f5b45ac964bec401f14ee81322a17939e292390ebd040339c265ede4b652b37e9220696f13c093ea22e8a706b27b7d23d7357dffbe808c2538f8cee93d diff --git a/sci-astronomy/stellarium/files/stellarium-0.22.1-fix-star-manager-segfault.patch b/sci-astronomy/stellarium/files/stellarium-0.22.1-fix-star-manager-segfault.patch new file mode 100644 index 000000000000..7f8981a006e2 --- /dev/null +++ b/sci-astronomy/stellarium/files/stellarium-0.22.1-fix-star-manager-segfault.patch @@ -0,0 +1,30 @@ +This patch is required to fix a segfault on startup in <=0.22.1 if star catalogue files are +added or removed (USE=stars) + +Refer: https://github.com/Stellarium/stellarium/issues/2404 + +This patch may be safely removed for 0.22.2 - it has been patched upstream. + +--- a/src/core/modules/StarMgr.cpp ++++ b/src/core/modules/StarMgr.cpp +@@ -592,13 +592,13 @@ void StarMgr::setCheckFlag(const QString& catId, bool b) + return; + m["checked"]=b; + catalogsDescription[idx-1]=m; +- starSettings["catalogs"]=catalogsDescription; +- QFile tmp(starConfigFileFullPath); +- if(tmp.open(QIODevice::WriteOnly)) +- { +- StelJsonParser::write(starSettings, &tmp); +- tmp.close(); +- } ++ } ++ starSettings["catalogs"]=catalogsDescription; ++ QFile tmp(starConfigFileFullPath); ++ if(tmp.open(QIODevice::WriteOnly)) ++ { ++ StelJsonParser::write(starSettings, &tmp); ++ tmp.close(); + } + } + diff --git a/sci-astronomy/stellarium/files/stellarium-0.22.1-unbundle-qtcompress.patch b/sci-astronomy/stellarium/files/stellarium-0.22.1-unbundle-qtcompress.patch new file mode 100644 index 000000000000..41721046ed03 --- /dev/null +++ b/sci-astronomy/stellarium/files/stellarium-0.22.1-unbundle-qtcompress.patch @@ -0,0 +1,208 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -614,6 +614,8 @@ ELSE(ENABLE_GPS) + MESSAGE(STATUS "GPS: disabled.") + ENDIF(ENABLE_GPS) + ++find_package(Qt5Compress REQUIRED) ++ + IF(USE_QTOPENGL) + # QtOpenGL module is deprecated. After merging the QOpenGLWidget branch, we don't use this module directly anymore, + # but the QtMultimediaWidgets module requires it internally, so we still have to package it. +--- a/plugins/Satellites/src/CMakeLists.txt ++++ b/plugins/Satellites/src/CMakeLists.txt +@@ -55,7 +55,7 @@ IF(ENABLE_TESTING) + ENDIF(ENABLE_TESTING) + + ADD_LIBRARY(Satellites-static STATIC ${Satellites_SRCS} ${Satellites_RES_CXX} ${SatellitesDialog_UIS_H}) +-TARGET_LINK_LIBRARIES(Satellites-static Qt5::Core Qt5::Network Qt5::Widgets) ++TARGET_LINK_LIBRARIES(Satellites-static Qt5::Core Qt5::Network Qt5::Widgets Qt5::Compress) + # The library target "Satellites-static" has a default OUTPUT_NAME of "Satellites-static", so change it. + SET_TARGET_PROPERTIES(Satellites-static PROPERTIES OUTPUT_NAME "Satellites") + IF(MSVC) +--- a/plugins/Satellites/src/Satellites.cpp ++++ b/plugins/Satellites/src/Satellites.cpp +@@ -43,7 +43,7 @@ + #include "StelUtils.hpp" + #include "StelActionMgr.hpp" + +-#include "external/qtcompress/qzipreader.h" ++#include "qzipreader.h" + + #include + #include +@@ -1639,12 +1639,12 @@ void Satellites::saveDownloadedUpdate(QNetworkReply* reply) + QString archive = zip.fileName(); + QByteArray data; + +- Stel::QZipReader reader(archive); +- if (reader.status() != Stel::QZipReader::NoError) ++ QZipReader reader(archive); ++ if (reader.status() != QZipReader::NoError) + qWarning() << "[Satellites] Unable to open as a ZIP archive"; + else + { +- QList infoList = reader.fileInfoList(); ++ QList infoList = reader.fileInfoList(); + for (const auto& info : qAsConst(infoList)) + { + // qWarning() << "[Satellites] Processing:" << info.filePath; +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -479,7 +479,7 @@ IF(ENABLE_SPOUT AND SPOUT_LIBRARY_DLL) + CONFIGURE_FILE(${SPOUT_LIBRARY_DLL} ${CMAKE_CURRENT_BINARY_DIR} COPYONLY) + ENDIF() + +-SET(STELMAIN_DEPS ${ZLIB_LIBRARIES} qtcompress_stel glues_stel qcustomplot_stel qxlsx_stel ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} ${STELLARIUM_QT_LIBRARIES} ${SPOUT_LIBRARY}) ++SET(STELMAIN_DEPS ${ZLIB_LIBRARIES} Qt5::Compress glues_stel qcustomplot_stel qxlsx_stel ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} ${STELLARIUM_QT_LIBRARIES} ${SPOUT_LIBRARY}) + IF(ENABLE_LIBGPS) + SET(STELMAIN_DEPS ${STELMAIN_DEPS} ${GPS_LIBRARY}) + ENDIF() +--- a/src/core/modules/LandscapeMgr.cpp ++++ b/src/core/modules/LandscapeMgr.cpp +@@ -1331,8 +1331,8 @@ QString LandscapeMgr::installLandscapeFromArchive(QString sourceFilePath, const + } + QDir destinationDir (parentDestinationDir.absoluteFilePath("landscapes")); + +- Stel::QZipReader reader(sourceFilePath); +- if (reader.status() != Stel::QZipReader::NoError) ++ QZipReader reader(sourceFilePath); ++ if (reader.status() != QZipReader::NoError) + { + qWarning() << "LandscapeMgr: Unable to open as a ZIP archive:" << QDir::toNativeSeparators(sourceFilePath); + emit errorNotArchive(); +@@ -1341,7 +1341,7 @@ QString LandscapeMgr::installLandscapeFromArchive(QString sourceFilePath, const + + //Detect top directory + QString topDir, iniPath; +- const QList infoList = reader.fileInfoList(); ++ const QList infoList = reader.fileInfoList(); + for (const auto& info : infoList) + { + QFileInfo fileInfo(info.filePath); +--- a/src/external/CMakeLists.txt ++++ b/src/external/CMakeLists.txt +@@ -70,6 +70,7 @@ target_include_directories(zlib_stel PUBLIC zlib) + set_target_properties(zlib_stel PROPERTIES AUTOMOC 0) + SET_TARGET_PROPERTIES(zlib_stel PROPERTIES FOLDER "src/external") + ++if(0) + set(qtcompress_SRCS + qtcompress/qzip.cpp + qtcompress/qzipreader.h +@@ -82,6 +83,7 @@ target_link_libraries(qtcompress_stel ${ZLIB_LIBRARIES} Qt5::Core) + #turn off automoc, not needed here + set_target_properties(qtcompress_stel PROPERTIES AUTOMOC 0) + SET_TARGET_PROPERTIES(qtcompress_stel PROPERTIES FOLDER "src/external") ++endif() + + # QCustomPlot should not be unbundled, because upstream uses GPL 3, and + # Stellarium uses GPL 2. Author of QCustomPlot has agreed for GPL 2+ for this. +@@ -180,7 +182,7 @@ SET(qxlsx_SRCS + qxlsx/xlsxcelllocation.h + ) + add_library(qxlsx_stel STATIC EXCLUDE_FROM_ALL ${qxlsx_SRCS}) +-target_link_libraries(qxlsx_stel Qt5::Core Qt5::Gui qtcompress_stel) ++target_link_libraries(qxlsx_stel Qt5::Core Qt5::Gui Qt5::Compress) + set_target_properties(qxlsx_stel PROPERTIES FOLDER "src/external") + + ################################# INDI ################################ +--- a/src/external/qxlsx/xlsxzipreader.cpp ++++ b/src/external/qxlsx/xlsxzipreader.cpp +@@ -5,13 +5,13 @@ + QT_BEGIN_NAMESPACE_XLSX + + ZipReader::ZipReader(const QString &filePath) : +- m_reader(new Stel::QZipReader(filePath)) ++ m_reader(new QZipReader(filePath)) + { + init(); + } + + ZipReader::ZipReader(QIODevice *device) : +- m_reader(new Stel::QZipReader(device)) ++ m_reader(new QZipReader(device)) + { + init(); + } +@@ -23,8 +23,8 @@ ZipReader::~ZipReader() + + void ZipReader::init() + { +- QList allFiles = m_reader->fileInfoList(); +- for (const Stel::QZipReader::FileInfo &fi : allFiles) { ++ QList allFiles = m_reader->fileInfoList(); ++ for (const QZipReader::FileInfo &fi : allFiles) { + if (fi.isFile || (!fi.isDir && !fi.isFile && !fi.isSymLink)) + m_filePaths.append(fi.filePath); + } +--- a/src/external/qxlsx/xlsxzipreader_p.h ++++ b/src/external/qxlsx/xlsxzipreader_p.h +@@ -8,7 +8,7 @@ + #include + + #include "xlsxglobal.h" +-#include "external/qtcompress/qzipreader.h" ++#include "qzipreader.h" + + #if QT_VERSION >= 0x050600 + #include +@@ -31,7 +31,7 @@ public: + private: + Q_DISABLE_COPY(ZipReader) + void init(); +- QScopedPointer m_reader; ++ QScopedPointer m_reader; + QStringList m_filePaths; + }; + +--- a/src/external/qxlsx/xlsxzipwriter.cpp ++++ b/src/external/qxlsx/xlsxzipwriter.cpp +@@ -10,14 +10,14 @@ QT_BEGIN_NAMESPACE_XLSX + + ZipWriter::ZipWriter(const QString &filePath) + { +- m_writer = new Stel::QZipWriter(filePath, QIODevice::WriteOnly); +- m_writer->setCompressionPolicy(Stel::QZipWriter::AutoCompress); ++ m_writer = new QZipWriter(filePath, QIODevice::WriteOnly); ++ m_writer->setCompressionPolicy(QZipWriter::AutoCompress); + } + + ZipWriter::ZipWriter(QIODevice *device) + { +- m_writer = new Stel::QZipWriter(device); +- m_writer->setCompressionPolicy(Stel::QZipWriter::AutoCompress); ++ m_writer = new QZipWriter(device); ++ m_writer->setCompressionPolicy(QZipWriter::AutoCompress); + } + + ZipWriter::~ZipWriter() +@@ -27,7 +27,7 @@ ZipWriter::~ZipWriter() + + bool ZipWriter::error() const + { +- return m_writer->status() != Stel::QZipWriter::NoError; ++ return m_writer->status() != QZipWriter::NoError; + } + + void ZipWriter::addFile(const QString &filePath, QIODevice *device) +--- a/src/external/qxlsx/xlsxzipwriter_p.h ++++ b/src/external/qxlsx/xlsxzipwriter_p.h +@@ -8,7 +8,7 @@ + #include + + #include "xlsxglobal.h" +-#include "external/qtcompress/qzipwriter.h" ++#include "qzipwriter.h" + + class QZipWriter; + +@@ -27,7 +27,7 @@ public: + void close(); + + private: +- Stel::QZipWriter *m_writer; ++ QZipWriter *m_writer; + }; + + QT_END_NAMESPACE_XLSX diff --git a/sci-astronomy/stellarium/stellarium-0.21.2.ebuild b/sci-astronomy/stellarium/stellarium-0.22.1.ebuild similarity index 89% rename from sci-astronomy/stellarium/stellarium-0.21.2.ebuild rename to sci-astronomy/stellarium/stellarium-0.22.1.ebuild index 081f54b46aa9..1a8d4b878c4d 100644 --- a/sci-astronomy/stellarium/stellarium-0.21.2.ebuild +++ b/sci-astronomy/stellarium/stellarium-0.22.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -8,7 +8,7 @@ inherit cmake desktop flag-o-matic python-any-r1 xdg virtualx DESCRIPTION="3D photo-realistic skies in real time" HOMEPAGE="https://stellarium.org/" -MY_DSO_VERSION="3.13" +MY_DSO_VERSION="3.15" SRC_URI=" https://github.com/Stellarium/stellarium/releases/download/v${PV}/${P}.tar.gz deep-sky? ( @@ -27,8 +27,8 @@ SRC_URI=" LICENSE="GPL-2+ SGI-B-2.0" SLOT="0" -KEYWORDS="amd64 ppc ppc64 ~riscv x86" -IUSE="debug deep-sky doc gps media nls stars telescope test" +KEYWORDS="~amd64 ~ppc64 ~riscv ~x86" +IUSE="debug deep-sky doc gps media nls stars telescope test webengine" # Python interpreter is used while building RemoteControl plugin BDEPEND=" @@ -38,6 +38,7 @@ BDEPEND=" " RDEPEND=" dev-libs/qtcompress:= + dev-qt/qtcharts:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 @@ -58,6 +59,7 @@ RDEPEND=" dev-qt/qtserialport:5 sci-libs/indilib:= ) + webengine? ( dev-qt/qtwebengine:5[widgets] ) " DEPEND="${RDEPEND} dev-qt/qtconcurrent:5 @@ -68,8 +70,9 @@ RESTRICT="!test? ( test )" PATCHES=( "${FILESDIR}/stellarium-0.20.3-unbundle-indi.patch" - "${FILESDIR}/stellarium-0.21.2-unbundle-qtcompress.patch" "${FILESDIR}/stellarium-0.20.3-unbundle-zlib.patch" + "${FILESDIR}/stellarium-0.22.1-fix-star-manager-segfault.patch" + "${FILESDIR}/stellarium-0.22.1-unbundle-qtcompress.patch" ) src_prepare() { @@ -100,6 +103,8 @@ src_configure() { -DENABLE_NLS="$(usex nls)" -DENABLE_TESTING="$(usex test)" -DUSE_PLUGIN_TELESCOPECONTROL="$(usex telescope)" + $(cmake_use_find_package webengine Qt5WebEngine) + $(cmake_use_find_package webengine Qt5WebEngineWidgets) ) cmake_src_configure } diff --git a/sci-biology/GBrowse/GBrowse-2.48-r1.ebuild b/sci-biology/GBrowse/GBrowse-2.48-r1.ebuild deleted file mode 100644 index 2fcef3b41aff..000000000000 --- a/sci-biology/GBrowse/GBrowse-2.48-r1.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=LDS -inherit perl-module webapp - -DESCRIPTION="Generic Model Organism Database Project - The Generic Genome Browser" -HOMEPAGE="http://gmod.org/wiki/GBrowse" -KEYWORDS="~amd64 ~x86" -IUSE="minimal mysql postgres +sqlite" - -SLOT="0" -WEBAPP_MANUAL_SLOT="yes" - -CDEPEND="!=sci-biology/bioperl-1.6.9 - >=dev-perl/Bio-Graphics-2.09 - >=dev-perl/GD-2.07 - >=dev-perl/CGI-Session-4.02 - dev-perl/IO-String - dev-perl/JSON - dev-perl/libwww-perl - dev-perl/Statistics-Descriptive - !minimal? ( - dev-perl/Bio-Das - >=dev-perl/Bio-SamTools-1.20 - dev-perl/Crypt-SSLeay - dev-perl/DB_File-Lock - dev-perl/DBI - mysql? ( dev-perl/DBD-mysql ) - postgres? ( dev-perl/DBD-Pg ) - sqlite? ( dev-perl/DBD-SQLite ) - dev-perl/FCGI - dev-perl/File-NFSLock - dev-perl/GD-SVG - dev-perl/Net-OpenID-Consumer - dev-perl/Net-SMTP-SSL - )" -# >=dev-perl/Bio-DB-BigFile-1.00 - requires jklib to compile -DEPEND="dev-perl/Module-Build - dev-perl/Capture-Tiny - ${CDEPEND}" -RDEPEND="${CDEPEND}" - -PATCHES=( "${FILESDIR}"/GBrowseInstall.pm-2.39.patch ) - -src_configure() { - webapp_src_preinst - -# myconf="--install_base=${D}/usr" or "--install_base=/opt/gbrowse" - myconf="--conf=/etc/gbrowse2" - myconf="${myconf} --htdocs=${MY_HTDOCSDIR}" - myconf="${myconf} --cgibin=${MY_CGIBINDIR}" - myconf="${myconf} --tmp=/var/tmp/gbrowse2" - myconf="${myconf} --persistent=/var/db/gbrowse2" - myconf="${myconf} --databases=/var/db/gbrowse2/databases" - myconf="${myconf} --installconf=no" - myconf="${myconf} --installetc=no" - perl-module_src_configure -} - -src_install() { - dodir /var/tmp/gbrowse2 - dodir /var/db/gbrowse2/sessions - dodir /var/db/gbrowse2/userdata - webapp_serverowned -R /var/tmp/gbrowse2 /var/db/gbrowse2 - perl-module_src_install - webapp_src_install -} diff --git a/sci-biology/GBrowse/Manifest b/sci-biology/GBrowse/Manifest deleted file mode 100644 index 47384b63de9a..000000000000 --- a/sci-biology/GBrowse/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST GBrowse-2.48.tar.gz 11958127 BLAKE2B e9527eb47302775d62e37990c42154b677284fff0f0f9624e9173e30e46c5aebbc8a02ee8dec0a1e98761812ef2363e0183008087bce4d283528b7935b4d5f91 SHA512 d5a07caf1517fb15741e8e6056669763eb04678a42637a9e90788c91e74fb34515b5f86aac10a00f29d8848aceb19d6f5f7258d2dda0e281feee550e9e2fb3db diff --git a/sci-biology/GBrowse/files/GBrowseInstall.pm-2.39.patch b/sci-biology/GBrowse/files/GBrowseInstall.pm-2.39.patch deleted file mode 100644 index 5aa0be9df918..000000000000 --- a/sci-biology/GBrowse/files/GBrowseInstall.pm-2.39.patch +++ /dev/null @@ -1,72 +0,0 @@ -diff -durr GBrowse-2.39-orig/install_util/GBrowseInstall.pm GBrowse-2.39/install_util/GBrowseInstall.pm ---- GBrowse-2.39-orig/install_util/GBrowseInstall.pm 2011-07-19 20:14:52.434608020 +0000 -+++ GBrowse-2.39/install_util/GBrowseInstall.pm 2011-07-19 21:02:13.685107753 +0000 -@@ -454,33 +454,33 @@ - $gid =~ /^(\d+)$/; - $gid = $1; - -- unless (chown $uid,$gid,$tmp) { -- $self->ownership_warning($tmp,$user); -- } -+# unless (chown $uid,$gid,$tmp) { -+# $self->ownership_warning($tmp,$user); -+# } - - my $htdocs_i = File::Spec->catfile($self->install_path->{htdocs},'i'); - my $images = File::Spec->catfile($tmp,'images'); - my $htdocs = $self->install_path->{htdocs}; -- chown $uid,-1,$htdocs; -+# chown $uid,-1,$htdocs; - { - local $> = $uid; -- symlink($images,$htdocs_i); # so symlinkifowner match works! -+# symlink($images,$htdocs_i); # so symlinkifowner match works! - } -- chown $>,-1,$self->install_path->{htdocs}; -+# chown $>,-1,$self->install_path->{htdocs}; - - my $persistent = $self->install_path->{'persistent'}; - my $sessions = File::Spec->catfile($persistent,'sessions'); - my $userdata = File::Spec->catfile($persistent,'userdata'); -- mkpath([$sessions,$userdata],0711); -+# mkpath([$sessions,$userdata],0711); - - my $databases = $self->install_path->{'databases'}; - -- unless (chown $uid,$gid,glob(File::Spec->catfile($databases,'').'*')) { -- $self->ownership_warning($databases,$user); -- } -+# unless (chown $uid,$gid,glob(File::Spec->catfile($databases,'').'*')) { -+# $self->ownership_warning($databases,$user); -+# } - -- chmod 0755,File::Spec->catfile($self->install_path->{'etc'},'init.d','gbrowse-slave'); -- $self->fix_selinux; -+ # chmod 0755,File::Spec->catfile($self->install_path->{'etc'},'init.d','gbrowse-slave'); -+ # $self->fix_selinux; - - my $base = basename($self->install_path->{htdocs}); - -@@ -489,14 +489,14 @@ - my $metadb_script = File::Spec->catfile("bin", "gbrowse_metadb_config.pl"); - my $perl = $self->perl; - my @inc = map{"-I$_"} split ':',$self->added_to_INC; -- system $perl,@inc,$metadb_script; -- system 'sudo','chown','-R',"$uid.$gid",$sessions,$userdata; -+# system $perl,@inc,$metadb_script; -+# system 'sudo','chown','-R',"$uid.$gid",$sessions,$userdata; - -- if (Module::Build->y_n( -- "It is recommended that you restart Apache. Shall I try this for you?",'y' -- )) { -- system "sudo /etc/init.d/apache2 restart"; -- } -+# if (Module::Build->y_n( -+# "It is recommended that you restart Apache. Shall I try this for you?",'y' -+# )) { -+# system "sudo /etc/init.d/apache2 restart"; -+# } - - print STDERR "\n***INSTALLATION COMPLETE***\n"; - print STDERR "Load http://localhost/$base for demo and documentation.\n"; -Only in GBrowse-2.39/install_util: GBrowseInstall.pm~ diff --git a/sci-biology/GBrowse/metadata.xml b/sci-biology/GBrowse/metadata.xml deleted file mode 100644 index 08238dd44f7a..000000000000 --- a/sci-biology/GBrowse/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - sci-biology@gentoo.org - Gentoo Biology Project - - - GBrowse - - diff --git a/sci-biology/Manifest.gz b/sci-biology/Manifest.gz index b726b826cf1a..e48ac0e48206 100644 Binary files a/sci-biology/Manifest.gz and b/sci-biology/Manifest.gz differ diff --git a/sci-electronics/Manifest.gz b/sci-electronics/Manifest.gz index f60d4adb8d52..56397dbf597d 100644 Binary files a/sci-electronics/Manifest.gz and b/sci-electronics/Manifest.gz differ diff --git a/sci-electronics/kicad/kicad-6.0.4.ebuild b/sci-electronics/kicad/kicad-6.0.4.ebuild index 2d3156fe68e9..37b4352cf709 100644 --- a/sci-electronics/kicad/kicad-6.0.4.ebuild +++ b/sci-electronics/kicad/kicad-6.0.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{8,9} ) +PYTHON_COMPAT=( python3_{8..10} ) WX_GTK_VER="3.0-gtk3" inherit check-reqs cmake optfeature python-single-r1 toolchain-funcs wxwidgets xdg-utils diff --git a/sci-electronics/kicad/kicad-9999.ebuild b/sci-electronics/kicad/kicad-9999.ebuild index 9ca55665856a..1e6d93af9eae 100644 --- a/sci-electronics/kicad/kicad-9999.ebuild +++ b/sci-electronics/kicad/kicad-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{8,9} ) +PYTHON_COMPAT=( python3_{8..9} ) WX_GTK_VER="3.0-gtk3" inherit check-reqs cmake optfeature python-single-r1 toolchain-funcs wxwidgets xdg-utils diff --git a/sci-geosciences/Manifest.gz b/sci-geosciences/Manifest.gz index 1a5900b781e8..6514df57a4e9 100644 Binary files a/sci-geosciences/Manifest.gz and b/sci-geosciences/Manifest.gz differ diff --git a/sci-geosciences/gpxsee/Manifest b/sci-geosciences/gpxsee/Manifest index a99b3c4c84bc..ed51dea621fd 100644 --- a/sci-geosciences/gpxsee/Manifest +++ b/sci-geosciences/gpxsee/Manifest @@ -1 +1,2 @@ DIST gpxsee-10.5.tar.gz 5123489 BLAKE2B 9e7155adc340d3e8af708563cf2aba2e03a47c4180a144d79521913339020f20be416bd14d95b33041653135167d8123899f6008474beef8e1665924eaa0c339 SHA512 ee24a1555fc18f2aa21307e4fe255312d5e166b107bf0a9e10104cb977cb5d59888e7ec99aad83adf5fc36e7a9eb04a039450d96b4248ad52c08fce0dd76c035 +DIST gpxsee-10.6.tar.gz 5122274 BLAKE2B bf76c9928267b3d6f07fcdc807512a9ab3b2ba2bdcef0294414c3aadf7d2b89b8f5fbb7a793ff04976ec16afdc5f33fcb54f5cc5c19bd1bdac97ebce7e4edc48 SHA512 143340f31863c82d3336fd4bd03e99edfdb0324ccf80ccd7a423f5a815ecda8b5220766f02e53b9f4d5098fabaad33f9da5d4a3de250711214c6923821008e76 diff --git a/sci-geosciences/gpxsee/gpxsee-10.6.ebuild b/sci-geosciences/gpxsee/gpxsee-10.6.ebuild new file mode 100644 index 000000000000..f37db04afe41 --- /dev/null +++ b/sci-geosciences/gpxsee/gpxsee-10.6.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PLOCALES="cs da de en eo es fi fr hu it nb pl pt_BR ru sv tr uk zh" +inherit desktop plocale qmake-utils xdg + +MY_PN="GPXSee" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea files" +HOMEPAGE="https://www.gpxsee.org/" +SRC_URI="https://github.com/tumic0/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RDEPEND="dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/qtconcurrent:5 + dev-qt/qtnetwork:5 + dev-qt/qtprintsupport:5 + dev-qt/qtsql:5 + dev-qt/qtpositioning:5" +DEPEND="${RDEPEND}" +BDEPEND="dev-qt/linguist-tools:5" + +S="${WORKDIR}/${MY_P}" + +PATCHES=( "${FILESDIR}"/${PN}-7.33.patch ) + +src_prepare() { + default + + plocale_find_changes lang "${PN}_" '.ts' + + rm_ts() { + sed -e "s|lang/gpxsee_${1}.ts||" -i gpxsee.pro + } + + plocale_for_each_disabled_locale rm_ts +} + +src_compile() { + $(qt5_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" + eqmake5 gpxsee.pro + emake +} + +src_install() { + emake INSTALL_ROOT="${D}" install + dodoc README.md +} diff --git a/sci-geosciences/gpxsee/metadata.xml b/sci-geosciences/gpxsee/metadata.xml index 0e4114d603ac..83c1cf2df276 100644 --- a/sci-geosciences/gpxsee/metadata.xml +++ b/sci-geosciences/gpxsee/metadata.xml @@ -11,5 +11,6 @@ gpxsee + tumic0/GPXSee diff --git a/sci-geosciences/grass/grass-8.0.1-r1.ebuild b/sci-geosciences/grass/grass-8.0.1-r1.ebuild index 81b7d01d2c77..92ed99c98cc2 100644 --- a/sci-geosciences/grass/grass-8.0.1-r1.ebuild +++ b/sci-geosciences/grass/grass-8.0.1-r1.ebuild @@ -93,7 +93,7 @@ BDEPEND=" PATCHES=( # bug 746590 "${FILESDIR}/${PN}-flock.patch" - "${FILESDIR}/${PN}-lib_imagery.patch" + "${FILESDIR}/${P}-lib_imagery.patch" ) pkg_setup() { diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index 38dd8bb03dc2..5043d2e04c1d 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/dealii/metadata.xml b/sci-libs/dealii/metadata.xml index e863c0a535ef..8b4433d57a7d 100644 --- a/sci-libs/dealii/metadata.xml +++ b/sci-libs/dealii/metadata.xml @@ -21,7 +21,7 @@ to the complex data structures and algorithms required. Build an additional debug library with extra debug codepaths, like asserts and extra output. If you want to get meaningful backtraces see -<http://www.gentoo.org/proj/en/qa/backtraces.xml> +<https://www.gentoo.org/proj/en/qa/backtraces.xml> Add support for gmsh (sci-libs/gmsh) Add support for metis (sci-libs/metis) Add support for muparser (dev-cpp/muParser) diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz index 7ca687caab0d..f527aa3dd7a0 100644 Binary files a/sys-apps/Manifest.gz and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/baobab/baobab-42.0.ebuild b/sys-apps/baobab/baobab-42.0.ebuild index 8f6502db0c7c..8cea0ebe0e90 100644 --- a/sys-apps/baobab/baobab-42.0.ebuild +++ b/sys-apps/baobab/baobab-42.0.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Baobab" LICENSE="GPL-2+ FDL-1.1+" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" RDEPEND=" >=dev-libs/glib-2.44:2 diff --git a/sys-apps/edid-decode/Manifest b/sys-apps/edid-decode/Manifest index f631576b369c..735a1ce1e713 100644 --- a/sys-apps/edid-decode/Manifest +++ b/sys-apps/edid-decode/Manifest @@ -1,2 +1 @@ -DIST edid-decode-0_pre20211012.tar.gz 130090 BLAKE2B 22fcfeee726cf33c22ebeac38648145735d493fa211ef5e8536198549ea80e31fa676a9aa4c55db21019f255426be67a1123524ffa92f44e1a7efa541c8ea24f SHA512 276047a626569e0fc3e8a21764cc580a0b9fb210be1c924cf8a7bec34a436f0cfab5d84b324cb31723bced66ce44e08f99ae58a2c5b09dc2bc4b8084114b915b DIST edid-decode-0_pre20220319.tar.gz 135715 BLAKE2B 3ca70f7147463ec586d9b28e4e68327c5b2e8075dcf6f57f0be40288f87a4b498998654333321b3d3ca7e7d38926befc53094250b2953cd2b33b686f5cd878cc SHA512 5f3f285b898ae1a47abf06e787e097c8aebb558e3efbc6e80bdd4ed5505ea4f59f723d5a0a820bbc0c575d25f686f03aa33fe424e1b3a1b2c1be1ef13b6508c2 diff --git a/sys-apps/edid-decode/edid-decode-0_pre20211012.ebuild b/sys-apps/edid-decode/edid-decode-0_pre20211012.ebuild deleted file mode 100644 index dc3cb528ade9..000000000000 --- a/sys-apps/edid-decode/edid-decode-0_pre20211012.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -EGIT_COMMIT="985024f0ccb7eb0014397f2d562ecebfdd340c3b" -MY_P="${PN}-${EGIT_COMMIT}" - -DESCRIPTION="Decode EDID data in a human-readable format" -HOMEPAGE="https://git.linuxtv.org/edid-decode.git/" -SRC_URI="https://dev.gentoo.org/~conikost/files/${P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -KEYWORDS="amd64 ~arm64 x86" -LICENSE="MIT" -SLOT="0" -IUSE="examples" - -src_compile() { - tc-export CXX - default -} - -src_install() { - emake DESTDIR="${ED}" install - einstalldocs - - if use examples; then - insinto /usr/share/edid-decode/examples - doins data/* - fi -} diff --git a/sys-apps/edid-decode/edid-decode-0_pre20220319.ebuild b/sys-apps/edid-decode/edid-decode-0_pre20220319.ebuild index 4e2a8c135680..ed99cdb3764f 100644 --- a/sys-apps/edid-decode/edid-decode-0_pre20220319.ebuild +++ b/sys-apps/edid-decode/edid-decode-0_pre20220319.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://git.linuxtv.org/edid-decode.git/" SRC_URI="https://dev.gentoo.org/~conikost/files/${P}.tar.gz" S="${WORKDIR}/${MY_P}" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" LICENSE="MIT" SLOT="0" IUSE="examples" diff --git a/sys-apps/i2c-tools/i2c-tools-4.2.ebuild b/sys-apps/i2c-tools/i2c-tools-4.2.ebuild index 7372aa58066c..246cc0d212b5 100644 --- a/sys-apps/i2c-tools/i2c-tools-4.2.ebuild +++ b/sys-apps/i2c-tools/i2c-tools-4.2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python{3_7,3_8,3_9} ) +PYTHON_COMPAT=( python3_{8,9,10} ) DISTUTILS_OPTIONAL="1" inherit distutils-r1 flag-o-matic toolchain-funcs diff --git a/sys-apps/man-db/man-db-2.10.2-r1.ebuild b/sys-apps/man-db/man-db-2.10.2-r1.ebuild index 1a32e09d53c5..071f78dfb0bc 100644 --- a/sys-apps/man-db/man-db-2.10.2-r1.ebuild +++ b/sys-apps/man-db/man-db-2.10.2-r1.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]] ; then else # TODO: Change tarballs to gitlab too...? SRC_URI="mirror://nongnu/${PN}/${P}.tar.xz" - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi LICENSE="GPL-3" diff --git a/sys-apps/man2html/man2html-1.6g.ebuild b/sys-apps/man2html/man2html-1.6g.ebuild index b35afa12de16..20fc85be6073 100644 --- a/sys-apps/man2html/man2html-1.6g.ebuild +++ b/sys-apps/man2html/man2html-1.6g.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit toolchain-funcs +inherit edo toolchain-funcs MY_P="man-${PV}" @@ -25,21 +25,14 @@ PATCHES=( ) src_configure() { - echoit() { - echo "$@" - "$@" - } - tc-export CC BUILD_CC # Just a stub to disable configure check. man2html doesn't use it. export COMPRESS=true - echoit \ - ./configure \ + edo ./configure \ -confdir=/etc \ +sgid +fhs \ - +lang none \ - || die "configure failed" + +lang none } src_compile() { diff --git a/sys-apps/plocate/files/plocate-1.1.10-meson-use-feature-option-for-libiouring.patch b/sys-apps/plocate/files/plocate-1.1.10-meson-use-feature-option-for-libiouring.patch deleted file mode 100644 index 183c9f8e7fff..000000000000 --- a/sys-apps/plocate/files/plocate-1.1.10-meson-use-feature-option-for-libiouring.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 562128212376305bac8edd10d80c24f1223f1870 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= -Date: Thu, 19 Aug 2021 12:03:39 +0200 -Subject: [PATCH plocate] meson: use feature option for libiouring - -source-based distributions would prefer to allow this option to be -disabled without a hack, regardless of is libiouring installed or not, -and meson already supports feature options for this purpose. ---- - meson.build | 2 +- - meson_options.txt | 1 + - 2 files changed, 2 insertions(+), 1 deletion(-) - -diff --git a/meson.build b/meson.build -index 6fb0f74..fb79e3f 100644 ---- a/meson.build -+++ b/meson.build -@@ -10,7 +10,7 @@ add_project_arguments('-DPACKAGE_VERSION="' + meson.project_version() + '"', lan - add_project_arguments('-DPACKAGE_BUGREPORT="steinar+plocate@gunderson.no"', language: 'cpp') - - cxx = meson.get_compiler('cpp') --uringdep = dependency('liburing', required: false) -+uringdep = dependency('liburing', required: get_option('use_libiouring')) - zstddep = dependency('libzstd') - threaddep = dependency('threads') - atomicdep = cxx.find_library('atomic', required: false) -diff --git a/meson_options.txt b/meson_options.txt -index 8ac13c5..9c90bf0 100644 ---- a/meson_options.txt -+++ b/meson_options.txt -@@ -3,3 +3,4 @@ option('install_systemd', type: 'boolean', value: true, description: 'Install sy - option('systemunitdir', type: 'string', description: 'Where to install systemd units to (default: autodetect)') - option('locategroup', type: 'string', value: 'plocate', description: 'Group that the install script will use for the .db file') - option('updatedb_progname', type: 'string', value: 'updatedb', description: 'Binary name of updatedb') -+option('use_libiouring', type: 'feature', value: 'auto', description: 'Enable libiouring dependency (default: autodetect)') --- -2.31.1 - diff --git a/sys-apps/systemd-utils/metadata.xml b/sys-apps/systemd-utils/metadata.xml index efdb151f4069..5f3934d37331 100644 --- a/sys-apps/systemd-utils/metadata.xml +++ b/sys-apps/systemd-utils/metadata.xml @@ -6,6 +6,7 @@ Enable systemd-boot (UEFI boot manager) + Enable kernel module loading via sys-apps/kmod Enable systemd-sysusers Enable systemd-tmpfiles Enable systemd-udev (userspace device manager) diff --git a/sys-apps/systemd-utils/systemd-utils-250.4-r1.ebuild b/sys-apps/systemd-utils/systemd-utils-250.4-r3.ebuild similarity index 96% rename from sys-apps/systemd-utils/systemd-utils-250.4-r1.ebuild rename to sys-apps/systemd-utils/systemd-utils-250.4-r3.ebuild index 024c61072a28..f6bc25624f70 100644 --- a/sys-apps/systemd-utils/systemd-utils-250.4-r1.ebuild +++ b/sys-apps/systemd-utils/systemd-utils-250.4-r3.ebuild @@ -25,18 +25,21 @@ SRC_URI+=" elibc_musl? ( https://dev.gentoo.org/~floppym/dist/${MUSL_PATCHSET}.t LICENSE="GPL-2 LGPL-2.1 MIT public-domain" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="boot selinux sysusers +tmpfiles test +udev" +IUSE="+acl boot +kmod selinux sysusers +tmpfiles test +udev" REQUIRED_USE="|| ( boot tmpfiles sysusers udev )" RESTRICT="!test? ( test )" COMMON_DEPEND=" - sys-apps/acl:0= - >=sys-apps/kmod-15:0= selinux? ( sys-libs/libselinux:0= ) + tmpfiles? ( + acl? ( sys-apps/acl:0= ) + ) udev? ( >=sys-apps/util-linux-2.30:0=[${MULTILIB_USEDEP}] sys-libs/libcap:0=[${MULTILIB_USEDEP}] virtual/libcrypt:=[${MULTILIB_USEDEP}] + acl? ( sys-apps/acl:0= ) + kmod? ( >=sys-apps/kmod-15:0= ) ) !udev? ( >=sys-apps/util-linux-2.30:0= @@ -115,7 +118,6 @@ multilib_src_configure() { local emesonargs=( -Drootprefix="${EPREFIX:-/}" -Dsysvinit-path= - $(meson_native_true acl) $(meson_native_use_bool boot efi) $(meson_native_use_bool boot gnu-efi) $(meson_native_use_bool selinux) @@ -123,7 +125,6 @@ multilib_src_configure() { $(meson_use test tests) $(meson_native_use_bool tmpfiles) $(meson_use udev hwdb) - $(meson_native_use_bool udev kmod) -Defi-libdir="${ESYSROOT}/usr/$(get_libdir)" @@ -206,6 +207,18 @@ multilib_src_configure() { -Dzstd=false ) + if use tmpfiles || use udev; then + emesonargs+=( $(meson_native_use_bool acl) ) + else + emesonargs+=( -Dacl=false ) + fi + + if use udev; then + emesonargs+=( $(meson_native_use_bool kmod) ) + else + emesonargs+=( -Dkmod=false ) + fi + if use elibc_musl; then # Avoid redefinition of struct ethhdr. append-cppflags -D__UAPI_DEF_ETHHDR=0 diff --git a/sys-boot/Manifest.gz b/sys-boot/Manifest.gz index aee2c64146fb..cc9ffdfbe775 100644 Binary files a/sys-boot/Manifest.gz and b/sys-boot/Manifest.gz differ diff --git a/sys-boot/plymouth/metadata.xml b/sys-boot/plymouth/metadata.xml index 3c5e3d8bbaf5..5900b9002bfe 100644 --- a/sys-boot/plymouth/metadata.xml +++ b/sys-boot/plymouth/metadata.xml @@ -6,7 +6,7 @@ Matthew Thode - Provides abstraction to the DRM drivers (intel, + Provides abstraction to the DRM drivers (intel, nouveau and vmwgfx at this moment) Adds support for printing text on splash screen and text prompts, e.g. for password diff --git a/sys-boot/plymouth/plymouth-0.9.5-r1.ebuild b/sys-boot/plymouth/plymouth-0.9.5-r2.ebuild similarity index 93% rename from sys-boot/plymouth/plymouth-0.9.5-r1.ebuild rename to sys-boot/plymouth/plymouth-0.9.5-r2.ebuild index 62560bb5edb7..5dd00723beda 100644 --- a/sys-boot/plymouth/plymouth-0.9.5-r1.ebuild +++ b/sys-boot/plymouth/plymouth-0.9.5-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,16 +21,16 @@ HOMEPAGE="https://cgit.freedesktop.org/plymouth/" LICENSE="GPL-2" SLOT="0" -IUSE="debug +gtk +libkms +pango +split-usr static-libs +udev" +IUSE="debug +drm +gtk +pango +split-usr static-libs +udev" CDEPEND=" >=media-libs/libpng-1.2.16:= + drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) - libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) " DEPEND="${CDEPEND} @@ -71,8 +71,8 @@ src_configure() { $(use_enable !static-libs shared) $(use_enable static-libs static) $(use_enable debug tracing) - $(use_enable gtk gtk) - $(use_enable libkms drm) + $(use_enable drm) + $(use_enable gtk) $(use_enable pango) $(use_with udev) ) diff --git a/sys-boot/plymouth/plymouth-0.9.6_pre20211225.ebuild b/sys-boot/plymouth/plymouth-0.9.6_pre20211225-r1.ebuild similarity index 94% rename from sys-boot/plymouth/plymouth-0.9.6_pre20211225.ebuild rename to sys-boot/plymouth/plymouth-0.9.6_pre20211225-r1.ebuild index 0c17e6c5bc8b..7ee910f6b422 100644 --- a/sys-boot/plymouth/plymouth-0.9.6_pre20211225.ebuild +++ b/sys-boot/plymouth/plymouth-0.9.6_pre20211225-r1.ebuild @@ -23,16 +23,16 @@ HOMEPAGE="https://cgit.freedesktop.org/plymouth/" LICENSE="GPL-2" SLOT="0" -IUSE="debug +gtk +libkms +pango +split-usr static-libs +udev" +IUSE="debug +drm +gtk +pango +split-usr static-libs +udev" CDEPEND=" >=media-libs/libpng-1.2.16:= + drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) - libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) " DEPEND="${CDEPEND} @@ -73,8 +73,8 @@ src_configure() { $(use_enable !static-libs shared) $(use_enable static-libs static) $(use_enable debug tracing) - $(use_enable gtk gtk) - $(use_enable libkms drm) + $(use_enable drm) + $(use_enable gtk) $(use_enable pango) $(use_with udev) ) diff --git a/sys-boot/plymouth/plymouth-22.02.122.ebuild b/sys-boot/plymouth/plymouth-22.02.122-r1.ebuild similarity index 94% rename from sys-boot/plymouth/plymouth-22.02.122.ebuild rename to sys-boot/plymouth/plymouth-22.02.122-r1.ebuild index 98bb6eb92ea2..e3ad01aa6372 100644 --- a/sys-boot/plymouth/plymouth-22.02.122.ebuild +++ b/sys-boot/plymouth/plymouth-22.02.122-r1.ebuild @@ -21,16 +21,16 @@ HOMEPAGE="https://cgit.freedesktop.org/plymouth/" LICENSE="GPL-2" SLOT="0" -IUSE="debug +gtk +libkms +pango +split-usr static-libs +udev" +IUSE="debug +drm +gtk +pango +split-usr static-libs +udev" CDEPEND=" >=media-libs/libpng-1.2.16:= + drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) - libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) " DEPEND="${CDEPEND} @@ -71,8 +71,8 @@ src_configure() { $(use_enable !static-libs shared) $(use_enable static-libs static) $(use_enable debug tracing) - $(use_enable gtk gtk) - $(use_enable libkms drm) + $(use_enable drm) + $(use_enable gtk) $(use_enable pango) $(use_with udev) ) diff --git a/sys-boot/plymouth/plymouth-9999.ebuild b/sys-boot/plymouth/plymouth-9999.ebuild index 3f303786005d..e3ad01aa6372 100644 --- a/sys-boot/plymouth/plymouth-9999.ebuild +++ b/sys-boot/plymouth/plymouth-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,16 +21,16 @@ HOMEPAGE="https://cgit.freedesktop.org/plymouth/" LICENSE="GPL-2" SLOT="0" -IUSE="debug +gtk +libkms +pango +split-usr static-libs +udev" +IUSE="debug +drm +gtk +pango +split-usr static-libs +udev" CDEPEND=" >=media-libs/libpng-1.2.16:= + drm? ( x11-libs/libdrm ) gtk? ( dev-libs/glib:2 >=x11-libs/gtk+-3.14:3 x11-libs/cairo ) - libkms? ( x11-libs/libdrm[libkms] ) pango? ( >=x11-libs/pango-1.21 ) " DEPEND="${CDEPEND} @@ -71,8 +71,8 @@ src_configure() { $(use_enable !static-libs shared) $(use_enable static-libs static) $(use_enable debug tracing) - $(use_enable gtk gtk) - $(use_enable libkms drm) + $(use_enable drm) + $(use_enable gtk) $(use_enable pango) $(use_with udev) ) diff --git a/sys-devel/Manifest.gz b/sys-devel/Manifest.gz index 2f8e7964e318..047d991b2069 100644 Binary files a/sys-devel/Manifest.gz and b/sys-devel/Manifest.gz differ diff --git a/sys-devel/gdb/files/gdb-11.1-glibc-2.34-sim.patch b/sys-devel/gdb/files/gdb-11.1-glibc-2.34-sim.patch deleted file mode 100644 index 15ab45f278f1..000000000000 --- a/sys-devel/gdb/files/gdb-11.1-glibc-2.34-sim.patch +++ /dev/null @@ -1,110 +0,0 @@ -https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=39d53d04357606a15efd400147fa7369d71baf2c;hp=46039d3632e32d9a404c1f18cf55f14c894e4627 -https://bugs.gentoo.org/813831 - -From 39d53d04357606a15efd400147fa7369d71baf2c Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Sun, 3 Oct 2021 12:02:53 -0400 -Subject: [PATCH 1/1] sim: filter out SIGSTKSZ [PR sim/28302] - -We map target signals to host signals so we can propagate signals -between the host & simulated worlds. That means we need to know -the symbolic names & values of all signals that might be sent. - -The tools that generate that list use signal.h and include all -symbols that start with "SIG" so as to automatically include any -new symbols that the C library might add. Unfortunately, this -also picks up "SIGSTKSZ" which is not actually a signal itself, -but a signal related setting -- it's the size of the stack when -a signal is handled. - -By itself this doesn't super matter as we will never see a signal -with that same value (since the range of valid signals tend to be -way less than 1024, and the size of the default signal stack will -never be that small). But with recent glibc changes that make this -into a dynamic value instead of a compile-time constant, some users -see build failures when building the sim. - -As suggested by Adam Sampson, update our scripts to ignore this -symbol to simplify everything and avoid the build failure. - -Bug: https://sourceware.org/PR28302 ---- - sim/bfin/linux-targ-map.h | 5 +---- - sim/common/gennltvals.py | 6 ++++-- - sim/common/nltvals.def | 1 - - 3 files changed, 5 insertions(+), 7 deletions(-) - -diff --git a/sim/bfin/linux-targ-map.h b/sim/bfin/linux-targ-map.h -index e9c8c8f273b..0340ed54764 100644 ---- a/sim/bfin/linux-targ-map.h -+++ b/sim/bfin/linux-targ-map.h -@@ -30,6 +30,7 @@ echo - # XXX: nothing uses this ? - echo '#include ' | \ - bfin-uclinux-gcc -E -dD -P - | \ -+grep -v SIGSTKSZ | \ - sed -r -n \ - -e '1istatic CB_TARGET_DEFS_MAP cb_linux_signal_map[] = {' \ - -e '$i\ \ { 0, -1, -1 }\n};' \ -@@ -1987,10 +1988,6 @@ static CB_TARGET_DEFS_MAP cb_linux_signal_map[] = - #ifdef SIG_SETMASK - # define TARGET_LINUX_SIG_SETMASK 2 - { "SIG_SETMASK", SIG_SETMASK, TARGET_LINUX_SIG_SETMASK }, --#endif --#ifdef SIGSTKSZ --# define TARGET_LINUX_SIGSTKSZ 8192 -- { "SIGSTKSZ", SIGSTKSZ, TARGET_LINUX_SIGSTKSZ }, - #endif - { 0, -1, -1 } - }; -diff --git a/sim/common/gennltvals.py b/sim/common/gennltvals.py -index db3ff641d40..955ace34311 100755 ---- a/sim/common/gennltvals.py -+++ b/sim/common/gennltvals.py -@@ -67,6 +67,7 @@ FILE_HEADER = f"""\ - def gentvals(output: TextIO, cpp: str, srctype: str, srcdir: Path, - headers: Iterable[str], - pattern: str, -+ filter: str = r'^$', - target: str = None): - """Extract constants from the specified files using a regular expression. - -@@ -94,12 +95,13 @@ def gentvals(output: TextIO, cpp: str, srctype: str, srcdir: Path, - srcfile = ''.join(f'#include <{x}>\n' for x in headers) - syms = set() - define_pattern = re.compile(r'^#\s*define\s+(' + pattern + ')') -+ filter_pattern = re.compile(filter) - for header in headers: - with open(srcdir / header, 'r', encoding='utf-8') as fp: - data = fp.read() - for line in data.splitlines(): - m = define_pattern.match(line) -- if m: -+ if m and not filter_pattern.search(line): - syms.add(m.group(1)) - for sym in sorted(syms): - srcfile += f'#ifdef {sym}\nDEFVAL {{ "{sym}", {sym} }},\n#endif\n' -@@ -129,7 +131,7 @@ def gen_common(output: TextIO, newlib: Path, cpp: str): - ('errno.h', 'sys/errno.h'), 'E[A-Z0-9]*') - - gentvals(output, cpp, 'signal', newlib / 'newlib/libc/include', -- ('signal.h', 'sys/signal.h'), r'SIG[A-Z0-9]*') -+ ('signal.h', 'sys/signal.h'), r'SIG[A-Z0-9]*', filter=r'SIGSTKSZ') - - gentvals(output, cpp, 'open', newlib / 'newlib/libc/include', - ('fcntl.h', 'sys/fcntl.h', 'sys/_default_fcntl.h'), r'O_[A-Z0-9]*') -diff --git a/sim/common/nltvals.def b/sim/common/nltvals.def -index 8ae88397249..8bc6ae59026 100644 ---- a/sim/common/nltvals.def -+++ b/sim/common/nltvals.def -@@ -116,7 +116,6 @@ - { "SIGPROF", 27 }, - { "SIGQUIT", 3 }, - { "SIGSEGV", 11 }, -- { "SIGSTKSZ", 8192 }, - { "SIGSTOP", 17 }, - { "SIGSYS", 12 }, - { "SIGTERM", 15 }, --- -2.27.0 - diff --git a/sys-devel/gdb/files/gdb-8.3.1-verbose-build.patch b/sys-devel/gdb/files/gdb-8.3.1-verbose-build.patch new file mode 100644 index 000000000000..06aa6084d2d2 --- /dev/null +++ b/sys-devel/gdb/files/gdb-8.3.1-verbose-build.patch @@ -0,0 +1,13 @@ +Enable verbose build. By default gdb ignores even --disable-silent-rules. +Override verbosity back to non-silent. + +https://bugs.gentoo.org/695936 +--- a/gdb/silent-rules.mk ++++ b/gdb/silent-rules.mk +@@ -1,5 +1,4 @@ +-# If V is undefined or V=0 is specified, use the silent/verbose/compact mode. +-V ?= 0 ++V ?= 1 + ifeq ($(V),0) + ECHO_CXX = @echo " CXX $@"; + ECHO_CXXLD = @echo " CXXLD $@"; diff --git a/sys-firmware/Manifest.gz b/sys-firmware/Manifest.gz index 3ddf2024c111..3f6ed46e0b37 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-20210315.3_p5-r1.ebuild b/sys-firmware/raspberrypi-wifi-ucode/raspberrypi-wifi-ucode-20210315.3_p5-r1.ebuild new file mode 100644 index 000000000000..ce8516611329 --- /dev/null +++ b/sys-firmware/raspberrypi-wifi-ucode/raspberrypi-wifi-ucode-20210315.3_p5-r1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Most up-to-date uCode for the Broadcom wifi chips on Raspberry Pi SBCs" +HOMEPAGE=" + https://github.com/RPi-Distro/firmware-nonfree + https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree" +MY_PN=firmware-nonfree +SRC_URI="https://archive.raspberrypi.org/debian/pool/main/f/${MY_PN}/${MY_PN}_$(ver_cut 1)-$(ver_cut 2)+rpt$(ver_cut 4).debian.tar.xz" +S="${WORKDIR}" + +LICENSE="Broadcom" +SLOT="0" +KEYWORDS="~arm ~arm64" + +RDEPEND=" + net-wireless/wireless-regdb + !sys-kernel/linux-firmware[-savedconfig] +" + +pkg_pretend() { + local -a BADFILES=() + local txt file + # /lib/firmware/brcm/brcmfmac434{30,36,55,56}-sdio.*.txt + # The above pattern works because the files we want to hit + # have names of the form: + # * /lib/firmware/brcm/brcmfmac43430-sdio.AP6212.txt + # * /lib/firmware/brcm/brcmfmac43430-sdio.Hampoo-D2D3_Vi8A1.txt + # * /lib/firmware/brcm/brcmfmac43430-sdio.MUR1DX.txt + # * /lib/firmware/brcm/brcmfmac43430-sdio.raspberrypi,3-model-b.txt + # * /lib/firmware/brcm/brcmfmac43455-sdio.MINIX-NEO Z83-4.txt + # * /lib/firmware/brcm/brcmfmac43455-sdio.raspberrypi,3-model-a-plus.txt + # * /lib/firmware/brcm/brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt + # * /lib/firmware/brcm/brcmfmac43455-sdio.raspberrypi,4-model-b.txt + # While the files installed by raspberrypi-wifi-ucode have names + # of the form: + # * /lib/firmware/brcm/brcmfmac43430-sdio.txt + # * /lib/firmware/brcm/brcmfmac43436-sdio.txt + # * /lib/firmware/brcm/brcmfmac43455-sdio.txt + # * /lib/firmware/brcm/brcmfmac43456-sdio.txt + # So no overlap is assured. + for txt in "${EPREFIX}"/lib/firmware/brcm/brcmfmac434{30,36,55,56}-sdio.*.txt; do + [[ -e "${txt}" ]] && BADFILES+=( "${txt}" ) + done + + if [[ "${#BADFILES[@]}" -gt 1 ]]; then + eerror "The following files should be excluded from the savedconfig of" + eerror "linux-firmware and linux-firmware should be re-emerged. Even" + eerror "though they do not collide with files from ${PN}," + eerror "they may be loaded preferentially to the files included in" + eerror "${PN}, leading to undefined behaviour." + eerror "List of files:" + for file in "${BADFILES[@]}"; do + eerror "${file}" + done + fi +} + +src_install() { + insinto /lib/firmware/brcm + doins debian/config/brcm80211/brcm/* + + insinto /lib/firmware/cypress + doins debian/config/brcm80211/cypress/* + + dodoc debian/config/brcm80211/LICENSE debian/changelog +} diff --git a/sys-fs/Manifest.gz b/sys-fs/Manifest.gz index d2593f612fdf..77a8cf121d75 100644 Binary files a/sys-fs/Manifest.gz and b/sys-fs/Manifest.gz differ diff --git a/sys-fs/btrfs-progs/files/5.15-filesystem-usage-chunks.patch b/sys-fs/btrfs-progs/files/5.15-filesystem-usage-chunks.patch deleted file mode 100644 index be58afc8712c..000000000000 --- a/sys-fs/btrfs-progs/files/5.15-filesystem-usage-chunks.patch +++ /dev/null @@ -1,94 +0,0 @@ -From: Nikolay Borisov -To: linux-btrfs@vger.kernel.org -Cc: Nikolay Borisov -Subject: [PATCH] Fix calculation of chunk size for RAID1/DUP profiles -Date: Tue, 16 Nov 2021 16:02:06 +0200 -Message-Id: <20211116140206.291252-1-nborisov@suse.com> -List-ID: - -Current formula calculates the stripe size, however that's not what we want -in the case of RAID1/DUP profiles. In those cases since chunkc are mirrored -across devices we want the full size of the chunk. Without this patch the -'btrfs fi usage' output from an fs which is using RAID1 is: - - - - Data,RAID1: Size:2.00GiB, Used:1.00GiB (50.03%) - /dev/vdc 1.00GiB - /dev/vdf 1.00GiB - - Metadata,RAID1: Size:256.00MiB, Used:1.34MiB (0.52%) - /dev/vdc 128.00MiB - /dev/vdf 128.00MiB - - System,RAID1: Size:8.00MiB, Used:16.00KiB (0.20%) - /dev/vdc 4.00MiB - /dev/vdf 4.00MiB - - Unallocated: - /dev/vdc 8.87GiB - /dev/vdf 8.87GiB - - -So a 2 gigabyte RAID1 chunk actually will take up 4 gigabytes on the actual disks -2 each. In this case this is being miscalculated as taking up 1gb on each device. - -This also leads to erroneously calculated unallocated space. The correct output -in this case is: - - - - Data,RAID1: Size:2.00GiB, Used:1.00GiB (50.03%) - /dev/vdc 2.00GiB - /dev/vdf 2.00GiB - - Metadata,RAID1: Size:256.00MiB, Used:1.34MiB (0.52%) - /dev/vdc 256.00MiB - /dev/vdf 256.00MiB - - System,RAID1: Size:8.00MiB, Used:16.00KiB (0.20%) - /dev/vdc 8.00MiB - /dev/vdf 8.00MiB - - Unallocated: - /dev/vdc 7.74GiB - /dev/vdf 7.74GiB - - -Fix it by only utilising the chunk formula for profiles which are not RAID1/DUP. - -Signed-off-by: Nikolay Borisov ---- - cmds/filesystem-usage.c | 14 ++++++++++---- - 1 file changed, 10 insertions(+), 4 deletions(-) - -diff --git a/cmds/filesystem-usage.c b/cmds/filesystem-usage.c -index 6195f633da44..5f2289a9b40d 100644 ---- a/cmds/filesystem-usage.c -+++ b/cmds/filesystem-usage.c -@@ -805,11 +805,17 @@ int load_chunk_and_device_info(int fd, struct chunk_info **chunkinfo, - */ - static u64 calc_chunk_size(struct chunk_info *ci) - { -- u32 div; -+ u32 div = 1; - -- /* No parity + sub_stripes, so order of "-" and "/" does not matter */ -- div = (ci->num_stripes - btrfs_bg_type_to_nparity(ci->type)) / -- btrfs_bg_type_to_sub_stripes(ci->type); -+ /* -+ * The formula doesn't work for RAID1/DUP types, we should just return the -+ * chunk size -+ */ -+ if (!(ci->type & (BTRFS_BLOCK_GROUP_RAID1_MASK|BTRFS_BLOCK_GROUP_DUP))) { -+ /* No parity + sub_stripes, so order of "-" and "/" does not matter */ -+ div = (ci->num_stripes - btrfs_bg_type_to_nparity(ci->type)) / -+ btrfs_bg_type_to_sub_stripes(ci->type); -+ } - - return ci->size / div; - } --- -2.17.1 - - diff --git a/sys-fs/btrfs-progs/files/5.15-filesystem-usage-data.patch b/sys-fs/btrfs-progs/files/5.15-filesystem-usage-data.patch deleted file mode 100644 index f3b43d5c594d..000000000000 --- a/sys-fs/btrfs-progs/files/5.15-filesystem-usage-data.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 2f3950c8304fec2aed9bf11b52d073683b137330 Mon Sep 17 00:00:00 2001 -From: Nikolay Borisov -Date: Mon, 15 Nov 2021 11:15:42 +0200 -Subject: [PATCH] btrfs-progs: fi usage: don't reset ratio to 1 if we don't - have RAID56 profile - -Commit 80714610f36e ("btrfs-progs: use raid table for ncopies") -slightly broke how raid ratio are being calculated since the resulting -code would always reset ratio to be 1 in case we didn't have RAID56 -profile. The correct behavior is to simply set it to 0 if we have RAID56 -as the calculation is different in this case and leave it intact -otherwise. - -This bug manifests by doing all size-related calculation for 'btrfs -filesystem usage' command as if all block groups are of type SINGLE. Fix -this by only resetting ratio 0 in case of RAID56. - -Issue: #422 -Signed-off-by: Nikolay Borisov -Signed-off-by: David Sterba ---- - cmds/filesystem-usage.c | 2 -- - 1 file changed, 2 deletions(-) - -diff --git a/cmds/filesystem-usage.c b/cmds/filesystem-usage.c -index e22efe3a4..bac0f0fd5 100644 ---- a/cmds/filesystem-usage.c -+++ b/cmds/filesystem-usage.c -@@ -508,8 +508,6 @@ static int print_filesystem_usage_overall(int fd, struct chunk_info *chunkinfo, - */ - if (flags & BTRFS_BLOCK_GROUP_RAID56_MASK) - ratio = 0; -- else -- ratio = 1; - - if (ratio > max_data_ratio) - max_data_ratio = ratio; diff --git a/sys-fs/cryfs/cryfs-0.10.3-r1.ebuild b/sys-fs/cryfs/cryfs-0.10.3-r1.ebuild index 199c5a6badd1..f209908d30e4 100644 --- a/sys-fs/cryfs/cryfs-0.10.3-r1.ebuild +++ b/sys-fs/cryfs/cryfs-0.10.3-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{7..10} ) inherit cmake flag-o-matic linux-info python-any-r1 if [[ ${PV} == 9999 ]] ; then diff --git a/sys-fs/zfs-kmod/files/2.1.3-werror.patch b/sys-fs/zfs-kmod/files/2.1.3-werror.patch deleted file mode 100644 index b4aba47d8324..000000000000 --- a/sys-fs/zfs-kmod/files/2.1.3-werror.patch +++ /dev/null @@ -1,30 +0,0 @@ -https://bugs.gentoo.org/835646 -https://github.com/openzfs/zfs/commit/7b215d93bcc0a72d7020ccc050c64f39aa7f2be8.patch - -From: Ryan Moeller -Date: Thu, 17 Mar 2022 13:18:23 -0400 -Subject: [PATCH] Fix module build with -Werror - -This is a direct commit to zfs-2.1-release to fix release builds that -error out on an unused variable. The issue is avoided on master by a -huge series of commits that change how the ASSERT macros work, but that -is not feasible to backport. - -Reviewed-by: Tony Hutter -Reviewed-by: Brian Behlendorf -Reviewed-by: Igor Kozhukhov -Signed-off-by: Ryan Moeller -Closes #13194 -Closes #13196 ---- a/module/zfs/arc.c -+++ b/module/zfs/arc.c -@@ -1205,7 +1205,7 @@ static void - hdr_l2only_dest(void *vbuf, void *unused) - { - (void) unused; -- arc_buf_hdr_t *hdr = vbuf; -+ arc_buf_hdr_t *hdr __maybe_unused = vbuf; - - ASSERT(HDR_EMPTY(hdr)); - arc_space_return(HDR_L2ONLY_SIZE, ARC_SPACE_L2HDRS); - diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz index 8c1392017cd5..ee27040f1505 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 eb49fb6bf0c5..b443785cc7f3 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -1,3 +1,4 @@ DIST linux-5.17.tar.xz 128399340 BLAKE2B 82dc4a45cc25c781ac67aa6ed1e4c369544154960f41c4634d47621f381159687a227054976d078524cda28884d395a15f7542fe44ca74ce98ca6ff54a81d6d0 SHA512 89f0a7ca69d20a539d4b612a7028a30a5e98b402e4b6b88516f14237e5da4b626d7929eab8b40fccc90766e8f3bae87e9858a19077ffad20d8204acf18794f5b DIST patch-5.18-rc1.patch 112419200 BLAKE2B 1a5b4ff89c28f3ef798b2c6f5019b6a7e04d466297d110eb7e7fb2eece3004cf514cd59ba069ba3bf8fd774d1b0f9d9708394fbab9e59f782ef01aaa6a75034b SHA512 17b29d40d56b1bf26f4cfc90c073fb588330ea1014576518bf9fdb4d71aa8eebbd0318b37616474f3b910aa5d6ac2be07cbce7493f9e4cfb88f492a9ab327053 DIST patch-5.18-rc2.patch 112841658 BLAKE2B 8419291fadcf91225db3d946ab0aa4f312101ff85653c17422d338586342acb9ed7227899fd2b4f1b1771f907f822eadf8bcff15b6d62bb9784f455ba773861f SHA512 ebab6803bfd9c3312306e97577af8dcc166fabed0bdd8e76405ee0c9118ca7cf50f83b9d2c015d2644db9206f1843142c08245f4c428f4e78d7efd0fe6024684 +DIST patch-5.18-rc3.patch 113219039 BLAKE2B 53b7e45c5d9b87286509f727e6edc3f455d2e424333e97ac75314a901d908950d84b99d7f289c825026537f4d0a34a818c346aa3c89d4a6e2335924e5a77bc67 SHA512 90c13f5584d64a4963e92ef50bd858771c92903c3c743b7b8e139c2e7a5164b997bb0b801545d732a499f3e544dd216d2717621bd21ac9962ba1850bdd32b721 diff --git a/sys-kernel/git-sources/git-sources-5.18_rc3.ebuild b/sys-kernel/git-sources/git-sources-5.18_rc3.ebuild new file mode 100644 index 000000000000..1b58d3fd64da --- /dev/null +++ b/sys-kernel/git-sources/git-sources-5.18_rc3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +UNIPATCH_STRICTORDER="yes" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_NOUSEPR="yes" +K_SECURITY_UNSUPPORTED="1" +K_BASE_VER="5.17" +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.6-r4" + +pkg_postinst() { + postinst_sources +} diff --git a/sys-kernel/raspberrypi-sources/Manifest b/sys-kernel/raspberrypi-sources/Manifest index eb3102756743..a5d6b7d798ce 100644 --- a/sys-kernel/raspberrypi-sources/Manifest +++ b/sys-kernel/raspberrypi-sources/Manifest @@ -1,3 +1,6 @@ +DIST genpatches-5.15-1.base.tar.xz 515540 BLAKE2B 245520300cb9ea1a0803dd4497b3f98bad3ddd29851f8f1273e3b51a3479c03a4915f601f1df216593a36b6f7593ba852dbbb7f106a40260c14b4590201b8fb9 SHA512 baa107fdd1c893ba977391cc429542b90de96d0cf4e6a671e392ef8e0f795d5ce1e4d2e74c214a907c9bf35fbdcfcec220785a4e66322b6191f097eabadeb567 +DIST genpatches-5.15-1.extras.tar.xz 1772 BLAKE2B e4c9b0ccfcdade38239cbf0e8db14e46b394b3da9a08c2538f81c602e9c8f52ffaeac0b441831ac771e6a19314a8a7d61b5411e1762c7705c555bea5a478dd68 SHA512 59290f7ea30bebb5137829a1d69b22b2170ff06a794e06b334f03312174e31ed9be9c8372396b482a936283a79e557f813755b5fed77a5485b2144d1d4b0e52a DIST linux-5.10.11_p20210201-raspberrypi.tar.gz 186311431 BLAKE2B 1ba95e54232fafc421eee4a1966c9ead0420d51bc32a87050aeb15d8f75217fbaa727f5f41855d3771feb720e6395eef13453ff83b1bd8c486deafec11926e38 SHA512 776b71e7be700c1ec14a0fddbb6374c84d5645323a72871a4e76d095c73c26891e6fac548aebbadd34f0b8d5d4c340935e281cdec314b29bf7d3bf41351958b9 DIST linux-5.10.63_p20211029-raspberrypi.tar.gz 186550447 BLAKE2B 44e04467a63c5761c252280c5fbff48c3fa058891ff03623ed7fb872f0a22883ed2e3b8703847e30c1a6f5cf523db1248f027c89ce1558280f1012fa300308a7 SHA512 b050f74b5a62d355cd630d41f2f63df285662347048ed97db1bac2a74f1cefeddb31b7b352aa509e90d7f03832ad2ca8e1e476d8eac62b334132a3ab308559fc DIST linux-5.15.30_p20220328-raspberrypi.tar.gz 199315946 BLAKE2B d41be462f84e38b2d0cec97d18f6d2be32572fdbff34ee85f233c869728a357a6f86bb743a7530ee307d77ee09c89ec5b6d68ff0ea45d11a475432e7b1be43e2 SHA512 0a2d241dcd5a57a0f465cb8ceb898f7ed3ed93427be10052778d0980bf1949cdeb49faf6bcd650bf442c73df544ff52e6867b7ca3c30e4ad7fde36b596b03658 +DIST linux-5.15.32_p20220331-raspberrypi.tar.gz 199328000 BLAKE2B 06bfd61bfa94666101e0092246bfc3449ad6278f2a85104511320b27c76e5677011c7ee723f4af7f445d21dccd02ff40e73d7bfcf2fdd2f287465e2f0ff586f5 SHA512 bf20a5ea32975de8b88842f639f3e4bd2e92c51846fc00ddfca9cc4040590983d9820cfa19836bf54061780f9e8c0a1293e8aa74a7da20e2e7edd84b3932f8d7 diff --git a/sys-kernel/raspberrypi-sources/files/raspberrypi-sources-5.15.32-gentoo-kconfig.patch b/sys-kernel/raspberrypi-sources/files/raspberrypi-sources-5.15.32-gentoo-kconfig.patch new file mode 100644 index 000000000000..8c8535a86a03 --- /dev/null +++ b/sys-kernel/raspberrypi-sources/files/raspberrypi-sources-5.15.32-gentoo-kconfig.patch @@ -0,0 +1,474 @@ +diff --git a/Kconfig b/Kconfig +index 745bc773f567..16628b0c76d9 100644 +--- a/Kconfig ++++ b/Kconfig +@@ -5,6 +5,8 @@ + # + mainmenu "Linux/$(ARCH) $(KERNELVERSION) Kernel Configuration" + ++source "distro/Kconfig" ++ + source "scripts/Kconfig.include" + + source "init/Kconfig" +diff --git a/distro/Kconfig b/distro/Kconfig +new file mode 100644 +index 000000000000..531a636c959d +--- /dev/null ++++ b/distro/Kconfig +@@ -0,0 +1,378 @@ ++menu "Gentoo Linux" ++ ++config GENTOO_LINUX ++ bool "Gentoo Linux support" ++ ++ default y ++ ++ select CPU_FREQ_DEFAULT_GOV_SCHEDUTIL ++ ++ help ++ In order to boot Gentoo Linux a minimal set of config settings needs to ++ be enabled in the kernel; to avoid the users from having to enable them ++ manually as part of a Gentoo Linux installation or a new clean config, ++ we enable these config settings by default for convenience. ++ ++ See the settings that become available for more details and fine-tuning. ++ ++config GENTOO_LINUX_UDEV ++ bool "Linux dynamic and persistent device naming (userspace devfs) support" ++ ++ depends on GENTOO_LINUX ++ default y if GENTOO_LINUX ++ ++ select DEVTMPFS ++ select TMPFS ++ select UNIX ++ ++ select MMU ++ select SHMEM ++ ++ help ++ In order to boot Gentoo Linux a minimal set of config settings needs to ++ be enabled in the kernel; to avoid the users from having to enable them ++ manually as part of a Gentoo Linux installation or a new clean config, ++ we enable these config settings by default for convenience. ++ ++ Currently this only selects TMPFS, DEVTMPFS and their dependencies. ++ TMPFS is enabled to maintain a tmpfs file system at /dev/shm, /run and ++ /sys/fs/cgroup; DEVTMPFS to maintain a devtmpfs file system at /dev. ++ ++ Some of these are critical files that need to be available early in the ++ boot process; if not available, it causes sysfs and udev to malfunction. ++ ++ To ensure Gentoo Linux boots, it is best to leave this setting enabled; ++ if you run a custom setup, you could consider whether to disable this. ++ ++config GENTOO_LINUX_PORTAGE ++ bool "Select options required by Portage features" ++ ++ depends on GENTOO_LINUX ++ default y if GENTOO_LINUX ++ ++ select CGROUPS ++ select NAMESPACES ++ select IPC_NS ++ select NET_NS ++ select PID_NS ++ select SYSVIPC ++ select USER_NS ++ select UTS_NS ++ ++ help ++ This enables options required by various Portage FEATURES. ++ Currently this selects: ++ ++ CGROUPS (required for FEATURES=cgroup) ++ IPC_NS (required for FEATURES=ipc-sandbox) ++ NET_NS (required for FEATURES=network-sandbox) ++ PID_NS (required for FEATURES=pid-sandbox) ++ SYSVIPC (required by IPC_NS) ++ ++ ++ It is highly recommended that you leave this enabled as these FEATURES ++ are, or will soon be, enabled by default. ++ ++menu "Support for init systems, system and service managers" ++ visible if GENTOO_LINUX ++ ++config GENTOO_LINUX_INIT_SCRIPT ++ bool "OpenRC, runit and other script based systems and managers" ++ ++ default n ++ ++ depends on GENTOO_LINUX ++ ++ select BINFMT_SCRIPT ++ select CGROUPS ++ select EPOLL ++ select FILE_LOCKING ++ select INOTIFY_USER ++ select SIGNALFD ++ select TIMERFD ++ ++ help ++ The init system is the first thing that loads after the kernel booted. ++ ++ These config settings allow you to select which init systems to support; ++ instead of having to select all the individual settings all over the ++ place, these settings allows you to select all the settings at once. ++ ++ This particular setting enables all the known requirements for OpenRC, ++ runit and similar script based systems and managers. ++ ++ If you are unsure about this, it is best to leave this setting enabled. ++ ++menuconfig GENTOO_LINUX_INIT_SYSTEMD ++ bool "systemd" ++ default y ++ depends on GENTOO_LINUX && GENTOO_LINUX_UDEV ++ ++ select CGROUPS ++ select DEVTMPFS ++ select DMIID if X86_32 || X86_64 || X86 ++ select EPOLL ++ select FHANDLE ++ select INOTIFY_USER ++ select PROC_FS ++ select SIGNALFD ++ select SYSFS ++ select TIMERFD ++ select UNIX ++ ++ help ++ The init system is the first thing that loads after the kernel booted. ++ ++ These config settings allow you to select which init systems to support; ++ instead of having to select all the individual settings all over the ++ place, these settings allows you to select all the settings at once. ++ ++ This particular setting enables all the known requirements for systemd; ++ it also enables suggested optional settings, as the package suggests to. ++ ++if GENTOO_LINUX_INIT_SYSTEMD ++ ++comment "systemd config options" ++ ++config GENTOO_LINUX_INIT_SYSTEMD_CRYPTO ++ bool "Systemd crypto/hash api" ++ default y ++ select CRYPTO_HMAC ++ select CRYPTO_SHA256 ++ select CRYPTO_USER_API_HASH ++ ++config GENTOO_LINUX_INIT_SYSTEMD_SCSI ++ bool "Support for some SCSI devices serial number retrieval" ++ default n ++ select BLK_DEV_BSG ++ ++config GENTOO_LINUX_INIT_SYSTEMD_PRIVATE_NETWORKS ++ bool "Support PrivateNetwork directive in service units" ++ default y ++ select NET_NS ++ ++ help ++ systemd-localed.service and other systemd units use ++ PrivateNetwork so this is effectively required ++ ++config GENTOO_LINUX_INIT_SYSTEMD_PRIVATE_USERS ++ bool "Support PrivateUsers directive in service units" ++ default y ++ select USER_NS ++ ++config GENTOO_LINUX_INIT_SYSTEMD_CPUSHARES ++ bool "Support CPUShares in resource control unit settings" ++ default y ++ select CGROUP_SCHED ++ select FAIR_GROUP_SCHED ++ ++config GENTOO_LINUX_INIT_SYSTEMD_CPUQUOTA ++ bool "Support CPUQuota in resource control unit settings" ++ default y ++ select CFS_BANDWIDTH ++ ++config GENTOO_LINUX_INIT_SYSTEMD_NETWORK_FILTERING ++ bool "Support network traffic filtering for IP packets and custom network traffic filters in resource control unit settings" ++ default y ++ select BPF ++ select BPF_SYSCALL ++ select BPF_JIT ++ select CGROUP_BPF ++ select HAVE_EBPF_JIT ++ ++ help ++ Required for IPAddressDeny=, IPAddressAllow=, IPIngressFilterPath=, ++ IPEgressFilterPath= in resource control unit settings ++ ++config GENTOO_LINUX_INIT_SYSTEMD_NETWORK ++ bool "Restrict Sockets and Network Interface access in resource control unit settings" ++ default y ++ select BPF ++ select BPF_SYSCALL ++ select BPF_JIT ++ select CGROUP_BPF ++ select EFIVAR_FS if ( X86_32 || X86_64 || X86 ) && CONFIG_EFI ++ select EFI_PARTITION if ( X86_32 || X86_64 || X86 ) && CONFIG_EFI ++ select HAVE_EBPF_JIT ++ ++ help ++ Allow or deny binding a socket address to a socket by matching ++ it with the bind-rule and applying a corresponding action if ++ there is a match. Also restricts the network interfaces that ++ processes of this unit can use. ++ ++config GENTOO_LINUX_INIT_SYSTEMD_FILESYSTEMS ++ bool "Support RestrictFileSystems directive in service units" ++ default n ++ depends on !GENTOO_KERNEL_SELF_PROTECTION ++ select BPF ++ select BPF_SYSCALL ++ select BPF_LSM ++ select DEBUG_INFO_BTF ++ ++ help ++ Also required to select LSM="...,bpf" or kernel booted with ++ lsm="...,bpf". ++ ++config GENTOO_LINUX_INIT_SYSTEMD_OOMD ++ bool "Support systemd-oomd" ++ default y ++ select PSI ++ ++config GENTOO_LINUX_INIT_SYSTEMD_VERITY ++ bool "Support signed Verity images" ++ default n ++ select DM_VERITY_VERIFY_ROOTHASH_SIG ++ ++config GENTOO_LINUX_INIT_SYSTEMD_OPTIONAL ++ bool "Optional but strongly recommended modules" ++ default y ++ select AUTOFS_FS ++ select IPV6 ++ select KCMP ++ select SECCOMP ++ select SECCOMP_FILTER if HAVE_ARCH_SECCOMP_FILTER ++ select TMPFS_XATTR ++ ++ select 9P_FS_POSIX_ACL if 9P_FS ++ select BTRFS_FS_POSIX_ACL if BTRFS_FS ++ select CEPH_FS_POSIX_ACL if CEPH_FS ++ select EROFS_FS_POSIX_ACL if EROFS_FS ++ select EXT2_FS_POSIX_ACL if EXT2_FS3 ++ select EXT3_FS_POSIX_ACL if EXT3_FS ++ select EXT4_FS_POSIX_ACL if EXT4_FS ++ select F2FS_FS_POSIX_ACL if F2FS_FS ++ select NTFS3_FS_POSIX_ACL if NTFS3_FS ++ select REISERFS_FS_POSIX_ACL if REISERFS_FS ++ select TMPFS_POSIX_ACL if TMPFS ++ select XFS_POSIX_ACL if XFS_FS ++endif ++endmenu ++ ++menuconfig GENTOO_KERNEL_SELF_PROTECTION ++ bool "Kernel Self Protection Project" ++ depends on GENTOO_LINUX ++ help ++ Recommended Kernel settings based on the suggestions from the Kernel Self Protection Project ++ See: https://kernsec.org/wiki/index.php/Kernel_Self_Protection_Project/Recommended_Settings ++ Note, there may be additional settings for which the CONFIG_ setting is invisible in menuconfig due ++ to unmet dependencies. Search for GENTOO_KERNEL_SELF_PROTECTION_COMMON and search for ++ GENTOO_KERNEL_SELF_PROTECTION_{X86_64, ARM64, X86_32, ARM} for dependency information on your ++ specific architecture. ++ Note 2: Please see the URL above for numeric settings, e.g. CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 ++ for X86_64 ++ ++if GENTOO_KERNEL_SELF_PROTECTION ++config GENTOO_KERNEL_SELF_PROTECTION_COMMON ++ bool "Enable Kernel Self Protection Project Recommendations" ++ ++ depends on GENTOO_LINUX && !ACPI_CUSTOM_METHOD && !COMPAT_BRK && !DEVKMEM && !PROC_KCORE && !COMPAT_VDSO && !KEXEC && !HIBERNATION && !LEGACY_PTYS && !X86_X32 && !MODIFY_LDT_SYSCALL && GCC_PLUGINS && !GENTOO_LINUX_INIT_SYSTEMD_FILESYSTEMS ++ ++ select BUG ++ select STRICT_KERNEL_RWX ++ select DEBUG_WX ++ select STACKPROTECTOR ++ select STACKPROTECTOR_STRONG ++ select STRICT_DEVMEM if DEVMEM=y ++ select IO_STRICT_DEVMEM if DEVMEM=y ++ select SYN_COOKIES ++ select DEBUG_CREDENTIALS ++ select DEBUG_NOTIFIERS ++ select DEBUG_LIST ++ select DEBUG_SG ++ select BUG_ON_DATA_CORRUPTION ++ select SCHED_STACK_END_CHECK ++ select SECCOMP if HAVE_ARCH_SECCOMP ++ select SECCOMP_FILTER if HAVE_ARCH_SECCOMP_FILTER ++ select SECURITY_YAMA ++ select SLAB_FREELIST_RANDOM ++ select SLAB_FREELIST_HARDENED ++ select SHUFFLE_PAGE_ALLOCATOR ++ select SLUB_DEBUG ++ select PAGE_POISONING ++ select PAGE_POISONING_NO_SANITY ++ select PAGE_POISONING_ZERO ++ select INIT_ON_ALLOC_DEFAULT_ON ++ select INIT_ON_FREE_DEFAULT_ON ++ select REFCOUNT_FULL ++ select FORTIFY_SOURCE ++ select SECURITY_DMESG_RESTRICT ++ select PANIC_ON_OOPS ++ select GCC_PLUGIN_LATENT_ENTROPY ++ select GCC_PLUGIN_STRUCTLEAK ++ select GCC_PLUGIN_STRUCTLEAK_BYREF_ALL ++ select GCC_PLUGIN_RANDSTRUCT ++ select GCC_PLUGIN_RANDSTRUCT_PERFORMANCE ++ ++ help ++ Search for GENTOO_KERNEL_SELF_PROTECTION_{X86_64, ARM64, X86_32, ARM} for dependency ++ information on your specific architecture. Note 2: Please see the URL above for ++ numeric settings, e.g. CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 for X86_64 ++ ++config GENTOO_KERNEL_SELF_PROTECTION_X86_64 ++ bool "X86_64 KSPP Settings" if GENTOO_KERNEL_SELF_PROTECTION_COMMON ++ ++ depends on !X86_MSR && X86_64 && GENTOO_KERNEL_SELF_PROTECTION ++ default n ++ ++ select RANDOMIZE_BASE ++ select RANDOMIZE_MEMORY ++ select RELOCATABLE ++ select LEGACY_VSYSCALL_NONE ++ select PAGE_TABLE_ISOLATION ++ select GCC_PLUGIN_STACKLEAK ++ select VMAP_STACK ++ ++ ++config GENTOO_KERNEL_SELF_PROTECTION_ARM64 ++ bool "ARM64 KSPP Settings" ++ ++ depends on ARM64 ++ default n ++ ++ select RANDOMIZE_BASE ++ select RELOCATABLE ++ select ARM64_SW_TTBR0_PAN ++ select CONFIG_UNMAP_KERNEL_AT_EL0 ++ select GCC_PLUGIN_STACKLEAK ++ select VMAP_STACK ++ ++config GENTOO_KERNEL_SELF_PROTECTION_X86_32 ++ bool "X86_32 KSPP Settings" ++ ++ depends on !X86_MSR && !MODIFY_LDT_SYSCALL && !M486 && X86_32 ++ default n ++ ++ select HIGHMEM64G ++ select X86_PAE ++ select RANDOMIZE_BASE ++ select RELOCATABLE ++ select PAGE_TABLE_ISOLATION ++ ++config GENTOO_KERNEL_SELF_PROTECTION_ARM ++ bool "ARM KSPP Settings" ++ ++ depends on !OABI_COMPAT && ARM ++ default n ++ ++ select VMSPLIT_3G ++ select STRICT_MEMORY_RWX ++ select CPU_SW_DOMAIN_PAN ++ ++endif ++ ++config GENTOO_PRINT_FIRMWARE_INFO ++ bool "Print firmware information that the kernel attempts to load" ++ ++ depends on GENTOO_LINUX ++ default y ++ ++ help ++ Enable this option to print information about firmware that the kernel ++ is attempting to load. This information can be accessible via the ++ dmesg command-line utility ++ ++ See the settings that become available for more details and fine-tuning. ++ ++endmenu ++ +diff --git a/drivers/base/firmware_loader/Kconfig b/drivers/base/firmware_loader/Kconfig +index 5b24f3959255..3e470a3dab39 100644 +--- a/drivers/base/firmware_loader/Kconfig ++++ b/drivers/base/firmware_loader/Kconfig +@@ -70,6 +70,7 @@ config EXTRA_FIRMWARE_DIR + + config FW_LOADER_USER_HELPER + bool "Enable the firmware sysfs fallback mechanism" ++ depends on !GENTOO_LINUX_INIT_SYSTEMD + select FW_LOADER_PAGED_BUF + help + This option enables a sysfs loading facility to enable firmware +diff --git a/init/Kconfig b/init/Kconfig +index 11f8a845f259..c826ddeb9ab3 100644 +--- a/init/Kconfig ++++ b/init/Kconfig +@@ -1008,6 +1008,7 @@ config CFS_BANDWIDTH + config RT_GROUP_SCHED + bool "Group scheduling for SCHED_RR/FIFO" + depends on CGROUP_SCHED ++ depends on !GENTOO_LINUX_INIT_SYSTEMD + default n + help + This feature lets you explicitly allocate real CPU bandwidth +@@ -1272,6 +1273,7 @@ config SCHED_AUTOGROUP + config SYSFS_DEPRECATED + bool "Enable deprecated sysfs features to support old userspace tools" + depends on SYSFS ++ depends on !GENTOO_LINUX_INIT_SYSTEMD + default n + help + This option adds code that switches the layout of the "block" class +diff --git a/mm/Kconfig b/mm/Kconfig +index c048dea7e342..81a1dfd69adc 100644 +--- a/mm/Kconfig ++++ b/mm/Kconfig +@@ -305,6 +305,8 @@ config KSM + config DEFAULT_MMAP_MIN_ADDR + int "Low address space to protect from user allocation" + depends on MMU ++ default 65536 if ( X86_64 || X86_32 || PPC64 || IA64 ) && GENTOO_KERNEL_SELF_PROTECTION ++ default 32768 if ( ARM64 || ARM ) && GENTOO_KERNEL_SELF_PROTECTION + default 4096 + help + This is the portion of low virtual memory which should be protected +diff --git a/security/Kconfig b/security/Kconfig +index fe6c0395fa02..6b1b81cd120e 100644 +--- a/security/Kconfig ++++ b/security/Kconfig +@@ -166,6 +166,7 @@ config HARDENED_USERCOPY + config HARDENED_USERCOPY_FALLBACK + bool "Allow usercopy whitelist violations to fallback to object size" + depends on HARDENED_USERCOPY ++ depends on !GENTOO_KERNEL_SELF_PROTECTION + default y + help + This is a temporary option that allows missing usercopy whitelists +@@ -181,6 +182,7 @@ config HARDENED_USERCOPY_PAGESPAN + bool "Refuse to copy allocations that span multiple pages" + depends on HARDENED_USERCOPY + depends on EXPERT ++ depends on !GENTOO_KERNEL_SELF_PROTECTION + help + When a multi-page allocation is done without __GFP_COMP, + hardened usercopy will reject attempts to copy it. There are, +diff --git a/security/selinux/Kconfig b/security/selinux/Kconfig +index 9e921fc72538..9e1f7ce887b6 100644 +--- a/security/selinux/Kconfig ++++ b/security/selinux/Kconfig +@@ -12,6 +12,7 @@ config SECURITY_SELINUX + config SECURITY_SELINUX_BOOTPARAM + bool "NSA SELinux boot parameter" + depends on SECURITY_SELINUX ++ depends on !GENTOO_KERNEL_SELF_PROTECTION + default n + help + This option adds a kernel parameter 'selinux', which allows SELinux diff --git a/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.15.32_p20220331.ebuild b/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.15.32_p20220331.ebuild new file mode 100644 index 000000000000..1a8fb5d7e9f2 --- /dev/null +++ b/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.15.32_p20220331.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ETYPE=sources +K_EXP_GENPATCHES_NOUSE=1 +K_GENPATCHES_VER=2 +K_DEFCONFIG="bcmrpi_defconfig" +K_GENPATCHES_VER=1 +K_SECURITY_UNSUPPORTED=1 +K_WANT_GENPATCHES="base extras" + +inherit kernel-2 linux-info +detect_version +detect_arch + +MY_P=$(ver_cut 4-) +MY_P="1.${MY_P/p/}" + +DESCRIPTION="Raspberry Pi kernel sources" +HOMEPAGE="https://github.com/raspberrypi/linux" +SRC_URI=" + https://github.com/raspberrypi/linux/archive/${MY_P}.tar.gz -> linux-${KV_FULL}.tar.gz + ${GENPATCHES_URI} +" + +KEYWORDS="~arm ~arm64" + +PATCHES=("${FILESDIR}"/${PN}-$(ver_cut 1-3)-gentoo-kconfig.patch) + +UNIPATCH_EXCLUDE=" + 10* + 4567_distro-Gentoo-Kconfig.patch" + +pkg_setup() { + ewarn "" + ewarn "${PN} is *not* supported by the Gentoo Kernel Project in any way." + ewarn "If you need support, please contact the raspberrypi developers directly." + ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues with" + ewarn "the ebuilds. Thank you." + ewarn "" + + kernel-2_pkg_setup +} + +src_unpack() { + local OKV_ARRAY + IFS="." read -r -a OKV_ARRAY <<<"${OKV}" + + cd "${WORKDIR}" || die + unpack linux-${PV}-raspberrypi.tar.gz + + # We want to rename the unpacked directory to a nice normalised string + # bug #762766 + mv linux-${MY_P} linux-${KV_FULL} || die "Unable to move source tree to ${KV_FULL}." + + # remove all backup files + find . -iname "*~" -exec rm {} \; 2>/dev/null +} + +src_prepare() { + # kernel-2_src_prepare doesn't apply PATCHES(). + default + + cd "${WORKDIR}/linux-${KV_FULL}" || die + + handle_genpatches --set-unipatch-list + [[ -n ${UNIPATCH_LIST} || -n ${UNIPATCH_LIST_DEFAULT} || -n ${UNIPATCH_LIST_GENPATCHES} ]] && \ + unipatch "${UNIPATCH_LIST_DEFAULT} ${UNIPATCH_LIST_GENPATCHES} ${UNIPATCH_LIST}" + + unpack_fix_install_path + + # Setup xmakeopts and cd into sourcetree. + env_setup_xmakeopts + cd "${S}" || die +} + +pkg_postinst() { + kernel-2_pkg_postinst +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/virtual/Manifest.gz b/virtual/Manifest.gz index c57220d675e9..7701780d120c 100644 Binary files a/virtual/Manifest.gz and b/virtual/Manifest.gz differ diff --git a/virtual/mailx/mailx-4.ebuild b/virtual/mailx/mailx-4.ebuild new file mode 100644 index 000000000000..8a930dd087fe --- /dev/null +++ b/virtual/mailx/mailx-4.ebuild @@ -0,0 +1,14 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Virtual for mail implementations" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" + +RDEPEND="|| ( + net-mail/mailutils[clients] + mail-client/mailx + mail-client/s-nail + )" diff --git a/www-client/Manifest.gz b/www-client/Manifest.gz index 444e4e5b2a8c..b03077014311 100644 Binary files a/www-client/Manifest.gz and b/www-client/Manifest.gz differ diff --git a/www-client/microsoft-edge-beta/Manifest b/www-client/microsoft-edge-beta/Manifest index e07324f90232..4fdb61937351 100644 --- a/www-client/microsoft-edge-beta/Manifest +++ b/www-client/microsoft-edge-beta/Manifest @@ -1,3 +1,3 @@ -DIST microsoft-edge-beta_100.0.1185.27-1_amd64.deb 119078708 BLAKE2B 974ba67490e432987b2e3e14815a77ecb5ab0a3de38d74e7b9a950356c3857e7496e33e615eeb653c251f07d60e2f2c96078e5f7dc63a0dd63d5111e57c4a12e SHA512 0ffb4e07e7091489b7c34fe4ec7ceaf74f972898080211e682b919658d0c9178e014f7d42b60c3667b841863b0a4308b27f6da841d39a9d417429e3bb10cdc9d DIST microsoft-edge-beta_101.0.1210.10-1_amd64.deb 119360904 BLAKE2B 67c6b9de11b71a35e5080b567fae1f5af2a26b321b12abde65fce47d51bd101edde3cf253bae4714d19466096e8ce05b9b41821a5f37d1f7aef7a110ebee759a SHA512 4484ac3cc79ff4a2e742295caef2eaa0bc300643317837500d2efc7432fdfa83beb35c1f563d6da0b3443ef0951c1365b0717d566101738a40f0d9e141313550 DIST microsoft-edge-beta_101.0.1210.14-1_amd64.deb 119278024 BLAKE2B 71edf8c44e6a87c1c0001a6e83878b99aa341227694ab66cdeedc4c8a7216d84dd3c16e26878a60a2874df6c74b462efd23a572f7f1d1153e778d61d47ec7bfd SHA512 e85a18108eae3fae61d61206dee384b5fcb742f0621662ae5c9ce9b93a54ceb31baa7a983bc7522e3100698def6ffcb98893d47d30abdf88aa86101af856a783 +DIST microsoft-edge-beta_101.0.1210.19-1_amd64.deb 119331344 BLAKE2B 0b6f0f3d232942510b9888000f0b2f568c907a50c5b6e3f8d0102a64e25d97574f72d7cb9e0d40e8cc140543495bef2cbe76edc2c6391dbf6afd81ec175d794c SHA512 9941fb5a01f298c72d4eda6f904f076ab405c27fd8f768dec1d477632d50505c39b904ee50e51aa13c546b91fb99e07844f2ed86805524748ec014348b6522ea diff --git a/www-client/microsoft-edge-beta/microsoft-edge-beta-100.0.1185.27.ebuild b/www-client/microsoft-edge-beta/microsoft-edge-beta-101.0.1210.19.ebuild similarity index 100% rename from www-client/microsoft-edge-beta/microsoft-edge-beta-100.0.1185.27.ebuild rename to www-client/microsoft-edge-beta/microsoft-edge-beta-101.0.1210.19.ebuild diff --git a/www-client/vivaldi-snapshot/metadata.xml b/www-client/vivaldi-snapshot/metadata.xml index d177249115d3..1170096145fc 100644 --- a/www-client/vivaldi-snapshot/metadata.xml +++ b/www-client/vivaldi-snapshot/metadata.xml @@ -1,5 +1,5 @@ - + chewi@gentoo.org diff --git a/www-servers/Manifest.gz b/www-servers/Manifest.gz index 37ef6e5032ac..579068d8da51 100644 Binary files a/www-servers/Manifest.gz and b/www-servers/Manifest.gz differ diff --git a/www-servers/tomcat/Manifest b/www-servers/tomcat/Manifest index 523db26db27c..cf93bd09cb94 100644 --- a/www-servers/tomcat/Manifest +++ b/www-servers/tomcat/Manifest @@ -1,11 +1,8 @@ -DIST apache-tomcat-10.0.17-src.tar.gz 6086996 BLAKE2B ff3584e58ec6f22f493cf7f32435423d68b941d9eec22441ee54ba69af03b50b687b23012129108485c9db147c8e7364ded037cf9ed2add174e6c928b927382a SHA512 1cc0f8e2187934c6dac3e31739f8c53a0a152527a98210deab8ce027c1347cbbd1cef3bdf0294bee3c4dbed20ba57b2291bcd887f353837fd505ea2d17e7ba3d DIST apache-tomcat-10.0.18-src.tar.gz 6088118 BLAKE2B 7d3fdb5a682dd44d358a619a18ca3df3bde27c9fc963436c9bce86baf07a42e87ba80724afdc6ce72b493d2fb35dda644eba29df7d4434f8c815ada4cb5d2ca3 SHA512 001205f382f44163f08dba1d306472b7ef3256e31a522c3f1f7595bca4fd084776a0c1f69b241302fa5d0d2f143ac063cb34d4fcf79a51ec9722f2f2ce3f1dab DIST apache-tomcat-10.0.20-src.tar.gz 6097471 BLAKE2B 77df97d73ff87a5ad55dfc3a0df02e3a306e619a5ae4bd2df0a0e3d42d236ccf2c6a6c46f60f56311f9be1bd561be9096d810d932f136b5856ff275fb3ae8368 SHA512 1e75b0bad54a9fac6ddc650156fac88bc91933ff0bf4e9a62948f5e116454b6def10d7ad632968e709e8aac72b15c567e4497cdb9b594352cd12d7518fdaf18f DIST apache-tomcat-7.0.109-src.tar.gz 5314401 BLAKE2B 56583caea6879bf8ca5cc02a886de3d7af413032f88d367653e709dc1c8f590e78620c788317bbff4b6e65dd3e242cc26863164ac8e7c87334a22636f3ed0703 SHA512 ecf9c0bee0e3e1aa24f299fe633705c5a2f6aa264d9e4968cfc96aa5d0a425c2b0ff07765a8b6c67221766733bdfaed6e6c6377a8d0870d889e7063ce90a46ce -DIST apache-tomcat-8.5.76-src.tar.gz 5961741 BLAKE2B 4c661c2f753edac48c28fdec3caa06c487e1546feb91f2d69003a4d9f71fb023eb2314520bb156f3087656d655acdfdbdff3f68cd3f81d0d9dfbb2c9577898ee SHA512 b1c1b8c870c77e46969fe64acc71194d37605e5ccda87d105186d8070ec2dd0b7b9c64cf2f9b276db140fd3927832405123018f6fe8f46c0ebda50af6404d8b9 DIST apache-tomcat-8.5.77-src.tar.gz 5963037 BLAKE2B 63192409b148cf0691e6ad22180e4f79d8603e89633598ee3f1dcfdd7d55b88530ecb1aa7c585920e086a7582dea78fcbcd1498ed2552e0f8d17127658769f66 SHA512 a0d2f77540b5370e09d03d04340e0c7f539eb5761b84ea3c8ef924e2a3e7f9528b3ed83a0c8e413bc9335cee6052135788e48e30d95f231ba3ade7f0b53ec157 DIST apache-tomcat-8.5.78-src.tar.gz 5972826 BLAKE2B 93acb2e997a877a2195642da7d896ec4f08bebd83aa12d868607056c23722bdb90147814173dde17fc142a9e4e434e4570a15ebfa1f8b1c7911a16408728b4bb SHA512 b58fdaa57420fcf7759420fba26bfd6edaa5174f5d3a81fdf8783f19d5385e2502d2ad4bfa0e4a77c6a084bf6d97a6d3cd274ab0ab3f2311d23079e273c41b32 -DIST apache-tomcat-9.0.59-src.tar.gz 6142359 BLAKE2B 26dee501a374e54280237dbe392924ac89e3e4b331a11b30c2e0923ac38fa16bb52c02dfc8a9f3597fb0ee169ae2835ac254eab745d1e2ab1e64cfed6395d0c3 SHA512 cea0125ca9b90b247ed114fa7b2e9c63da38b1ef97b3a373a43ed0d775764178534a4014b254219c8c5a26575eaf0ddc25ebc1e276b2ad5086ef3406627f1c80 DIST apache-tomcat-9.0.60-src.tar.gz 6143845 BLAKE2B af7061854659de06afa6a7cf6380c4be4375e18bec896049bf468ddb9139794170271454af4712ade5099b8d46ed7c8d642e9c5f37ea168f0e31394a5128beeb SHA512 e5cb12fb134ff0a59e01a30fbcabc350ddbef6959494176848c2858c3c68444bc520153e00fdcdecb0eefbe7f69876c2965fedbffeeb0aeda7931dc1c11b0de5 DIST apache-tomcat-9.0.62-src.tar.gz 6156545 BLAKE2B 414f4f7193a8db2bb3d0abcbd2d8c30ede5783e83ba01229ffb322e9bf6b08d2fb10d83ce4742d9e6a4ebc50c9b047679ae798fbd3db8ae165f76d2782034d71 SHA512 7e9cad2703473d9f096009c464b28d54d3765259fab1923ef8c9b1cbfa231fa51cedadfe771a3a95abffd258759a71023e036bda78b949440a5e826fbd4e9e09 DIST biz.aQute.bnd-6.2.0.jar 16669843 BLAKE2B 290aec26cb4e2248488038e6cb0919728ca0cc802b16de3f390d549d135bc1177053b75e500b9f74e47c996d20b231404d57965a3f412662730cc4c938d90a4f SHA512 ad51dc9a04fc117cd01b604559989dd7c7db776761ef6000eccdcfdab825dedc615297af60c778044e46867972a74840d90eebea9b0ff826bdbd10f4d2ec5d6f diff --git a/www-servers/tomcat/tomcat-10.0.17.ebuild b/www-servers/tomcat/tomcat-10.0.17.ebuild deleted file mode 100644 index 1880f8d73eaa..000000000000 --- a/www-servers/tomcat/tomcat-10.0.17.ebuild +++ /dev/null @@ -1,198 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 prefix - -MY_P="apache-${PN}-${PV}-src" - -# Currently we bundle binary versions of bnd.jar and bndlib.jar -# See bugs #203080 and #676116 -BND_VERSION="6.2.0" -BND="biz.aQute.bnd-${BND_VERSION}.jar" -BNDLIB="biz.aQute.bndlib-${BND_VERSION}.jar" - -DESCRIPTION="Tomcat Servlet-5.0/JSP-3.0/EL-4.0/WebSocket-2.0/JASIC-2.0 Container" -HOMEPAGE="https://tomcat.apache.org/" -SRC_URI="mirror://apache/${PN}/tomcat-9/v${PV}/src/${MY_P}.tar.gz - https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd/${BND_VERSION}/${BND} - https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/${BND_VERSION}/${BNDLIB}" - -LICENSE="Apache-2.0" -SLOT="10" -KEYWORDS="amd64 ~amd64-linux" -IUSE="extra-webapps" - -RESTRICT="test" # can we run them on a production system? - -# though it could work with 4.22 and upstream uses 4.20, -# we still use 4.15 because 4.20+ is currently built with java 11 -# and it would force Tomcat to use at least java 11 too -ECJ_SLOT="4.15" -SAPI_SLOT="5.0" - -COMMON_DEP="dev-java/eclipse-ecj:${ECJ_SLOT} - dev-java/glassfish-xmlrpc-api:0 - dev-java/jakartaee-migration:0 - ~dev-java/tomcat-servlet-api-${PV}:${SAPI_SLOT} - dev-java/wsdl4j:0" -RDEPEND="${COMMON_DEP} - acct-group/tomcat - acct-user/tomcat - virtual/jre" -DEPEND="${COMMON_DEP} - app-admin/pwgen - dev-java/ant-core - >=virtual/jdk-1.8:* - test? ( - dev-java/ant-junit:0 - dev-java/easymock:3.2 - )" - -S=${WORKDIR}/${MY_P} - -PATCHES=( - "${FILESDIR}/${PN}-9.0.50-insufficient-ecj.patch" -) - -BND_HOME="${S}/tomcat-build-libs/bnd" -BNDLIB_HOME="${S}/tomcat-build-libs/bndlib" -BND_JAR="${BND_HOME}/${BND}" -BNDLIB_JAR="${BNDLIB_HOME}/${BND_LIB}" - -src_unpack() { - unpack ${MY_P}.tar.gz - - mkdir -p "${BND_HOME}" "${BNDLIB_HOME}" || die "Failed to create dir" - ln -s "${DISTDIR}/${BND}" "${BND_HOME}/" || die "Failed to symlink bnd-*.jar" - ln -s "${DISTDIR}/${BND}" "${BNDLIB_HOME}/" || die "Failed to symlink bndlib-*.jar" -} - -src_prepare() { - default - - find -name '*.jar' -type f -delete -print || die - - # Remove bundled servlet-api - rm -rv java/jakarta/{el,servlet} || die - - eapply "${FILESDIR}/${PN}-10.0.16-build.xml.patch" - - local vm_version="$(java-config -g PROVIDES_VERSION)" - [[ "${vm_version}" == "1.8" ]] && eapply "${FILESDIR}/${PN}-10.0.16-build.xml-strip-html5.patch" - - # For use of catalina.sh in netbeans - sed -i -e "/^# ----- Execute The Requested Command/ a\ - CLASSPATH=\`java-config --with-dependencies --classpath ${PN}-${SLOT}\`" \ - bin/catalina.sh || die - - java-pkg-2_src_prepare -} - -JAVA_ANT_REWRITE_CLASSPATH="true" - -EANT_BUILD_TARGET="deploy" -EANT_GENTOO_CLASSPATH="eclipse-ecj-${ECJ_SLOT},jakartaee-migration,tomcat-servlet-api-${SAPI_SLOT},wsdl4j" -EANT_TEST_GENTOO_CLASSPATH="easymock-3.2" -EANT_GENTOO_CLASSPATH_EXTRA="${S}/output/classes" -EANT_NEEDS_TOOLS="true" -EANT_EXTRA_ARGS="-Dversion=${PV}-gentoo -Dversion.number=${PV} -Dcompile.debug=false -Dbnd.jar=${BND_JAR} -Dbndlib.jar=${BNDLIB_JAR}" - -# revisions of the scripts -IM_REV="-r2" -INIT_REV="-r1" - -src_configure() { - java-ant-2_src_configure - - eapply "${FILESDIR}/${PN}-9.0.37-fix-build-rewrite.patch" -} - -src_compile() { - EANT_GENTOO_CLASSPATH_EXTRA+=":$(java-pkg_getjar --build-only ant-core ant.jar):$(java-pkg_getjars --build-only glassfish-xmlrpc-api)" - LC_ALL=C java-pkg-2_src_compile -} - -src_test() { - java-pkg-2_src_test -} - -src_install() { - local dest="/usr/share/${PN}-${SLOT}" - - java-pkg_jarinto "${dest}"/bin - java-pkg_dojar output/build/bin/*.jar - exeinto "${dest}"/bin - doexe output/build/bin/*.sh - - java-pkg_jarinto "${dest}"/lib - java-pkg_dojar output/build/lib/*.jar - - dodoc RELEASE-NOTES RUNNING.txt - use doc && java-pkg_dojavadoc output/dist/webapps/docs/api - use source && java-pkg_dosrc java/* - - ### Webapps ### - - # add missing docBase - local apps="host-manager manager" - for app in ${apps}; do - sed -i -e "s|=\"true\" >|=\"true\" docBase=\"\$\{catalina.home\}/webapps/${app}\" >|" \ - output/build/webapps/${app}/META-INF/context.xml || die - done - - insinto "${dest}"/webapps - doins -r output/build/webapps/{host-manager,manager,ROOT} - use extra-webapps && doins -r output/build/webapps/{docs,examples} - - ### Config ### - - # create "logs" directory in $CATALINA_BASE - # and set correct perms, see #458890 - dodir "${dest}"/logs - fperms 0750 "${dest}"/logs - - # replace the default pw with a random one, see #92281 - local randpw="$(pwgen -s -B 15 1)" - sed -i -e "s|SHUTDOWN|${randpw}|" output/build/conf/server.xml || die - - # prepend gentoo.classpath to common.loader, see #453212 - sed -i -e 's/^common\.loader=/\0${gentoo.classpath},/' output/build/conf/catalina.properties || die - - insinto "${dest}" - doins -r output/build/conf - - ### rc ### - - cp "${FILESDIR}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} "${T}" || die - eprefixify "${T}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} - sed -i -e "s|@SLOT@|${SLOT}|g" "${T}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} || die - - insinto "${dest}"/gentoo - doins "${T}"/tomcat.conf - exeinto "${dest}"/gentoo - newexe "${T}"/tomcat${INIT_REV}.init tomcat.init - newexe "${T}"/tomcat-instance-manager${IM_REV}.bash tomcat-instance-manager.bash -} - -pkg_postinst() { - elog "New ebuilds of Tomcat support running multiple instances. If you used prior version" - elog "of Tomcat (<7.0.32), you have to migrate your existing instance to work with new Tomcat." - elog "You can find more information at https://wiki.gentoo.org/wiki/Apache_Tomcat" - - elog "To manage Tomcat instances, run:" - elog " ${EPREFIX}/usr/share/${PN}-${SLOT}/gentoo/tomcat-instance-manager.bash --help" - - ewarn "Please note that since version 10 the primary package for all implemented APIs" - ewarn "has changed from javax.* to jakarta.*. This will almost certainly require code" - ewarn "changes to enable applications to migrate from Tomcat 9 and earlier to Tomcat 10 and later." - - ewarn "tomcat-dbcp.jar is not built at this time. Please fetch jar" - ewarn "from upstream binary if you need it. Gentoo Bug # 144276" - - einfo "Please read https://wiki.gentoo.org/wiki/Apache_Tomcat and" - einfo "https://wiki.gentoo.org/wiki/Project:Java/Tomcat_6_Guide for more information." -} diff --git a/www-servers/tomcat/tomcat-10.0.18.ebuild b/www-servers/tomcat/tomcat-10.0.18.ebuild index 2d8f92da7a35..1880f8d73eaa 100644 --- a/www-servers/tomcat/tomcat-10.0.18.ebuild +++ b/www-servers/tomcat/tomcat-10.0.18.ebuild @@ -23,7 +23,7 @@ SRC_URI="mirror://apache/${PN}/tomcat-9/v${PV}/src/${MY_P}.tar.gz LICENSE="Apache-2.0" SLOT="10" -KEYWORDS="~amd64 ~amd64-linux" +KEYWORDS="amd64 ~amd64-linux" IUSE="extra-webapps" RESTRICT="test" # can we run them on a production system? diff --git a/www-servers/tomcat/tomcat-8.5.76.ebuild b/www-servers/tomcat/tomcat-8.5.76.ebuild deleted file mode 100644 index 00727fd8a0a6..000000000000 --- a/www-servers/tomcat/tomcat-8.5.76.ebuild +++ /dev/null @@ -1,159 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 prefix - -MY_P="apache-${P}-src" - -DESCRIPTION="Tomcat Servlet-3.1/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container" -HOMEPAGE="https://tomcat.apache.org/" -SRC_URI="mirror://apache/${PN}/tomcat-8/v${PV}/src/${MY_P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="8.5" -KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="extra-webapps" - -RESTRICT="test" # can we run them on a production system? - -ECJ_SLOT="4.5" -SAPI_SLOT="3.1" - -COMMON_DEP="dev-java/eclipse-ecj:${ECJ_SLOT} - ~dev-java/tomcat-servlet-api-${PV}:${SAPI_SLOT}" -RDEPEND="${COMMON_DEP} - acct-group/tomcat - acct-user/tomcat - >=virtual/jre-1.8:*" -DEPEND="${COMMON_DEP} - app-admin/pwgen - dev-java/ant-core - >=virtual/jdk-1.8:* - doc? ( - dev-java/glassfish-xmlrpc-api:0 - dev-java/wsdl4j:0 - ) - test? ( - >=dev-java/ant-junit-1.9:0 - dev-java/easymock:3.2 - )" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - default - - find -name '*.jar' -type f -delete -print || die - - # Remove bundled servlet-api - rm -rv java/javax/{el,servlet} || die - - eapply "${FILESDIR}/${PN}-8.5.66-build.xml.patch" - - # For use of catalina.sh in netbeans - sed -i -e "/^# ----- Execute The Requested Command/ a\ - CLASSPATH=\`java-config --with-dependencies --classpath ${PN}-${SLOT}\`" \ - bin/catalina.sh || die - - java-pkg-2_src_prepare -} - -JAVA_ANT_REWRITE_CLASSPATH="true" - -EANT_BUILD_TARGET="deploy" -EANT_GENTOO_CLASSPATH="eclipse-ecj-${ECJ_SLOT},tomcat-servlet-api-${SAPI_SLOT}" -EANT_TEST_GENTOO_CLASSPATH="easymock-3.2" -EANT_GENTOO_CLASSPATH_EXTRA="${S}/output/classes" -EANT_NEEDS_TOOLS="true" -EANT_EXTRA_ARGS="-Dversion=${PV}-gentoo -Dversion.number=${PV} -Dcompile.debug=false -Dexecute.validate=false" - -# revisions of the scripts -IM_REV="-r2" -INIT_REV="-r1" - -src_compile() { - EANT_GENTOO_CLASSPATH_EXTRA+=":$(java-pkg_getjar --build-only ant-core ant.jar)" - use doc && EANT_GENTOO_CLASSPATH_EXTRA+=":$(java-pkg_getjar --build-only glassfish-xmlrpc-api glassfish-xmlrpc-api.jar):$(java-pkg_getjar --build-only wsdl4j wsdl4j.jar)" - LC_ALL=C java-pkg-2_src_compile -} - -src_test() { - java-pkg-2_src_test -} - -src_install() { - local dest="/usr/share/${PN}-${SLOT}" - - java-pkg_jarinto "${dest}"/bin - java-pkg_dojar output/build/bin/*.jar - exeinto "${dest}"/bin - doexe output/build/bin/*.sh - - java-pkg_jarinto "${dest}"/lib - java-pkg_dojar output/build/lib/*.jar - - dodoc RELEASE-NOTES RUNNING.txt - use doc && java-pkg_dojavadoc output/dist/webapps/docs/api - use source && java-pkg_dosrc java/* - - ### Webapps ### - - # add missing docBase - local apps="host-manager manager" - for app in ${apps}; do - sed -i -e "s|=\"true\" >|=\"true\" docBase=\"\$\{catalina.home\}/webapps/${app}\" >|" \ - output/build/webapps/${app}/META-INF/context.xml || die - done - - insinto "${dest}"/webapps - doins -r output/build/webapps/{host-manager,manager,ROOT} - use extra-webapps && doins -r output/build/webapps/{docs,examples} - - ### Config ### - - # create "logs" directory in $CATALINA_BASE - # and set correct perms, see #458890 - dodir "${dest}"/logs - fperms 0750 "${dest}"/logs - - # replace the default pw with a random one, see #92281 - local randpw="$(pwgen -s -B 15 1)" - sed -i -e "s|SHUTDOWN|${randpw}|" output/build/conf/server.xml || die - - # prepend gentoo.classpath to common.loader, see #453212 - sed -i -e 's/^common\.loader=/\0${gentoo.classpath},/' output/build/conf/catalina.properties || die - - insinto "${dest}" - doins -r output/build/conf - - ### rc ### - - cp "${FILESDIR}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} "${T}" || die - eprefixify "${T}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} - sed -i -e "s|@SLOT@|${SLOT}|g" "${T}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} || die - - insinto "${dest}"/gentoo - doins "${T}"/tomcat.conf - exeinto "${dest}"/gentoo - newexe "${T}"/tomcat${INIT_REV}.init tomcat.init - newexe "${T}"/tomcat-instance-manager${IM_REV}.bash tomcat-instance-manager.bash -} - -pkg_postinst() { - elog "New ebuilds of Tomcat support running multiple instances. If you used prior version" - elog "of Tomcat (<7.0.32), you have to migrate your existing instance to work with new Tomcat." - elog "You can find more information at https://wiki.gentoo.org/wiki/Apache_Tomcat" - - elog "To manage Tomcat instances, run:" - elog " ${EPREFIX}/usr/share/${PN}-${SLOT}/gentoo/tomcat-instance-manager.bash --help" - - ewarn "tomcat-dbcp.jar is not built at this time. Please fetch jar" - ewarn "from upstream binary if you need it. Gentoo Bug # 144276" - - einfo "Please read https://wiki.gentoo.org/wiki/Apache_Tomcat and" - einfo "https://wiki.gentoo.org/wiki/Project:Java/Tomcat_6_Guide for more information." -} diff --git a/www-servers/tomcat/tomcat-8.5.77.ebuild b/www-servers/tomcat/tomcat-8.5.77.ebuild index 67b6462910bf..00727fd8a0a6 100644 --- a/www-servers/tomcat/tomcat-8.5.77.ebuild +++ b/www-servers/tomcat/tomcat-8.5.77.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://apache/${PN}/tomcat-8/v${PV}/src/${MY_P}.tar.gz" LICENSE="Apache-2.0" SLOT="8.5" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="extra-webapps" RESTRICT="test" # can we run them on a production system? diff --git a/www-servers/tomcat/tomcat-9.0.59.ebuild b/www-servers/tomcat/tomcat-9.0.59.ebuild deleted file mode 100644 index 164acb30f6e5..000000000000 --- a/www-servers/tomcat/tomcat-9.0.59.ebuild +++ /dev/null @@ -1,190 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 prefix - -MY_P="apache-${PN}-${PV}-src" - -# Currently we bundle binary versions of bnd.jar and bndlib.jar -# See bugs #203080 and #676116 -BND_VERSION="6.2.0" -BND="biz.aQute.bnd-${BND_VERSION}.jar" -BNDLIB="biz.aQute.bndlib-${BND_VERSION}.jar" - -DESCRIPTION="Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container" -HOMEPAGE="https://tomcat.apache.org/" -SRC_URI="mirror://apache/${PN}/tomcat-9/v${PV}/src/${MY_P}.tar.gz - https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd/${BND_VERSION}/${BND} - https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/${BND_VERSION}/${BNDLIB}" - -LICENSE="Apache-2.0" -SLOT="9" -KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="extra-webapps" - -RESTRICT="test" # can we run them on a production system? - -# though it could work with 4.22 and upstream uses 4.20, -# we still use 4.15 because 4.20+ is currently built with java 11 -# and it would force Tomcat to use at least java 11 too -ECJ_SLOT="4.15" -SAPI_SLOT="4.0" - -COMMON_DEP="dev-java/eclipse-ecj:${ECJ_SLOT} - dev-java/glassfish-xmlrpc-api:0 - ~dev-java/tomcat-servlet-api-${PV}:${SAPI_SLOT} - dev-java/wsdl4j:0" -RDEPEND="${COMMON_DEP} - acct-group/tomcat - acct-user/tomcat - >=virtual/jre-1.8:*" -DEPEND="${COMMON_DEP} - app-admin/pwgen - >=dev-java/ant-core-1.9.13 - >=virtual/jdk-1.8:* - test? ( - >=dev-java/ant-junit-1.9:0 - dev-java/easymock:3.2 - )" - -S=${WORKDIR}/${MY_P} - -PATCHES=( - "${FILESDIR}/${PN}-9.0.50-insufficient-ecj.patch" -) - -BND_HOME="${S}/tomcat-build-libs/bnd" -BNDLIB_HOME="${S}/tomcat-build-libs/bndlib" -BND_JAR="${BND_HOME}/${BND}" -BNDLIB_JAR="${BNDLIB_HOME}/${BND_LIB}" - -src_unpack() { - unpack ${MY_P}.tar.gz - - mkdir -p "${BND_HOME}" "${BNDLIB_HOME}" || die "Failed to create dir" - ln -s "${DISTDIR}/${BND}" "${BND_HOME}/" || die "Failed to symlink bnd-*.jar" - ln -s "${DISTDIR}/${BND}" "${BNDLIB_HOME}/" || die "Failed to symlink bndlib-*.jar" -} - -src_prepare() { - default - - find -name '*.jar' -type f -delete -print || die - - # Remove bundled servlet-api - rm -rv java/javax/{el,servlet} || die - - eapply "${FILESDIR}/${PN}-9.0.58-build.xml.patch" - - # For use of catalina.sh in netbeans - sed -i -e "/^# ----- Execute The Requested Command/ a\ - CLASSPATH=\`java-config --with-dependencies --classpath ${PN}-${SLOT}\`" \ - bin/catalina.sh || die - - java-pkg-2_src_prepare -} - -JAVA_ANT_REWRITE_CLASSPATH="true" - -EANT_BUILD_TARGET="deploy" -EANT_GENTOO_CLASSPATH="eclipse-ecj-${ECJ_SLOT},tomcat-servlet-api-${SAPI_SLOT},wsdl4j" -EANT_TEST_GENTOO_CLASSPATH="easymock-3.2" -EANT_GENTOO_CLASSPATH_EXTRA="${S}/output/classes" -EANT_NEEDS_TOOLS="true" -EANT_EXTRA_ARGS="-Dversion=${PV}-gentoo -Dversion.number=${PV} -Dcompile.debug=false -Dbnd.jar=${BND_JAR} -Dbndlib.jar=${BNDLIB_JAR}" - -# revisions of the scripts -IM_REV="-r2" -INIT_REV="-r1" - -src_configure() { - java-ant-2_src_configure - - eapply "${FILESDIR}/${PN}-9.0.37-fix-build-rewrite.patch" -} - -src_compile() { - EANT_GENTOO_CLASSPATH_EXTRA+=":$(java-pkg_getjar --build-only ant-core ant.jar):$(java-pkg_getjars --build-only glassfish-xmlrpc-api)" - LC_ALL=C java-pkg-2_src_compile -} - -src_test() { - java-pkg-2_src_test -} - -src_install() { - local dest="/usr/share/${PN}-${SLOT}" - - java-pkg_jarinto "${dest}"/bin - java-pkg_dojar output/build/bin/*.jar - exeinto "${dest}"/bin - doexe output/build/bin/*.sh - - java-pkg_jarinto "${dest}"/lib - java-pkg_dojar output/build/lib/*.jar - - dodoc RELEASE-NOTES RUNNING.txt - use doc && java-pkg_dojavadoc output/dist/webapps/docs/api - use source && java-pkg_dosrc java/* - - ### Webapps ### - - # add missing docBase - local apps="host-manager manager" - for app in ${apps}; do - sed -i -e "s|=\"true\" >|=\"true\" docBase=\"\$\{catalina.home\}/webapps/${app}\" >|" \ - output/build/webapps/${app}/META-INF/context.xml || die - done - - insinto "${dest}"/webapps - doins -r output/build/webapps/{host-manager,manager,ROOT} - use extra-webapps && doins -r output/build/webapps/{docs,examples} - - ### Config ### - - # create "logs" directory in $CATALINA_BASE - # and set correct perms, see #458890 - dodir "${dest}"/logs - fperms 0750 "${dest}"/logs - - # replace the default pw with a random one, see #92281 - local randpw="$(pwgen -s -B 15 1)" - sed -i -e "s|SHUTDOWN|${randpw}|" output/build/conf/server.xml || die - - # prepend gentoo.classpath to common.loader, see #453212 - sed -i -e 's/^common\.loader=/\0${gentoo.classpath},/' output/build/conf/catalina.properties || die - - insinto "${dest}" - doins -r output/build/conf - - ### rc ### - - cp "${FILESDIR}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} "${T}" || die - eprefixify "${T}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} - sed -i -e "s|@SLOT@|${SLOT}|g" "${T}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} || die - - insinto "${dest}"/gentoo - doins "${T}"/tomcat.conf - exeinto "${dest}"/gentoo - newexe "${T}"/tomcat${INIT_REV}.init tomcat.init - newexe "${T}"/tomcat-instance-manager${IM_REV}.bash tomcat-instance-manager.bash -} - -pkg_postinst() { - elog "New ebuilds of Tomcat support running multiple instances. If you used prior version" - elog "of Tomcat (<7.0.32), you have to migrate your existing instance to work with new Tomcat." - elog "You can find more information at https://wiki.gentoo.org/wiki/Apache_Tomcat" - - elog "To manage Tomcat instances, run:" - elog " ${EPREFIX}/usr/share/${PN}-${SLOT}/gentoo/tomcat-instance-manager.bash --help" - - ewarn "tomcat-dbcp.jar is not built at this time. Please fetch jar" - ewarn "from upstream binary if you need it. Gentoo Bug # 144276" - - einfo "Please read https://wiki.gentoo.org/wiki/Apache_Tomcat and" - einfo "https://wiki.gentoo.org/wiki/Project:Java/Tomcat_6_Guide for more information." -} diff --git a/www-servers/tomcat/tomcat-9.0.60.ebuild b/www-servers/tomcat/tomcat-9.0.60.ebuild index bd49dfe74c96..164acb30f6e5 100644 --- a/www-servers/tomcat/tomcat-9.0.60.ebuild +++ b/www-servers/tomcat/tomcat-9.0.60.ebuild @@ -23,7 +23,7 @@ SRC_URI="mirror://apache/${PN}/tomcat-9/v${PV}/src/${MY_P}.tar.gz LICENSE="Apache-2.0" SLOT="9" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="extra-webapps" RESTRICT="test" # can we run them on a production system? diff --git a/x11-base/Manifest.gz b/x11-base/Manifest.gz index 0d80c655c6ff..5131faaadf54 100644 Binary files a/x11-base/Manifest.gz and b/x11-base/Manifest.gz differ diff --git a/x11-base/xwayland/files/xwayland-drop-redundantly-installed-files_v2.patch b/x11-base/xwayland/files/xwayland-drop-redundantly-installed-files_v2.patch new file mode 100644 index 000000000000..ea765d3dcfcd --- /dev/null +++ b/x11-base/xwayland/files/xwayland-drop-redundantly-installed-files_v2.patch @@ -0,0 +1,30 @@ +diff --git a/dix/meson.build b/dix/meson.build +index fbbcf8646..15ca7d3b0 100644 +--- a/dix/meson.build ++++ b/dix/meson.build +@@ -57,8 +57,3 @@ libxserver_main = static_library('libxserver_main', + include_directories: inc, + dependencies: common_dep, + ) +- +-install_data( +- 'protocol.txt', +- install_dir: serverconfigdir, +-) +diff --git a/meson.build b/meson.build +index db1d63f3e..b9cef5a56 100644 +--- a/meson.build ++++ b/meson.build +@@ -806,12 +806,6 @@ if host_machine.system() != 'windows' + subdir('test') + endif + +-install_man(configure_file( +- input: 'man/Xserver.man', +- output: 'Xserver.1', +- configuration: manpage_config, +-)) +- + if build_xorg + sdkconfig = configuration_data() + awk = find_program('awk') diff --git a/x11-base/xwayland/xwayland-9999.ebuild b/x11-base/xwayland/xwayland-9999.ebuild new file mode 100644 index 000000000000..dae6cf880e98 --- /dev/null +++ b/x11-base/xwayland/xwayland-9999.ebuild @@ -0,0 +1,104 @@ +# Copyright 2021-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/xserver.git" + inherit git-r3 +else + SRC_URI="https://xorg.freedesktop.org/archive/individual/xserver/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +DESCRIPTION="Standalone X server running under Wayland" +HOMEPAGE="https://wayland.freedesktop.org/xserver.html" + +IUSE="selinux video_cards_nvidia unwind xcsecurity" + +LICENSE="MIT" +SLOT="0" + +COMMON_DEPEND=" + dev-libs/libbsd + dev-libs/openssl:= + >=dev-libs/wayland-1.20 + >=dev-libs/wayland-protocols-1.22 + media-fonts/font-util + >=media-libs/libepoxy-1.5.4[X,egl(+)] + media-libs/libglvnd[X] + >=media-libs/mesa-21.1[X(+),egl(+),gbm(+)] + >=x11-libs/libdrm-2.4.89 + >=x11-libs/libXau-1.0.4 + x11-libs/libxcvt + >=x11-libs/libXdmcp-1.0.2 + >=x11-libs/libXfont2-2.0.1 + x11-libs/libxkbfile + >=x11-libs/libxshmfence-1.1 + >=x11-libs/pixman-0.27.2 + >=x11-misc/xkeyboard-config-2.4.1-r3 + + unwind? ( sys-libs/libunwind ) + video_cards_nvidia? ( gui-libs/egl-wayland ) +" +DEPEND=" + ${COMMON_DEPEND} + x11-base/xorg-proto + >=x11-libs/xtrans-1.3.5 +" +RDEPEND=" + ${COMMON_DEPEND} + x11-apps/xkbcomp + !<=x11-base/xorg-server-1.20.11 + selinux? ( sec-policy/selinux-xserver ) +" +BDEPEND=" + sys-devel/flex + dev-util/wayland-scanner +" + +PATCHES=( + "${FILESDIR}"/xwayland-drop-redundantly-installed-files_v2.patch +) + +src_configure() { + local emesonargs=( + $(meson_use selinux xselinux) + $(meson_use unwind libunwind) + $(meson_use xcsecurity) + $(meson_use video_cards_nvidia xwayland_eglstream) + -Ddpms=true + -Ddri3=true + -Ddrm=true + -Ddtrace=false + -Dglamor=true + -Dglx=true + -Dipv6=true + -Dsecure-rpc=false + -Dscreensaver=true + -Dsha1=libcrypto + -Dxace=true + -Dxdmcp=true + -Dxinerama=true + -Dxvfb=true + -Dxv=true + -Dxwayland-path="${EPREFIX}"/usr/bin + -Ddocs=false + -Ddevel-docs=false + -Ddocs-pdf=false + -Dxorg=false + -Dxnest=false + -Dxvfb=false + -Dxwayland=true + ) + + meson_src_configure +} + +src_install() { + dosym ../bin/Xwayland /usr/libexec/Xwayland + + meson_src_install +} diff --git a/x11-drivers/Manifest.gz b/x11-drivers/Manifest.gz index 5cf7d1bcd7b3..d28ec8042561 100644 Binary files a/x11-drivers/Manifest.gz and b/x11-drivers/Manifest.gz differ diff --git a/x11-drivers/xf86-video-vmware/xf86-video-vmware-13.3.0.ebuild b/x11-drivers/xf86-video-vmware/xf86-video-vmware-13.3.0-r1.ebuild similarity index 88% rename from x11-drivers/xf86-video-vmware/xf86-video-vmware-13.3.0.ebuild rename to x11-drivers/xf86-video-vmware/xf86-video-vmware-13.3.0-r1.ebuild index b89993b82d80..4e0bea19c3c6 100644 --- a/x11-drivers/xf86-video-vmware/xf86-video-vmware-13.3.0.ebuild +++ b/x11-drivers/xf86-video-vmware/xf86-video-vmware-13.3.0-r1.ebuild @@ -12,7 +12,7 @@ KEYWORDS="amd64 x86" RDEPEND=" kernel_linux? ( - x11-libs/libdrm[libkms,video_cards_vmware] + x11-libs/libdrm[video_cards_vmware] media-libs/mesa[xa] )" DEPEND="${RDEPEND}" diff --git a/x11-libs/Manifest.gz b/x11-libs/Manifest.gz index 378296c258fb..3e7871e64b1a 100644 Binary files a/x11-libs/Manifest.gz and b/x11-libs/Manifest.gz differ diff --git a/x11-libs/libdrm/libdrm-9999.ebuild b/x11-libs/libdrm/libdrm-9999.ebuild index c34f20fb240d..38a4960ffca1 100644 --- a/x11-libs/libdrm/libdrm-9999.ebuild +++ b/x11-libs/libdrm/libdrm-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -26,7 +26,7 @@ for card in ${VIDEO_CARDS}; do IUSE_VIDEO_CARDS+=" video_cards_${card}" done -IUSE="${IUSE_VIDEO_CARDS} libkms valgrind" +IUSE="${IUSE_VIDEO_CARDS} valgrind" RESTRICT="test" # see bug #236845 LICENSE="MIT" SLOT="0" @@ -58,7 +58,6 @@ multilib_src_configure() { $(meson_use video_cards_vc4 vc4) $(meson_use video_cards_vivante etnaviv) $(meson_use video_cards_vmware vmwgfx) - $(meson_use libkms) # valgrind installs its .pc file to the pkgconfig for the primary arch -Dvalgrind=$(usex valgrind auto false) ) diff --git a/x11-plugins/Manifest.gz b/x11-plugins/Manifest.gz index 0ae7ee3a54e3..6076dcbc7803 100644 Binary files a/x11-plugins/Manifest.gz and b/x11-plugins/Manifest.gz differ diff --git a/x11-plugins/gkrellm-leds/gkrellm-leds-0.8.2-r2.ebuild b/x11-plugins/gkrellm-leds/gkrellm-leds-0.8.2-r2.ebuild index fed6fcfc799b..6cb881e555ab 100644 --- a/x11-plugins/gkrellm-leds/gkrellm-leds-0.8.2-r2.ebuild +++ b/x11-plugins/gkrellm-leds/gkrellm-leds-0.8.2-r2.ebuild @@ -30,7 +30,7 @@ src_prepare() { eautoreconf } -src_configure() { +src_install() { PLUGIN_SO=( src/.libs/gkleds$(get_modname) ) - default + gkrellm-plugin_src_install }